Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.toolbox
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rafael Monnerat
slapos.toolbox
Commits
af43f7d1
Commit
af43f7d1
authored
Jan 09, 2012
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SSL should be provided by an http frontend
parent
7b0c4624
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
CHANGES.txt
CHANGES.txt
+2
-2
setup.py
setup.py
+1
-1
slapos/onetimeupload/__init__.py
slapos/onetimeupload/__init__.py
+1
-1
No files found.
CHANGES.txt
View file @
af43f7d1
0.14 (201
1-12-30
)
0.14 (201
2-01-09
)
=================
=================
*
No change yet
*
onetimeupload: SSL should be provided by an http frontend [Romain Courteaud]
0.13 (2011-12-30)
0.13 (2011-12-30)
=================
=================
...
...
setup.py
View file @
af43f7d1
...
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
...
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
import
glob
import
glob
import
os
import
os
version
=
'0.14
-dev
'
version
=
'0.14'
name
=
'slapos.toolbox'
name
=
'slapos.toolbox'
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
long_description
=
open
(
"README.txt"
).
read
()
+
"
\
n
"
+
\
open
(
"CHANGES.txt"
).
read
()
+
"
\
n
"
open
(
"CHANGES.txt"
).
read
()
+
"
\
n
"
...
...
slapos/onetimeupload/__init__.py
View file @
af43f7d1
...
@@ -104,7 +104,7 @@ def run(config):
...
@@ -104,7 +104,7 @@ def run(config):
template
=
app
.
open_resource
(
'templates/index.html'
)
template
=
app
.
open_resource
(
'templates/index.html'
)
return
template
.
read
()
return
template
.
read
()
app
.
run
(
host
=
config
.
host
,
port
=
config
.
port
,
ssl_context
=
'adhoc'
)
app
.
run
(
host
=
config
.
host
,
port
=
config
.
port
)
def
main
():
def
main
():
"Run default configuration."
"Run default configuration."
...
...
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