~registry/hyberia/0.2

« back to all changes in this revision

Viewing changes to touei_deploy

  • Committer: Mathieu Charron
  • Date: 2010-01-06 02:46:47 UTC
  • Revision ID: mathieu.charron@elwillow.net-20100106024647-qmf0orqggueelb3q
release 0.2 "Victoria"

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
 
1
#!/usr/bin/env python
 
2
#
 
3
# Eiffel Forum License, version 2
 
4
#
 
5
# 1. Permission is hereby granted to use, copy, modify and/or
 
6
#    distribute this package, provided that:
 
7
#       * copyright notices are retained unchanged,
 
8
#       * any distribution of this package, whether modified or not,
 
9
#         includes this license text.
 
10
# 2. Permission is hereby also granted to distribute binary programs
 
11
#    which depend on this package. If the binary program depends on a
 
12
#    modified version of this package, you are encouraged to publicly
 
13
#    release the modified version of this package.
 
14
#
 
15
# THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT WARRANTY. ANY EXPRESS OR
 
16
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
17
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
18
# DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE TO ANY PARTY FOR
 
19
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 
20
# DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE.
 
21
"""Generate a metalink for easy download to the screen PC"""
2
22
##
3
23
## Configuration
4
24
##
5
25
# Work folder
6
 
screensFolder = "/home/elwillow/G-Anime/screens/"
7
 
serverAddress = "http://shinku:8000/screens/"
 
26
screensFolder = "/home/video/screens/"
 
27
serverAddress = "http://localhost:8000/screens/"
8
28
 
9
29
# Port to run the server on (have to be higher than 1023)
10
30
port=8000