Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
2590efa1
Commit
2590efa1
authored
Apr 16, 2015
by
Weblate
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
7cd2817b
f24ce7c1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
34 deletions
+12
-34
openshift/virtualenv.py
openshift/virtualenv.py
+0
-30
openshift/wsgi.py
openshift/wsgi.py
+6
-2
openshift/wsgi_install.py
openshift/wsgi_install.py
+6
-2
No files found.
openshift/virtualenv.py
deleted
100644 → 0
View file @
7cd2817b
# -*- coding: utf-8 -*-
#
# Copyright © 2014 Daniel Tschan <tschan@puzzle.ch>
#
# This file is part of Weblate <http://weblate.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/>.
#
import
os
def
activate
():
virtenv
=
os
.
environ
[
'OPENSHIFT_PYTHON_DIR'
]
+
'/virtenv/'
virtualenv
=
os
.
path
.
join
(
virtenv
,
'bin/activate_this.py'
)
try
:
execfile
(
virtualenv
,
dict
(
__file__
=
virtualenv
))
except
IOError
:
pass
openshift/wsgi.py
View file @
2590efa1
...
...
@@ -22,13 +22,17 @@
import
os
import
sys
from
django.core.wsgi
import
get_wsgi_application
from
.virtualenv
import
activate
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
environ
[
'OPENSHIFT_REPO_DIR'
],
'weblate'
))
sys
.
path
.
append
(
os
.
path
.
join
(
os
.
environ
[
'OPENSHIFT_REPO_DIR'
],
'openshift'
))
os
.
environ
[
'DJANGO_SETTINGS_MODULE'
]
=
'weblate.settings_openshift'
activate
()
virtenv
=
os
.
environ
[
'OPENSHIFT_PYTHON_DIR'
]
+
'/virtenv/'
virtualenv
=
os
.
path
.
join
(
virtenv
,
'bin/activate_this.py'
)
try
:
execfile
(
virtualenv
,
dict
(
__file__
=
virtualenv
))
except
IOError
:
pass
application
=
get_wsgi_application
()
openshift/wsgi_install.py
View file @
2590efa1
...
...
@@ -21,9 +21,13 @@
import
os
from
string
import
Template
from
.virtualenv
import
activate
activate
()
virtenv
=
os
.
environ
[
'OPENSHIFT_PYTHON_DIR'
]
+
'/virtenv/'
virtualenv
=
os
.
path
.
join
(
virtenv
,
'bin/activate_this.py'
)
try
:
execfile
(
virtualenv
,
dict
(
__file__
=
virtualenv
))
except
IOError
:
pass
def
application
(
environ
,
start_response
):
...
...
Write
Preview
Markdown
is supported
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