Merge pull request #72 from emanuelschuetze/master

1.3 final changes
This commit is contained in:
Emanuel Schütze 2012-12-10 11:36:16 -08:00
commit 4e381e7ecf
7 changed files with 28 additions and 26 deletions

View File

@ -87,21 +87,21 @@ II. Installation on GNU/Linux and MacOSX using the sources
$ sudo apt-get install git $ sudo apt-get install git
$ git clone git://github.com/OpenSlides/OpenSlides.git OpenSlides $ git clone git://github.com/OpenSlides/OpenSlides.git OpenSlides
3. Setup a virtual environment with virtualenv: 3. Setup a virtual environment with virtualenv (optional):
Go to the (extracted/cloned) root directory of OpenSlides You can setup a virtual environment to install OpenSlides as
and create virtualenv environment: non-root user.
E. g. for Ubuntu run:
$ sudo apt-get install python-virtualenv
To setup and activate the virtual environment go to the
(extracted/cloned) root directory of OpenSlides and run:
$ virtualenv .venv $ virtualenv .venv
For virtualenv >= 1.7 use instead:
$ virtualenv --system-site-packages .venv
4. Activate the virtual environment:
$ source .venv/bin/activate $ source .venv/bin/activate
5. Install the required python-packages: 4. Install the required python-packages:
$ pip install django django-mptt $ pip install django django-mptt
@ -111,7 +111,7 @@ II. Installation on GNU/Linux and MacOSX using the sources
If requirements reportlab or PIL still missing (see 1.): If requirements reportlab or PIL still missing (see 1.):
$ pip install reportlab pil $ pip install reportlab pil
6. Start OpenSlides server and open URL in your default browser: 5. Start OpenSlides server and open URL in your default browser:
$ python start.py $ python start.py
@ -124,7 +124,7 @@ II. Installation on GNU/Linux and MacOSX using the sources
Use 'python start.py --help' to show all start options. Use 'python start.py --help' to show all start options.
7. Restart OpenSlides: 6. Restart OpenSlides:
To restart OpenSlides after closing the terminal activate the To restart OpenSlides after closing the terminal activate the
virtual environment (see 4.) before starting the server (see 6.). virtual environment (see 4.) before starting the server (see 6.).

View File

@ -2,13 +2,13 @@
English README file for OpenSlides English README file for OpenSlides
================================== ==================================
This is OpenSlides, version 1.3-rc1 (2012-11-27). This is OpenSlides, version 1.3 (2012-12-10).
What is OpenSlides? What is OpenSlides?
=================== ===================
OpenSlides is a free, web-based presentation system for displaying and OpenSlides is a free web-based presentation and assembly system for
controlling of agenda, applications and elections of an assembly. displaying and controlling of agenda, motions and elections of an assembly.
See http://openslides.org for more information. See http://openslides.org for more information.
@ -24,8 +24,9 @@ list or read the OpenSlides manual. See http://openslides.org.
The start script of OpenSlides The start script of OpenSlides
============================== ==============================
Simply running Simply running
openslides.exe (on Windows) or openslides.exe (on Windows)
python start.py (on Linux/MacOS) or
openslides (on Linux/MacOS)
will start OpenSlides using djangos development server. It will also will start OpenSlides using djangos development server. It will also
try to open OpenSlides in your default webbrowser. try to open OpenSlides in your default webbrowser.
@ -69,16 +70,14 @@ The following command line options are available:
--no-reload --no-reload
Does not reload the development server Does not reload the development server
--version
Show version and exit.
Example 1: Openslides should only be accessible on this computer: Example 1: Openslides should only be accessible on this computer:
openslides.exe -a 127.0.0.1 openslides -a 127.0.0.1
or
python start.py -a 127.0.0.1
Example 2: Like above, but also specify the port as 8080 Example 2: Like above, but also specify the port as 8080
openslides.exe -a 127.0.0.01 -p 8080 openslides -a 127.0.0.01 -p 8080
or
python start.py -a 127.0.0.1 -p 8080
Supported operating systems and browsers Supported operating systems and browsers

View File

@ -6,7 +6,7 @@
""" """
VERSION = (1, 3, 0, 'final', 0) # During development it is the next release VERSION = (1, 3, 0, 'final', 0) # During development it is the next release
RELEASE = False RELEASE = True
def get_version(version=None, release=None): def get_version(version=None, release=None):

View File

@ -738,7 +738,7 @@ msgstr[0] "Wahl"
msgstr[1] "Wahlen" msgstr[1] "Wahlen"
#: assignment/templates/assignment/overview.html:35 #: assignment/templates/assignment/overview.html:35
#, fuzzy, python-format #, python-format
msgctxt "Number of searched candidates for an election" msgctxt "Number of searched candidates for an election"
msgid "posts: %(posts)s" msgid "posts: %(posts)s"
msgstr "Posten: %(posts)s" msgstr "Posten: %(posts)s"
@ -1524,7 +1524,7 @@ msgid ""
"optional and may be empty" "optional and may be empty"
msgstr "" msgstr ""
"<code>Nummer</code>, <code>Begründung</code> und <code>Gruppenantrag</code> " "<code>Nummer</code>, <code>Begründung</code> und <code>Gruppenantrag</code> "
"sind optional und können auch leer sein." "sind optional und können auch leer sein"
#: motion/templates/motion/import.html:16 #: motion/templates/motion/import.html:16
#: participant/templates/participant/import.html:14 #: participant/templates/participant/import.html:14

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

View File

@ -394,6 +394,9 @@ input[type="submit"], input[type="button"] {
.button .adduser{ .button .adduser{
background:url(../images/icons/add-user.png) no-repeat 0px 0px; background:url(../images/icons/add-user.png) no-repeat 0px 0px;
} }
.button .remove{
background:url(../images/icons/remove.png) no-repeat 0px 0px;
}
.button .removeuser{ .button .removeuser{
background:url(../images/icons/remove-user.png) no-repeat 0px 0px; background:url(../images/icons/remove-user.png) no-repeat 0px 0px;
} }