Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
nounous-archives
intranet
Commits
27f3ee5b
Commit
27f3ee5b
authored
Oct 19, 2017
by
Daniel STAN
Browse files
bw_comp is useless
parent
1cab3f35
Changes
3
Hide whitespace changes
Inline
Side-by-side
bw_comp/__init__.py
deleted
100644 → 0
View file @
1cab3f35
bw_comp/heartbeat.py
deleted
100644 → 0
View file @
1cab3f35
# -*- coding: utf-8 -*-
#
# Copyright (C) 2012 Daniel STAN
# Authors: Daniel STAN <daniel.stan@crans.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from
intranet
import
settings
from
django.http
import
HttpResponse
def
view
(
request
):
return
HttpResponse
(
"OK"
,
content_type
=
'text/plain; coding=utf-8'
)
intranet/urls.py
View file @
27f3ee5b
...
...
@@ -5,7 +5,6 @@ from intranet import settings
import
django.contrib.auth.views
from
django.views.decorators.debug
import
sensitive_post_parameters
from
intranet.views
import
accueil
,
surlogin
,
surlogout
import
bw_comp
from
django.contrib
import
admin
admin
.
autodiscover
()
...
...
@@ -33,7 +32,6 @@ urlpatterns = [
login_url
,
logout_url
,
url
(
r
'^admin/'
,
include
(
admin
.
site
.
urls
)),
#(r'^heartbeat$', bw_comp.heartbeat.view),
url
(
r
'^i18n/'
,
include
(
'django.conf.urls.i18n'
)),
]
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment