diff --git a/.bzrignore b/.bzrignore index 54b312e..8b13789 100644 --- a/.bzrignore +++ b/.bzrignore @@ -1 +1 @@ -mailman_rest_client.py + diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..cfe4834 --- /dev/null +++ b/README.rst @@ -0,0 +1,33 @@ +======================================= +mailman-django - web ui for GNU Mailman +======================================= + +The ``mailman-django`` Django app provides a web user interface to +access GNU Mailman. + +``mailman-django`` is free software: you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation, version 3 of the License. + +``mailman-django`` 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 Lesser +General Public License for more details. + +You should have received a copy of the GNU Lesser General Public License +along with mailman.client. If not, see . + + +Requirements +============ + +``mailman-django`` requires Python 2.6 or newer and ``mailman.client``, +the official Python bindings for GNU Mailman. + + +Acknowledgements +================ + +Many thanks go out to Anna Granudd and Benedict Stein for developing the +initial versions of this Django app during the Google Summer of Code +2010 and 2011. diff --git a/__init__.py b/__init__.py deleted file mode 100644 index e69de29..0000000 --- a/__init__.py +++ /dev/null diff --git a/auth/__init__.py b/auth/__init__.py deleted file mode 100644 index e69de29..0000000 --- a/auth/__init__.py +++ /dev/null diff --git a/auth/restbackend.py b/auth/restbackend.py deleted file mode 100644 index 7f6c20b..0000000 --- a/auth/restbackend.py +++ /dev/null @@ -1,79 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# -# GNU Mailman 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 -# GNU Mailman. If not, see . - -from django.contrib.auth.models import User, check_password - -class RESTBackend: - """ - Authenticate against the settings the REST Middleware - checking permissions ... - - Development uses hardcoded users atm. - - """ - - supports_object_permissions = False - supports_anonymous_user = False - supports_inactive_user = False - - def authenticate(self, **credentials): - """ - This authenticate function will check with the REST Middleware - wheteher the user exists and did provide a valid password. - - DEV: TODO - needs Middleware connection - """ - # make_password is used to create sha1 strings - valid_users = {"james@example.com": "james", #workaround until middleware exists - "katie@example.com": "katie", - "kevin@example.com": "kevin"} - login_valid = credentials["username"] in valid_users.keys() - try: - pwd_valid = (credentials["password"] == valid_users[credentials["username"]]) - except KeyError: - pwd_valid = False - if login_valid and pwd_valid: - try: - user = User.objects.get(username=credentials["username"]) - except User.DoesNotExist: - # Create a new user. Note that we can set password - # to anything, because it won't be checked; the password - # from settings.py will. - user = User(username=credentials["username"], password='doesnt matter') - user.is_staff = False - user.is_superuser = False - user.save() - return user - return None - - def get_user(self, user_id): - try: - return User.objects.get(pk=user_id) - except User.DoesNotExist: - return None - - def has_perm(self, user_obj, perm): - if perm == "server_admin": - if user_obj.username == "james@example.com": - return True - else: - return False - elif perm == "perm": #Test Fallback - pass - else: - raise Exception(perm+" Permisson unknown") diff --git a/context_processors.py b/context_processors.py deleted file mode 100644 index c8f63ac..0000000 --- a/context_processors.py +++ /dev/null @@ -1,49 +0,0 @@ -from mailman.client import Client -from mailmanweb.settings import API_USER, API_PASS, MAILMAN_THEME -from django.utils.translation import gettext as _ -from urllib2 import HTTPError - -def lists_of_domain(request): - """ This function is a wrapper to render a list of all - available List registered to the current request URL - """ - domain_lists = [] - domainname = None - message = "" - if "HTTP_HOST" in request.META.keys() :#TODO only lists of current domains if possible - #get the URL - web_host = ('http://%s' % request.META["HTTP_HOST"].split(":")[0]) - domainname = "unregistered Domain" - #querry the Domain object - try: - c = Client('http://localhost:8001/3.0', API_USER, API_PASS) - except AttributeError, e: - message="REST API not found / Offline" - try: - d = c.get_domain(web_host=web_host) - #workaround LP:802971 - only lists of the current domain #todo a8 - domainname= d.mail_host - for list in c.lists: - if list.mail_host == domainname: - domain_lists.append(list) - except HTTPError, e: - domain_lists = c.lists - message = str(e.code) + _(" - Accesing from an unregistered Domain - showing all lists") - - #return a Dict with the key used in templates - return {"lists":domain_lists,"domain":domainname, "message":message} - -def render_MAILMAN_THEME(request): - """ This function is a wrapper to render the Mailman Theme Variable from Settings - """ - return {"MAILMAN_THEME":MAILMAN_THEME} - -def extend_ajax(request): - """ This function checks if the request was made using AJAX - Using Ajax template_extend will base_ajax.html else it will be base.html - """ - if request.is_ajax(): - extend_template = "mailman-django/base_ajax.html" - else: - extend_template = "mailman-django/base.html" - return {"extend_template":extend_template} diff --git a/doc/Makefile b/doc/Makefile deleted file mode 100644 index 12bb576..0000000 --- a/doc/Makefile +++ /dev/null @@ -1,130 +0,0 @@ -# Makefile for Sphinx documentation -# - -# You can set these variables from the command line. -SPHINXOPTS = -SPHINXBUILD = sphinx-build -PAPER = -BUILDDIR = _build - -# Internal variables. -PAPEROPT_a4 = -D latex_paper_size=a4 -PAPEROPT_letter = -D latex_paper_size=letter -ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . - -.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest - -help: - @echo "Please use \`make ' where is one of" - @echo " html to make standalone HTML files" - @echo " dirhtml to make HTML files named index.html in directories" - @echo " singlehtml to make a single large HTML file" - @echo " pickle to make pickle files" - @echo " json to make JSON files" - @echo " htmlhelp to make HTML files and a HTML help project" - @echo " qthelp to make HTML files and a qthelp project" - @echo " devhelp to make HTML files and a Devhelp project" - @echo " epub to make an epub" - @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" - @echo " latexpdf to make LaTeX files and run them through pdflatex" - @echo " text to make text files" - @echo " man to make manual pages" - @echo " changes to make an overview of all changed/added/deprecated items" - @echo " linkcheck to check all external links for integrity" - @echo " doctest to run all doctests embedded in the documentation (if enabled)" - -clean: - -rm -rf $(BUILDDIR)/* - -html: - $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." - -dirhtml: - $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml - @echo - @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." - -singlehtml: - $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml - @echo - @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." - -pickle: - $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle - @echo - @echo "Build finished; now you can process the pickle files." - -json: - $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json - @echo - @echo "Build finished; now you can process the JSON files." - -htmlhelp: - $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp - @echo - @echo "Build finished; now you can run HTML Help Workshop with the" \ - ".hhp project file in $(BUILDDIR)/htmlhelp." - -qthelp: - $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp - @echo - @echo "Build finished; now you can run "qcollectiongenerator" with the" \ - ".qhcp project file in $(BUILDDIR)/qthelp, like this:" - @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/mailman_django.qhcp" - @echo "To view the help file:" - @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/mailman_django.qhc" - -devhelp: - $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp - @echo - @echo "Build finished." - @echo "To view the help file:" - @echo "# mkdir -p $$HOME/.local/share/devhelp/mailman_django" - @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/mailman_django" - @echo "# devhelp" - -epub: - $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub - @echo - @echo "Build finished. The epub file is in $(BUILDDIR)/epub." - -latex: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo - @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." - @echo "Run \`make' in that directory to run these through (pdf)latex" \ - "(use \`make latexpdf' here to do that automatically)." - -latexpdf: - $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex - @echo "Running LaTeX files through pdflatex..." - make -C $(BUILDDIR)/latex all-pdf - @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." - -text: - $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text - @echo - @echo "Build finished. The text files are in $(BUILDDIR)/text." - -man: - $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man - @echo - @echo "Build finished. The manual pages are in $(BUILDDIR)/man." - -changes: - $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes - @echo - @echo "The overview file is in $(BUILDDIR)/changes." - -linkcheck: - $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck - @echo - @echo "Link check complete; look for any errors in the above output " \ - "or in $(BUILDDIR)/linkcheck/output.txt." - -doctest: - $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest - @echo "Testing of doctests in the sources finished, look at the " \ - "results in $(BUILDDIR)/doctest/output.txt." diff --git a/doc/_build/doctrees/acknowledgements.doctree b/doc/_build/doctrees/acknowledgements.doctree deleted file mode 100644 index b038c50..0000000 --- a/doc/_build/doctrees/acknowledgements.doctree +++ /dev/null Binary files differ diff --git a/doc/_build/doctrees/environment.pickle b/doc/_build/doctrees/environment.pickle deleted file mode 100644 index f72d38a..0000000 --- a/doc/_build/doctrees/environment.pickle +++ /dev/null Binary files differ diff --git a/doc/_build/doctrees/index.doctree b/doc/_build/doctrees/index.doctree deleted file mode 100644 index c5b1fe5..0000000 --- a/doc/_build/doctrees/index.doctree +++ /dev/null Binary files differ diff --git a/doc/_build/doctrees/license.doctree b/doc/_build/doctrees/license.doctree deleted file mode 100644 index be3eca3..0000000 --- a/doc/_build/doctrees/license.doctree +++ /dev/null Binary files differ diff --git a/doc/_build/doctrees/setup.doctree b/doc/_build/doctrees/setup.doctree deleted file mode 100644 index 5426668..0000000 --- a/doc/_build/doctrees/setup.doctree +++ /dev/null Binary files differ diff --git a/doc/_build/doctrees/using.doctree b/doc/_build/doctrees/using.doctree deleted file mode 100644 index 88ea4c3..0000000 --- a/doc/_build/doctrees/using.doctree +++ /dev/null Binary files differ diff --git a/doc/_build/html/.buildinfo b/doc/_build/html/.buildinfo deleted file mode 100644 index bfab212..0000000 --- a/doc/_build/html/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: d09bb35413d67772527e3e0e86203d54 -tags: fbb0d17656682115ca4d033fb2f83ba1 diff --git a/doc/_build/html/_sources/acknowledgements.txt b/doc/_build/html/_sources/acknowledgements.txt deleted file mode 100644 index 4abdd73..0000000 --- a/doc/_build/html/_sources/acknowledgements.txt +++ /dev/null @@ -1,37 +0,0 @@ -Acknowledgements -================ - -Test Server ------------ - -We're proud to provide you a development server which is sponsered by XXX #Todo -Feel free to change anything you like, we can simply rest the DB from Time to Time. - -Missing Functionality ---------------------- - -* Delete Domain - * missing in REST - * implemented in mailman3 a8 - -* Show a List of all subscribed users - -ACL ---- - -* Middleware - - We don't have the Middleware which is required to work with users and it's permissions yet. For this reason we had to tweak some functions to be a hardcoded Demo object. - - * Login Check - At the moment we're using a hardcoded List of allowed usernames and Passwords which are all stored in Plain within the AuthBackends Source File. - * has_perm Decorator - As we don't have a middleware to check for users and it's permissions we do only use one permission at the moment. The permission site domain_admin is hardcoded to user.username == "james@example.com" - - - -Ideas ------ - -* ContactPage -* diff --git a/doc/_build/html/_sources/index.txt b/doc/_build/html/_sources/index.txt deleted file mode 100644 index a241ad8..0000000 --- a/doc/_build/html/_sources/index.txt +++ /dev/null @@ -1,19 +0,0 @@ -.. mailman_django documentation master file, created by - sphinx-quickstart on Wed Aug 17 15:43:10 2011. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mailman_django's documentation! -========================================== - -Contents: - -.. toctree:: - :maxdepth: 2 - - setup.rst - using.rst - acknowledgements.rst - license.rst - -* :ref:`search` diff --git a/doc/_build/html/_sources/license.txt b/doc/_build/html/_sources/license.txt deleted file mode 100644 index 9d427c5..0000000 --- a/doc/_build/html/_sources/license.txt +++ /dev/null @@ -1,34 +0,0 @@ -Contributions: -============== -Mailman is licensed unter *GPL* ------------------------------ -Copyright (C) 1998-2010 by the Free Software Foundation, Inc. - -This file is part of GNU Mailman. - -GNU Mailman 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. - -GNU Mailman 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 -GNU Mailman. If not, see . - -RRZE Icon Set -------------- - -**CreativeCommons Licence** - -The RRZE Icon Set is licenced under a Creative Commons Licence. -Please see the website for the current licence text. - -More information about the Project could be found here: -http://rrze-icon-set.berlios.de/licence.html - -Special thanks to: -* Franziska Sponsel (created additional Icons specially for our Project) diff --git a/doc/_build/html/_sources/setup.txt b/doc/_build/html/_sources/setup.txt deleted file mode 100644 index 70c7768..0000000 --- a/doc/_build/html/_sources/setup.txt +++ /dev/null @@ -1,187 +0,0 @@ -Installation -============ - -Mailman3 - a7 -------------- - -* Check Dependecys - .. note:: - This might differ on different systems - I was testing Ubuntu 11.04 natty and needed to install Postfix before running the installation. -* Download or branch Mailman3a7 from http://launchpad.net/mailman/3.0/3.0.0a7/+download/mailman-3.0.0a7.tar.gz and unpack it. -* Change into the unpacked DIR which might be named "mailman-3.0.0a7" - .. note:: - Please be aware that the following steps only work if you're really in that DIR. If you consider adding a subfolder name to the commands those woun't work ! -* Run the Installation from a Shell (not Python) - - .. code-block:: bash - - $ python bootstrap.py - $ bin/buildout - -* Vertify that everything was setup correclty and your branch fullfills the version requirements by running it's own test module - - .. code-block:: bash - - $ bin/test - -* Now you're able to run mailman using - - .. code-block:: bash - - $ bin/mailman - -Mailman Client / REST Api -------------------------- - -Next thing you need to do is installing the Plugin used for communication with non-mailman-code parts like our WebUI. Within the Client Branch we've put both, Classes to access the Core which are run as a Plugin and some Python Bindings. -The Python Bindings were used later on within our Django Application to access the Server. Failing to install the Client would result in an offline version of WebUI - -Once again start by branching the code which is on Launchpad - - .. code-block:: bash - - $ bzr branch lp:mailman.client - -.. note:: - We've successfully tested our functionality with Revision 16 - In case the Client gets updated which it surely will in future we can't guarentee that it is compatible anymore. - -As you only want to run the Client and not modify it's code you're fine with running the install command from within the directory. At the moment this requires Sudo Priveledges as files will copied to the Python Site-Packages Directory which is available to all users. - - .. code-block:: bash - - $ sudo python setup.py install - -.. note:: - If you want to change parts of the Client you can use the development option which will create a Symlink instead of a Hardcopy of all files: - - .. code-block:: bash - - $ sudo python setup.py develop - -All changes will apply once you restart Mailman itself. - -Django 1.3 ----------- -During our development we started a Django Site based on the 1.2 Version which is included into Ubuntu's repositorys. This made the installation easy but we ended up having some points which would get a much better code when using some elements introducing in 1.3. -As Mailman is supposed to be long-time stable - or however you call it - we decided that we should stick to the latest stable version right away. For this reason you're required to install Django 1.3+ which is descriped on their Website. (https://www.djangoproject.com/download/) - -.. note:: - Please be Aware that it's not recommended to run both 1.2 and 1.3 at the same time - -In Django you've got 3 different levels of data. -- Django Installation Files -- Django Site -- Django Apps -usually you don't see the Installation as it's hidden somewhere within the System and the Apps are simply included into The Site Directory. -As we wanted to have the possibility to include the App into any Django Site which might already exist we decided to keep Site and App seperated. - -During GSoC we've used different branches for this: -- lp:mailmanwebgsoc2011 -- lp:mailmanwebgsoc2011/django-site-0.1 - -Django Site Installation ------------------------- - -We've created this branch for quick development - everyone is free to use his own Django site, but this one already includes a couple of modifications we've made that will allow running the Development Server just a few seconds after Branching both Site and App. - -As far as I know at the moment we've made the following alignments: (All of these are in the settings.py file of the Django Site) - - REST_SERVER = 'localhost:8001' - API_USER = 'restadmin' - API_PASS = 'restpass' - - .. note:: - These are the default values used by the Mailman Client we've installed earlier. Feel free to modify the password and username if you need to. - -MAILMAN_TEST_BINDIR = '/home/benste/Projects/Gsoc_mailman/mailman-3.0.0a7/bin' -#/home/florian/Development/mailman/bin' - - .. note:: Running the test modules requires to launch a special version of mailman with it's own testing DB otherwise you'd destroy you're sites content during testing. This Path needs to point to YOUR own installation of mailman. - -MAILMAN_THEME = "default" - - .. note:: - We decided to allow simple Appearance Modifications, to use a custom CSS you could simply add a Directory within the media directory of the app and Link it's name here. All HTML Pages will use the Styles from the Directory mentioned in here - -PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) -MEDIA_ROOT = os.path.join(os.path.split(PROJECT_PATH)[0], "mailman_django/media/mailman_django/") - .. note:: - Absolute path to the directory that holds media. - Example: "/home/media/media.lawrence.com/" - -MEDIA_URL = '/mailman_media/' - - .. note:: - URL that handles the media served from MEDIA_ROOT. Make sure to use a trailing slash if there is a path component (optional in other cases).Examples: "http://media.lawrence.com", "http://example.com/media/" - -AUTHENTICATION_BACKENDS = ( - 'mailman_django.auth.restbackend.RESTBackend', - 'django.contrib.auth.backends.ModelBackend' - ) - - .. note:: - This creates a connection in between Djangos Login and Permission Decorators which we use for authentification and a custom Backend which we created in Preparation to work together with the REST API or an upcoming Middleware. - You need to keep the Django one for testing fallback. - -TEMPLATE_CONTEXT_PROCESSORS=( - "django.contrib.auth.context_processors.auth", - "django.core.context_processors.debug", - "django.core.context_processors.i18n", - "django.core.context_processors.media", - "django.core.context_processors.csrf", - "django.contrib.messages.context_processors.messages", - "mailman_django.context_processors.lists_of_domain", - "mailman_django.context_processors.render_MAILMAN_THEME", - "mailman_django.context_processors.extend_ajax" - - .. note:: - We're using Context Processors to easily render value which we need in nearly every view. - -ROOT_URLCONF = 'mailman_django.urls' - - .. note:: - This is where our URL Config is - if you run your own site with other Apps as well you might want to adjust this to your urls.py which includes our file. - -TEMPLATE_DIRS = ( - os.path.join(PROJECT_PATH, "mailman_django/templates"), - - .. note:: - Adds our own Templates - -INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.admin', - 'mailman_django', - - .. note:: - Makes sure that Django knows about our directory as an App and creates needed Tables () when running - - .. code-block:: bash - - $ python manage.py syncdb - -Now that you know about all these you might start the development server. As usual in Django this is done by running - - .. code-block:: bash - - $ python manage.py runserver - -within the Django Site Directory - as usual the default address is localhost:8000 -Of course it will only be able to start once our app is in place as well. - -Django Application ------------------- -First get the files, and make sure you paste them into your Project directory and adjust it's name to the appropriate configuration you've made earlier in the Django Site. Remeber our default is mailman_django - - .. code-block:: bash - - $ bzr branch lp:mailmanwebgsoc2011 - -.. note:: - We've tested Revision 172 - -.. note:: - We're planning to ease up installation by creating an egg diff --git a/doc/_build/html/_sources/using.txt b/doc/_build/html/_sources/using.txt deleted file mode 100644 index 94f842d..0000000 --- a/doc/_build/html/_sources/using.txt +++ /dev/null @@ -1,29 +0,0 @@ -Using the Django App - Developers Resource -========================================== - -.. automodule:: tests.tests - -Running the tests explained above. ----------------------------------- -We've added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site. - -Run the following in the Site Directory - - .. code-block:: bash - - $ python manage.py test - -.. note:: - Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it's own mailman temporily. - -Accessing the REST Client for Testing -------------------------------------- - -If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it's current Directory within the Django Site Directory. - - .. code-block:: python - - from settings import API_USER, API_PASS - from mailman.client import Client - c = Client('http://localhost:8001/3.0', API_USER, API_PASS) - #DEBUG: Python Session diff --git a/doc/_build/html/_static/basic.css b/doc/_build/html/_static/basic.css deleted file mode 100644 index 69f30d4..0000000 --- a/doc/_build/html/_static/basic.css +++ /dev/null @@ -1,509 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -img { - border: 0; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable dl, table.indextable dd { - margin-top: 0; - margin-bottom: 0; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- general body styles --------------------------------------------------- */ - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.field-list ul { - padding-left: 1em; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -.align-left { - text-align: left; -} - -.align-center { - clear: both; - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.field-list td, table.field-list th { - border: 0 !important; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -.refcount { - color: #060; -} - -.optional { - font-size: 1.3em; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -tt.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -tt.descclassname { - background-color: transparent; -} - -tt.xref, a tt { - background-color: transparent; - font-weight: bold; -} - -h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} diff --git a/doc/_build/html/_static/default.css b/doc/_build/html/_static/default.css deleted file mode 100644 index b30cb79..0000000 --- a/doc/_build/html/_static/default.css +++ /dev/null @@ -1,255 +0,0 @@ -/* - * default.css_t - * ~~~~~~~~~~~~~ - * - * Sphinx stylesheet -- default theme. - * - * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -@import url("basic.css"); - -/* -- page layout ----------------------------------------------------------- */ - -body { - font-family: sans-serif; - font-size: 100%; - background-color: #11303d; - color: #000; - margin: 0; - padding: 0; -} - -div.document { - background-color: #1c4e63; -} - -div.documentwrapper { - float: left; - width: 100%; -} - -div.bodywrapper { - margin: 0 0 0 230px; -} - -div.body { - background-color: #ffffff; - color: #000000; - padding: 0 20px 30px 20px; -} - -div.footer { - color: #ffffff; - width: 100%; - padding: 9px 0 9px 0; - text-align: center; - font-size: 75%; -} - -div.footer a { - color: #ffffff; - text-decoration: underline; -} - -div.related { - background-color: #133f52; - line-height: 30px; - color: #ffffff; -} - -div.related a { - color: #ffffff; -} - -div.sphinxsidebar { -} - -div.sphinxsidebar h3 { - font-family: 'Trebuchet MS', sans-serif; - color: #ffffff; - font-size: 1.4em; - font-weight: normal; - margin: 0; - padding: 0; -} - -div.sphinxsidebar h3 a { - color: #ffffff; -} - -div.sphinxsidebar h4 { - font-family: 'Trebuchet MS', sans-serif; - color: #ffffff; - font-size: 1.3em; - font-weight: normal; - margin: 5px 0 0 0; - padding: 0; -} - -div.sphinxsidebar p { - color: #ffffff; -} - -div.sphinxsidebar p.topless { - margin: 5px 10px 10px 10px; -} - -div.sphinxsidebar ul { - margin: 10px; - padding: 0; - color: #ffffff; -} - -div.sphinxsidebar a { - color: #98dbcc; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - - -/* -- hyperlink styles ------------------------------------------------------ */ - -a { - color: #355f7c; - text-decoration: none; -} - -a:visited { - color: #355f7c; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - - - -/* -- body styles ----------------------------------------------------------- */ - -div.body h1, -div.body h2, -div.body h3, -div.body h4, -div.body h5, -div.body h6 { - font-family: 'Trebuchet MS', sans-serif; - background-color: #f2f2f2; - font-weight: normal; - color: #20435c; - border-bottom: 1px solid #ccc; - margin: 20px -20px 10px -20px; - padding: 3px 0 3px 10px; -} - -div.body h1 { margin-top: 0; font-size: 200%; } -div.body h2 { font-size: 160%; } -div.body h3 { font-size: 140%; } -div.body h4 { font-size: 120%; } -div.body h5 { font-size: 110%; } -div.body h6 { font-size: 100%; } - -a.headerlink { - color: #c60f0f; - font-size: 0.8em; - padding: 0 4px 0 4px; - text-decoration: none; -} - -a.headerlink:hover { - background-color: #c60f0f; - color: white; -} - -div.body p, div.body dd, div.body li { - text-align: justify; - line-height: 130%; -} - -div.admonition p.admonition-title + p { - display: inline; -} - -div.admonition p { - margin-bottom: 5px; -} - -div.admonition pre { - margin-bottom: 5px; -} - -div.admonition ul, div.admonition ol { - margin-bottom: 5px; -} - -div.note { - background-color: #eee; - border: 1px solid #ccc; -} - -div.seealso { - background-color: #ffc; - border: 1px solid #ff6; -} - -div.topic { - background-color: #eee; -} - -div.warning { - background-color: #ffe4e4; - border: 1px solid #f66; -} - -p.admonition-title { - display: inline; -} - -p.admonition-title:after { - content: ":"; -} - -pre { - padding: 5px; - background-color: #eeffcc; - color: #333333; - line-height: 120%; - border: 1px solid #ac9; - border-left: none; - border-right: none; -} - -tt { - background-color: #ecf0f3; - padding: 0 1px 0 1px; - font-size: 0.95em; -} - -th { - background-color: #ede; -} - -.warning tt { - background: #efc2c2; -} - -.note tt { - background: #d6d6d6; -} - -.viewcode-back { - font-family: sans-serif; -} - -div.viewcode-block:target { - background-color: #f4debf; - border-top: 1px solid #ac9; - border-bottom: 1px solid #ac9; -} \ No newline at end of file diff --git a/doc/_build/html/_static/doctools.js b/doc/_build/html/_static/doctools.js deleted file mode 100644 index eeea95e..0000000 --- a/doc/_build/html/_static/doctools.js +++ /dev/null @@ -1,247 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilties for all documentation. - * - * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - */ -jQuery.urldecode = function(x) { - return decodeURIComponent(x).replace(/\+/g, ' '); -} - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s == 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * small function to check if an array contains - * a given item. - */ -jQuery.contains = function(arr, item) { - for (var i = 0; i < arr.length; i++) { - if (arr[i] == item) - return true; - } - return false; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node) { - if (node.nodeType == 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { - var span = document.createElement("span"); - span.className = className; - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this); - }); - } - } - return this.each(function() { - highlight(this); - }); -}; - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated == 'undefined') - return string; - return (typeof translated == 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated == 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash && $.browser.mozilla) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('.sidebar .this-page-menu')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) == 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this == '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); diff --git a/doc/_build/html/_static/file.png b/doc/_build/html/_static/file.png deleted file mode 100644 index d18082e..0000000 --- a/doc/_build/html/_static/file.png +++ /dev/null Binary files differ diff --git a/doc/_build/html/_static/jquery.js b/doc/_build/html/_static/jquery.js deleted file mode 100644 index 5c99a8d..0000000 --- a/doc/_build/html/_static/jquery.js +++ /dev/null @@ -1,8176 +0,0 @@ -/*! - * jQuery JavaScript Library v1.5 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Mon Jan 31 08:31:29 2011 -0500 - */ -(function( window, undefined ) { - -// Use the correct document accordingly with window argument (sandbox) -var document = window.document; -var jQuery = (function() { - -// Define a local copy of jQuery -var jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' - return new jQuery.fn.init( selector, context, rootjQuery ); - }, - - // Map over jQuery in case of overwrite - _jQuery = window.jQuery, - - // Map over the $ in case of overwrite - _$ = window.$, - - // A central reference to the root jQuery(document) - rootjQuery, - - // A simple way to check for HTML strings or ID strings - // (both of which we optimize for) - quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/, - - // Check if a string has a non-whitespace character in it - rnotwhite = /\S/, - - // Used for trimming whitespace - trimLeft = /^\s+/, - trimRight = /\s+$/, - - // Check for digits - rdigit = /\d/, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, - - // JSON RegExp - rvalidchars = /^[\],:{}\s]*$/, - rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, - rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, - rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, - - // Useragent RegExp - rwebkit = /(webkit)[ \/]([\w.]+)/, - ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, - rmsie = /(msie) ([\w.]+)/, - rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, - - // Keep a UserAgent string for use with jQuery.browser - userAgent = navigator.userAgent, - - // For matching the engine and version of the browser - browserMatch, - - // Has the ready events already been bound? - readyBound = false, - - // The deferred used on DOM ready - readyList, - - // Promise methods - promiseMethods = "then done fail isResolved isRejected promise".split( " " ), - - // The ready event handler - DOMContentLoaded, - - // Save a reference to some core methods - toString = Object.prototype.toString, - hasOwn = Object.prototype.hasOwnProperty, - push = Array.prototype.push, - slice = Array.prototype.slice, - trim = String.prototype.trim, - indexOf = Array.prototype.indexOf, - - // [[Class]] -> type pairs - class2type = {}; - -jQuery.fn = jQuery.prototype = { - constructor: jQuery, - init: function( selector, context, rootjQuery ) { - var match, elem, ret, doc; - - // Handle $(""), $(null), or $(undefined) - if ( !selector ) { - return this; - } - - // Handle $(DOMElement) - if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - } - - // The body element only exists once, optimize finding it - if ( selector === "body" && !context && document.body ) { - this.context = document; - this[0] = document.body; - this.selector = "body"; - this.length = 1; - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - // Are we dealing with HTML string or an ID? - match = quickExpr.exec( selector ); - - // Verify a match, and that no context was specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - context = context instanceof jQuery ? context[0] : context; - doc = (context ? context.ownerDocument || context : document); - - // If a single string is passed in and it's a single tag - // just do a createElement and skip the rest - ret = rsingleTag.exec( selector ); - - if ( ret ) { - if ( jQuery.isPlainObject( context ) ) { - selector = [ document.createElement( ret[1] ) ]; - jQuery.fn.attr.call( selector, context, true ); - - } else { - selector = [ doc.createElement( ret[1] ) ]; - } - - } else { - ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); - selector = (ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment).childNodes; - } - - return jQuery.merge( this, selector ); - - // HANDLE: $("#id") - } else { - elem = document.getElementById( match[2] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return (context || rootjQuery).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return this.constructor( context ).find( selector ); - } - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if (selector.selector !== undefined) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The current version of jQuery being used - jquery: "1.5", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return slice.call( this, 0 ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this[ this.length + num ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems, name, selector ) { - // Build a new jQuery matched element set - var ret = this.constructor(); - - if ( jQuery.isArray( elems ) ) { - push.apply( ret, elems ); - - } else { - jQuery.merge( ret, elems ); - } - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - ret.context = this.context; - - if ( name === "find" ) { - ret.selector = this.selector + (this.selector ? " " : "") + selector; - } else if ( name ) { - ret.selector = this.selector + "." + name + "(" + selector + ")"; - } - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Attach the listeners - jQuery.bindReady(); - - // Add the callback - readyList.done( fn ); - - return this; - }, - - eq: function( i ) { - return i === -1 ? - this.slice( i ) : - this.slice( i, +i + 1 ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ), - "slice", slice.call(arguments).join(",") ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || this.constructor(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[0] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray(src) ? src : []; - - } else { - clone = src && jQuery.isPlainObject(src) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - window.$ = _$; - - if ( deep ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // A counter to track how many items to wait for before - // the ready event fires. See #6781 - readyWait: 1, - - // Handle when the DOM is ready - ready: function( wait ) { - // A third-party is pushing the ready event forwards - if ( wait === true ) { - jQuery.readyWait--; - } - - // Make sure that the DOM is not already loaded - if ( !jQuery.readyWait || (wait !== true && !jQuery.isReady) ) { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready, 1 ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If a normal DOM Ready event fired, decrement, and wait if need be - if ( wait !== true && --jQuery.readyWait > 0 ) { - return; - } - - // If there are functions bound, to execute - readyList.resolveWith( document, [ jQuery ] ); - - // Trigger any bound ready events - if ( jQuery.fn.trigger ) { - jQuery( document ).trigger( "ready" ).unbind( "ready" ); - } - } - }, - - bindReady: function() { - if ( readyBound ) { - return; - } - - readyBound = true; - - // Catch cases where $(document).ready() is called after the - // browser event has already occurred. - if ( document.readyState === "complete" ) { - // Handle it asynchronously to allow scripts the opportunity to delay ready - return setTimeout( jQuery.ready, 1 ); - } - - // Mozilla, Opera and webkit nightlies currently support this event - if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", jQuery.ready, false ); - - // If IE event model is used - } else if ( document.attachEvent ) { - // ensure firing before onload, - // maybe late but safe also for iframes - document.attachEvent("onreadystatechange", DOMContentLoaded); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", jQuery.ready ); - - // If IE and not a frame - // continually check to see if the document is ready - var toplevel = false; - - try { - toplevel = window.frameElement == null; - } catch(e) {} - - if ( document.documentElement.doScroll && toplevel ) { - doScrollCheck(); - } - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return jQuery.type(obj) === "function"; - }, - - isArray: Array.isArray || function( obj ) { - return jQuery.type(obj) === "array"; - }, - - // A crude way of determining if an object is a window - isWindow: function( obj ) { - return obj && typeof obj === "object" && "setInterval" in obj; - }, - - isNaN: function( obj ) { - return obj == null || !rdigit.test( obj ) || isNaN( obj ); - }, - - type: function( obj ) { - return obj == null ? - String( obj ) : - class2type[ toString.call(obj) ] || "object"; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { - return false; - } - - // Not own constructor property must be Object - if ( obj.constructor && - !hasOwn.call(obj, "constructor") && - !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || hasOwn.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - for ( var name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw msg; - }, - - parseJSON: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( rvalidchars.test(data.replace(rvalidescape, "@") - .replace(rvalidtokens, "]") - .replace(rvalidbraces, "")) ) { - - // Try to use the native JSON parser first - return window.JSON && window.JSON.parse ? - window.JSON.parse( data ) : - (new Function("return " + data))(); - - } else { - jQuery.error( "Invalid JSON: " + data ); - } - }, - - // Cross-browser xml parsing - // (xml & tmp used internally) - parseXML: function( data , xml , tmp ) { - - if ( window.DOMParser ) { // Standard - tmp = new DOMParser(); - xml = tmp.parseFromString( data , "text/xml" ); - } else { // IE - xml = new ActiveXObject( "Microsoft.XMLDOM" ); - xml.async = "false"; - xml.loadXML( data ); - } - - tmp = xml.documentElement; - - if ( ! tmp || ! tmp.nodeName || tmp.nodeName === "parsererror" ) { - jQuery.error( "Invalid XML: " + data ); - } - - return xml; - }, - - noop: function() {}, - - // Evalulates a script in a global context - globalEval: function( data ) { - if ( data && rnotwhite.test(data) ) { - // Inspired by code by Andrea Giammarchi - // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html - var head = document.getElementsByTagName("head")[0] || document.documentElement, - script = document.createElement("script"); - - script.type = "text/javascript"; - - if ( jQuery.support.scriptEval() ) { - script.appendChild( document.createTextNode( data ) ); - } else { - script.text = data; - } - - // Use insertBefore instead of appendChild to circumvent an IE6 bug. - // This arises when a base node is used (#2709). - head.insertBefore( script, head.firstChild ); - head.removeChild( script ); - } - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); - }, - - // args is for internal usage only - each: function( object, callback, args ) { - var name, i = 0, - length = object.length, - isObj = length === undefined || jQuery.isFunction(object); - - if ( args ) { - if ( isObj ) { - for ( name in object ) { - if ( callback.apply( object[ name ], args ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.apply( object[ i++ ], args ) === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isObj ) { - for ( name in object ) { - if ( callback.call( object[ name ], name, object[ name ] ) === false ) { - break; - } - } - } else { - for ( var value = object[0]; - i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {} - } - } - - return object; - }, - - // Use native String.trim function wherever possible - trim: trim ? - function( text ) { - return text == null ? - "" : - trim.call( text ); - } : - - // Otherwise use our own trimming functionality - function( text ) { - return text == null ? - "" : - text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); - }, - - // results is for internal usage only - makeArray: function( array, results ) { - var ret = results || []; - - if ( array != null ) { - // The window, strings (and functions) also have 'length' - // The extra typeof function check is to prevent crashes - // in Safari 2 (See: #3039) - // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 - var type = jQuery.type(array); - - if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { - push.call( ret, array ); - } else { - jQuery.merge( ret, array ); - } - } - - return ret; - }, - - inArray: function( elem, array ) { - if ( array.indexOf ) { - return array.indexOf( elem ); - } - - for ( var i = 0, length = array.length; i < length; i++ ) { - if ( array[ i ] === elem ) { - return i; - } - } - - return -1; - }, - - merge: function( first, second ) { - var i = first.length, - j = 0; - - if ( typeof second.length === "number" ) { - for ( var l = second.length; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var ret = [], retVal; - inv = !!inv; - - // Go through the array, only saving the items - // that pass the validator function - for ( var i = 0, length = elems.length; i < length; i++ ) { - retVal = !!callback( elems[ i ], i ); - if ( inv !== retVal ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var ret = [], value; - - // Go through the array, translating each of the items to their - // new value (or values). - for ( var i = 0, length = elems.length; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - // Flatten any nested arrays - return ret.concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - proxy: function( fn, proxy, thisObject ) { - if ( arguments.length === 2 ) { - if ( typeof proxy === "string" ) { - thisObject = fn; - fn = thisObject[ proxy ]; - proxy = undefined; - - } else if ( proxy && !jQuery.isFunction( proxy ) ) { - thisObject = proxy; - proxy = undefined; - } - } - - if ( !proxy && fn ) { - proxy = function() { - return fn.apply( thisObject || this, arguments ); - }; - } - - // Set the guid of unique handler to the same of original handler, so it can be removed - if ( fn ) { - proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; - } - - // So proxy can be declared as an argument - return proxy; - }, - - // Mutifunctional method to get and set values to a collection - // The value/s can be optionally by executed if its a function - access: function( elems, key, value, exec, fn, pass ) { - var length = elems.length; - - // Setting many attributes - if ( typeof key === "object" ) { - for ( var k in key ) { - jQuery.access( elems, k, key[k], exec, fn, value ); - } - return elems; - } - - // Setting one attribute - if ( value !== undefined ) { - // Optionally, function values get executed if exec is true - exec = !pass && exec && jQuery.isFunction(value); - - for ( var i = 0; i < length; i++ ) { - fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); - } - - return elems; - } - - // Getting an attribute - return length ? fn( elems[0], key ) : undefined; - }, - - now: function() { - return (new Date()).getTime(); - }, - - // Create a simple deferred (one callbacks list) - _Deferred: function() { - var // callbacks list - callbacks = [], - // stored [ context , args ] - fired, - // to avoid firing when already doing so - firing, - // flag to know if the deferred has been cancelled - cancelled, - // the deferred itself - deferred = { - - // done( f1, f2, ...) - done: function() { - if ( !cancelled ) { - var args = arguments, - i, - length, - elem, - type, - _fired; - if ( fired ) { - _fired = fired; - fired = 0; - } - for ( i = 0, length = args.length; i < length; i++ ) { - elem = args[ i ]; - type = jQuery.type( elem ); - if ( type === "array" ) { - deferred.done.apply( deferred, elem ); - } else if ( type === "function" ) { - callbacks.push( elem ); - } - } - if ( _fired ) { - deferred.resolveWith( _fired[ 0 ], _fired[ 1 ] ); - } - } - return this; - }, - - // resolve with given context and args - resolveWith: function( context, args ) { - if ( !cancelled && !fired && !firing ) { - firing = 1; - try { - while( callbacks[ 0 ] ) { - callbacks.shift().apply( context, args ); - } - } - finally { - fired = [ context, args ]; - firing = 0; - } - } - return this; - }, - - // resolve with this as context and given arguments - resolve: function() { - deferred.resolveWith( jQuery.isFunction( this.promise ) ? this.promise() : this, arguments ); - return this; - }, - - // Has this deferred been resolved? - isResolved: function() { - return !!( firing || fired ); - }, - - // Cancel - cancel: function() { - cancelled = 1; - callbacks = []; - return this; - } - }; - - return deferred; - }, - - // Full fledged deferred (two callbacks list) - Deferred: function( func ) { - var deferred = jQuery._Deferred(), - failDeferred = jQuery._Deferred(), - promise; - // Add errorDeferred methods, then and promise - jQuery.extend( deferred, { - then: function( doneCallbacks, failCallbacks ) { - deferred.done( doneCallbacks ).fail( failCallbacks ); - return this; - }, - fail: failDeferred.done, - rejectWith: failDeferred.resolveWith, - reject: failDeferred.resolve, - isRejected: failDeferred.isResolved, - // Get a promise for this deferred - // If obj is provided, the promise aspect is added to the object - promise: function( obj , i /* internal */ ) { - if ( obj == null ) { - if ( promise ) { - return promise; - } - promise = obj = {}; - } - i = promiseMethods.length; - while( i-- ) { - obj[ promiseMethods[ i ] ] = deferred[ promiseMethods[ i ] ]; - } - return obj; - } - } ); - // Make sure only one callback list will be used - deferred.then( failDeferred.cancel, deferred.cancel ); - // Unexpose cancel - delete deferred.cancel; - // Call given func if any - if ( func ) { - func.call( deferred, deferred ); - } - return deferred; - }, - - // Deferred helper - when: function( object ) { - var args = arguments, - length = args.length, - deferred = length <= 1 && object && jQuery.isFunction( object.promise ) ? - object : - jQuery.Deferred(), - promise = deferred.promise(), - resolveArray; - - if ( length > 1 ) { - resolveArray = new Array( length ); - jQuery.each( args, function( index, element ) { - jQuery.when( element ).then( function( value ) { - resolveArray[ index ] = arguments.length > 1 ? slice.call( arguments, 0 ) : value; - if( ! --length ) { - deferred.resolveWith( promise, resolveArray ); - } - }, deferred.reject ); - } ); - } else if ( deferred !== object ) { - deferred.resolve( object ); - } - return promise; - }, - - // Use of jQuery.browser is frowned upon. - // More details: http://docs.jquery.com/Utilities/jQuery.browser - uaMatch: function( ua ) { - ua = ua.toLowerCase(); - - var match = rwebkit.exec( ua ) || - ropera.exec( ua ) || - rmsie.exec( ua ) || - ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || - []; - - return { browser: match[1] || "", version: match[2] || "0" }; - }, - - sub: function() { - function jQuerySubclass( selector, context ) { - return new jQuerySubclass.fn.init( selector, context ); - } - jQuery.extend( true, jQuerySubclass, this ); - jQuerySubclass.superclass = this; - jQuerySubclass.fn = jQuerySubclass.prototype = this(); - jQuerySubclass.fn.constructor = jQuerySubclass; - jQuerySubclass.subclass = this.subclass; - jQuerySubclass.fn.init = function init( selector, context ) { - if ( context && context instanceof jQuery && !(context instanceof jQuerySubclass) ) { - context = jQuerySubclass(context); - } - - return jQuery.fn.init.call( this, selector, context, rootjQuerySubclass ); - }; - jQuerySubclass.fn.init.prototype = jQuerySubclass.fn; - var rootjQuerySubclass = jQuerySubclass(document); - return jQuerySubclass; - }, - - browser: {} -}); - -// Create readyList deferred -readyList = jQuery._Deferred(); - -// Populate the class2type map -jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -}); - -browserMatch = jQuery.uaMatch( userAgent ); -if ( browserMatch.browser ) { - jQuery.browser[ browserMatch.browser ] = true; - jQuery.browser.version = browserMatch.version; -} - -// Deprecated, use jQuery.browser.webkit instead -if ( jQuery.browser.webkit ) { - jQuery.browser.safari = true; -} - -if ( indexOf ) { - jQuery.inArray = function( elem, array ) { - return indexOf.call( array, elem ); - }; -} - -// IE doesn't match non-breaking spaces with \s -if ( rnotwhite.test( "\xA0" ) ) { - trimLeft = /^[\s\xA0]+/; - trimRight = /[\s\xA0]+$/; -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); - -// Cleanup functions for the document ready method -if ( document.addEventListener ) { - DOMContentLoaded = function() { - document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - jQuery.ready(); - }; - -} else if ( document.attachEvent ) { - DOMContentLoaded = function() { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( document.readyState === "complete" ) { - document.detachEvent( "onreadystatechange", DOMContentLoaded ); - jQuery.ready(); - } - }; -} - -// The DOM ready check for Internet Explorer -function doScrollCheck() { - if ( jQuery.isReady ) { - return; - } - - try { - // If IE is used, use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - document.documentElement.doScroll("left"); - } catch(e) { - setTimeout( doScrollCheck, 1 ); - return; - } - - // and execute any waiting functions - jQuery.ready(); -} - -// Expose jQuery to the global object -return (window.jQuery = window.$ = jQuery); - -})(); - - -(function() { - - jQuery.support = {}; - - var div = document.createElement("div"); - - div.style.display = "none"; - div.innerHTML = "
a"; - - var all = div.getElementsByTagName("*"), - a = div.getElementsByTagName("a")[0], - select = document.createElement("select"), - opt = select.appendChild( document.createElement("option") ); - - // Can't get basic test support - if ( !all || !all.length || !a ) { - return; - } - - jQuery.support = { - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: div.firstChild.nodeType === 3, - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText insted) - style: /red/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: a.getAttribute("href") === "/a", - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.55$/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Make sure that if no value is specified for a checkbox - // that it defaults to "on". - // (WebKit defaults to "" instead) - checkOn: div.getElementsByTagName("input")[0].value === "on", - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: opt.selected, - - // Will be defined later - deleteExpando: true, - optDisabled: false, - checkClone: false, - _scriptEval: null, - noCloneEvent: true, - boxModel: null, - inlineBlockNeedsLayout: false, - shrinkWrapBlocks: false, - reliableHiddenOffsets: true - }; - - // Make sure that the options inside disabled selects aren't marked as disabled - // (WebKit marks them as diabled) - select.disabled = true; - jQuery.support.optDisabled = !opt.disabled; - - jQuery.support.scriptEval = function() { - if ( jQuery.support._scriptEval === null ) { - var root = document.documentElement, - script = document.createElement("script"), - id = "script" + jQuery.now(); - - script.type = "text/javascript"; - try { - script.appendChild( document.createTextNode( "window." + id + "=1;" ) ); - } catch(e) {} - - root.insertBefore( script, root.firstChild ); - - // Make sure that the execution of code works by injecting a script - // tag with appendChild/createTextNode - // (IE doesn't support this, fails, and uses .text instead) - if ( window[ id ] ) { - jQuery.support._scriptEval = true; - delete window[ id ]; - } else { - jQuery.support._scriptEval = false; - } - - root.removeChild( script ); - // release memory in IE - root = script = id = null; - } - - return jQuery.support._scriptEval; - }; - - // Test to see if it's possible to delete an expando from an element - // Fails in Internet Explorer - try { - delete div.test; - - } catch(e) { - jQuery.support.deleteExpando = false; - } - - if ( div.attachEvent && div.fireEvent ) { - div.attachEvent("onclick", function click() { - // Cloning a node shouldn't copy over any - // bound event handlers (IE does this) - jQuery.support.noCloneEvent = false; - div.detachEvent("onclick", click); - }); - div.cloneNode(true).fireEvent("onclick"); - } - - div = document.createElement("div"); - div.innerHTML = ""; - - var fragment = document.createDocumentFragment(); - fragment.appendChild( div.firstChild ); - - // WebKit doesn't clone checked state correctly in fragments - jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked; - - // Figure out if the W3C box model works as expected - // document.body must exist before we can do this - jQuery(function() { - var div = document.createElement("div"), - body = document.getElementsByTagName("body")[0]; - - // Frameset documents with no body should not run this code - if ( !body ) { - return; - } - - div.style.width = div.style.paddingLeft = "1px"; - body.appendChild( div ); - jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; - - if ( "zoom" in div.style ) { - // Check if natively block-level elements act like inline-block - // elements when setting their display to 'inline' and giving - // them layout - // (IE < 8 does this) - div.style.display = "inline"; - div.style.zoom = 1; - jQuery.support.inlineBlockNeedsLayout = div.offsetWidth === 2; - - // Check if elements with layout shrink-wrap their children - // (IE 6 does this) - div.style.display = ""; - div.innerHTML = "
"; - jQuery.support.shrinkWrapBlocks = div.offsetWidth !== 2; - } - - div.innerHTML = "
t
"; - var tds = div.getElementsByTagName("td"); - - // Check if table cells still have offsetWidth/Height when they are set - // to display:none and there are still other visible table cells in a - // table row; if so, offsetWidth/Height are not reliable for use when - // determining if an element has been hidden directly using - // display:none (it is still safe to use offsets if a parent element is - // hidden; don safety goggles and see bug #4512 for more information). - // (only IE 8 fails this test) - jQuery.support.reliableHiddenOffsets = tds[0].offsetHeight === 0; - - tds[0].style.display = ""; - tds[1].style.display = "none"; - - // Check if empty table cells still have offsetWidth/Height - // (IE < 8 fail this test) - jQuery.support.reliableHiddenOffsets = jQuery.support.reliableHiddenOffsets && tds[0].offsetHeight === 0; - div.innerHTML = ""; - - body.removeChild( div ).style.display = "none"; - div = tds = null; - }); - - // Technique from Juriy Zaytsev - // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ - var eventSupported = function( eventName ) { - var el = document.createElement("div"); - eventName = "on" + eventName; - - // We only care about the case where non-standard event systems - // are used, namely in IE. Short-circuiting here helps us to - // avoid an eval call (in setAttribute) which can cause CSP - // to go haywire. See: https://developer.mozilla.org/en/Security/CSP - if ( !el.attachEvent ) { - return true; - } - - var isSupported = (eventName in el); - if ( !isSupported ) { - el.setAttribute(eventName, "return;"); - isSupported = typeof el[eventName] === "function"; - } - el = null; - - return isSupported; - }; - - jQuery.support.submitBubbles = eventSupported("submit"); - jQuery.support.changeBubbles = eventSupported("change"); - - // release memory in IE - div = all = a = null; -})(); - - - -var rbrace = /^(?:\{.*\}|\[.*\])$/; - -jQuery.extend({ - cache: {}, - - // Please use with caution - uuid: 0, - - // Unique for each copy of jQuery on the page - // Non-digits removed to match rinlinejQuery - expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - // Ban all objects except for Flash (which handle expandos) - "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", - "applet": true - }, - - hasData: function( elem ) { - elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; - - return !!elem && !jQuery.isEmptyObject(elem); - }, - - data: function( elem, name, data, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var internalKey = jQuery.expando, getByName = typeof name === "string", thisCache, - - // We have to handle DOM nodes and JS objects differently because IE6-7 - // can't GC object references properly across the DOM-JS boundary - isNode = elem.nodeType, - - // Only DOM nodes need the global jQuery cache; JS object data is - // attached directly to the object so GC can occur automatically - cache = isNode ? jQuery.cache : elem, - - // Only defining an ID for JS objects if its cache already exists allows - // the code to shortcut on the same path as a DOM node with no cache - id = isNode ? elem[ jQuery.expando ] : elem[ jQuery.expando ] && jQuery.expando; - - // Avoid doing any more work than we need to when trying to get data on an - // object that has no data at all - if ( (!id || (pvt && id && !cache[ id ][ internalKey ])) && getByName && data === undefined ) { - return; - } - - if ( !id ) { - // Only DOM nodes need a new unique ID for each element since their data - // ends up in the global cache - if ( isNode ) { - elem[ jQuery.expando ] = id = ++jQuery.uuid; - } else { - id = jQuery.expando; - } - } - - if ( !cache[ id ] ) { - cache[ id ] = {}; - } - - // An object can be passed to jQuery.data instead of a key/value pair; this gets - // shallow copied over onto the existing cache - if ( typeof name === "object" ) { - if ( pvt ) { - cache[ id ][ internalKey ] = jQuery.extend(cache[ id ][ internalKey ], name); - } else { - cache[ id ] = jQuery.extend(cache[ id ], name); - } - } - - thisCache = cache[ id ]; - - // Internal jQuery data is stored in a separate object inside the object's data - // cache in order to avoid key collisions between internal data and user-defined - // data - if ( pvt ) { - if ( !thisCache[ internalKey ] ) { - thisCache[ internalKey ] = {}; - } - - thisCache = thisCache[ internalKey ]; - } - - if ( data !== undefined ) { - thisCache[ name ] = data; - } - - // TODO: This is a hack for 1.5 ONLY. It will be removed in 1.6. Users should - // not attempt to inspect the internal events object using jQuery.data, as this - // internal data object is undocumented and subject to change. - if ( name === "events" && !thisCache[name] ) { - return thisCache[ internalKey ] && thisCache[ internalKey ].events; - } - - return getByName ? thisCache[ name ] : thisCache; - }, - - removeData: function( elem, name, pvt /* Internal Use Only */ ) { - if ( !jQuery.acceptData( elem ) ) { - return; - } - - var internalKey = jQuery.expando, isNode = elem.nodeType, - - // See jQuery.data for more information - cache = isNode ? jQuery.cache : elem, - - // See jQuery.data for more information - id = isNode ? elem[ jQuery.expando ] : jQuery.expando; - - // If there is already no cache entry for this object, there is no - // purpose in continuing - if ( !cache[ id ] ) { - return; - } - - if ( name ) { - var thisCache = pvt ? cache[ id ][ internalKey ] : cache[ id ]; - - if ( thisCache ) { - delete thisCache[ name ]; - - // If there is no data left in the cache, we want to continue - // and let the cache object itself get destroyed - if ( !jQuery.isEmptyObject(thisCache) ) { - return; - } - } - } - - // See jQuery.data for more information - if ( pvt ) { - delete cache[ id ][ internalKey ]; - - // Don't destroy the parent cache unless the internal data object - // had been the only thing left in it - if ( !jQuery.isEmptyObject(cache[ id ]) ) { - return; - } - } - - var internalCache = cache[ id ][ internalKey ]; - - // Browsers that fail expando deletion also refuse to delete expandos on - // the window, but it will allow it on all other JS objects; other browsers - // don't care - if ( jQuery.support.deleteExpando || cache != window ) { - delete cache[ id ]; - } else { - cache[ id ] = null; - } - - // We destroyed the entire user cache at once because it's faster than - // iterating through each key, but we need to continue to persist internal - // data if it existed - if ( internalCache ) { - cache[ id ] = {}; - cache[ id ][ internalKey ] = internalCache; - - // Otherwise, we need to eliminate the expando on the node to avoid - // false lookups in the cache for entries that no longer exist - } else if ( isNode ) { - // IE does not allow us to delete expando properties from nodes, - // nor does it have a removeAttribute function on Document nodes; - // we must handle all of these cases - if ( jQuery.support.deleteExpando ) { - delete elem[ jQuery.expando ]; - } else if ( elem.removeAttribute ) { - elem.removeAttribute( jQuery.expando ); - } else { - elem[ jQuery.expando ] = null; - } - } - }, - - // For internal use only. - _data: function( elem, name, data ) { - return jQuery.data( elem, name, data, true ); - }, - - // A method for determining if a DOM node can handle the data expando - acceptData: function( elem ) { - if ( elem.nodeName ) { - var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; - - if ( match ) { - return !(match === true || elem.getAttribute("classid") !== match); - } - } - - return true; - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - var data = null; - - if ( typeof key === "undefined" ) { - if ( this.length ) { - data = jQuery.data( this[0] ); - - if ( this[0].nodeType === 1 ) { - var attr = this[0].attributes, name; - for ( var i = 0, l = attr.length; i < l; i++ ) { - name = attr[i].name; - - if ( name.indexOf( "data-" ) === 0 ) { - name = name.substr( 5 ); - dataAttr( this[0], name, data[ name ] ); - } - } - } - } - - return data; - - } else if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - var parts = key.split("."); - parts[1] = parts[1] ? "." + parts[1] : ""; - - if ( value === undefined ) { - data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); - - // Try to fetch any internally stored data first - if ( data === undefined && this.length ) { - data = jQuery.data( this[0], key ); - data = dataAttr( this[0], key, data ); - } - - return data === undefined && parts[1] ? - this.data( parts[0] ) : - data; - - } else { - return this.each(function() { - var $this = jQuery( this ), - args = [ parts[0], value ]; - - $this.triggerHandler( "setData" + parts[1] + "!", args ); - jQuery.data( this, key, value ); - $this.triggerHandler( "changeData" + parts[1] + "!", args ); - }); - } - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); - -function dataAttr( elem, key, data ) { - // If nothing was found internally, try to fetch any - // data from the HTML5 data-* attribute - if ( data === undefined && elem.nodeType === 1 ) { - data = elem.getAttribute( "data-" + key ); - - if ( typeof data === "string" ) { - try { - data = data === "true" ? true : - data === "false" ? false : - data === "null" ? null : - !jQuery.isNaN( data ) ? parseFloat( data ) : - rbrace.test( data ) ? jQuery.parseJSON( data ) : - data; - } catch( e ) {} - - // Make sure we set the data so it isn't changed later - jQuery.data( elem, key, data ); - - } else { - data = undefined; - } - } - - return data; -} - - - - -jQuery.extend({ - queue: function( elem, type, data ) { - if ( !elem ) { - return; - } - - type = (type || "fx") + "queue"; - var q = jQuery._data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( !data ) { - return q || []; - } - - if ( !q || jQuery.isArray(data) ) { - q = jQuery._data( elem, type, jQuery.makeArray(data) ); - - } else { - q.push( data ); - } - - return q; - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), - fn = queue.shift(); - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - } - - if ( fn ) { - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift("inprogress"); - } - - fn.call(elem, function() { - jQuery.dequeue(elem, type); - }); - } - - if ( !queue.length ) { - jQuery.removeData( elem, type + "queue", true ); - } - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - } - - if ( data === undefined ) { - return jQuery.queue( this[0], type ); - } - return this.each(function( i ) { - var queue = jQuery.queue( this, type, data ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[time] || time : time; - type = type || "fx"; - - return this.queue( type, function() { - var elem = this; - setTimeout(function() { - jQuery.dequeue( elem, type ); - }, time ); - }); - }, - - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - } -}); - - - - -var rclass = /[\n\t\r]/g, - rspaces = /\s+/, - rreturn = /\r/g, - rspecialurl = /^(?:href|src|style)$/, - rtype = /^(?:button|input)$/i, - rfocusable = /^(?:button|input|object|select|textarea)$/i, - rclickable = /^a(?:rea)?$/i, - rradiocheck = /^(?:radio|checkbox)$/i; - -jQuery.props = { - "for": "htmlFor", - "class": "className", - readonly: "readOnly", - maxlength: "maxLength", - cellspacing: "cellSpacing", - rowspan: "rowSpan", - colspan: "colSpan", - tabindex: "tabIndex", - usemap: "useMap", - frameborder: "frameBorder" -}; - -jQuery.fn.extend({ - attr: function( name, value ) { - return jQuery.access( this, name, value, true, jQuery.attr ); - }, - - removeAttr: function( name, fn ) { - return this.each(function(){ - jQuery.attr( this, name, "" ); - if ( this.nodeType === 1 ) { - this.removeAttribute( name ); - } - }); - }, - - addClass: function( value ) { - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - self.addClass( value.call(this, i, self.attr("class")) ); - }); - } - - if ( value && typeof value === "string" ) { - var classNames = (value || "").split( rspaces ); - - for ( var i = 0, l = this.length; i < l; i++ ) { - var elem = this[i]; - - if ( elem.nodeType === 1 ) { - if ( !elem.className ) { - elem.className = value; - - } else { - var className = " " + elem.className + " ", - setClass = elem.className; - - for ( var c = 0, cl = classNames.length; c < cl; c++ ) { - if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { - setClass += " " + classNames[c]; - } - } - elem.className = jQuery.trim( setClass ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - self.removeClass( value.call(this, i, self.attr("class")) ); - }); - } - - if ( (value && typeof value === "string") || value === undefined ) { - var classNames = (value || "").split( rspaces ); - - for ( var i = 0, l = this.length; i < l; i++ ) { - var elem = this[i]; - - if ( elem.nodeType === 1 && elem.className ) { - if ( value ) { - var className = (" " + elem.className + " ").replace(rclass, " "); - for ( var c = 0, cl = classNames.length; c < cl; c++ ) { - className = className.replace(" " + classNames[c] + " ", " "); - } - elem.className = jQuery.trim( className ); - - } else { - elem.className = ""; - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, - isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function(i) { - var self = jQuery(this); - self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, - i = 0, - self = jQuery( this ), - state = stateVal, - classNames = value.split( rspaces ); - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space seperated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - } else if ( type === "undefined" || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery._data( this, "__className__", this.className ); - } - - // toggle whole className - this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " "; - for ( var i = 0, l = this.length; i < l; i++ ) { - if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - if ( !arguments.length ) { - var elem = this[0]; - - if ( elem ) { - if ( jQuery.nodeName( elem, "option" ) ) { - // attributes.value is undefined in Blackberry 4.7 but - // uses .value. See #6932 - var val = elem.attributes.value; - return !val || val.specified ? elem.value : elem.text; - } - - // We need to handle select boxes special - if ( jQuery.nodeName( elem, "select" ) ) { - var index = elem.selectedIndex, - values = [], - options = elem.options, - one = elem.type === "select-one"; - - // Nothing was selected - if ( index < 0 ) { - return null; - } - - // Loop through all the selected options - for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { - var option = options[ i ]; - - // Don't return options that are disabled or in a disabled optgroup - if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && - (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { - - // Get the specific value for the option - value = jQuery(option).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - } - - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) { - return elem.getAttribute("value") === null ? "on" : elem.value; - } - - // Everything else, we just grab the value - return (elem.value || "").replace(rreturn, ""); - - } - - return undefined; - } - - var isFunction = jQuery.isFunction(value); - - return this.each(function(i) { - var self = jQuery(this), val = value; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call(this, i, self.val()); - } - - // Treat null/undefined as ""; convert numbers to string - if ( val == null ) { - val = ""; - } else if ( typeof val === "number" ) { - val += ""; - } else if ( jQuery.isArray(val) ) { - val = jQuery.map(val, function (value) { - return value == null ? "" : value + ""; - }); - } - - if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) { - this.checked = jQuery.inArray( self.val(), val ) >= 0; - - } else if ( jQuery.nodeName( this, "select" ) ) { - var values = jQuery.makeArray(val); - - jQuery( "option", this ).each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - this.selectedIndex = -1; - } - - } else { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - attrFn: { - val: true, - css: true, - html: true, - text: true, - data: true, - width: true, - height: true, - offset: true - }, - - attr: function( elem, name, value, pass ) { - // don't get/set attributes on text, comment and attribute nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || elem.nodeType === 2 ) { - return undefined; - } - - if ( pass && name in jQuery.attrFn ) { - return jQuery(elem)[name](value); - } - - var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ), - // Whether we are setting (or getting) - set = value !== undefined; - - // Try to normalize/fix the name - name = notxml && jQuery.props[ name ] || name; - - // Only do all the following if this is a node (faster for style) - if ( elem.nodeType === 1 ) { - // These attributes require special treatment - var special = rspecialurl.test( name ); - - // Safari mis-reports the default selected property of an option - // Accessing the parent's selectedIndex property fixes it - if ( name === "selected" && !jQuery.support.optSelected ) { - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - - // If applicable, access the attribute via the DOM 0 way - // 'in' checks fail in Blackberry 4.7 #6931 - if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) { - if ( set ) { - // We can't allow the type property to be changed (since it causes problems in IE) - if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { - jQuery.error( "type property can't be changed" ); - } - - if ( value === null ) { - if ( elem.nodeType === 1 ) { - elem.removeAttribute( name ); - } - - } else { - elem[ name ] = value; - } - } - - // browsers index elements by id/name on forms, give priority to attributes. - if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) { - return elem.getAttributeNode( name ).nodeValue; - } - - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - if ( name === "tabIndex" ) { - var attributeNode = elem.getAttributeNode( "tabIndex" ); - - return attributeNode && attributeNode.specified ? - attributeNode.value : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - - return elem[ name ]; - } - - if ( !jQuery.support.style && notxml && name === "style" ) { - if ( set ) { - elem.style.cssText = "" + value; - } - - return elem.style.cssText; - } - - if ( set ) { - // convert the value to a string (all browsers do this but IE) see #1070 - elem.setAttribute( name, "" + value ); - } - - // Ensure that missing attributes return undefined - // Blackberry 4.7 returns "" from getAttribute #6938 - if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) { - return undefined; - } - - var attr = !jQuery.support.hrefNormalized && notxml && special ? - // Some attributes require a special call on IE - elem.getAttribute( name, 2 ) : - elem.getAttribute( name ); - - // Non-existent attributes return null, we normalize to undefined - return attr === null ? undefined : attr; - } - // Handle everything which isn't a DOM element node - if ( set ) { - elem[ name ] = value; - } - return elem[ name ]; - } -}); - - - - -var rnamespaces = /\.(.*)$/, - rformElems = /^(?:textarea|input|select)$/i, - rperiod = /\./g, - rspace = / /g, - rescape = /[^\w\s.|`]/g, - fcleanup = function( nm ) { - return nm.replace(rescape, "\\$&"); - }, - eventKey = "events"; - -/* - * A number of helper functions used for managing events. - * Many of the ideas behind this code originated from - * Dean Edwards' addEvent library. - */ -jQuery.event = { - - // Bind an event to an element - // Original by Dean Edwards - add: function( elem, types, handler, data ) { - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // For whatever reason, IE has trouble passing the window object - // around, causing it to be cloned in the process - if ( jQuery.isWindow( elem ) && ( elem !== window && !elem.frameElement ) ) { - elem = window; - } - - if ( handler === false ) { - handler = returnFalse; - } else if ( !handler ) { - // Fixes bug #7229. Fix recommended by jdalton - return; - } - - var handleObjIn, handleObj; - - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - } - - // Make sure that the function being executed has a unique ID - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure - var elemData = jQuery._data( elem ); - - // If no elemData is found then we must be trying to bind to one of the - // banned noData elements - if ( !elemData ) { - return; - } - - var events = elemData[ eventKey ], - eventHandle = elemData.handle; - - if ( typeof events === "function" ) { - // On plain objects events is a fn that holds the the data - // which prevents this data from being JSON serialized - // the function does not need to be called, it just contains the data - eventHandle = events.handle; - events = events.events; - - } else if ( !events ) { - if ( !elem.nodeType ) { - // On plain objects, create a fn that acts as the holder - // of the values to avoid JSON serialization of event data - elemData[ eventKey ] = elemData = function(){}; - } - - elemData.events = events = {}; - } - - if ( !eventHandle ) { - elemData.handle = eventHandle = function() { - // Handle the second event of a trigger and when - // an event is called after a page has unloaded - return typeof jQuery !== "undefined" && !jQuery.event.triggered ? - jQuery.event.handle.apply( eventHandle.elem, arguments ) : - undefined; - }; - } - - // Add elem as a property of the handle function - // This is to prevent a memory leak with non-native events in IE. - eventHandle.elem = elem; - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = types.split(" "); - - var type, i = 0, namespaces; - - while ( (type = types[ i++ ]) ) { - handleObj = handleObjIn ? - jQuery.extend({}, handleObjIn) : - { handler: handler, data: data }; - - // Namespaced event handlers - if ( type.indexOf(".") > -1 ) { - namespaces = type.split("."); - type = namespaces.shift(); - handleObj.namespace = namespaces.slice(0).sort().join("."); - - } else { - namespaces = []; - handleObj.namespace = ""; - } - - handleObj.type = type; - if ( !handleObj.guid ) { - handleObj.guid = handler.guid; - } - - // Get the current list of functions bound to this event - var handlers = events[ type ], - special = jQuery.event.special[ type ] || {}; - - // Init the event handler queue - if ( !handlers ) { - handlers = events[ type ] = []; - - // Check for a special event handler - // Only use addEventListener/attachEvent if the special - // events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add the function to the element's handler list - handlers.push( handleObj ); - - // Keep track of which events have been used, for global triggering - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - global: {}, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, pos ) { - // don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - if ( handler === false ) { - handler = returnFalse; - } - - var ret, type, fn, j, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, - elemData = jQuery.hasData( elem ) && jQuery._data( elem ), - events = elemData && elemData[ eventKey ]; - - if ( !elemData || !events ) { - return; - } - - if ( typeof events === "function" ) { - elemData = events; - events = events.events; - } - - // types is actually an event object here - if ( types && types.type ) { - handler = types.handler; - types = types.type; - } - - // Unbind all events for the element - if ( !types || typeof types === "string" && types.charAt(0) === "." ) { - types = types || ""; - - for ( type in events ) { - jQuery.event.remove( elem, type + types ); - } - - return; - } - - // Handle multiple events separated by a space - // jQuery(...).unbind("mouseover mouseout", fn); - types = types.split(" "); - - while ( (type = types[ i++ ]) ) { - origType = type; - handleObj = null; - all = type.indexOf(".") < 0; - namespaces = []; - - if ( !all ) { - // Namespaced event handlers - namespaces = type.split("."); - type = namespaces.shift(); - - namespace = new RegExp("(^|\\.)" + - jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - eventType = events[ type ]; - - if ( !eventType ) { - continue; - } - - if ( !handler ) { - for ( j = 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( all || namespace.test( handleObj.namespace ) ) { - jQuery.event.remove( elem, origType, handleObj.handler, j ); - eventType.splice( j--, 1 ); - } - } - - continue; - } - - special = jQuery.event.special[ type ] || {}; - - for ( j = pos || 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( handler.guid === handleObj.guid ) { - // remove the given handler for the given type - if ( all || namespace.test( handleObj.namespace ) ) { - if ( pos == null ) { - eventType.splice( j--, 1 ); - } - - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - - if ( pos != null ) { - break; - } - } - } - - // remove generic event handler if no more handlers exist - if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { - if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { - jQuery.removeEvent( elem, type, elemData.handle ); - } - - ret = null; - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - var handle = elemData.handle; - if ( handle ) { - handle.elem = null; - } - - delete elemData.events; - delete elemData.handle; - - if ( typeof elemData === "function" ) { - jQuery.removeData( elem, eventKey, true ); - - } else if ( jQuery.isEmptyObject( elemData ) ) { - jQuery.removeData( elem, undefined, true ); - } - } - }, - - // bubbling is internal - trigger: function( event, data, elem /*, bubbling */ ) { - // Event object or event type - var type = event.type || event, - bubbling = arguments[3]; - - if ( !bubbling ) { - event = typeof event === "object" ? - // jQuery.Event object - event[ jQuery.expando ] ? event : - // Object literal - jQuery.extend( jQuery.Event(type), event ) : - // Just the event type (string) - jQuery.Event(type); - - if ( type.indexOf("!") >= 0 ) { - event.type = type = type.slice(0, -1); - event.exclusive = true; - } - - // Handle a global trigger - if ( !elem ) { - // Don't bubble custom events when global (to avoid too much overhead) - event.stopPropagation(); - - // Only trigger if we've ever bound an event for it - if ( jQuery.event.global[ type ] ) { - // XXX This code smells terrible. event.js should not be directly - // inspecting the data cache - jQuery.each( jQuery.cache, function() { - // internalKey variable is just used to make it easier to find - // and potentially change this stuff later; currently it just - // points to jQuery.expando - var internalKey = jQuery.expando, - internalCache = this[ internalKey ]; - if ( internalCache && internalCache.events && internalCache.events[type] ) { - jQuery.event.trigger( event, data, internalCache.handle.elem ); - } - }); - } - } - - // Handle triggering a single element - - // don't do events on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { - return undefined; - } - - // Clean up in case it is reused - event.result = undefined; - event.target = elem; - - // Clone the incoming data, if any - data = jQuery.makeArray( data ); - data.unshift( event ); - } - - event.currentTarget = elem; - - // Trigger the event, it is assumed that "handle" is a function - var handle = elem.nodeType ? - jQuery._data( elem, "handle" ) : - (jQuery._data( elem, eventKey ) || {}).handle; - - if ( handle ) { - handle.apply( elem, data ); - } - - var parent = elem.parentNode || elem.ownerDocument; - - // Trigger an inline bound script - try { - if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) { - if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) { - event.result = false; - event.preventDefault(); - } - } - - // prevent IE from throwing an error for some elements with some event types, see #3533 - } catch (inlineError) {} - - if ( !event.isPropagationStopped() && parent ) { - jQuery.event.trigger( event, data, parent, true ); - - } else if ( !event.isDefaultPrevented() ) { - var old, - target = event.target, - targetType = type.replace( rnamespaces, "" ), - isClick = jQuery.nodeName( target, "a" ) && targetType === "click", - special = jQuery.event.special[ targetType ] || {}; - - if ( (!special._default || special._default.call( elem, event ) === false) && - !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { - - try { - if ( target[ targetType ] ) { - // Make sure that we don't accidentally re-trigger the onFOO events - old = target[ "on" + targetType ]; - - if ( old ) { - target[ "on" + targetType ] = null; - } - - jQuery.event.triggered = true; - target[ targetType ](); - } - - // prevent IE from throwing an error for some elements with some event types, see #3533 - } catch (triggerError) {} - - if ( old ) { - target[ "on" + targetType ] = old; - } - - jQuery.event.triggered = false; - } - } - }, - - handle: function( event ) { - var all, handlers, namespaces, namespace_re, events, - namespace_sort = [], - args = jQuery.makeArray( arguments ); - - event = args[0] = jQuery.event.fix( event || window.event ); - event.currentTarget = this; - - // Namespaced event handlers - all = event.type.indexOf(".") < 0 && !event.exclusive; - - if ( !all ) { - namespaces = event.type.split("."); - event.type = namespaces.shift(); - namespace_sort = namespaces.slice(0).sort(); - namespace_re = new RegExp("(^|\\.)" + namespace_sort.join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - event.namespace = event.namespace || namespace_sort.join("."); - - events = jQuery._data(this, eventKey); - - if ( typeof events === "function" ) { - events = events.events; - } - - handlers = (events || {})[ event.type ]; - - if ( events && handlers ) { - // Clone the handlers to prevent manipulation - handlers = handlers.slice(0); - - for ( var j = 0, l = handlers.length; j < l; j++ ) { - var handleObj = handlers[ j ]; - - // Filter the functions by class - if ( all || namespace_re.test( handleObj.namespace ) ) { - // Pass in a reference to the handler function itself - // So that we can later remove it - event.handler = handleObj.handler; - event.data = handleObj.data; - event.handleObj = handleObj; - - var ret = handleObj.handler.apply( this, args ); - - if ( ret !== undefined ) { - event.result = ret; - if ( ret === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - - if ( event.isImmediatePropagationStopped() ) { - break; - } - } - } - } - - return event.result; - }, - - props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), - - fix: function( event ) { - if ( event[ jQuery.expando ] ) { - return event; - } - - // store a copy of the original event object - // and "clone" to set read-only properties - var originalEvent = event; - event = jQuery.Event( originalEvent ); - - for ( var i = this.props.length, prop; i; ) { - prop = this.props[ --i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Fix target property, if necessary - if ( !event.target ) { - // Fixes #1925 where srcElement might not be defined either - event.target = event.srcElement || document; - } - - // check if target is a textnode (safari) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && event.fromElement ) { - event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement; - } - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && event.clientX != null ) { - var doc = document.documentElement, - body = document.body; - - event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0); - event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0); - } - - // Add which for key events - if ( event.which == null && (event.charCode != null || event.keyCode != null) ) { - event.which = event.charCode != null ? event.charCode : event.keyCode; - } - - // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs) - if ( !event.metaKey && event.ctrlKey ) { - event.metaKey = event.ctrlKey; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && event.button !== undefined ) { - event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); - } - - return event; - }, - - // Deprecated, use jQuery.guid instead - guid: 1E8, - - // Deprecated, use jQuery.proxy instead - proxy: jQuery.proxy, - - special: { - ready: { - // Make sure the ready event is setup - setup: jQuery.bindReady, - teardown: jQuery.noop - }, - - live: { - add: function( handleObj ) { - jQuery.event.add( this, - liveConvert( handleObj.origType, handleObj.selector ), - jQuery.extend({}, handleObj, {handler: liveHandler, guid: handleObj.handler.guid}) ); - }, - - remove: function( handleObj ) { - jQuery.event.remove( this, liveConvert( handleObj.origType, handleObj.selector ), handleObj ); - } - }, - - beforeunload: { - setup: function( data, namespaces, eventHandle ) { - // We only want to do this special case on windows - if ( jQuery.isWindow( this ) ) { - this.onbeforeunload = eventHandle; - } - }, - - teardown: function( namespaces, eventHandle ) { - if ( this.onbeforeunload === eventHandle ) { - this.onbeforeunload = null; - } - } - } - } -}; - -jQuery.removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle, false ); - } - } : - function( elem, type, handle ) { - if ( elem.detachEvent ) { - elem.detachEvent( "on" + type, handle ); - } - }; - -jQuery.Event = function( src ) { - // Allow instantiation without the 'new' keyword - if ( !this.preventDefault ) { - return new jQuery.Event( src ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - - // Events bubbling up the document may have been marked as prevented - // by a handler lower down the tree; reflect the correct value. - this.isDefaultPrevented = (src.defaultPrevented || src.returnValue === false || - src.getPreventDefault && src.getPreventDefault()) ? returnTrue : returnFalse; - - // Event type - } else { - this.type = src; - } - - // timeStamp is buggy for some events on Firefox(#3843) - // So we won't rely on the native value - this.timeStamp = jQuery.now(); - - // Mark it as fixed - this[ jQuery.expando ] = true; -}; - -function returnFalse() { - return false; -} -function returnTrue() { - return true; -} - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - preventDefault: function() { - this.isDefaultPrevented = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - - // if preventDefault exists run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - - // otherwise set the returnValue property of the original event to false (IE) - } else { - e.returnValue = false; - } - }, - stopPropagation: function() { - this.isPropagationStopped = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - // if stopPropagation exists run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - // otherwise set the cancelBubble property of the original event to true (IE) - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - }, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse -}; - -// Checks if an event happened on an element within another element -// Used in jQuery.event.special.mouseenter and mouseleave handlers -var withinElement = function( event ) { - // Check if mouse(over|out) are still within the same parent element - var parent = event.relatedTarget; - - // Firefox sometimes assigns relatedTarget a XUL element - // which we cannot access the parentNode property of - try { - // Traverse up the tree - while ( parent && parent !== this ) { - parent = parent.parentNode; - } - - if ( parent !== this ) { - // set the correct event type - event.type = event.data; - - // handle event if we actually just moused on to a non sub-element - jQuery.event.handle.apply( this, arguments ); - } - - // assuming we've left the element since we most likely mousedover a xul element - } catch(e) { } -}, - -// In case of event delegation, we only need to rename the event.type, -// liveHandler will take care of the rest. -delegate = function( event ) { - event.type = event.data; - jQuery.event.handle.apply( this, arguments ); -}; - -// Create mouseenter and mouseleave events -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - setup: function( data ) { - jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig ); - }, - teardown: function( data ) { - jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement ); - } - }; -}); - -// submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function( data, namespaces ) { - if ( this.nodeName && this.nodeName.toLowerCase() !== "form" ) { - jQuery.event.add(this, "click.specialSubmit", function( e ) { - var elem = e.target, - type = elem.type; - - if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { - e.liveFired = undefined; - return trigger( "submit", this, arguments ); - } - }); - - jQuery.event.add(this, "keypress.specialSubmit", function( e ) { - var elem = e.target, - type = elem.type; - - if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { - e.liveFired = undefined; - return trigger( "submit", this, arguments ); - } - }); - - } else { - return false; - } - }, - - teardown: function( namespaces ) { - jQuery.event.remove( this, ".specialSubmit" ); - } - }; - -} - -// change delegation, happens here so we have bind. -if ( !jQuery.support.changeBubbles ) { - - var changeFilters, - - getVal = function( elem ) { - var type = elem.type, val = elem.value; - - if ( type === "radio" || type === "checkbox" ) { - val = elem.checked; - - } else if ( type === "select-multiple" ) { - val = elem.selectedIndex > -1 ? - jQuery.map( elem.options, function( elem ) { - return elem.selected; - }).join("-") : - ""; - - } else if ( elem.nodeName.toLowerCase() === "select" ) { - val = elem.selectedIndex; - } - - return val; - }, - - testChange = function testChange( e ) { - var elem = e.target, data, val; - - if ( !rformElems.test( elem.nodeName ) || elem.readOnly ) { - return; - } - - data = jQuery._data( elem, "_change_data" ); - val = getVal(elem); - - // the current data will be also retrieved by beforeactivate - if ( e.type !== "focusout" || elem.type !== "radio" ) { - jQuery._data( elem, "_change_data", val ); - } - - if ( data === undefined || val === data ) { - return; - } - - if ( data != null || val ) { - e.type = "change"; - e.liveFired = undefined; - return jQuery.event.trigger( e, arguments[1], elem ); - } - }; - - jQuery.event.special.change = { - filters: { - focusout: testChange, - - beforedeactivate: testChange, - - click: function( e ) { - var elem = e.target, type = elem.type; - - if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { - return testChange.call( this, e ); - } - }, - - // Change has to be called before submit - // Keydown will be called before keypress, which is used in submit-event delegation - keydown: function( e ) { - var elem = e.target, type = elem.type; - - if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || - (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || - type === "select-multiple" ) { - return testChange.call( this, e ); - } - }, - - // Beforeactivate happens also before the previous element is blurred - // with this event you can't trigger a change event, but you can store - // information - beforeactivate: function( e ) { - var elem = e.target; - jQuery._data( elem, "_change_data", getVal(elem) ); - } - }, - - setup: function( data, namespaces ) { - if ( this.type === "file" ) { - return false; - } - - for ( var type in changeFilters ) { - jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); - } - - return rformElems.test( this.nodeName ); - }, - - teardown: function( namespaces ) { - jQuery.event.remove( this, ".specialChange" ); - - return rformElems.test( this.nodeName ); - } - }; - - changeFilters = jQuery.event.special.change.filters; - - // Handle when the input is .focus()'d - changeFilters.focus = changeFilters.beforeactivate; -} - -function trigger( type, elem, args ) { - args[0].type = type; - return jQuery.event.handle.apply( elem, args ); -} - -// Create "bubbling" focus and blur events -if ( document.addEventListener ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - jQuery.event.special[ fix ] = { - setup: function() { - this.addEventListener( orig, handler, true ); - }, - teardown: function() { - this.removeEventListener( orig, handler, true ); - } - }; - - function handler( e ) { - e = jQuery.event.fix( e ); - e.type = fix; - return jQuery.event.handle.call( this, e ); - } - }); -} - -jQuery.each(["bind", "one"], function( i, name ) { - jQuery.fn[ name ] = function( type, data, fn ) { - // Handle object literals - if ( typeof type === "object" ) { - for ( var key in type ) { - this[ name ](key, data, type[key], fn); - } - return this; - } - - if ( jQuery.isFunction( data ) || data === false ) { - fn = data; - data = undefined; - } - - var handler = name === "one" ? jQuery.proxy( fn, function( event ) { - jQuery( this ).unbind( event, handler ); - return fn.apply( this, arguments ); - }) : fn; - - if ( type === "unload" && name !== "one" ) { - this.one( type, data, fn ); - - } else { - for ( var i = 0, l = this.length; i < l; i++ ) { - jQuery.event.add( this[i], type, handler, data ); - } - } - - return this; - }; -}); - -jQuery.fn.extend({ - unbind: function( type, fn ) { - // Handle object literals - if ( typeof type === "object" && !type.preventDefault ) { - for ( var key in type ) { - this.unbind(key, type[key]); - } - - } else { - for ( var i = 0, l = this.length; i < l; i++ ) { - jQuery.event.remove( this[i], type, fn ); - } - } - - return this; - }, - - delegate: function( selector, types, data, fn ) { - return this.live( types, data, fn, selector ); - }, - - undelegate: function( selector, types, fn ) { - if ( arguments.length === 0 ) { - return this.unbind( "live" ); - - } else { - return this.die( types, null, fn, selector ); - } - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - - triggerHandler: function( type, data ) { - if ( this[0] ) { - var event = jQuery.Event( type ); - event.preventDefault(); - event.stopPropagation(); - jQuery.event.trigger( event, data, this[0] ); - return event.result; - } - }, - - toggle: function( fn ) { - // Save reference to arguments for access in closure - var args = arguments, - i = 1; - - // link all the functions, so any of them can unbind this click handler - while ( i < args.length ) { - jQuery.proxy( fn, args[ i++ ] ); - } - - return this.click( jQuery.proxy( fn, function( event ) { - // Figure out which function to execute - var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; - jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); - - // Make sure that clicks stop - event.preventDefault(); - - // and execute the function - return args[ lastToggle ].apply( this, arguments ) || false; - })); - }, - - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -}); - -var liveMap = { - focus: "focusin", - blur: "focusout", - mouseenter: "mouseover", - mouseleave: "mouseout" -}; - -jQuery.each(["live", "die"], function( i, name ) { - jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { - var type, i = 0, match, namespaces, preType, - selector = origSelector || this.selector, - context = origSelector ? this : jQuery( this.context ); - - if ( typeof types === "object" && !types.preventDefault ) { - for ( var key in types ) { - context[ name ]( key, data, types[key], selector ); - } - - return this; - } - - if ( jQuery.isFunction( data ) ) { - fn = data; - data = undefined; - } - - types = (types || "").split(" "); - - while ( (type = types[ i++ ]) != null ) { - match = rnamespaces.exec( type ); - namespaces = ""; - - if ( match ) { - namespaces = match[0]; - type = type.replace( rnamespaces, "" ); - } - - if ( type === "hover" ) { - types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); - continue; - } - - preType = type; - - if ( type === "focus" || type === "blur" ) { - types.push( liveMap[ type ] + namespaces ); - type = type + namespaces; - - } else { - type = (liveMap[ type ] || type) + namespaces; - } - - if ( name === "live" ) { - // bind live handler - for ( var j = 0, l = context.length; j < l; j++ ) { - jQuery.event.add( context[j], "live." + liveConvert( type, selector ), - { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); - } - - } else { - // unbind live handler - context.unbind( "live." + liveConvert( type, selector ), fn ); - } - } - - return this; - }; -}); - -function liveHandler( event ) { - var stop, maxLevel, related, match, handleObj, elem, j, i, l, data, close, namespace, ret, - elems = [], - selectors = [], - events = jQuery._data( this, eventKey ); - - if ( typeof events === "function" ) { - events = events.events; - } - - // Make sure we avoid non-left-click bubbling in Firefox (#3861) and disabled elements in IE (#6911) - if ( event.liveFired === this || !events || !events.live || event.target.disabled || event.button && event.type === "click" ) { - return; - } - - if ( event.namespace ) { - namespace = new RegExp("(^|\\.)" + event.namespace.split(".").join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - event.liveFired = this; - - var live = events.live.slice(0); - - for ( j = 0; j < live.length; j++ ) { - handleObj = live[j]; - - if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { - selectors.push( handleObj.selector ); - - } else { - live.splice( j--, 1 ); - } - } - - match = jQuery( event.target ).closest( selectors, event.currentTarget ); - - for ( i = 0, l = match.length; i < l; i++ ) { - close = match[i]; - - for ( j = 0; j < live.length; j++ ) { - handleObj = live[j]; - - if ( close.selector === handleObj.selector && (!namespace || namespace.test( handleObj.namespace )) ) { - elem = close.elem; - related = null; - - // Those two events require additional checking - if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { - event.type = handleObj.preType; - related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; - } - - if ( !related || related !== elem ) { - elems.push({ elem: elem, handleObj: handleObj, level: close.level }); - } - } - } - } - - for ( i = 0, l = elems.length; i < l; i++ ) { - match = elems[i]; - - if ( maxLevel && match.level > maxLevel ) { - break; - } - - event.currentTarget = match.elem; - event.data = match.handleObj.data; - event.handleObj = match.handleObj; - - ret = match.handleObj.origHandler.apply( match.elem, arguments ); - - if ( ret === false || event.isPropagationStopped() ) { - maxLevel = match.level; - - if ( ret === false ) { - stop = false; - } - if ( event.isImmediatePropagationStopped() ) { - break; - } - } - } - - return stop; -} - -function liveConvert( type, selector ) { - return (type && type !== "*" ? type + "." : "") + selector.replace(rperiod, "`").replace(rspace, "&"); -} - -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error").split(" "), function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( data, fn ) { - if ( fn == null ) { - fn = data; - data = null; - } - - return arguments.length > 0 ? - this.bind( name, data, fn ) : - this.trigger( name ); - }; - - if ( jQuery.attrFn ) { - jQuery.attrFn[ name ] = true; - } -}); - - -/*! - * Sizzle CSS Selector Engine - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){ - -var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, - done = 0, - toString = Object.prototype.toString, - hasDuplicate = false, - baseHasDuplicate = true; - -// Here we check if the JavaScript engine is using some sort of -// optimization where it does not always call our comparision -// function. If that is the case, discard the hasDuplicate value. -// Thus far that includes Google Chrome. -[0, 0].sort(function() { - baseHasDuplicate = false; - return 0; -}); - -var Sizzle = function( selector, context, results, seed ) { - results = results || []; - context = context || document; - - var origContext = context; - - if ( context.nodeType !== 1 && context.nodeType !== 9 ) { - return []; - } - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - var m, set, checkSet, extra, ret, cur, pop, i, - prune = true, - contextXML = Sizzle.isXML( context ), - parts = [], - soFar = selector; - - // Reset the position of the chunker regexp (start from head) - do { - chunker.exec( "" ); - m = chunker.exec( soFar ); - - if ( m ) { - soFar = m[3]; - - parts.push( m[1] ); - - if ( m[2] ) { - extra = m[3]; - break; - } - } - } while ( m ); - - if ( parts.length > 1 && origPOS.exec( selector ) ) { - - if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { - set = posProcess( parts[0] + parts[1], context ); - - } else { - set = Expr.relative[ parts[0] ] ? - [ context ] : - Sizzle( parts.shift(), context ); - - while ( parts.length ) { - selector = parts.shift(); - - if ( Expr.relative[ selector ] ) { - selector += parts.shift(); - } - - set = posProcess( selector, set ); - } - } - - } else { - // Take a shortcut and set the context if the root selector is an ID - // (but not if it'll be faster if the inner selector is an ID) - if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && - Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { - - ret = Sizzle.find( parts.shift(), context, contextXML ); - context = ret.expr ? - Sizzle.filter( ret.expr, ret.set )[0] : - ret.set[0]; - } - - if ( context ) { - ret = seed ? - { expr: parts.pop(), set: makeArray(seed) } : - Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); - - set = ret.expr ? - Sizzle.filter( ret.expr, ret.set ) : - ret.set; - - if ( parts.length > 0 ) { - checkSet = makeArray( set ); - - } else { - prune = false; - } - - while ( parts.length ) { - cur = parts.pop(); - pop = cur; - - if ( !Expr.relative[ cur ] ) { - cur = ""; - } else { - pop = parts.pop(); - } - - if ( pop == null ) { - pop = context; - } - - Expr.relative[ cur ]( checkSet, pop, contextXML ); - } - - } else { - checkSet = parts = []; - } - } - - if ( !checkSet ) { - checkSet = set; - } - - if ( !checkSet ) { - Sizzle.error( cur || selector ); - } - - if ( toString.call(checkSet) === "[object Array]" ) { - if ( !prune ) { - results.push.apply( results, checkSet ); - - } else if ( context && context.nodeType === 1 ) { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { - results.push( set[i] ); - } - } - - } else { - for ( i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && checkSet[i].nodeType === 1 ) { - results.push( set[i] ); - } - } - } - - } else { - makeArray( checkSet, results ); - } - - if ( extra ) { - Sizzle( extra, origContext, results, seed ); - Sizzle.uniqueSort( results ); - } - - return results; -}; - -Sizzle.uniqueSort = function( results ) { - if ( sortOrder ) { - hasDuplicate = baseHasDuplicate; - results.sort( sortOrder ); - - if ( hasDuplicate ) { - for ( var i = 1; i < results.length; i++ ) { - if ( results[i] === results[ i - 1 ] ) { - results.splice( i--, 1 ); - } - } - } - } - - return results; -}; - -Sizzle.matches = function( expr, set ) { - return Sizzle( expr, null, null, set ); -}; - -Sizzle.matchesSelector = function( node, expr ) { - return Sizzle( expr, null, null, [node] ).length > 0; -}; - -Sizzle.find = function( expr, context, isXML ) { - var set; - - if ( !expr ) { - return []; - } - - for ( var i = 0, l = Expr.order.length; i < l; i++ ) { - var match, - type = Expr.order[i]; - - if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { - var left = match[1]; - match.splice( 1, 1 ); - - if ( left.substr( left.length - 1 ) !== "\\" ) { - match[1] = (match[1] || "").replace(/\\/g, ""); - set = Expr.find[ type ]( match, context, isXML ); - - if ( set != null ) { - expr = expr.replace( Expr.match[ type ], "" ); - break; - } - } - } - } - - if ( !set ) { - set = typeof context.getElementsByTagName !== "undefined" ? - context.getElementsByTagName( "*" ) : - []; - } - - return { set: set, expr: expr }; -}; - -Sizzle.filter = function( expr, set, inplace, not ) { - var match, anyFound, - old = expr, - result = [], - curLoop = set, - isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); - - while ( expr && set.length ) { - for ( var type in Expr.filter ) { - if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { - var found, item, - filter = Expr.filter[ type ], - left = match[1]; - - anyFound = false; - - match.splice(1,1); - - if ( left.substr( left.length - 1 ) === "\\" ) { - continue; - } - - if ( curLoop === result ) { - result = []; - } - - if ( Expr.preFilter[ type ] ) { - match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); - - if ( !match ) { - anyFound = found = true; - - } else if ( match === true ) { - continue; - } - } - - if ( match ) { - for ( var i = 0; (item = curLoop[i]) != null; i++ ) { - if ( item ) { - found = filter( item, match, i, curLoop ); - var pass = not ^ !!found; - - if ( inplace && found != null ) { - if ( pass ) { - anyFound = true; - - } else { - curLoop[i] = false; - } - - } else if ( pass ) { - result.push( item ); - anyFound = true; - } - } - } - } - - if ( found !== undefined ) { - if ( !inplace ) { - curLoop = result; - } - - expr = expr.replace( Expr.match[ type ], "" ); - - if ( !anyFound ) { - return []; - } - - break; - } - } - } - - // Improper expression - if ( expr === old ) { - if ( anyFound == null ) { - Sizzle.error( expr ); - - } else { - break; - } - } - - old = expr; - } - - return curLoop; -}; - -Sizzle.error = function( msg ) { - throw "Syntax error, unrecognized expression: " + msg; -}; - -var Expr = Sizzle.selectors = { - order: [ "ID", "NAME", "TAG" ], - - match: { - ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, - NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, - ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, - TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, - CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, - POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, - PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ - }, - - leftMatch: {}, - - attrMap: { - "class": "className", - "for": "htmlFor" - }, - - attrHandle: { - href: function( elem ) { - return elem.getAttribute( "href" ); - } - }, - - relative: { - "+": function(checkSet, part){ - var isPartStr = typeof part === "string", - isTag = isPartStr && !/\W/.test( part ), - isPartStrNotTag = isPartStr && !isTag; - - if ( isTag ) { - part = part.toLowerCase(); - } - - for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { - if ( (elem = checkSet[i]) ) { - while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} - - checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? - elem || false : - elem === part; - } - } - - if ( isPartStrNotTag ) { - Sizzle.filter( part, checkSet, true ); - } - }, - - ">": function( checkSet, part ) { - var elem, - isPartStr = typeof part === "string", - i = 0, - l = checkSet.length; - - if ( isPartStr && !/\W/.test( part ) ) { - part = part.toLowerCase(); - - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - var parent = elem.parentNode; - checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; - } - } - - } else { - for ( ; i < l; i++ ) { - elem = checkSet[i]; - - if ( elem ) { - checkSet[i] = isPartStr ? - elem.parentNode : - elem.parentNode === part; - } - } - - if ( isPartStr ) { - Sizzle.filter( part, checkSet, true ); - } - } - }, - - "": function(checkSet, part, isXML){ - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !/\W/.test(part) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); - }, - - "~": function( checkSet, part, isXML ) { - var nodeCheck, - doneName = done++, - checkFn = dirCheck; - - if ( typeof part === "string" && !/\W/.test( part ) ) { - part = part.toLowerCase(); - nodeCheck = part; - checkFn = dirNodeCheck; - } - - checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); - } - }, - - find: { - ID: function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - return m && m.parentNode ? [m] : []; - } - }, - - NAME: function( match, context ) { - if ( typeof context.getElementsByName !== "undefined" ) { - var ret = [], - results = context.getElementsByName( match[1] ); - - for ( var i = 0, l = results.length; i < l; i++ ) { - if ( results[i].getAttribute("name") === match[1] ) { - ret.push( results[i] ); - } - } - - return ret.length === 0 ? null : ret; - } - }, - - TAG: function( match, context ) { - if ( typeof context.getElementsByTagName !== "undefined" ) { - return context.getElementsByTagName( match[1] ); - } - } - }, - preFilter: { - CLASS: function( match, curLoop, inplace, result, not, isXML ) { - match = " " + match[1].replace(/\\/g, "") + " "; - - if ( isXML ) { - return match; - } - - for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { - if ( elem ) { - if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { - if ( !inplace ) { - result.push( elem ); - } - - } else if ( inplace ) { - curLoop[i] = false; - } - } - } - - return false; - }, - - ID: function( match ) { - return match[1].replace(/\\/g, ""); - }, - - TAG: function( match, curLoop ) { - return match[1].toLowerCase(); - }, - - CHILD: function( match ) { - if ( match[1] === "nth" ) { - if ( !match[2] ) { - Sizzle.error( match[0] ); - } - - match[2] = match[2].replace(/^\+|\s*/g, ''); - - // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' - var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( - match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || - !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); - - // calculate the numbers (first)n+(last) including if they are negative - match[2] = (test[1] + (test[2] || 1)) - 0; - match[3] = test[3] - 0; - } - else if ( match[2] ) { - Sizzle.error( match[0] ); - } - - // TODO: Move to normal caching system - match[0] = done++; - - return match; - }, - - ATTR: function( match, curLoop, inplace, result, not, isXML ) { - var name = match[1] = match[1].replace(/\\/g, ""); - - if ( !isXML && Expr.attrMap[name] ) { - match[1] = Expr.attrMap[name]; - } - - // Handle if an un-quoted value was used - match[4] = ( match[4] || match[5] || "" ).replace(/\\/g, ""); - - if ( match[2] === "~=" ) { - match[4] = " " + match[4] + " "; - } - - return match; - }, - - PSEUDO: function( match, curLoop, inplace, result, not ) { - if ( match[1] === "not" ) { - // If we're dealing with a complex expression, or a simple one - if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { - match[3] = Sizzle(match[3], null, null, curLoop); - - } else { - var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); - - if ( !inplace ) { - result.push.apply( result, ret ); - } - - return false; - } - - } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { - return true; - } - - return match; - }, - - POS: function( match ) { - match.unshift( true ); - - return match; - } - }, - - filters: { - enabled: function( elem ) { - return elem.disabled === false && elem.type !== "hidden"; - }, - - disabled: function( elem ) { - return elem.disabled === true; - }, - - checked: function( elem ) { - return elem.checked === true; - }, - - selected: function( elem ) { - // Accessing this property makes selected-by-default - // options in Safari work properly - elem.parentNode.selectedIndex; - - return elem.selected === true; - }, - - parent: function( elem ) { - return !!elem.firstChild; - }, - - empty: function( elem ) { - return !elem.firstChild; - }, - - has: function( elem, i, match ) { - return !!Sizzle( match[3], elem ).length; - }, - - header: function( elem ) { - return (/h\d/i).test( elem.nodeName ); - }, - - text: function( elem ) { - return "text" === elem.type; - }, - radio: function( elem ) { - return "radio" === elem.type; - }, - - checkbox: function( elem ) { - return "checkbox" === elem.type; - }, - - file: function( elem ) { - return "file" === elem.type; - }, - password: function( elem ) { - return "password" === elem.type; - }, - - submit: function( elem ) { - return "submit" === elem.type; - }, - - image: function( elem ) { - return "image" === elem.type; - }, - - reset: function( elem ) { - return "reset" === elem.type; - }, - - button: function( elem ) { - return "button" === elem.type || elem.nodeName.toLowerCase() === "button"; - }, - - input: function( elem ) { - return (/input|select|textarea|button/i).test( elem.nodeName ); - } - }, - setFilters: { - first: function( elem, i ) { - return i === 0; - }, - - last: function( elem, i, match, array ) { - return i === array.length - 1; - }, - - even: function( elem, i ) { - return i % 2 === 0; - }, - - odd: function( elem, i ) { - return i % 2 === 1; - }, - - lt: function( elem, i, match ) { - return i < match[3] - 0; - }, - - gt: function( elem, i, match ) { - return i > match[3] - 0; - }, - - nth: function( elem, i, match ) { - return match[3] - 0 === i; - }, - - eq: function( elem, i, match ) { - return match[3] - 0 === i; - } - }, - filter: { - PSEUDO: function( elem, match, i, array ) { - var name = match[1], - filter = Expr.filters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - - } else if ( name === "contains" ) { - return (elem.textContent || elem.innerText || Sizzle.getText([ elem ]) || "").indexOf(match[3]) >= 0; - - } else if ( name === "not" ) { - var not = match[3]; - - for ( var j = 0, l = not.length; j < l; j++ ) { - if ( not[j] === elem ) { - return false; - } - } - - return true; - - } else { - Sizzle.error( name ); - } - }, - - CHILD: function( elem, match ) { - var type = match[1], - node = elem; - - switch ( type ) { - case "only": - case "first": - while ( (node = node.previousSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - if ( type === "first" ) { - return true; - } - - node = elem; - - case "last": - while ( (node = node.nextSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - - return true; - - case "nth": - var first = match[2], - last = match[3]; - - if ( first === 1 && last === 0 ) { - return true; - } - - var doneName = match[0], - parent = elem.parentNode; - - if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) { - var count = 0; - - for ( node = parent.firstChild; node; node = node.nextSibling ) { - if ( node.nodeType === 1 ) { - node.nodeIndex = ++count; - } - } - - parent.sizcache = doneName; - } - - var diff = elem.nodeIndex - last; - - if ( first === 0 ) { - return diff === 0; - - } else { - return ( diff % first === 0 && diff / first >= 0 ); - } - } - }, - - ID: function( elem, match ) { - return elem.nodeType === 1 && elem.getAttribute("id") === match; - }, - - TAG: function( elem, match ) { - return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match; - }, - - CLASS: function( elem, match ) { - return (" " + (elem.className || elem.getAttribute("class")) + " ") - .indexOf( match ) > -1; - }, - - ATTR: function( elem, match ) { - var name = match[1], - result = Expr.attrHandle[ name ] ? - Expr.attrHandle[ name ]( elem ) : - elem[ name ] != null ? - elem[ name ] : - elem.getAttribute( name ), - value = result + "", - type = match[2], - check = match[4]; - - return result == null ? - type === "!=" : - type === "=" ? - value === check : - type === "*=" ? - value.indexOf(check) >= 0 : - type === "~=" ? - (" " + value + " ").indexOf(check) >= 0 : - !check ? - value && result !== false : - type === "!=" ? - value !== check : - type === "^=" ? - value.indexOf(check) === 0 : - type === "$=" ? - value.substr(value.length - check.length) === check : - type === "|=" ? - value === check || value.substr(0, check.length + 1) === check + "-" : - false; - }, - - POS: function( elem, match, i, array ) { - var name = match[2], - filter = Expr.setFilters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - } - } - } -}; - -var origPOS = Expr.match.POS, - fescape = function(all, num){ - return "\\" + (num - 0 + 1); - }; - -for ( var type in Expr.match ) { - Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); - Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); -} - -var makeArray = function( array, results ) { - array = Array.prototype.slice.call( array, 0 ); - - if ( results ) { - results.push.apply( results, array ); - return results; - } - - return array; -}; - -// Perform a simple check to determine if the browser is capable of -// converting a NodeList to an array using builtin methods. -// Also verifies that the returned array holds DOM nodes -// (which is not the case in the Blackberry browser) -try { - Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; - -// Provide a fallback method if it does not work -} catch( e ) { - makeArray = function( array, results ) { - var i = 0, - ret = results || []; - - if ( toString.call(array) === "[object Array]" ) { - Array.prototype.push.apply( ret, array ); - - } else { - if ( typeof array.length === "number" ) { - for ( var l = array.length; i < l; i++ ) { - ret.push( array[i] ); - } - - } else { - for ( ; array[i]; i++ ) { - ret.push( array[i] ); - } - } - } - - return ret; - }; -} - -var sortOrder, siblingCheck; - -if ( document.documentElement.compareDocumentPosition ) { - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - return 0; - } - - if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { - return a.compareDocumentPosition ? -1 : 1; - } - - return a.compareDocumentPosition(b) & 4 ? -1 : 1; - }; - -} else { - sortOrder = function( a, b ) { - var al, bl, - ap = [], - bp = [], - aup = a.parentNode, - bup = b.parentNode, - cur = aup; - - // The nodes are identical, we can exit early - if ( a === b ) { - hasDuplicate = true; - return 0; - - // If the nodes are siblings (or identical) we can do a quick check - } else if ( aup === bup ) { - return siblingCheck( a, b ); - - // If no parents were found then the nodes are disconnected - } else if ( !aup ) { - return -1; - - } else if ( !bup ) { - return 1; - } - - // Otherwise they're somewhere else in the tree so we need - // to build up a full list of the parentNodes for comparison - while ( cur ) { - ap.unshift( cur ); - cur = cur.parentNode; - } - - cur = bup; - - while ( cur ) { - bp.unshift( cur ); - cur = cur.parentNode; - } - - al = ap.length; - bl = bp.length; - - // Start walking down the tree looking for a discrepancy - for ( var i = 0; i < al && i < bl; i++ ) { - if ( ap[i] !== bp[i] ) { - return siblingCheck( ap[i], bp[i] ); - } - } - - // We ended someplace up the tree so do a sibling check - return i === al ? - siblingCheck( a, bp[i], -1 ) : - siblingCheck( ap[i], b, 1 ); - }; - - siblingCheck = function( a, b, ret ) { - if ( a === b ) { - return ret; - } - - var cur = a.nextSibling; - - while ( cur ) { - if ( cur === b ) { - return -1; - } - - cur = cur.nextSibling; - } - - return 1; - }; -} - -// Utility function for retreiving the text value of an array of DOM nodes -Sizzle.getText = function( elems ) { - var ret = "", elem; - - for ( var i = 0; elems[i]; i++ ) { - elem = elems[i]; - - // Get the text from text nodes and CDATA nodes - if ( elem.nodeType === 3 || elem.nodeType === 4 ) { - ret += elem.nodeValue; - - // Traverse everything else, except comment nodes - } else if ( elem.nodeType !== 8 ) { - ret += Sizzle.getText( elem.childNodes ); - } - } - - return ret; -}; - -// Check to see if the browser returns elements by name when -// querying by getElementById (and provide a workaround) -(function(){ - // We're going to inject a fake input element with a specified name - var form = document.createElement("div"), - id = "script" + (new Date()).getTime(), - root = document.documentElement; - - form.innerHTML = ""; - - // Inject it into the root element, check its status, and remove it quickly - root.insertBefore( form, root.firstChild ); - - // The workaround has to do additional checks after a getElementById - // Which slows things down for other browsers (hence the branching) - if ( document.getElementById( id ) ) { - Expr.find.ID = function( match, context, isXML ) { - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - - return m ? - m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? - [m] : - undefined : - []; - } - }; - - Expr.filter.ID = function( elem, match ) { - var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); - - return elem.nodeType === 1 && node && node.nodeValue === match; - }; - } - - root.removeChild( form ); - - // release memory in IE - root = form = null; -})(); - -(function(){ - // Check to see if the browser returns only elements - // when doing getElementsByTagName("*") - - // Create a fake element - var div = document.createElement("div"); - div.appendChild( document.createComment("") ); - - // Make sure no comments are found - if ( div.getElementsByTagName("*").length > 0 ) { - Expr.find.TAG = function( match, context ) { - var results = context.getElementsByTagName( match[1] ); - - // Filter out possible comments - if ( match[1] === "*" ) { - var tmp = []; - - for ( var i = 0; results[i]; i++ ) { - if ( results[i].nodeType === 1 ) { - tmp.push( results[i] ); - } - } - - results = tmp; - } - - return results; - }; - } - - // Check to see if an attribute returns normalized href attributes - div.innerHTML = ""; - - if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && - div.firstChild.getAttribute("href") !== "#" ) { - - Expr.attrHandle.href = function( elem ) { - return elem.getAttribute( "href", 2 ); - }; - } - - // release memory in IE - div = null; -})(); - -if ( document.querySelectorAll ) { - (function(){ - var oldSizzle = Sizzle, - div = document.createElement("div"), - id = "__sizzle__"; - - div.innerHTML = "

"; - - // Safari can't handle uppercase or unicode characters when - // in quirks mode. - if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { - return; - } - - Sizzle = function( query, context, extra, seed ) { - context = context || document; - - // Only use querySelectorAll on non-XML documents - // (ID selectors don't work in non-HTML documents) - if ( !seed && !Sizzle.isXML(context) ) { - // See if we find a selector to speed up - var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); - - if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { - // Speed-up: Sizzle("TAG") - if ( match[1] ) { - return makeArray( context.getElementsByTagName( query ), extra ); - - // Speed-up: Sizzle(".CLASS") - } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { - return makeArray( context.getElementsByClassName( match[2] ), extra ); - } - } - - if ( context.nodeType === 9 ) { - // Speed-up: Sizzle("body") - // The body element only exists once, optimize finding it - if ( query === "body" && context.body ) { - return makeArray( [ context.body ], extra ); - - // Speed-up: Sizzle("#ID") - } else if ( match && match[3] ) { - var elem = context.getElementById( match[3] ); - - // Check parentNode to catch when Blackberry 4.6 returns - // nodes that are no longer in the document #6963 - if ( elem && elem.parentNode ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id === match[3] ) { - return makeArray( [ elem ], extra ); - } - - } else { - return makeArray( [], extra ); - } - } - - try { - return makeArray( context.querySelectorAll(query), extra ); - } catch(qsaError) {} - - // qSA works strangely on Element-rooted queries - // We can work around this by specifying an extra ID on the root - // and working up from there (Thanks to Andrew Dupont for the technique) - // IE 8 doesn't work on object elements - } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { - var old = context.getAttribute( "id" ), - nid = old || id, - hasParent = context.parentNode, - relativeHierarchySelector = /^\s*[+~]/.test( query ); - - if ( !old ) { - context.setAttribute( "id", nid ); - } else { - nid = nid.replace( /'/g, "\\$&" ); - } - if ( relativeHierarchySelector && hasParent ) { - context = context.parentNode; - } - - try { - if ( !relativeHierarchySelector || hasParent ) { - return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); - } - - } catch(pseudoError) { - } finally { - if ( !old ) { - context.removeAttribute( "id" ); - } - } - } - } - - return oldSizzle(query, context, extra, seed); - }; - - for ( var prop in oldSizzle ) { - Sizzle[ prop ] = oldSizzle[ prop ]; - } - - // release memory in IE - div = null; - })(); -} - -(function(){ - var html = document.documentElement, - matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector, - pseudoWorks = false; - - try { - // This should fail with an exception - // Gecko does not error, returns false instead - matches.call( document.documentElement, "[test!='']:sizzle" ); - - } catch( pseudoError ) { - pseudoWorks = true; - } - - if ( matches ) { - Sizzle.matchesSelector = function( node, expr ) { - // Make sure that attribute selectors are quoted - expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); - - if ( !Sizzle.isXML( node ) ) { - try { - if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { - return matches.call( node, expr ); - } - } catch(e) {} - } - - return Sizzle(expr, null, null, [node]).length > 0; - }; - } -})(); - -(function(){ - var div = document.createElement("div"); - - div.innerHTML = "
"; - - // Opera can't find a second classname (in 9.6) - // Also, make sure that getElementsByClassName actually exists - if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { - return; - } - - // Safari caches class attributes, doesn't catch changes (in 3.2) - div.lastChild.className = "e"; - - if ( div.getElementsByClassName("e").length === 1 ) { - return; - } - - Expr.order.splice(1, 0, "CLASS"); - Expr.find.CLASS = function( match, context, isXML ) { - if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { - return context.getElementsByClassName(match[1]); - } - }; - - // release memory in IE - div = null; -})(); - -function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem.sizcache === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 && !isXML ){ - elem.sizcache = doneName; - elem.sizset = i; - } - - if ( elem.nodeName.toLowerCase() === cur ) { - match = elem; - break; - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - - if ( elem ) { - var match = false; - - elem = elem[dir]; - - while ( elem ) { - if ( elem.sizcache === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 ) { - if ( !isXML ) { - elem.sizcache = doneName; - elem.sizset = i; - } - - if ( typeof cur !== "string" ) { - if ( elem === cur ) { - match = true; - break; - } - - } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { - match = elem; - break; - } - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -if ( document.documentElement.contains ) { - Sizzle.contains = function( a, b ) { - return a !== b && (a.contains ? a.contains(b) : true); - }; - -} else if ( document.documentElement.compareDocumentPosition ) { - Sizzle.contains = function( a, b ) { - return !!(a.compareDocumentPosition(b) & 16); - }; - -} else { - Sizzle.contains = function() { - return false; - }; -} - -Sizzle.isXML = function( elem ) { - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; - - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -var posProcess = function( selector, context ) { - var match, - tmpSet = [], - later = "", - root = context.nodeType ? [context] : context; - - // Position selectors must be done after the filter - // And so must :not(positional) so we move all PSEUDOs to the end - while ( (match = Expr.match.PSEUDO.exec( selector )) ) { - later += match[0]; - selector = selector.replace( Expr.match.PSEUDO, "" ); - } - - selector = Expr.relative[selector] ? selector + "*" : selector; - - for ( var i = 0, l = root.length; i < l; i++ ) { - Sizzle( selector, root[i], tmpSet ); - } - - return Sizzle.filter( later, tmpSet ); -}; - -// EXPOSE -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.filters; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = Sizzle.getText; -jQuery.isXMLDoc = Sizzle.isXML; -jQuery.contains = Sizzle.contains; - - -})(); - - -var runtil = /Until$/, - rparentsprev = /^(?:parents|prevUntil|prevAll)/, - // Note: This RegExp should be improved, or likely pulled from Sizzle - rmultiselector = /,/, - isSimple = /^.[^:#\[\.,]*$/, - slice = Array.prototype.slice, - POS = jQuery.expr.match.POS, - // methods guaranteed to produce a unique set when starting from a unique set - guaranteedUnique = { - children: true, - contents: true, - next: true, - prev: true - }; - -jQuery.fn.extend({ - find: function( selector ) { - var ret = this.pushStack( "", "find", selector ), - length = 0; - - for ( var i = 0, l = this.length; i < l; i++ ) { - length = ret.length; - jQuery.find( selector, this[i], ret ); - - if ( i > 0 ) { - // Make sure that the results are unique - for ( var n = length; n < ret.length; n++ ) { - for ( var r = 0; r < length; r++ ) { - if ( ret[r] === ret[n] ) { - ret.splice(n--, 1); - break; - } - } - } - } - } - - return ret; - }, - - has: function( target ) { - var targets = jQuery( target ); - return this.filter(function() { - for ( var i = 0, l = targets.length; i < l; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false), "not", selector); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true), "filter", selector ); - }, - - is: function( selector ) { - return !!selector && jQuery.filter( selector, this ).length > 0; - }, - - closest: function( selectors, context ) { - var ret = [], i, l, cur = this[0]; - - if ( jQuery.isArray( selectors ) ) { - var match, selector, - matches = {}, - level = 1; - - if ( cur && selectors.length ) { - for ( i = 0, l = selectors.length; i < l; i++ ) { - selector = selectors[i]; - - if ( !matches[selector] ) { - matches[selector] = jQuery.expr.match.POS.test( selector ) ? - jQuery( selector, context || this.context ) : - selector; - } - } - - while ( cur && cur.ownerDocument && cur !== context ) { - for ( selector in matches ) { - match = matches[selector]; - - if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) { - ret.push({ selector: selector, elem: cur, level: level }); - } - } - - cur = cur.parentNode; - level++; - } - } - - return ret; - } - - var pos = POS.test( selectors ) ? - jQuery( selectors, context || this.context ) : null; - - for ( i = 0, l = this.length; i < l; i++ ) { - cur = this[i]; - - while ( cur ) { - if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { - ret.push( cur ); - break; - - } else { - cur = cur.parentNode; - if ( !cur || !cur.ownerDocument || cur === context ) { - break; - } - } - } - } - - ret = ret.length > 1 ? jQuery.unique(ret) : ret; - - return this.pushStack( ret, "closest", selectors ); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - if ( !elem || typeof elem === "string" ) { - return jQuery.inArray( this[0], - // If it receives a string, the selector is used - // If it receives nothing, the siblings are used - elem ? jQuery( elem ) : this.parent().children() ); - } - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context ) : - jQuery.makeArray( selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? - all : - jQuery.unique( all ) ); - }, - - andSelf: function() { - return this.add( this.prevObject ); - } -}); - -// A painfully simple check to see if an element is disconnected -// from a document (should be improved, where feasible). -function isDisconnected( node ) { - return !node || !node.parentNode || node.parentNode.nodeType === 11; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return jQuery.nth( elem, 2, "nextSibling" ); - }, - prev: function( elem ) { - return jQuery.nth( elem, 2, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( elem.parentNode.firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.makeArray( elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ), - // The variable 'args' was introduced in - // https://github.com/jquery/jquery/commit/52a0238 - // to work around a bug in Chrome 10 (Dev) and should be removed when the bug is fixed. - // http://code.google.com/p/v8/issues/detail?id=1050 - args = slice.call(arguments); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; - - if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret, name, args.join(",") ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return elems.length === 1 ? - jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : - jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], - cur = elem[ dir ]; - - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - nth: function( cur, result, dir, elem ) { - result = result || 1; - var num = 0; - - for ( ; cur; cur = cur[dir] ) { - if ( cur.nodeType === 1 && ++num === result ) { - break; - } - } - - return cur; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); - -// Implement the identical functionality for filter and not -function winnow( elements, qualifier, keep ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - var retVal = !!qualifier.call( elem, i, elem ); - return retVal === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem, i ) { - return (elem === qualifier) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem, i ) { - return (jQuery.inArray( elem, qualifier ) >= 0) === keep; - }); -} - - - - -var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, - rleadingWhitespace = /^\s+/, - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, - rtagName = /<([\w:]+)/, - rtbody = /", "" ], - legend: [ 1, "
", "
" ], - thead: [ 1, "", "
" ], - tr: [ 2, "", "
" ], - td: [ 3, "", "
" ], - col: [ 2, "", "
" ], - area: [ 1, "", "" ], - _default: [ 0, "", "" ] - }; - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// IE can't serialize and - - - - - - - - - - -
-
-
-
- -
-

Acknowledgements

-
-

Test Server

-

We’re proud to provide you a development server which is sponsered by XXX #Todo -Feel free to change anything you like, we can simply rest the DB from Time to Time.

-
-
-

Missing Functionality

-
    -
  • -
    Delete Domain
    -
      -
    • missing in REST
    • -
    • implemented in mailman3 a8
    • -
    -
    -
    -
  • -
  • Show a List of all subscribed users

    -
  • -
-
-
-

ACL

-
    -
  • Middleware

    -
    -

    We don’t have the Middleware which is required to work with users and it’s permissions yet. For this reason we had to tweak some functions to be a hardcoded Demo object.

    -
      -
    • -
      Login Check
      -

      At the moment we’re using a hardcoded List of allowed usernames and Passwords which are all stored in Plain within the AuthBackends Source File.

      -
      -
      -
    • -
    • -
      has_perm Decorator
      -

      As we don’t have a middleware to check for users and it’s permissions we do only use one permission at the moment. The permission site domain_admin is hardcoded to user.username == “james@example.com

      -
      -
      -
    • -
    -
    -
  • -
-
-
-

Ideas

-
    -
  • ContactPage
  • -
  • -
-
-
- - -
-
-
-
-
-

Table Of Contents

- - -

Previous topic

-

Using the Django App - Developers Resource

-

Next topic

-

Contributions:

-

This Page

- - - -
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/genindex.html b/doc/_build/html/genindex.html deleted file mode 100644 index 916dddf..0000000 --- a/doc/_build/html/genindex.html +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - Index — mailman_django v0.1 documentation - - - - - - - - - - - -
-
-
-
- - -

Index

- -
- T -
-

T

- - -
-
tests.tests (module)
-
- - - -
-
-
-
-
- - - - - -
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/index.html b/doc/_build/html/index.html deleted file mode 100644 index 367df44..0000000 --- a/doc/_build/html/index.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - Welcome to mailman_django’s documentation! — mailman_django v0.1 documentation - - - - - - - - - - - - -
- -
-
-

Next topic

-

Installation

-

This Page

- - - -
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/license.html b/doc/_build/html/license.html deleted file mode 100644 index 009e917..0000000 --- a/doc/_build/html/license.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - - - Contributions: — mailman_django v0.1 documentation - - - - - - - - - - - - -
-
-
-
- -
-

Contributions:

-
-

Mailman is licensed unter GPL

-

Copyright (C) 1998-2010 by the Free Software Foundation, Inc.

-

This file is part of GNU Mailman.

-

GNU Mailman 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.

-

GNU Mailman 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 -GNU Mailman. If not, see <http://www.gnu.org/licenses/>.

-
-
-

RRZE Icon Set

-

CreativeCommons Licence

-

The RRZE Icon Set is licenced under a Creative Commons Licence. -Please see the website for the current licence text.

-

More information about the Project could be found here: -http://rrze-icon-set.berlios.de/licence.html

-

Special thanks to: -* Franziska Sponsel (created additional Icons specially for our Project)

-
-
- - -
-
-
-
-
-

Table Of Contents

- - -

Previous topic

-

Using the Django App - Developers Resource

-

This Page

- - - -
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/objects.inv b/doc/_build/html/objects.inv deleted file mode 100644 index aba4c66..0000000 --- a/doc/_build/html/objects.inv +++ /dev/null Binary files differ diff --git a/doc/_build/html/py-modindex.html b/doc/_build/html/py-modindex.html deleted file mode 100644 index 131bbd1..0000000 --- a/doc/_build/html/py-modindex.html +++ /dev/null @@ -1,113 +0,0 @@ - - - - - - - - - Python Module Index — mailman_django v0.1 documentation - - - - - - - - - - - - - - -
-
-
-
- - -

Python Module Index

- -
- t -
- - - - - - - - - - -
 
- t
- tests -
    - tests.tests -
- - -
-
-
-
-
- - -
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/search.html b/doc/_build/html/search.html deleted file mode 100644 index d432562..0000000 --- a/doc/_build/html/search.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - Search — mailman_django v0.1 documentation - - - - - - - - - - - - - - - -
-
-
-
- -

Search

-
- -

- Please activate JavaScript to enable the search - functionality. -

-
-

- From here you can search these documents. Enter your search - words into the box below and click "search". Note that the search - function will automatically search for all of the words. Pages - containing fewer words won't appear in the result list. -

-
- - - -
- -
- -
- -
-
-
-
-
-
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/searchindex.js b/doc/_build/html/searchindex.js deleted file mode 100644 index 4570732..0000000 --- a/doc/_build/html/searchindex.js +++ /dev/null @@ -1 +0,0 @@ -Search.setIndex({objects:{tests:{tests:[4,0,0]}},terms:{all:[4,1,2],code:[4,1],forget:4,prefil:4,four:[],ackownledg:4,runserv:1,dirnam:1,follow:[4,1],decid:[4,1],authoris:4,send:4,under:3,introduc:1,merchant:3,sourc:2,everi:1,string:4,far:1,none:4,offlin:1,util:4,context_processor:1,mechan:4,exact:4,special:[4,1,3],contenttyp:1,administr:4,level:1,did:4,button:4,list:[4,2],"try":4,item:4,adjust:1,httpredirectobject:4,quick:1,setup:[4,1],dir:1,pleas:[4,1,3],modelbackend:1,impli:3,httpresponseredirect:4,cfg:[],seper:[4,1],request:4,past:1,second:1,download:1,further:[],click:4,compat:1,index:4,what:4,name_of_permiss:4,appear:1,sum:[],abl:[4,1],current:[4,3],delet:[4,2],new_list1:4,franziska:3,"new":4,net:1,"public":3,gener:3,remeb:1,here:[4,1,3],themself:4,ubuntu:1,path:1,along:3,modifi:[4,1,3],sinc:[],valu:[4,1],search:0,mailinglist:4,vertifi:1,anymor:1,step:1,jame:[4,2],doctest:4,action:4,chang:[4,1,2],mailman_media:1,contactpag:2,via:4,appli:1,app:[0,1,4],sponser:2,foundat:3,api:[0,1],sponsel:3,instal:[0,1,4],middlewar:[4,1,2],from:[4,1,2],describ:4,would:1,commun:1,doubl:4,two:4,perm:[],next:[4,1],websit:[1,3],few:1,call:[4,1],recommend:1,type:4,web_host:4,mailman_django:[0,1],abspath:1,relat:4,ital:[],site:[0,1,2,4],trail:1,berlio:3,stick:1,particular:3,hold:1,unpack:1,easiest:4,account:4,join:1,prepar:1,work:[4,1,2],uniqu:4,dev:4,itself:1,can:[4,1,2,3],purpos:3,login_requir:4,tar:1,sudo:1,templat:1,topic:4,want:[4,1],nearli:1,cours:1,multipl:4,anoth:4,faulti:4,georg:4,write:4,how:[],instead:[4,1],config:1,css:1,updat:1,resourc:[0,4],after:[4,1],"long":1,usabl:[],befor:[4,1],wrong:4,mai:4,end:1,data:[4,1],postfix:1,bind:1,bootstrap:1,django:[0,1,4],inform:[4,3],adverrtis:4,allow:[4,1,2],enter:4,fallback:1,automaticli:4,egg:1,order:4,listnam:4,help:[],becaus:4,has_perm:2,style:1,directli:4,fit:3,better:1,restart:1,onc:[4,1],mail:4,hidden:1,main:4,might:1,guarente:1,split:1,them:1,"return":4,thei:4,python:[4,1],auth:[4,1],unfortuneatli:4,mention:[4,1],front:4,now:[4,1],term:3,benst:1,somewher:1,name:[4,1],anyth:2,edit:4,simpl:[4,1],authent:4,separ:4,easili:1,each:4,debug:[4,1],found:[4,3],went:4,mailman_test_bindir:1,domain:[4,2],replac:[],idea:[0,2],procedur:4,realli:[4,1],redistribut:3,meta:4,"static":[],connect:[4,1],our:[4,1,3],todo:[4,2],dependeci:1,shown:4,space:[],miss:[0,2],develop:[0,1,2,4],publish:3,api_us:[4,1],content:[0,1,4],rest_serv:1,got:1,correct:4,earlier:[4,1],free:[4,1,2,3],cooki:[],reason:[4,1,2],base:1,mailmanweb:[],lists_of_domain:1,put:1,org:3,"40mail":4,launch:1,could:[4,1,3],membership:4,keep:1,filter:4,thing:[4,1],place:[4,1],isn:4,root_urlconf:1,requireti:[],summari:4,first:[4,1],softwar:3,rang:[],render:1,feel:[4,1,2],media_root:1,natti:1,restrict:4,instruct:4,alreadi:[4,1],done:[4,1],least:4,authentif:[4,1],owner:4,stabl:[4,1],installed_app:1,open:4,gpl:[0,3],differ:1,rrze:[0,3],hardcopi:1,licens:[0,3],system:1,messag:[4,1],licenc:3,fullfil:1,"final":4,store:[4,2],shell:[4,1],option:[4,1,3],real_nam:4,copi:[1,3],specifi:4,gsoc:1,part:[4,1,3],pars:4,priveledg:1,serv:1,enjoi:4,provid:[4,2],remov:4,new_domain:[],project:[4,1,3],were:[4,1],posit:4,fqdn_listnam:4,pre:4,ani:[1,3],packag:1,have:[4,1,2,3],tabl:1,need:[4,1],element:1,florian:1,destroi:1,client:[0,1,4],note:[4,1],without:[4,3],take:4,indic:4,singl:4,even:3,sure:[4,1],kati:4,distribut:3,shall:4,usernam:[4,1,2],object:[4,2],most:4,plan:[4,1],letter:4,watt:4,"class":[4,1],icon:[0,3],don:[4,1,2],bzr:1,url:[4,1],doc:4,later:[1,3],hardcod:[4,2],temporili:4,doe:4,mm_membership:4,left:4,came:[],show:[4,2],text:[4,3],liza:4,session:[4,1],permiss:[0,1,2,4],corner:4,fine:1,eas:1,redirect:4,absolut:1,onli:[4,1,2],locat:4,launchpad:1,copyright:3,explain:[0,4],configur:[4,1],should:[4,1,3],version:[1,3],suppos:1,local:4,hope:3,media_url:1,contribut:[0,3],get:[4,1],"__file__":1,stop:4,obviou:4,csrf:1,subscript:4,requir:[4,1,2],template_dir:1,whether:4,common:3,restadmin:1,where:1,view:[4,1],set:[0,1,3,4],see:[4,1,3],domain_admin:2,result:1,respons:4,fail:[4,1],wonder:4,awar:[4,1],statu:4,mailman3a7:1,correctli:4,databas:4,someth:4,restbackend:[4,1],behind:4,between:[4,1],"import":4,awai:1,email:4,realnam:[],correclti:[4,1],advertis:4,subfold:1,addit:[4,3],both:[4,1],last:4,plugin:1,admin:1,howev:1,etc:4,instanc:4,context:[4,1],delete_list:4,logout:4,login:[0,1,2,4],com:[4,1,2],load:4,english:4,simpli:[4,1,2],point:1,instanti:[],overview:4,address:[4,1],header:[],non:1,linux:4,backend:[4,1],mailman:[0,1,3,4],coupl:[4,1],"0a7":1,been:4,compon:1,much:1,unsubscrib:4,modif:1,upcom:1,xxx:2,togeth:[4,1],i18n:1,ngeorg:4,those:[4,1],"case":[4,1],creativecommon:3,therefor:[],look:4,gnu:3,plain:2,align:1,dashboard:4,abov:[0,4],mail_host:4,everyon:1,authentication_backend:1,new_list:[],demo:2,list_own:4,archiv:4,revis:1,subscrib:[4,2],decor:[4,1,2],let:4,welcom:0,author:[],receiv:3,media:1,make:[4,1],belong:4,same:[4,1],handl:[4,1],html:[1,3],gui:4,document:[0,4],finish:[0,4],http:[4,1,3],upon:4,moment:[4,1,2],http_host:4,user:[4,1,2],implement:[4,2],expand:4,appropri:1,framework:[],api_pass:[4,1],usual:1,well:[4,1],membership_set:4,exampl:[4,1,2],command:1,thi:[4,1,2,3],choos:4,everyth:[4,1],latest:1,just:1,rest:[0,1,2,4],mailman3:[0,1,2,4],webui:[4,1],yet:2,languag:4,easi:1,project_path:1,had:[4,2],list_summari:4,mailmanwebgsoc2011:1,add:[4,1],other:[4,1],lawrenc:1,save:[],modul:[4,1],bin:1,applic:[0,1],which:[4,1,2],unter:[0,3],know:1,gsoc_mailman:1,press:4,password:[4,1,2],tweak:2,authbackend:2,like:[4,1,2],template_context_processor:1,success:4,restpass:1,server:[0,1,2],href:4,setup_mm:4,either:[4,3],page:[0,1,4],www:[1,3],right:1,acknowledg:[0,2,4],creation:4,some:[4,1,2],home:1,funcit:[],buildout:1,djangoproject:[4,1],confirm:4,woun:1,thank:3,select:4,slash:1,necessari:4,testobject:4,localhost:[4,1],refer:4,machin:4,core:1,who:4,run:[0,1,4],bold:[],symlink:1,host:4,repositori:1,post:4,mm_new_domain:4,stage:[],about:[1,3],central:[],usa:4,mass_subscrib:4,acl:[0,2],permission_requir:4,act:4,fals:4,processor:1,block:4,own:[4,1],addus:4,status_cod:4,within:[4,1,2],warranti:3,creativ:3,empti:4,contrib:1,your:[4,1,3],manag:[4,1],choosen:4,log:4,wai:4,"40exampl":4,execut:4,print:4,submit:4,custom:1,avail:[4,1],start:[4,1],reli:4,includ:[4,1],suit:4,systers_django:[],"function":[0,1,2,4],head:4,form:4,offer:4,descrip:1,link:[4,1],translat:4,teardown_mm:4,branch:1,line:4,"true":4,succe:4,made:[4,1],render_mailman_them:1,possibl:1,"default":1,access:[0,1,4],displai:4,below:4,memebership:4,otherwis:1,more:[4,3],extend_ajax:1,proud:2,creat:[4,1,3],cover:4,dure:[4,1],doesn:4,exist:1,file:[4,1,2,3],syncdb:1,check:[4,1,2],inc:3,again:[4,1],successfulli:1,titl:[],when:[4,1],detail:3,gettext:4,valid:4,futur:1,rememb:4,test:[0,1,2,4],you:[4,1,2,3],nice:4,why:4,prequir:4,consid:1,stai:4,bullet:[],directori:[4,1],bottom:4,descript:4,mailman_them:1,mass:4,time:[4,1,2],escap:4},objtypes:{"0":"py:module"},titles:["Welcome to mailman_django’s documentation!","Installation","Acknowledgements","Contributions:","Using the Django App - Developers Resource"],objnames:{"0":"Python module"},filenames:["index","setup","acknowledgements","license","using"]}) \ No newline at end of file diff --git a/doc/_build/html/setup.html b/doc/_build/html/setup.html deleted file mode 100644 index 1dd1d62..0000000 --- a/doc/_build/html/setup.html +++ /dev/null @@ -1,349 +0,0 @@ - - - - - - - - - Installation — mailman_django v0.1 documentation - - - - - - - - - - - - - -
-
-
-
- -
-

Installation

-
-

Mailman3 - a7

-
    -
  • -
    Check Dependecys
    -
    -

    Note

    -

    This might differ on different systems - I was testing Ubuntu 11.04 natty and needed to install Postfix before running the installation.

    -
    -
    -
    -
  • -
  • Download or branch Mailman3a7 from http://launchpad.net/mailman/3.0/3.0.0a7/+download/mailman-3.0.0a7.tar.gz and unpack it.

    -
  • -
  • -
    Change into the unpacked DIR which might be named “mailman-3.0.0a7”
    -
    -

    Note

    -

    Please be aware that the following steps only work if you’re really in that DIR. If you consider adding a subfolder name to the commands those woun’t work !

    -
    -
    -
    -
  • -
  • Run the Installation from a Shell (not Python)

    -
    -
    $ python bootstrap.py
    -$ bin/buildout
    -
    -
    -
    -
  • -
  • Vertify that everything was setup correclty and your branch fullfills the version requirements by running it’s own test module

    -
    -
    $ bin/test
    -
    -
    -
    -
  • -
  • Now you’re able to run mailman using

    -
    -
    $ bin/mailman
    -
    -
    -
    -
  • -
-
-
-

Mailman Client / REST Api

-

Next thing you need to do is installing the Plugin used for communication with non-mailman-code parts like our WebUI. Within the Client Branch we’ve put both, Classes to access the Core which are run as a Plugin and some Python Bindings. -The Python Bindings were used later on within our Django Application to access the Server. Failing to install the Client would result in an offline version of WebUI

-

Once again start by branching the code which is on Launchpad

-
-
$ bzr branch lp:mailman.client
-
-
-
-
-

Note

-

We’ve successfully tested our functionality with Revision 16 - In case the Client gets updated which it surely will in future we can’t guarentee that it is compatible anymore.

-
-

As you only want to run the Client and not modify it’s code you’re fine with running the install command from within the directory. At the moment this requires Sudo Priveledges as files will copied to the Python Site-Packages Directory which is available to all users.

-
-
$ sudo python setup.py install
-
-
-
-
-

Note

-

If you want to change parts of the Client you can use the development option which will create a Symlink instead of a Hardcopy of all files:

-
$ sudo python setup.py develop
-
-
-
-

All changes will apply once you restart Mailman itself.

-
-
-

Django 1.3

-

During our development we started a Django Site based on the 1.2 Version which is included into Ubuntu’s repositorys. This made the installation easy but we ended up having some points which would get a much better code when using some elements introducing in 1.3. -As Mailman is supposed to be long-time stable - or however you call it - we decided that we should stick to the latest stable version right away. For this reason you’re required to install Django 1.3+ which is descriped on their Website. (https://www.djangoproject.com/download/)

-
-

Note

-

Please be Aware that it’s not recommended to run both 1.2 and 1.3 at the same time

-
-

In Django you’ve got 3 different levels of data. -- Django Installation Files -- Django Site -- Django Apps -usually you don’t see the Installation as it’s hidden somewhere within the System and the Apps are simply included into The Site Directory. -As we wanted to have the possibility to include the App into any Django Site which might already exist we decided to keep Site and App seperated.

-

During GSoC we’ve used different branches for this: -- lp:mailmanwebgsoc2011 -- lp:mailmanwebgsoc2011/django-site-0.1

-
-
-

Django Site Installation

-

We’ve created this branch for quick development - everyone is free to use his own Django site, but this one already includes a couple of modifications we’ve made that will allow running the Development Server just a few seconds after Branching both Site and App.

-

As far as I know at the moment we’ve made the following alignments: (All of these are in the settings.py file of the Django Site)

-
-

REST_SERVER = ‘localhost:8001’ -API_USER = ‘restadmin’ -API_PASS = ‘restpass’

-
-

Note

-

These are the default values used by the Mailman Client we’ve installed earlier. Feel free to modify the password and username if you need to.

-
-
-

MAILMAN_TEST_BINDIR = ‘/home/benste/Projects/Gsoc_mailman/mailman-3.0.0a7/bin’ -#/home/florian/Development/mailman/bin’

-
-
-

Note

-

Running the test modules requires to launch a special version of mailman with it’s own testing DB otherwise you’d destroy you’re sites content during testing. This Path needs to point to YOUR own installation of mailman.

-
-
-

MAILMAN_THEME = “default”

-
-
-

Note

-

We decided to allow simple Appearance Modifications, to use a custom CSS you could simply add a Directory within the media directory of the app and Link it’s name here. All HTML Pages will use the Styles from the Directory mentioned in here

-
-
-

PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) -MEDIA_ROOT = os.path.join(os.path.split(PROJECT_PATH)[0], “mailman_django/media/mailman_django/”)

-
-
-

Note

-

Absolute path to the directory that holds media. -Example: “/home/media/media.lawrence.com/”

-
-
-

MEDIA_URL = ‘/mailman_media/’

-
-
-

Note

-

URL that handles the media served from MEDIA_ROOT. Make sure to use a trailing slash if there is a path component (optional in other cases).Examples: “http://media.lawrence.com“, “http://example.com/media/

-
-
-
-
AUTHENTICATION_BACKENDS = (
-

‘mailman_django.auth.restbackend.RESTBackend’, -‘django.contrib.auth.backends.ModelBackend’ -)

-
-

Note

-

This creates a connection in between Djangos Login and Permission Decorators which we use for authentification and a custom Backend which we created in Preparation to work together with the REST API or an upcoming Middleware. -You need to keep the Django one for testing fallback.

-
-
-
TEMPLATE_CONTEXT_PROCESSORS=(
-

“django.contrib.auth.context_processors.auth”, -“django.core.context_processors.debug”, -“django.core.context_processors.i18n”, -“django.core.context_processors.media”, -“django.core.context_processors.csrf”, -“django.contrib.messages.context_processors.messages”, -“mailman_django.context_processors.lists_of_domain”, -“mailman_django.context_processors.render_MAILMAN_THEME”, -“mailman_django.context_processors.extend_ajax”

-
-

Note

-

We’re using Context Processors to easily render value which we need in nearly every view.

-
-
-
-

ROOT_URLCONF = ‘mailman_django.urls’

-
-
-

Note

-

This is where our URL Config is - if you run your own site with other Apps as well you might want to adjust this to your urls.py which includes our file.

-
-
-
-
TEMPLATE_DIRS = (
-

os.path.join(PROJECT_PATH, “mailman_django/templates”),

-
-

Note

-

Adds our own Templates

-
-
-
INSTALLED_APPS = (
-

‘django.contrib.auth’, -‘django.contrib.contenttypes’, -‘django.contrib.sessions’, -‘django.contrib.sites’, -‘django.contrib.admin’, -‘mailman_django’,

-
-

Note

-

Makes sure that Django knows about our directory as an App and creates needed Tables () when running

-
-
$ python manage.py syncdb
-
-
-
-
-

Now that you know about all these you might start the development server. As usual in Django this is done by running

-
-
$ python manage.py runserver
-
-
-
-

within the Django Site Directory - as usual the default address is localhost:8000 -Of course it will only be able to start once our app is in place as well.

-
-
-

Django Application

-

First get the files, and make sure you paste them into your Project directory and adjust it’s name to the appropriate configuration you’ve made earlier in the Django Site. Remeber our default is mailman_django

-
-
$ bzr branch lp:mailmanwebgsoc2011
-
-
-
-
-

Note

-

We’ve tested Revision 172

-
-
-

Note

-

We’re planning to ease up installation by creating an egg

-
-
-
- - -
-
-
-
-
-

Table Of Contents

- - -

Previous topic

-

Welcome to mailman_django’s documentation!

-

Next topic

-

Using the Django App - Developers Resource

-

This Page

- - - -
-
-
-
- - - - \ No newline at end of file diff --git a/doc/_build/html/using.html b/doc/_build/html/using.html deleted file mode 100644 index 8405715..0000000 --- a/doc/_build/html/using.html +++ /dev/null @@ -1,545 +0,0 @@ - - - - - - - - - Using the Django App - Developers Resource — mailman_django v0.1 documentation - - - - - - - - - - - - - -
-
-
-
- -
-

Using the Django App - Developers Resource

-
-

Tests Login and Permissions

-

This document both acts as a test for all the functions implemented -in the UI as well as documenting what can be done

-
-

Test Pre Requirements

-
    -
  • We’ve created a special Testobject which will run it’s own instance of Mailman3 with a new empty Database.

    -
    -
    >>> from setup import setup_mm, Testobject, teardown_mm
    ->>> testobject = setup_mm(Testobject())
    -
    -
    -
    -

    Note

    -

    You need to stop all Mailman3 instances before running the tests

    -
    -
    -
  • -
  • -
    Modules needed
    -

    As we can’t make sure that you’re running the same language as we did we made sure that each test below is executed using the exact same translation mechanism as we use to Display you Status Messages and other GUI Texts.

    -
    -
    Import Translation Module to check success messages
    -
    >>> from django.utils.translation import gettext as _
    -
    -
    -
    -
    Import HTTPRedirectObject to check whether a response redirects
    -
    >>> from django.http import HttpResponseRedirect
    -
    -
    -
    -
    -
    -
    -
  • -
-
-
-

Getting Started

-

Starting the test module we do use a special Django Test Client which needs to be imported first.

-
>>> from django.test.client import Client
->>> c = Client()
-
-
-

Once this is created we can try accessing our first Page and check that this was done successful

-
>>> response = c.get('/lists/',)
->>> response.status_code
-200
-
-
-
-
-

Login Required

-

As described within the installation instructions we already started using authentification. The easiest way testing it is that we simply load a page which is restricted to some users only. -This was done using Django’s @login_required Decorator in front of the View. -One of the pages which requires a Login is the Domain Administration, if we can load the page without a redirect to the Login page, you’re either already logged in or something went wrong.

-
>>> response = c.get('/domains/')
->>> print type(response) == HttpResponseRedirect
-True
-
-
-
-
-

Login of a User

-

We’ve decided to write our own Authentification Backend to use with Django. -This will handle all @login_required .authenticate() .login() requests.

-

As we do not have the Authenticating Part which connects Both Mailman and the WebUI we had to hardcode usernames and permissions into the file (auth/restbackend.py) -For more information what we’re planning to implement here take a look at the Acknowledgements.

-
-
-

Note

-

If you’re planning to expand this feel free to use this wonderful resource: -https://docs.djangoproject.com/en/dev/topics/auth/

-
-
-

Once the new middleware is in place we will need to create a user first. At the moment the user is automaticly created upon success of the login procedure.

-
>>> #c.... adduser() #TODO add user
-
-
-

Users will have to use the Login form which is located at (/accounts/login/) in order to authenticate themself. The Login / Logout button is linked in the bottom left corner of each page as well.

-

After each successful login users should be redirected either to the site which they requested before - stored in a GET Value named next - or get the List index. Only if they’ve used a faulty login they should stay on the Login Page to try again.

-
>>> response = c.post('/accounts/login/',
-...                   {"user": "james@example.com",
-...                   "password": "james"})
-
-
-
>>> print type(response) == HttpResponseRedirect
-True
-
-
-

Unfortuneatly the Test Client requires to use the Login directly because it does handle each request seperately. For this reason we have to use the following part in the Tests only to authenticate a user. -Each successful Login will return True and write the users object into the request context, which allows simple checks whether there is a user logged in and what his name is.

-
>>> c.login(username='katie@example.com', password='katie')
-True
-
-
-
-
-

Permissions

-

Our own Auth Backend allows the use of Djangos own Permission Decorator which is

-
@permission_required(NAME_OF_PERMISSION)
-
-

At the moment we’ve installed this for Domain Administration,

-
-
-

Note

-

Please take a look at the ackownledgement to see what is working in this part

-
-
-

Get the Domains page and get redirected because Katie who is logged in doesn’t have the Permission

-
>>> response = c.get('/domains/')
->>> print type(response) == HttpResponseRedirect
-True
-
-
-

Logout Katie who isn’t a Domain-Owner and Login James who should be allowed to view this page

-
>>> c.logout() #katie
->>> c.login(username='james@example.com', password='james')
-True
-
-
-

Check that the Page now loads correctly

-
>>> response = c.get('/domains/')
->>> response.status_code
-200
-
-
-
-
-
-

Pages

-
-

Create a New Domain

-

Domain Administration is called by opening the URL mentioned below. Prequirements like Authorisation and Permissions have been covered before. -Now we do check that the response really does have the correct heading.

-
>>> response = c.get('/domains/')
->>> print "Domain Index" in response.content
-True
-
-
-

On this page there should be a button which allows to create a new Domain. -If you’re running Mailman for the first time you need to create a Domain before creating Mailinglists. That’s only because each List is Part of a Domain and could not be created without it’s reference.

-
>>> '<li class="mm_new_domain"><a href="/domains/new/">New Domain</a></li>' in response.content
-True
-
-
-
-
For sure the page allowing the creation of a new Domain should open correclty as well
-
>>> response = c.get('/domains/new/')
->>> response.status_code
-200
->>> print "Add a new Domain" in response.content #TODO - change heading
-True
-
-
-
-
-

Each Domain has two main Data Parts, most obvious for a mailinglist we do need a mail_host that’s the part behind the @ when getting an email. In addition we offer you this WebUI for configuration, some may have multiple URLs they can use to access the same installation of mailman. For this reason each Mailinglist gets it’s own web_host as well - which doesn’t need to be unique.

-

Testing the Site we do now submit the form we’ve loaded earlier by sending all necessary data in a POST request. The new Domain will be called mail.example.com and available via it’s web_host example.com.

-
-
-

Note

-

If you do want to use web_host filtering in your webUI you need to remember adding the URL to your /etc/hosts - at least for development

-
-
>>> response = c.post('/domains/new/',
-...                   {"mail_host": "mail.example.com",
-...                    "web_host": "example.com",
-...                    "description": "doctest testing domain"})  
->>> response = c.get('/domains/')
-
-
-
-
-
Then we check that everything went well.
-
>>> response.status_code
-200
->>> print "doctest testing domain" in response.content
-True
-
-
-
-
-
-
-

Create a New List

-

After creating a Domain you should be able to create new Lists. The Button for doing so is shown on the List index Page which should offer a list of all available (adverrtised) lists.

-
>>> response = c.get('/lists/')
->>> response.status_code
-200
->>> "All available Lists" in response.content
-True
-
-
-

The new List creation form is opened by clicking on the Button mentioned above or accessing the page directly

-
>>> response = c.get('/lists/new/')
->>> response.status_code
-200
->>> print "Create a new List on" in response.content
-True
-
-
-

Creating a new List we do need to specify at least the below mentioned items. Those were entered using some nice GUI Forms which do only show up available Values or offer you to choose a name which will be checked during validation. -We’re now submitting the form using a POST request and get redirected to the List Index Page

-
>>> response = c.post('/lists/new/',
-...                   {"listname": "new_list1",
-...                    "mail_host": "mail.example.com",
-...                    "list_owner": "james@example.com",
-...                    "description": "doctest testing list",
-...                    "advertised": "True",    
-...                    "languages": "English (USA)"})    
->>> print type(response) == HttpResponseRedirect
-True
-
-
-

As List index is an overview of all advertised Lists and we’ve choosen to do so we should now see our new List within the overview. HTTP_HOST is added as META Data for the request because we do only want to see Domains which belong to the example.com web_host

-
>>> response = c.get('/lists/',HTTP_HOST='example.com')
->>> response.status_code
-200
->>> "New_list1" in response.content
-True
-
-
-
-
-

List Summary

-

List summary is a dashboard for each List. It does have Links to the most useful functions which are only related to that Domain. These include the Values mentioned below. _(function) is used to Translate these to you local language.

-
>>> response = c.get('/lists/new_list1%40mail.example.com/',)    
->>> response.status_code
-200
->>> _("Subscribe") in response.content
-True
->>> _("Archives") in response.content
-True
->>> _("Edit Options") in response.content
-True
->>> _("Unsubscribe") in response.content
-True
-
-
-
-
-

Subscriptions

-

The Subscriptions form is found on the below URL. Last part of the Url is one of [None,’subscribe’,’unsubscribe’]

-
>>> url = '/subscriptions/new_list1%40mail.example.com/subscribe'
->>> response = c.get(url)
->>> response.status_code
-200
-
-
-

Forms will be prefilled with the Users Email if so. is logged in.

-
>>> "james@example.com" in response.content
-True
-
-
-

Now we can subscribe James and Katie and check that we get redirected to List Summary.

-
>>> response = c.post(url,
-...                   {"email": "james@example.com",
-...                   "real_name": "James Watt",
-...                   "name": "subscribe",
-...                   "fqdn_listname": "new_list1@mail.example.com"})
->>> response = c.post(url,
-...                   {"email": "katie@example.com",
-...                   "real_name": "Katie Doe",
-...                   "name": "subscribe",
-...                   "fqdn_listname": "new_list1@mail.example.com"})   
->>> print (_('Subscribed')+' katie@example.com') in response.content
-True
-
-
-

The logged in user (james@example.com) can now modify his own membership using a button which is displayed in list_summary.

-
>>> response = c.get('/lists/new_list1%40mail.example.com/')
->>> "mm_membership" in response.content
-True
-
-
-

Using the same subscription page we can unsubscribe as well.

-
>>> response = c.post('/subscriptions/new_list1%40mail.example.com/unsubscribe',
-...                   {"email": "katie@example.com",
-...                   "name": "unsubscribe",
-...                   "fqdn_listname": "new_list1@mail.example.com"})
->>> print (_('Unsubscribed')+' katie@example.com') in response.content
-True
-
-
-
-
-

Mass Subscribe Users (within settings)

-

Another page related to Mass Subscriptions will be available to List Owners as well. This page will allow adding a couple of users to one lists at the same time.

-
>>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/'
->>> response = c.get(url)
->>> response.status_code
-200
-
-
-

Try mass subscribing the users 'liza@example.com‘ and -'george@example.com‘. Each address should be provided on a separate -line so add ‘n’ between the names to indicate that this was done -(we’re on a Linux machine which is why the letter ‘n’ was used and -the double ‘’ instead of a single one is to escape the string -parsing of Python).

-
>>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/'
->>> response = c.post(url,
-...                   {"emails": "liza@example.com\ngeorge@example.com"})
-
-
-

If everything was successful, we shall get a positive response from -the page. We’ll check that this was the case.

-
>>> print _("The mass subscription was successful.") in response.content
-True
-
-
-
-
-

Change the Memebership Settings

-

Now let’s go to the membership settings page. Once we go there we -should get a list of all the available lists.

-
>>> response = c.get('/membership_settings/new_list1%40mail.example.com/')
->>> print "Membership Settings" in response.content
-True
-
-
-

Select the list 'new_list1@example.com‘.

-
>>> response = c.get('/membership_settings/new_list1%40mail.example.com/')
->>> print ("Membership Settings" in response.content) and ("for new_list1@mail.example.com" in response.content)
-True
-
-
-
-

Note

-

This page relies on the Middleware connecting the Django Project with Mailman - see acknowledgements

-
-
-
-

Delete the List

-

Finally, let’s delete the list. -We start by checking that the list is really there (for reference).

-
>>> response = c.get('/lists/',HTTP_HOST='example.com')
->>> print "New_list1" in response.content
-True
-
-
-
-
Trying to delete the List we have to confirm this action
-
>>> response = c.get('/delete_list/new_list1%40mail.example.com/',)
->>> print "Please confirm" in response.content
-True
-
-
-
-
Confirmed by pressing the button which requests the same page using POST
-
>>> response = c.post('/delete_list/new_list1%40mail.example.com/',)
-
-
-
-
...and check that it’s been deleted.
-
>>> response = c.get('/lists/',HTTP_HOST='example.com')
->>> print "new_list1%40example.com" in response.content
-False
-
-
-
-
-
-
-
-

Finishing Test

-
-
Don’t forget to remove the test object after testing all functions
-
>>> teardown_mm(testobject)    
-
-
-
-
-
-
-

Running the tests explained above.

-

We’ve added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site.

-

Run the following in the Site Directory

-
-
$ python manage.py test
-
-
-
-
-

Note

-

Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it’s own mailman temporily.

-
-
-
-

Accessing the REST Client for Testing

-

If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it’s current Directory within the Django Site Directory.

-
-
from settings import API_USER, API_PASS
-from mailman.client import Client
-c = Client('http://localhost:8001/3.0', API_USER, API_PASS)
-#DEBUG: Python Session
-
-
-
-
-
- - -
-
-
- -
-
- - - - \ No newline at end of file diff --git a/doc/acknowledgements.rst b/doc/acknowledgements.rst deleted file mode 100644 index 4abdd73..0000000 --- a/doc/acknowledgements.rst +++ /dev/null @@ -1,37 +0,0 @@ -Acknowledgements -================ - -Test Server ------------ - -We're proud to provide you a development server which is sponsered by XXX #Todo -Feel free to change anything you like, we can simply rest the DB from Time to Time. - -Missing Functionality ---------------------- - -* Delete Domain - * missing in REST - * implemented in mailman3 a8 - -* Show a List of all subscribed users - -ACL ---- - -* Middleware - - We don't have the Middleware which is required to work with users and it's permissions yet. For this reason we had to tweak some functions to be a hardcoded Demo object. - - * Login Check - At the moment we're using a hardcoded List of allowed usernames and Passwords which are all stored in Plain within the AuthBackends Source File. - * has_perm Decorator - As we don't have a middleware to check for users and it's permissions we do only use one permission at the moment. The permission site domain_admin is hardcoded to user.username == "james@example.com" - - - -Ideas ------ - -* ContactPage -* diff --git a/doc/conf.py b/doc/conf.py deleted file mode 100644 index c67bc2b..0000000 --- a/doc/conf.py +++ /dev/null @@ -1,260 +0,0 @@ -# -*- coding: utf-8 -*- -# -# mailman_django documentation build configuration file, created by -# sphinx-quickstart on Wed Aug 17 15:43:10 2011. -# -# This file is execfile()d with the current directory set to its containing dir. -# -# Note that not all possible configuration values are present in this -# autogenerated file. -# -# All configuration values have a default; values that are commented out -# serve to show the default. - -import sys, os - -#import the source code directory into Python Path for use with Auto Module -APP_ROOT = os.path.dirname(__file__) -sys.path.insert(0, os.path.split(APP_ROOT)[0]) - -# If extensions (or modules to document with autodoc) are in another directory, -# add these directories to sys.path here. If the directory is relative to the -# documentation root, use os.path.abspath to make it absolute, like shown here. -#sys.path.insert(0, os.path.abspath('.')) - -# -- General configuration ----------------------------------------------------- - -# If your documentation needs a minimal Sphinx version, state it here. -#needs_sphinx = '1.0' - -# Add any Sphinx extension module names here, as strings. They can be extensions -# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.viewcode'] - -# Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] - -# The suffix of source filenames. -source_suffix = '.rst' - -# The encoding of source files. -#source_encoding = 'utf-8-sig' - -# The master toctree document. -master_doc = 'index' - -# General information about the project. -project = u'mailman_django' -copyright = u'2011, Benedict Stein' - -# The version info for the project you're documenting, acts as replacement for -# |version| and |release|, also used in various other places throughout the -# built documents. -# -# The short X.Y version. -version = '0.1' -# The full version, including alpha/beta/rc tags. -release = '0.1' - -# The language for content autogenerated by Sphinx. Refer to documentation -# for a list of supported languages. -#language = None - -# There are two options for replacing |today|: either, you set today to some -# non-false value, then it is used: -#today = '' -# Else, today_fmt is used as the format for a strftime call. -#today_fmt = '%B %d, %Y' - -# List of patterns, relative to source directory, that match files and -# directories to ignore when looking for source files. -exclude_patterns = ['_build'] - -# The reST default role (used for this markup: `text`) to use for all documents. -#default_role = None - -# If true, '()' will be appended to :func: etc. cross-reference text. -#add_function_parentheses = True - -# If true, the current module name will be prepended to all description -# unit titles (such as .. function::). -#add_module_names = True - -# If true, sectionauthor and moduleauthor directives will be shown in the -# output. They are ignored by default. -#show_authors = False - -# The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' - -# A list of ignored prefixes for module index sorting. -#modindex_common_prefix = [] - - -# -- Options for HTML output --------------------------------------------------- - -# The theme to use for HTML and HTML Help pages. See the documentation for -# a list of builtin themes. -html_theme = 'default' - -# Theme options are theme-specific and customize the look and feel of a theme -# further. For a list of options available for each theme, see the -# documentation. -#html_theme_options = {} - -# Add any paths that contain custom themes here, relative to this directory. -#html_theme_path = [] - -# The name for this set of Sphinx documents. If None, it defaults to -# " v documentation". -#html_title = None - -# A shorter title for the navigation bar. Default is the same as html_title. -#html_short_title = None - -# The name of an image file (relative to this directory) to place at the top -# of the sidebar. -#html_logo = None - -# The name of an image file (within the static path) to use as favicon of the -# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 -# pixels large. -#html_favicon = None - -# Add any paths that contain custom static files (such as style sheets) here, -# relative to this directory. They are copied after the builtin static files, -# so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] - -# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, -# using the given strftime format. -#html_last_updated_fmt = '%b %d, %Y' - -# If true, SmartyPants will be used to convert quotes and dashes to -# typographically correct entities. -#html_use_smartypants = True - -# Custom sidebar templates, maps document names to template names. -#html_sidebars = {} - -# Additional templates that should be rendered to pages, maps page names to -# template names. -#html_additional_pages = {} - -# If false, no module index is generated. -#html_domain_indices = True - -# If false, no index is generated. -#html_use_index = True - -# If true, the index is split into individual pages for each letter. -#html_split_index = False - -# If true, links to the reST sources are added to the pages. -#html_show_sourcelink = True - -# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True - -# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. -#html_show_copyright = True - -# If true, an OpenSearch description file will be output, and all pages will -# contain a tag referring to it. The value of this option must be the -# base URL from which the finished HTML is served. -#html_use_opensearch = '' - -# This is the file name suffix for HTML files (e.g. ".xhtml"). -#html_file_suffix = None - -# Output file base name for HTML help builder. -htmlhelp_basename = 'mailman_djangodoc' - - -# -- Options for LaTeX output -------------------------------------------------- - -# The paper size ('letter' or 'a4'). -#latex_paper_size = 'letter' - -# The font size ('10pt', '11pt' or '12pt'). -#latex_font_size = '10pt' - -# Grouping the document tree into LaTeX files. List of tuples -# (source start file, target name, title, author, documentclass [howto/manual]). -latex_documents = [ - ('index', 'mailman_django.tex', u'mailman\\_django Documentation', - u'Benedict Stein', 'manual'), -] - -# The name of an image file (relative to this directory) to place at the top of -# the title page. -#latex_logo = None - -# For "manual" documents, if this is true, then toplevel headings are parts, -# not chapters. -#latex_use_parts = False - -# If true, show page references after internal links. -#latex_show_pagerefs = False - -# If true, show URL addresses after external links. -#latex_show_urls = False - -# Additional stuff for the LaTeX preamble. -#latex_preamble = '' - -# Documents to append as an appendix to all manuals. -#latex_appendices = [] - -# If false, no module index is generated. -#latex_domain_indices = True - - -# -- Options for manual page output -------------------------------------------- - -# One entry per manual page. List of tuples -# (source start file, name, description, authors, manual section). -man_pages = [ - ('index', 'mailman_django', u'mailman_django Documentation', - [u'Benedict Stein'], 1) -] - - -# -- Options for Epub output --------------------------------------------------- - -# Bibliographic Dublin Core info. -epub_title = u'mailman_django' -epub_author = u'Benedict Stein' -epub_publisher = u'Benedict Stein' -epub_copyright = u'2011, Benedict Stein' - -# The language of the text. It defaults to the language option -# or en if the language is not set. -#epub_language = '' - -# The scheme of the identifier. Typical schemes are ISBN or URL. -#epub_scheme = '' - -# The unique identifier of the text. This can be a ISBN number -# or the project homepage. -#epub_identifier = '' - -# A unique identification for the text. -#epub_uid = '' - -# HTML files that should be inserted before the pages created by sphinx. -# The format is a list of tuples containing the path and title. -#epub_pre_files = [] - -# HTML files shat should be inserted after the pages created by sphinx. -# The format is a list of tuples containing the path and title. -#epub_post_files = [] - -# A list of files that should not be packed into the epub file. -#epub_exclude_files = [] - -# The depth of the table of contents in toc.ncx. -#epub_tocdepth = 3 - -# Allow duplicate toc entries. -#epub_tocdup = True diff --git a/doc/index.rst b/doc/index.rst deleted file mode 100644 index a241ad8..0000000 --- a/doc/index.rst +++ /dev/null @@ -1,19 +0,0 @@ -.. mailman_django documentation master file, created by - sphinx-quickstart on Wed Aug 17 15:43:10 2011. - You can adapt this file completely to your liking, but it should at least - contain the root `toctree` directive. - -Welcome to mailman_django's documentation! -========================================== - -Contents: - -.. toctree:: - :maxdepth: 2 - - setup.rst - using.rst - acknowledgements.rst - license.rst - -* :ref:`search` diff --git a/doc/license.rst b/doc/license.rst deleted file mode 100644 index 9d427c5..0000000 --- a/doc/license.rst +++ /dev/null @@ -1,34 +0,0 @@ -Contributions: -============== -Mailman is licensed unter *GPL* ------------------------------ -Copyright (C) 1998-2010 by the Free Software Foundation, Inc. - -This file is part of GNU Mailman. - -GNU Mailman 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. - -GNU Mailman 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 -GNU Mailman. If not, see . - -RRZE Icon Set -------------- - -**CreativeCommons Licence** - -The RRZE Icon Set is licenced under a Creative Commons Licence. -Please see the website for the current licence text. - -More information about the Project could be found here: -http://rrze-icon-set.berlios.de/licence.html - -Special thanks to: -* Franziska Sponsel (created additional Icons specially for our Project) diff --git a/doc/setup.rst b/doc/setup.rst deleted file mode 100644 index 70c7768..0000000 --- a/doc/setup.rst +++ /dev/null @@ -1,187 +0,0 @@ -Installation -============ - -Mailman3 - a7 -------------- - -* Check Dependecys - .. note:: - This might differ on different systems - I was testing Ubuntu 11.04 natty and needed to install Postfix before running the installation. -* Download or branch Mailman3a7 from http://launchpad.net/mailman/3.0/3.0.0a7/+download/mailman-3.0.0a7.tar.gz and unpack it. -* Change into the unpacked DIR which might be named "mailman-3.0.0a7" - .. note:: - Please be aware that the following steps only work if you're really in that DIR. If you consider adding a subfolder name to the commands those woun't work ! -* Run the Installation from a Shell (not Python) - - .. code-block:: bash - - $ python bootstrap.py - $ bin/buildout - -* Vertify that everything was setup correclty and your branch fullfills the version requirements by running it's own test module - - .. code-block:: bash - - $ bin/test - -* Now you're able to run mailman using - - .. code-block:: bash - - $ bin/mailman - -Mailman Client / REST Api -------------------------- - -Next thing you need to do is installing the Plugin used for communication with non-mailman-code parts like our WebUI. Within the Client Branch we've put both, Classes to access the Core which are run as a Plugin and some Python Bindings. -The Python Bindings were used later on within our Django Application to access the Server. Failing to install the Client would result in an offline version of WebUI - -Once again start by branching the code which is on Launchpad - - .. code-block:: bash - - $ bzr branch lp:mailman.client - -.. note:: - We've successfully tested our functionality with Revision 16 - In case the Client gets updated which it surely will in future we can't guarentee that it is compatible anymore. - -As you only want to run the Client and not modify it's code you're fine with running the install command from within the directory. At the moment this requires Sudo Priveledges as files will copied to the Python Site-Packages Directory which is available to all users. - - .. code-block:: bash - - $ sudo python setup.py install - -.. note:: - If you want to change parts of the Client you can use the development option which will create a Symlink instead of a Hardcopy of all files: - - .. code-block:: bash - - $ sudo python setup.py develop - -All changes will apply once you restart Mailman itself. - -Django 1.3 ----------- -During our development we started a Django Site based on the 1.2 Version which is included into Ubuntu's repositorys. This made the installation easy but we ended up having some points which would get a much better code when using some elements introducing in 1.3. -As Mailman is supposed to be long-time stable - or however you call it - we decided that we should stick to the latest stable version right away. For this reason you're required to install Django 1.3+ which is descriped on their Website. (https://www.djangoproject.com/download/) - -.. note:: - Please be Aware that it's not recommended to run both 1.2 and 1.3 at the same time - -In Django you've got 3 different levels of data. -- Django Installation Files -- Django Site -- Django Apps -usually you don't see the Installation as it's hidden somewhere within the System and the Apps are simply included into The Site Directory. -As we wanted to have the possibility to include the App into any Django Site which might already exist we decided to keep Site and App seperated. - -During GSoC we've used different branches for this: -- lp:mailmanwebgsoc2011 -- lp:mailmanwebgsoc2011/django-site-0.1 - -Django Site Installation ------------------------- - -We've created this branch for quick development - everyone is free to use his own Django site, but this one already includes a couple of modifications we've made that will allow running the Development Server just a few seconds after Branching both Site and App. - -As far as I know at the moment we've made the following alignments: (All of these are in the settings.py file of the Django Site) - - REST_SERVER = 'localhost:8001' - API_USER = 'restadmin' - API_PASS = 'restpass' - - .. note:: - These are the default values used by the Mailman Client we've installed earlier. Feel free to modify the password and username if you need to. - -MAILMAN_TEST_BINDIR = '/home/benste/Projects/Gsoc_mailman/mailman-3.0.0a7/bin' -#/home/florian/Development/mailman/bin' - - .. note:: Running the test modules requires to launch a special version of mailman with it's own testing DB otherwise you'd destroy you're sites content during testing. This Path needs to point to YOUR own installation of mailman. - -MAILMAN_THEME = "default" - - .. note:: - We decided to allow simple Appearance Modifications, to use a custom CSS you could simply add a Directory within the media directory of the app and Link it's name here. All HTML Pages will use the Styles from the Directory mentioned in here - -PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) -MEDIA_ROOT = os.path.join(os.path.split(PROJECT_PATH)[0], "mailman_django/media/mailman_django/") - .. note:: - Absolute path to the directory that holds media. - Example: "/home/media/media.lawrence.com/" - -MEDIA_URL = '/mailman_media/' - - .. note:: - URL that handles the media served from MEDIA_ROOT. Make sure to use a trailing slash if there is a path component (optional in other cases).Examples: "http://media.lawrence.com", "http://example.com/media/" - -AUTHENTICATION_BACKENDS = ( - 'mailman_django.auth.restbackend.RESTBackend', - 'django.contrib.auth.backends.ModelBackend' - ) - - .. note:: - This creates a connection in between Djangos Login and Permission Decorators which we use for authentification and a custom Backend which we created in Preparation to work together with the REST API or an upcoming Middleware. - You need to keep the Django one for testing fallback. - -TEMPLATE_CONTEXT_PROCESSORS=( - "django.contrib.auth.context_processors.auth", - "django.core.context_processors.debug", - "django.core.context_processors.i18n", - "django.core.context_processors.media", - "django.core.context_processors.csrf", - "django.contrib.messages.context_processors.messages", - "mailman_django.context_processors.lists_of_domain", - "mailman_django.context_processors.render_MAILMAN_THEME", - "mailman_django.context_processors.extend_ajax" - - .. note:: - We're using Context Processors to easily render value which we need in nearly every view. - -ROOT_URLCONF = 'mailman_django.urls' - - .. note:: - This is where our URL Config is - if you run your own site with other Apps as well you might want to adjust this to your urls.py which includes our file. - -TEMPLATE_DIRS = ( - os.path.join(PROJECT_PATH, "mailman_django/templates"), - - .. note:: - Adds our own Templates - -INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.admin', - 'mailman_django', - - .. note:: - Makes sure that Django knows about our directory as an App and creates needed Tables () when running - - .. code-block:: bash - - $ python manage.py syncdb - -Now that you know about all these you might start the development server. As usual in Django this is done by running - - .. code-block:: bash - - $ python manage.py runserver - -within the Django Site Directory - as usual the default address is localhost:8000 -Of course it will only be able to start once our app is in place as well. - -Django Application ------------------- -First get the files, and make sure you paste them into your Project directory and adjust it's name to the appropriate configuration you've made earlier in the Django Site. Remeber our default is mailman_django - - .. code-block:: bash - - $ bzr branch lp:mailmanwebgsoc2011 - -.. note:: - We've tested Revision 172 - -.. note:: - We're planning to ease up installation by creating an egg diff --git a/doc/using.rst b/doc/using.rst deleted file mode 100644 index 94f842d..0000000 --- a/doc/using.rst +++ /dev/null @@ -1,29 +0,0 @@ -Using the Django App - Developers Resource -========================================== - -.. automodule:: tests.tests - -Running the tests explained above. ----------------------------------- -We've added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site. - -Run the following in the Site Directory - - .. code-block:: bash - - $ python manage.py test - -.. note:: - Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it's own mailman temporily. - -Accessing the REST Client for Testing -------------------------------------- - -If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it's current Directory within the Django Site Directory. - - .. code-block:: python - - from settings import API_USER, API_PASS - from mailman.client import Client - c = Client('http://localhost:8001/3.0', API_USER, API_PASS) - #DEBUG: Python Session diff --git a/ez_setup.py b/ez_setup.py new file mode 100644 index 0000000..b74adc0 --- /dev/null +++ b/ez_setup.py @@ -0,0 +1,284 @@ +#!python +"""Bootstrap setuptools installation + +If you want to use setuptools in your package's setup.py, just include this +file in the same directory with it, and add this to the top of your setup.py:: + + from ez_setup import use_setuptools + use_setuptools() + +If you want to require a specific version of setuptools, set a download +mirror, or use an alternate download directory, you can do so by supplying +the appropriate options to ``use_setuptools()``. + +This file can also be run as a script to install or upgrade setuptools. +""" +import sys +DEFAULT_VERSION = "0.6c11" +DEFAULT_URL = "http://pypi.python.org/packages/%s/s/setuptools/" % sys.version[:3] + +md5_data = { + 'setuptools-0.6b1-py2.3.egg': '8822caf901250d848b996b7f25c6e6ca', + 'setuptools-0.6b1-py2.4.egg': 'b79a8a403e4502fbb85ee3f1941735cb', + 'setuptools-0.6b2-py2.3.egg': '5657759d8a6d8fc44070a9d07272d99b', + 'setuptools-0.6b2-py2.4.egg': '4996a8d169d2be661fa32a6e52e4f82a', + 'setuptools-0.6b3-py2.3.egg': 'bb31c0fc7399a63579975cad9f5a0618', + 'setuptools-0.6b3-py2.4.egg': '38a8c6b3d6ecd22247f179f7da669fac', + 'setuptools-0.6b4-py2.3.egg': '62045a24ed4e1ebc77fe039aa4e6f7e5', + 'setuptools-0.6b4-py2.4.egg': '4cb2a185d228dacffb2d17f103b3b1c4', + 'setuptools-0.6c1-py2.3.egg': 'b3f2b5539d65cb7f74ad79127f1a908c', + 'setuptools-0.6c1-py2.4.egg': 'b45adeda0667d2d2ffe14009364f2a4b', + 'setuptools-0.6c10-py2.3.egg': 'ce1e2ab5d3a0256456d9fc13800a7090', + 'setuptools-0.6c10-py2.4.egg': '57d6d9d6e9b80772c59a53a8433a5dd4', + 'setuptools-0.6c10-py2.5.egg': 'de46ac8b1c97c895572e5e8596aeb8c7', + 'setuptools-0.6c10-py2.6.egg': '58ea40aef06da02ce641495523a0b7f5', + 'setuptools-0.6c11-py2.3.egg': '2baeac6e13d414a9d28e7ba5b5a596de', + 'setuptools-0.6c11-py2.4.egg': 'bd639f9b0eac4c42497034dec2ec0c2b', + 'setuptools-0.6c11-py2.5.egg': '64c94f3bf7a72a13ec83e0b24f2749b2', + 'setuptools-0.6c11-py2.6.egg': 'bfa92100bd772d5a213eedd356d64086', + 'setuptools-0.6c2-py2.3.egg': 'f0064bf6aa2b7d0f3ba0b43f20817c27', + 'setuptools-0.6c2-py2.4.egg': '616192eec35f47e8ea16cd6a122b7277', + 'setuptools-0.6c3-py2.3.egg': 'f181fa125dfe85a259c9cd6f1d7b78fa', + 'setuptools-0.6c3-py2.4.egg': 'e0ed74682c998bfb73bf803a50e7b71e', + 'setuptools-0.6c3-py2.5.egg': 'abef16fdd61955514841c7c6bd98965e', + 'setuptools-0.6c4-py2.3.egg': 'b0b9131acab32022bfac7f44c5d7971f', + 'setuptools-0.6c4-py2.4.egg': '2a1f9656d4fbf3c97bf946c0a124e6e2', + 'setuptools-0.6c4-py2.5.egg': '8f5a052e32cdb9c72bcf4b5526f28afc', + 'setuptools-0.6c5-py2.3.egg': 'ee9fd80965da04f2f3e6b3576e9d8167', + 'setuptools-0.6c5-py2.4.egg': 'afe2adf1c01701ee841761f5bcd8aa64', + 'setuptools-0.6c5-py2.5.egg': 'a8d3f61494ccaa8714dfed37bccd3d5d', + 'setuptools-0.6c6-py2.3.egg': '35686b78116a668847237b69d549ec20', + 'setuptools-0.6c6-py2.4.egg': '3c56af57be3225019260a644430065ab', + 'setuptools-0.6c6-py2.5.egg': 'b2f8a7520709a5b34f80946de5f02f53', + 'setuptools-0.6c7-py2.3.egg': '209fdf9adc3a615e5115b725658e13e2', + 'setuptools-0.6c7-py2.4.egg': '5a8f954807d46a0fb67cf1f26c55a82e', + 'setuptools-0.6c7-py2.5.egg': '45d2ad28f9750e7434111fde831e8372', + 'setuptools-0.6c8-py2.3.egg': '50759d29b349db8cfd807ba8303f1902', + 'setuptools-0.6c8-py2.4.egg': 'cba38d74f7d483c06e9daa6070cce6de', + 'setuptools-0.6c8-py2.5.egg': '1721747ee329dc150590a58b3e1ac95b', + 'setuptools-0.6c9-py2.3.egg': 'a83c4020414807b496e4cfbe08507c03', + 'setuptools-0.6c9-py2.4.egg': '260a2be2e5388d66bdaee06abec6342a', + 'setuptools-0.6c9-py2.5.egg': 'fe67c3e5a17b12c0e7c541b7ea43a8e6', + 'setuptools-0.6c9-py2.6.egg': 'ca37b1ff16fa2ede6e19383e7b59245a', +} + +import sys, os +try: from hashlib import md5 +except ImportError: from md5 import md5 + +def _validate_md5(egg_name, data): + if egg_name in md5_data: + digest = md5(data).hexdigest() + if digest != md5_data[egg_name]: + print >>sys.stderr, ( + "md5 validation of %s failed! (Possible download problem?)" + % egg_name + ) + sys.exit(2) + return data + +def use_setuptools( + version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, + download_delay=15 +): + """Automatically find/download setuptools and make it available on sys.path + + `version` should be a valid setuptools version number that is available + as an egg for download under the `download_base` URL (which should end with + a '/'). `to_dir` is the directory where setuptools will be downloaded, if + it is not already available. If `download_delay` is specified, it should + be the number of seconds that will be paused before initiating a download, + should one be required. If an older version of setuptools is installed, + this routine will print a message to ``sys.stderr`` and raise SystemExit in + an attempt to abort the calling script. + """ + was_imported = 'pkg_resources' in sys.modules or 'setuptools' in sys.modules + def do_download(): + egg = download_setuptools(version, download_base, to_dir, download_delay) + sys.path.insert(0, egg) + import setuptools; setuptools.bootstrap_install_from = egg + try: + import pkg_resources + except ImportError: + return do_download() + try: + pkg_resources.require("setuptools>="+version); return + except pkg_resources.VersionConflict, e: + if was_imported: + print >>sys.stderr, ( + "The required version of setuptools (>=%s) is not available, and\n" + "can't be installed while this script is running. Please install\n" + " a more recent version first, using 'easy_install -U setuptools'." + "\n\n(Currently using %r)" + ) % (version, e.args[0]) + sys.exit(2) + except pkg_resources.DistributionNotFound: + pass + + del pkg_resources, sys.modules['pkg_resources'] # reload ok + return do_download() + +def download_setuptools( + version=DEFAULT_VERSION, download_base=DEFAULT_URL, to_dir=os.curdir, + delay = 15 +): + """Download setuptools from a specified location and return its filename + + `version` should be a valid setuptools version number that is available + as an egg for download under the `download_base` URL (which should end + with a '/'). `to_dir` is the directory where the egg will be downloaded. + `delay` is the number of seconds to pause before an actual download attempt. + """ + import urllib2, shutil + egg_name = "setuptools-%s-py%s.egg" % (version,sys.version[:3]) + url = download_base + egg_name + saveto = os.path.join(to_dir, egg_name) + src = dst = None + if not os.path.exists(saveto): # Avoid repeated downloads + try: + from distutils import log + if delay: + log.warn(""" +--------------------------------------------------------------------------- +This script requires setuptools version %s to run (even to display +help). I will attempt to download it for you (from +%s), but +you may need to enable firewall access for this script first. +I will start the download in %d seconds. + +(Note: if this machine does not have network access, please obtain the file + + %s + +and place it in this directory before rerunning this script.) +---------------------------------------------------------------------------""", + version, download_base, delay, url + ); from time import sleep; sleep(delay) + log.warn("Downloading %s", url) + src = urllib2.urlopen(url) + # Read/write all in one block, so we don't create a corrupt file + # if the download is interrupted. + data = _validate_md5(egg_name, src.read()) + dst = open(saveto,"wb"); dst.write(data) + finally: + if src: src.close() + if dst: dst.close() + return os.path.realpath(saveto) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +def main(argv, version=DEFAULT_VERSION): + """Install or upgrade setuptools and EasyInstall""" + try: + import setuptools + except ImportError: + egg = None + try: + egg = download_setuptools(version, delay=0) + sys.path.insert(0,egg) + from setuptools.command.easy_install import main + return main(list(argv)+[egg]) # we're done here + finally: + if egg and os.path.exists(egg): + os.unlink(egg) + else: + if setuptools.__version__ == '0.0.1': + print >>sys.stderr, ( + "You have an obsolete version of setuptools installed. Please\n" + "remove it from your system entirely before rerunning this script." + ) + sys.exit(2) + + req = "setuptools>="+version + import pkg_resources + try: + pkg_resources.require(req) + except pkg_resources.VersionConflict: + try: + from setuptools.command.easy_install import main + except ImportError: + from easy_install import main + main(list(argv)+[download_setuptools(delay=0)]) + sys.exit(0) # try to force an exit + else: + if argv: + from setuptools.command.easy_install import main + main(argv) + else: + print "Setuptools version",version,"or greater has been installed." + print '(Run "ez_setup.py -U setuptools" to reinstall or upgrade.)' + +def update_md5(filenames): + """Update our built-in md5 registry""" + + import re + + for name in filenames: + base = os.path.basename(name) + f = open(name,'rb') + md5_data[base] = md5(f.read()).hexdigest() + f.close() + + data = [" %r: %r,\n" % it for it in md5_data.items()] + data.sort() + repl = "".join(data) + + import inspect + srcfile = inspect.getsourcefile(sys.modules[__name__]) + f = open(srcfile, 'rb'); src = f.read(); f.close() + + match = re.search("\nmd5_data = {\n([^}]+)}", src) + if not match: + print >>sys.stderr, "Internal error!" + sys.exit(2) + + src = src[:match.start(1)] + repl + src[match.end(1):] + f = open(srcfile,'w') + f.write(src) + f.close() + + +if __name__=='__main__': + if len(sys.argv)>2 and sys.argv[1]=='--md5update': + update_md5(sys.argv[2:]) + else: + main(sys.argv[1:]) + + + + + + diff --git a/fieldset_forms.py b/fieldset_forms.py deleted file mode 100644 index 3f0c773..0000000 --- a/fieldset_forms.py +++ /dev/null @@ -1,89 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# -# GNU Mailman 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 -# GNU Mailman. If not, see . - -from django.forms import Form -from django.utils import safestring -from django.forms.forms import BoundField -from django.forms.util import ErrorList - -class FieldsetError(Exception): - pass - -class FieldsetForm(Form): - """ - Extends a standard form and adds fieldsets and the possibililty - to use as_div for the automatic rendering of form fields. Inspired - by WTForm. - """ - - def __init__(self, *args, **kwargs): - """Initialize a FormsetField.""" - super(FieldsetForm, self).__init__(*args, **kwargs) - # check if the user specified the wished layout of the form - if hasattr(self, 'Meta') and hasattr(self.Meta, 'layout'): - msg = "Meta.layout must be iterable" - assert hasattr(self.Meta.layout, '__getitem__'), msg - self.layout = self.Meta.layout - else: - self.layout = [["All"]] - self.layout[0][1:]=(self.fields.keys()) - - def as_div(self): - """Render the form as a set of
s.""" - output = "" - #Adding Errors - try: output += str(self.errors["NON_FIELD_ERRORS"]) - except: pass - #create the fieldsets - for index in range(len(self.layout)): - output += self.create_fieldset(self.layout[index]) - return safestring.mark_safe(output) - - def create_fieldset(self, field): - """ - Create a
around a number of field instances. - field[0] is the name of the fieldset and field[1:] the fields - it should include. - """ - # Create the divs in each fieldset by calling create_divs. - return u'
%s%s
' % (field[0], - self.create_divs(field[1:])) - - def create_divs(self, fields): - """Create a
for each field.""" - output = "" - for field in fields: - try: - # create a field instance for the bound field - field_instance = self.fields[field] - except KeyError: - # could not create the instance so throw an exception - # msg on a separate line since the line got too long - # otherwise - msg = "Could not resolve form field '%s'." % field - raise FieldsetError(msg) - # create a bound field containing all the necessary fields - # from the form - bound_field = BoundField(self, field_instance, field) - output += '
%(label)s%(help_text)s%(errors)s%(field)s
\n' % \ - {'class': bound_field.name, - 'label': bound_field.label, - 'help_text': bound_field.help_text, - 'errors': bound_field.errors, - 'field': unicode(bound_field)} - return output diff --git a/forms.py b/forms.py deleted file mode 100644 index 1c74727..0000000 --- a/forms.py +++ /dev/null @@ -1,1032 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# -# GNU Mailman 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 -# GNU Mailman. If not, see . - -from django import forms -from django.core.validators import validate_email -from django.utils.translation import gettext as _ -from fieldset_forms import FieldsetForm - -#Fieldsets for use within the views -class DomainNew(FieldsetForm): - """ - Form field to add a new domain - """ - mail_host = forms.CharField( - label = _('Mail Host'), - error_messages = {'required': _('Please a domain name'), - 'invalid': _('Please enter a valid domain name.')}, - required = True - ) - web_host = forms.CharField( - label = _('Web Host'), - error_messages = {'required': _('Please a domain name'), - 'invalid': _('Please enter a valid domain name.')}, - required = True - ) - description = forms.CharField( - label = _('Description'), - required = False - ) - def clean_mail_host(self): - mail_host = self.cleaned_data['mail_host'] - try: validate_email('mail@' + mail_host) - except: raise forms.ValidationError(_("Please enter a valid Mail Host (mail.example.net)")) - return mail_host - - def clean_web_host(self): - web_host = self.cleaned_data['web_host'] - try: - validate_email('mail@' + web_host) - except: - raise forms.ValidationError(_("Please enter a valid Web Host (example.net)")) - return web_host - - class Meta: - """ - Class to handle the automatic insertion of fieldsets and divs. - - To use it: add a list for each wished fieldset. The first item in - the list should be the wished name of the fieldset, the following - the fields that should be included in the fieldset. - """ - layout = [["Please enter Details","mail_host", "web_host", "description",]] - - -class ListNew(FieldsetForm): - """ - Form fields to add a new list. Languages are hard coded which should - be replaced by a REST lookup of available languages. - """ - languages = (("Arabic", "Arabic"), - ("Catalan", "Catalan"), - ("Chinese (China)", "Chinese (China)"), - ("Chinese (Taiwan)", "Chinese (Taiwan)"), - ("Croatian", "Croatian"), - ("Czech", "Czech"), - ("Danish", "Danish"), - ("Dutch", "Dutch"), - ("English (USA)", "English (USA)"), - ("Estonian", "Estonian"), - ("Estonian", "Estonian"), - ("Euskara", "Euskara"), - ("Finnish", "Finnish"), - ("French", "French"), - ("German", "German"), - ("Hungarian", "Hungarian"), - ("Interlingua", "Interlingua"), - ("Italian", "Italian"), - ("Japanese", "Japanese"), - ("Korean", "Korean"), - ("Lithuanian", "Lithuanian"), - ("Norwegian", "Norwegian"), - ("Polish", "Polish"), - ("Portuguese", "Portuguese"), - ("Portuguese (Brazil)", "Portuguese (Brazil)"), - ("Romanian", "Romanian"), - ("Russian", "Russian"), - ("Serbian", "Serbian"), - ("Slovenian", "Slovenian"), - ("Spanish (Spain)", "Spanish (Spain)"), - ("Swedish", "Swedish"), - ("Turkish", "Turkish"), - ("Ukrainian", "Ukrainian"), - ("Vietnamese", "Vietnamese")) - listname = forms.CharField( - label = _('List Name'), - required = True, - error_messages = {'required': _('Please enter a name for your list.'), - 'invalid': _('Please enter a valid list name.')} - ) - list_owner = forms.EmailField( - label = _('Inital list owner address'), - error_messages = { - 'required': _("Please enter the list owner's email address."), - }, - required = True) - advertised = forms.ChoiceField( - widget = forms.RadioSelect(), - label = _('List Type'), - error_messages = { - 'required': _("Please choose a list type."), - }, - required = True, - choices = ( - (True, _("Advertise this list in List Index")), - (False, _("Hide this list in Liste Index")), - )) - - languages = forms.MultipleChoiceField( - label = _('Language'), - widget = forms.CheckboxSelectMultiple(), - choices = languages, - required = False) - - description = forms.CharField( - label = _('Description'), - required = True) - - mail_host = forms.ChoiceField() - - def __init__(self,domain_choices, *args, **kwargs): - super(ListNew, self).__init__(*args, **kwargs) - self.fields["mail_host"] = forms.ChoiceField( - widget = forms.Select(), - label = _('Mail Host'), - required = True, - choices = domain_choices, - error_messages = {'required': _("Choose an existing Domain."), - 'invalid':"ERROR-todo_forms.py" }#todo - ) - - def clean_listname(self): - try: - validate_email(self.cleaned_data['listname']+'@example.net') - except: - raise forms.ValidationError(_("Please enter a valid listname (my-list-1)")) - return self.cleaned_data['listname'] - - class Meta: - """ - Class to handle the automatic insertion of fieldsets and divs. - - To use it: add a list for each wished fieldset. The first item in - the list should be the wished name of the fieldset, the following - the fields that should be included in the fieldset. - """ - layout = [["List Details", "listname", "mail_host", "list_owner", "description", "advertised"], - ["Available Languages", "languages"]] - -class ListSubscribe(FieldsetForm): - """Form fields to join an existing list. - """ - fqdn_listname = forms.EmailField( - label = '',#_('List Name'), - widget = forms.HiddenInput(), - error_messages = { - 'required': _('Please enter the mailing list address.'), - 'invalid': _('Please enter a valid email address.') - }) - email = forms.EmailField( - label = _('Your email address'), - error_messages = {'required': _('Please enter an email address.'), - 'invalid': _('Please enter a valid email address.')}) - real_name = forms.CharField( - label = _('Your name'), - required = False, - ) - name = forms.CharField( - label = '', #Name of action - widget = forms.HiddenInput(), - initial = 'subscribe', - ) - - # should add password! TODO - class Meta: - """ - Class to handle the automatic insertion of fieldsets and divs. - - To use it: add a list for each wished fieldset. The first item in - the list should be the wished name of the fieldset, the following - the fields that should be included in the fieldset. - """ - layout = [["Subscribe", "email","real_name","name","fqdn_listname"]] - -class ListUnsubscribe(FieldsetForm): - """Form fields to leave an existing list. - """ - fqdn_listname = forms.EmailField( - label = '',#_('List Name'), - widget = forms.HiddenInput(), - error_messages = { - 'required': _('Please enter the mailing list address.'), - 'invalid': _('Please enter a valid email address.') - } - ) - email = forms.EmailField( - label = _('Your email address'), - error_messages = { - 'required': _('Please enter an email address.'), - 'invalid': _('Please enter a valid email address.') - } - ) - name = forms.CharField( - label = '', #Name of action - widget = forms.HiddenInput(), - initial = 'unsubscribe', - ) - class Meta: - """ - Class to handle the automatic insertion of fieldsets and divs. - - To use it: add a list for each wished fieldset. The first item in - the list should be the wished name of the fieldset, the following - the fields that should be included in the fieldset. - """ - layout = [["Unsubscribe", "email","name","fqdn_listname"]] - - # should at one point add the password to be required as well! #TODO -class ListSettings(FieldsetForm): - """Form fields dealing with the list settings. - """ - choices = ((True, 'Yes'), (False, 'No'),) - list_name = forms.CharField( - label = _('List Name'), - required = False, - ) - host_name = forms.CharField( - label = _('Domain host name'), - required = False, - ) - fqdn_listname = forms.CharField( - label = _('Fqdn listname'), - required = False, - ) - #id = forms.IntegerField( # this should probably not be changeable... - #label = _('ID'), - #initial = 9, - #widget = forms.HiddenInput(), - #required = False, - #error_messages = { - #'invalid': _('Please provide an integer ID.') - #} - #) - list_id = forms.CharField( # this should probably not be changeable... - label = _('List ID'), - required = False, - ) - http_etag = forms.CharField( - label = _('Http etag'), - required = False, - ) - include_list_post_header = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Include list post header'), - ) - include_rfc2369_headers = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Include RFC2369 headers'), - ) - autorespond_owner = forms.BooleanField( - label = _('Autorespond owner'), - ) - autoresponse_owner_text = forms.CharField( - label = _('Autoresponse owner text'), - ) - autorespond_postings = forms.BooleanField( - label = _('Autorespond postings'), - ) - autoresponse_postings_text = forms.CharField( - label = _('Autoresponse postings text'), - ) - autorespond_requests = forms.BooleanField( - label = _('Autorespond requests'), - ) - autoresponse_request_text = forms.CharField( - label = _('Autoresponse request text'), - ) - autoresponse_grace_period = forms.CharField(#TODO - either different type or different Validator ! - label = _('Autoresponse grace period'), - ) - bounces_address = forms.EmailField( - label = _('Bounces Address'), - required = False, - ) - #ban_list = forms.CharField( - #label = _('Ban list'), - #widget = forms.Textarea - #) - #bounce_info_stale_after = forms.CharField( - #label = _('Bounce info stale after'), - #) - #bounce_matching_headers = forms.CharField( - #label = _('Bounce matching headers'), - #) - #bounce_notify_owner_on_disable = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Bounce notify owner on disable'), - #) - #bounce_notify_owner_on_removal = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Bounce notify owner on removal'), - #) - #bounce_processing = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Bounce processing'), - #) - #bounce_score_threshold = forms.IntegerField( - #label = _('Bounce score threshold'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #bounce_score_threshold = forms.IntegerField( - #label = _('Bounce score threshold'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #bounce_unrecognized_goes_to_list_owner = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Bounce unrecognized goes to list owner'), - #) - #bounce_you_are_disabled_warnings = forms.IntegerField( - #label = _('Bounce you are disabled warnings'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #bounce_you_are_disabled_warnings_interval = forms.CharField( - #label = _('Bounce you are disabled warnings interval'), - #) - #archive = forms.BooleanField( - #widget = forms.RadioSelect(choices=choices), - #required = False, - #label = _('Archive'), - #) - #archive_private = forms.BooleanField( - #widget = forms.RadioSelect(choices=choices), - #required = False, - #label = _('Private Archive'), - #) - advertised = forms.ChoiceField( - widget = forms.RadioSelect(), - label = _('List Type (advertised)'), - error_messages = { - 'required': _("Please choose a list type."), - }, - required = True, - choices = ( - (True, _("Advertise this list in List Index")), - (False, _("Hide this list in Liste Index")), - )) - filter_content = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Filter content'), - ) - collapse_alternatives = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Collapse alternatives'), - ) - convert_html_to_plaintext = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Convert html to plaintext'), - ) - #default_member_moderation = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Default member moderation'), - #) - description = forms.CharField( - label = _('Description'), - widget = forms.Textarea() - ) - #digest_footer = forms.CharField( - #label = _('Digest footer'), - #) - #digest_header = forms.CharField( - #label = _('Digest header'), - #) - #digest_is_default = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Digest is default'), - #) - #digest_send_periodic = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Digest send periodic'), - #) - digest_size_threshold = forms.DecimalField( - label = _('Digest size threshold'), - ) - #digest_volume_frequency = forms.CharField( - #label = _('Digest volume frequency'), - #) - #digestable = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Digestable'), - #) - digest_last_sent_at = forms.IntegerField( - label = _('Digest last sent at'), - error_messages = { - 'invalid': _('Please provide an integer.'), - }, - required = False, - ) - #discard_these_nonmembers = forms.CharField( - #label = _('Discard these nonmembers'), - #widget = forms.Textarea - #) - #emergency = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Emergency'), - #) - #encode_ascii_prefixes = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Encode ascii prefixes'), - #) - #first_strip_reply_to = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('First strip reply to'), - #) - #forward_auto_discards = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Forward auto discards'), - #) - #gateway_to_mail = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Gateway to mail'), - #) - #gateway_to_news = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Gateway to news'), - #) - #generic_nonmember_action = forms.IntegerField( - #label = _('Generic nonmember action'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #goodbye_msg = forms.CharField( - #label = _('Goodbye message'), - #) - #header_matches = forms.CharField( - #label = _('Header matches'), - #widget = forms.Textarea - #) - #hold_these_nonmembers = forms.CharField( - #label = _('Hold these nonmembers'), - #widget = forms.Textarea - #) - #info = forms.CharField( - #label = _('Information'), - #) - #linked_newsgroup = forms.CharField( - #label = _('Linked newsgroup'), - #) - #max_days_to_hold = forms.IntegerField( - #label = _('Maximum days to hold'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #max_message_size = forms.IntegerField( - #label = _('Maximum message size'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #max_num_recipients = forms.IntegerField( - #label = _('Maximum number of recipients'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #member_moderation_action = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Member moderation action'), - #) - #member_moderation_notice = forms.CharField( - #label = _('Member moderation notice'), - #) - #mime_is_default_digest = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Mime is default digest'), - #) - #moderator_password = forms.CharField( - #label = _('Moderator password'), - #widget = forms.PasswordInput, - #error_messages = {'required': _('Please enter your password.'), - #'invalid': _('Please enter a valid password.')}, - #) - #msg_footer = forms.CharField( - #label = _('Message footer'), - #) - #msg_header = forms.CharField( - #label = _('Message header'), - #) - #new_member_options = forms.IntegerField( - #label = _('New member options'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #news_moderation = forms.CharField( - #label = _('News moderation'), - #) - #news_prefix_subject_too = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('News prefix subject too'), - #) - #nntp_host = forms.CharField( - #label = _('Nntp host'), - #) - #nondigestable = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Nondigestable'), - #) - #nonmember_rejection_notice = forms.CharField( - #label = _('Nonmember rejection notice'), - #) - next_digest_number = forms.IntegerField( - label = _('Next digest number'), - error_messages = { - 'invalid': _('Please provide an integer.'), - }, - required = False, - ) - no_reply_address = forms.EmailField( - label = _('No reply address'), - required = False, - ) - #obscure_addresses = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Obscure addresses'), - #) - #personalize = forms.CharField( - #label = _('Personalize'), - #) - pipeline = forms.CharField( - label = _('Pipeline'), - ) - post_id = forms.IntegerField( - label = _('Post ID'), - error_messages = { - 'invalid': _('Please provide an integer.'), - }, - required = False, - ) - #preferred_language = forms.CharField( - #label = _('Preferred language'), - #) - #private_roster = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Private roster'), - #) - real_name = forms.CharField( - label = _('Real name'), - ) - #reject_these_nonmembers = forms.CharField( - #label = _('Reject these nonmembers'), - #widget = forms.Textarea - #) - #reply_goes_to_list = forms.CharField( - #label = _('Reply goes to list'), - #) - #reply_to_address = forms.EmailField( - #label = _('Reply to address'), - #) - #require_explicit_destination = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Require explicit destination'), - #) - #respond_to_post_requests = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Respond to post requests'), - #) - request_address = forms.EmailField( - label = _('Request address'), - required = False, - ) - #scrub_nondigest = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Scrub nondigest'), - #) - #send_goodbye_msg = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Send goodbye message'), - #) - #send_reminders = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Send reminders'), - #) - #send_welcome_msg = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Send welcome message'), - #) - #start_chain = forms.CharField( - #label = _('Start chain'), - #) - #subject_prefix = forms.CharField( - #label = _('Subject prefix'), - #) - #subscribe_auto_approval = forms.CharField( - #label = _('Subscribe auto approval'), - #widget = forms.Textarea - #) - #subscribe_policy = forms.IntegerField( - #label = _('Subscribe policy'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - scheme = forms.CharField( - label = _('Scheme'), - required = False, - ) - #topics = forms.CharField( - #label = _('Topics'), - #widget = forms.Textarea - #) - #topics_bodylines_limit = forms.IntegerField( - #label = _('Topics bodylines limit'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #topics_enabled = forms.BooleanField( - #widget = forms.RadioSelect(choices = choices), - #required = False, - #label = _('Topics enabled'), - #) - #unsubscribe_policy = forms.IntegerField( - #label = _('Unsubscribe policy'), - #error_messages = { - #'invalid': _('Please provide an integer.') - #} - #) - #welcome_msg = forms.CharField( - #label = _('Welcome message'), - #) - volume = forms.IntegerField( - label = _('Volume'), - required = False, - ) - web_host = forms.CharField( - label = _('Web host'), - required = False, - ) - acceptable_aliases = forms.CharField( - label = _("Acceptable aliases"), - ) - admin_immed_notify = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Admin immed notify'), - ) - admin_notify_mchanges = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Admin notify mchanges'), - ) - administrivia = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Administrivia'), - ) - anonymous_list = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Anonymous list'), - ) - created_at = forms.IntegerField( - label = _('Created at'), - widget = forms.HiddenInput(), - required = False, - ) - join_address = forms.EmailField( - label = _('Join address'), - required = False, - ) - last_post_at = forms.IntegerField( - label = _('Last post at'), - required = False, - ) - leave_address = forms.EmailField( - label = _('Leave address'), - required = False, - ) - owner_address = forms.EmailField( - label = _('Owner Address'), - required = False, - ) - posting_address = forms.EmailField( - label = _('Posting Address'), - required = False, - ) - #Descriptions used in the Settings Overview Page - section_descriptions = { - "List Identity":_("General List settings use"), - "Automatic Responses":_("All options for Autoreply"), - "Content Filtering":_("Decide how incoming mails might be filtered"), - "Digest": _("Modify and check some Digest options"), - "Privacy" : _("Check the lists privacy standards"), - "Assorted" : _("Some other Admin stuff"), - } - def __init__(self,visible_section,visible_option, *args, **kwargs): - super(ListSettings, self).__init__(*args, **kwargs) - #if settings:raise Exception(settings) #debug - if visible_option: - options=[] - for option in self.layout: - options += option[1:] - if visible_option in options: - self.layout = [["",visible_option]] - if visible_section: - sections=[] - for section in self.layout: - sections.append(section[0]) - if visible_section in sections: - for section in self.layout: - if section[0] == visible_section: - self.layout = [section] - try: - if data: - for section in self.layout: - for option in section[1:]: - self.fields[option].initial = settings[option] - except: - pass #empty form - def truncate(self): - """ - truncates the form to have only those fields which are in self.layout - """ - #delete form.fields which are not in the layout - used_options=[] - for section in self.layout: - used_options += section[1:] - - for key in self.fields.keys(): - if not(key in used_options): - del self.fields[key] - - class Meta: - """Class to handle the automatic insertion of fieldsets and divs. - - To use it: add a list for each wished fieldset. The first item in - the list should be the wished name of the fieldset, the following - the fields that should be included in the fieldset. - """ - # just a really temporary layout to see that it works. -- Anna - layout = [ - ["List Identity", "real_name", "include_list_post_header", - "include_rfc2369_headers"], - #"info", "list_name", "host_name", "list_id", "fqdn_listname", - #"http_etag", "volume", "web_host" - ["Automatic Responses", "autorespond_owner", - "autoresponse_owner_text", "autorespond_postings", - "autoresponse_postings_text", "autorespond_requests", - "autoresponse_request_text", "autoresponse_grace_period"], - #["Bounce", "ban_list", - #"bounce_info_stale_after", "bounce_matching_headers", - # "bounce_notify_owner_on_disable", - #"bounce_notify_owner_on_removal", "bounce_processing", - #"bounce_score_threshold", - #"bounce_unrecognized_goes_to_list_owner", - #"bounce_you_are_disabled_warnings", - #"bounce_you_are_disabled_warnings_interval"], - #["Archiving", "archive"], - ["Content Filtering", "filter_content", "collapse_alternatives", - "convert_html_to_plaintext", "description"], - #"default_member_moderation", "scheme" - ["Digest", "digest_size_threshold"], #"next_digest_number", - #"last_post_at", "digest_last_sent_at", "digest_footer", - #"digest_header", "digest_is_default", - #"digest_send_periodic", "digest_size_threshold", - #"digest_volume_frequency", "digestable"], - #["Moderation","discard_these_nonmembers", "emergency", - #"generic_nonmember_action", "generic_nonmember_action", - #"member_moderation_action", "member_moderation_notice", - #"moderator_password", "hold_these_nonmembers"], - #["Message Text", "msg_header", "msg_footer", "welcome_msg", - #"goodbye_msg"], - ["Privacy", "advertised", "admin_immed_notify", - "admin_notify_mchanges", "anonymous_list"], #"archive_private", - #"obscure_addresses", "private_roster", - #["Addresses", "bounces_address", "join_address", "leave_address", - #"no_reply_address", "owner_address", "posting_address", - #"request_address"], - ["Assorted", "acceptable_aliases", "administrivia", "pipeline"] - #"post_id", "encode_ascii_prefixes", "first_strip_reply_to", - #"forward_auto_discards", "gateway_to_mail", "gateway_to_news", - #"header_matches", "linked_newsgroup", "max_days_to_hold", - #"max_message_size", "max_num_recipients", - #"mime_is_default_digest", "new_member_options", - #"news_moderation", "news_prefix_subject_too", "nntp_host", - #"nondigestable", "nonmember_rejection_notice", "personalize", - #"preferred_language", - #"reject_these_nonmembers", "reply_goes_to_list", - #"reply_to_address", "require_explicit_destination", - #"respond_to_post_requests", "scrub_nondigest", - #"send_goodbye_msg", "send_reminders", "send_welcome_msg", - #"start_chain", "subject_prefix", "subscribe_auto_approval", - #"subscribe_policy", "topics", "topics_bodylines_limit", - #"topics_enabled", "unsubscribe_policy"]] - ] - -class Login(FieldsetForm): - """Form fields to let the user log in. - """ - user = forms.EmailField( - label = _('Email address'), - error_messages = {'required': _('Please enter an email address.'), - 'invalid': _('Please enter a valid email address.')}, - required = True, - ) - password = forms.CharField( - label = _('Password'), - widget = forms.PasswordInput, - error_messages = {'required': _('Please enter your password.'), - 'invalid': _('Please enter a valid password.')}, - required = True, - ) - - class Meta: - """ - Class to define the name of the fieldsets and what should be - included in each. - """ - layout = [["Login", "user", "password"],] - -class ListMassSubscription(FieldsetForm): - """Form fields to masssubscribe users to a list. - """ - emails = forms.CharField( - label = _('Emails to mass subscribe'), - widget = forms.Textarea, - ) - - class Meta: - """ - Class to define the name of the fieldsets and what should be - included in each. - """ - layout = [["Mass subscription", "emails"],] - -class MembershipSettings(FieldsetForm): - """Form handling the membership settings. - """ - choices = ((True, _('Yes')), (False, _('No')),) - acknowledge_posts = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Acknowledge posts'), - ) - hide_address = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Hide address'), - ) - receive_list_copy = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Receive list copy'), - ) - receive_own_postings = forms.BooleanField( - widget = forms.RadioSelect(choices = choices), - required = False, - label = _('Receive own postings'), - ) - delivery_mode = forms.ChoiceField( - widget = forms.Select(), - error_messages = { - 'required': _("Please choose a mode."), - }, - required = False, - choices = ( - ("", _("Please choose")), - ("delivery_mode", "some mode..."), # TODO: this must later - # be dynalically changed to what modes the list offers - # (see the address field in __init__ in UserSettings for - # how to do this) - ), - label = _('Delivery mode'), - ) - delivery_status = forms.ChoiceField( - widget = forms.Select(), - error_messages = { - 'required': _("Please choose a status."), - }, - required = False, - choices = ( - ("", _("Please choose")), - ("delivery_status", "some status..."), # TODO: this must - # later be dynalically changed to what statuses the list - # offers (see the address field in __init__ in UserSettings - # for how to do this) - ), - label = _('Delivery status'), - ) - - class Meta: - """ - Class to define the name of the fieldsets and what should be - included in each. - """ - layout = [["Membership Settings", "acknowledge_posts", "hide_address", - "receive_list_copy", "receive_own_postings", - "delivery_mode", "delivery_status"],] - -class UserSettings(FieldsetForm): - """Form handling the user settings. - """ - def __init__(self, address_choices, *args, **kwargs): - """ - Initialize the user settings with a field 'address' where - the values are set dynamically in the view. - """ - super(UserSettings, self).__init__(*args, **kwargs) - self.fields['address'] = forms.ChoiceField(choices=(address_choices), - widget = forms.Select(), - error_messages = {'required': _("Please choose an address."),}, - required = True, - label = _('Default email address'),) - - id = forms.IntegerField( # this should probably not be - # changeable... - label = _('ID'), - initial = 9, - widget = forms.HiddenInput(), - required = False, - error_messages = { - 'invalid': _('Please provide an integer ID.') - } - ) - mailing_list = forms.CharField( # not sure this needs to be here - label = _('Mailing list'), - widget = forms.HiddenInput(), - required = False, - ) - real_name =forms.CharField( - label = _('Real name'), - required = False, - ) - preferred_language = forms.ChoiceField( - label = _('Default/Preferred language'), - widget = forms.Select(), - error_messages = { - 'required': _("Please choose a language."), - }, - required = False, - choices = ( - ("", _("Please choose")), - ("English (USA)", "English (USA)"), # TODO: this must later - # be dynalically changed to what languages the list offers - # (see the address field in __init__ for how to do this) - ) - ) - password = forms.CharField( - label = _('Change password'), - widget = forms.PasswordInput, - required = False, - error_messages = {'required': _('Please enter your password.'), - 'invalid': _('Please enter a valid password.')}, - ) - conf_password = forms.CharField( - label = _('Confirm password'), - widget = forms.PasswordInput, - required = False, - error_messages = {'required': _('Please enter your password.'), - 'invalid': _('Please enter a valid password.')}, - ) - - class Meta: - """ - Class to define the name of the fieldsets and what should be - included in each. - """ - layout = [["User settings", "real_name", "password", - "conf_password", "preferred_language", "address"],] diff --git a/media/mailman_django/default/css/forms.css b/media/mailman_django/default/css/forms.css deleted file mode 100644 index a673edf..0000000 --- a/media/mailman_django/default/css/forms.css +++ /dev/null @@ -1,53 +0,0 @@ -/************************* - * Forms - *************************/ - -form ul { - list-style-type:none; - } - -input, select { - border: 1px solid #b2b2b2; - border-radius: 3px; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - left:50%; - width: 50%; - padding: 2px; - float:right; -} - -input[type="radio"], input[type="checkbox"] { - float:none; - } - -input[type="submit"], -input.button { - width: auto; - margin-right: 10px; -} -.errorlist { - float: right; - width: 300px; - list-style: none; - margin: 0 0 0 15px; - padding: 0; - color: red; -} -form div.field { - clear: both; - padding-top: 10px; -} -label { - clear: both; - display: block; -} -button { - margin-top: 5px; -} - - -.languages ul { - column-count: 3; - -moz-column-count: 3; -} diff --git a/media/mailman_django/default/css/icons.css b/media/mailman_django/default/css/icons.css deleted file mode 100644 index 3ad574f..0000000 --- a/media/mailman_django/default/css/icons.css +++ /dev/null @@ -1,55 +0,0 @@ -.mm_actionButtons li a - { - background-color: transparent; - background-position: left center; - background-repeat: no-repeat; - background-size: auto 100%; - } - -/** List **/ -.mm_list_summary a - {background: url(../img/tango/emblems/all-per-page.svg)} - -.mm_list_new a - {background-image: url(../img/tango/actions/document-new_list.svg);} - -.mm_delete_list a - {background-image: url(../img/tango/categories/document-denied.svg);} - -.mm_subscribe a - {background-image: url(../img/tango/actions/add-participant.svg);} - -.mm_archives a - {background-image: url(../img/tango/emblems/address-book.svg);} - -.mm_options a - {background-image: url(../img/tango/actions/document-settings.svg);} - -.mm_unsubscribe a - {background-image: url(../img/tango/actions/remove-participant.svg);} - -.mm_mass_subscribe a - {background-image: url(../img/tango/actions/list-all-participants.svg);} - -.mm_membership a - {background-image: url(../img/tango/categories/user-edit.svg);} - -/** Domain **/ -.mm_new_domain a - {background-image: url(../img/tango/emblems/account-new.svg);} - -.mm_edit_domain a - {background-image: url(../img/tango/emblems/account-edit.svg);} - -.mm_delete_domain a - {background-image: url(../img/tango/emblems/account-delete.svg);} - -/** Settings **/ - -/** user_settings - membership_settings **/ - -.mm_user_settings a - {background-image: url(../img/tango/TODO-blueuser_with_editPen);} - -.mm_user_subscriptions a - {background-image: url(../img/tango/TODO-blueuser_with_editlist_icon);} diff --git a/media/mailman_django/default/css/style.css b/media/mailman_django/default/css/style.css deleted file mode 100755 index 418bebf..0000000 --- a/media/mailman_django/default/css/style.css +++ /dev/null @@ -1,242 +0,0 @@ -/* Reset styles - do not modify */ - -html, body, div, span, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, -small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, figcaption, figure, -footer, header, hgroup, menu, nav, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; -} - -article, aside, details, figcaption, figure, -footer, header, hgroup, menu, nav, section { - display: block; -} - -blockquote, q { quotes: none; } -blockquote:before, blockquote:after, -q:before, q:after { content: ''; content: none; } -ins { background-color: #ff9; color: #000; text-decoration: none; } -mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } -del { text-decoration: line-through; } -abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } -table { border-collapse: collapse; border-spacing: 0; } -hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } -input, select { vertical-align: middle; } - -body { font:13px/1.231 sans-serif; *font-size:small; } -select, input, textarea, button { font:99% sans-serif; } -pre, code, kbd, samp { font-family: monospace, sans-serif; } - -html { overflow-y: scroll; } -a:hover, a:active { outline: none; } -ul, ol { margin-left: 2em; } -ol { list-style-type: decimal; } -nav ul, nav li { margin: 0; list-style:none; list-style-image: none; } -small { font-size: 85%; } -strong, th { font-weight: bold; } -td { vertical-align: top; } - -sub, sup { font-size: 75%; line-height: 0; position: relative; } -sup { top: -0.5em; } -sub { bottom: -0.25em; } - -pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; padding: 15px; } -textarea { overflow: auto; } -.ie6 legend, .ie7 legend { margin-left: -7px; } -input[type="radio"] { vertical-align: text-bottom; } -input[type="checkbox"] { vertical-align: bottom; } -.ie7 input[type="checkbox"] { vertical-align: baseline; } -.ie6 input { vertical-align: text-bottom; } -label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; } -button, input, select, textarea { margin: 0; } -input:valid, textarea:valid { } -input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red; } -.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; } - -a:link { -webkit-tap-highlight-color: #FF5E99; } - -button { width: auto; overflow: visible; } -.ie7 img { -ms-interpolation-mode: bicubic; } - -body, select, input, textarea { color: #444; } -h1, h2, h3, h4, h5, h6 { font-weight: bold; } -a, a:active, a:visited { color: #607890; } -a:hover { color: #036; } - -/* Add layout tyles here */ - -body { - background-color: #d4d4d4; - font-size: 87.5%; - font-family: Verdana, Arial, sans-serif; -} -h1 { - font-size: 2em; - text-align: center; -} -h1 span { - font-size: 0.667em; - font-weight: normal; -} - -#mm_page { - width: 765px; - margin: 5px auto; - padding: 25px 0 25px 35px; - border-radius: 5px; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - background: #fff repeat top left url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAKCAYAAAD2Fg1xAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9sHFAYzEtopMl4AAAAidEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVAgb24gYSBNYWOHqHdDAAAAUklEQVQ4y+2T0QnAQAhDbbkf3X/DW0JDsN2h4IHSN0DgkeRy90eas/eWW4ZQIgJAAPQXISkkj4qsilAzmzGtMR+JCImI/tPKzOONlIio6v+Rr7wQbht30ThlBAAAAABJRU5ErkJggg=='); -} -.mm_actionButtons { - margin: 30px 0 30px 0; -} -.mm_actionButtons li { - float: left; - margin-right: 24px; - margin-bottom: 35px; - height: 46px; - display: table; - width: 165px; - border: 1px solid #babdb6; - border-radius: 5px; - -moz-border-radius: 5px; - -webkit-border-radius: 5px; - box-shadow: 0 0 5px #babdb6; - background: #D4D4D4; -} -.mm_actionButtons li:last-child { - margin-right: 0; -} -.mm_actionButtons a, -.mm_actionButtons a:hover { - padding-left: 10px; - text-decoration: none; - font-weight: bold; - color: #444; - display: table-cell; - vertical-align: middle; - border: 1px solid; - border-color: #f8f8f7 #f8f8f7 #d1d2d1 #f8f8f7; - border-radius: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - background: -webkit-linear-gradient(rgb(244,244,243), rgb(197,197,197)); - background: -webkit-linear-gradient(rgb(244,244,243), rgb(197,197,197)); -} - -.mm_box, fieldset { - margin: 35px 35px 35px 0; - padding: 0 10px 10px 10px; - background-color: #FFF; - border-radius: 3px; - -moz-border-radius: 3px; - -webkit-border-radius: 3px; - box-shadow: 0 0 5px #babdb6; -} -.mm_boxHeader, fieldset legend{ - background-color: #F2F2F0; - font-weight: bold; - padding: 5px 10px; - margin-left: -10px; - margin-right: -10px; - margin-bottom: 10px; - border-bottom: 1px solid #E4E5E2; -} - -fieldset legend { - width: 100%; - } - -.mm_box p { - margin: 10px 0; - text-align: center; -} -.mm_smallBox { - width: 333px; - margin: 0 25px 35px 0; - float: left; -} -#mm_footer { - clear: both; - margin: 35px 35px 0 35px; - text-align: right; -} - -/* IE styles */ -.ie6 .mm_actionButtons li, -.ie7 .mm_actionButtons li, -.ie8 .mm_actionButtons li { - margin-right: 21px; -} -.ie6 .mm_box, -.ie7 .mm_box, -.ie8 .mm_box { - border: 1px solid #E4E5E2; -} - -.ie6 .mm_actionButtons li.mm_last, -.ie7 .mm_actionButtons li.mm_last, -.ie8 .mm_actionButtons li.mm_last { - margin-right: 0; -} - - - - - - - - - - -.mm_ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; } -.mm_hidden { display: none; visibility: hidden; } -.mm_visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } -.mm_visuallyhidden.focusable:active, -.mm_visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } -.mm_invisible { visibility: hidden; } -.mm_clear { clear: both; } -.mm_clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; } -.mm_clearfix:after { clear: both; } -.mm_clearfix { zoom: 1; } - - -@media all and (orientation:portrait) { - -} - -@media all and (orientation:landscape) { - -} - -@media screen and (max-device-width: 480px) { - - /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ -} - - -@media print { - * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; - -ms-filter: none !important; } - a, a:visited { color: #444 !important; text-decoration: underline; } - a[href]:after { content: " (" attr(href) ")"; } - abbr[title]:after { content: " (" attr(title) ")"; } - .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } - pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } - thead { display: table-header-group; } - tr, img { page-break-inside: avoid; } - @page { margin: 0.5cm; } - p, h2, h3 { orphans: 3; widows: 3; } - h2, h3{ page-break-after: avoid; } -} diff --git a/media/mailman_django/default/img/icons/minus.png b/media/mailman_django/default/img/icons/minus.png deleted file mode 100755 index 03fb9be..0000000 --- a/media/mailman_django/default/img/icons/minus.png +++ /dev/null Binary files differ diff --git a/media/mailman_django/default/img/icons/plus.png b/media/mailman_django/default/img/icons/plus.png deleted file mode 100755 index 7428c48..0000000 --- a/media/mailman_django/default/img/icons/plus.png +++ /dev/null Binary files differ diff --git a/media/mailman_django/default/img/mailman_logo.png b/media/mailman_django/default/img/mailman_logo.png deleted file mode 100755 index 6a76d94..0000000 --- a/media/mailman_django/default/img/mailman_logo.png +++ /dev/null Binary files differ diff --git a/media/mailman_django/default/img/tango/_license.txt b/media/mailman_django/default/img/tango/_license.txt deleted file mode 100644 index 356097e..0000000 --- a/media/mailman_django/default/img/tango/_license.txt +++ /dev/null @@ -1,7 +0,0 @@ -All Icons within this folder belong to the RRZE Icon Set which is based on Tango - -Both are published CC by SA and where included into mailman with special permission of Franziska Sponsel - one of the designers. - -Please see http://rrze-icon-set.berlios.de/team.html for the full team - -And http://tango.freedesktop.org/Tango_Desktop_Project for the Tango Project. diff --git a/media/mailman_django/default/img/tango/actions/add-participant.svg b/media/mailman_django/default/img/tango/actions/add-participant.svg deleted file mode 100644 index 7e1acf5..0000000 --- a/media/mailman_django/default/img/tango/actions/add-participant.svg +++ /dev/null @@ -1,34 +0,0 @@ - - -image/svg+xmlparticipantaddadd participantJuly 2009Franziska SponselFranziska SponselRRZEHendrik Eggers, Franziska Sponseluses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/categories/user-other.png> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/actions/document-new_list.svg b/media/mailman_django/default/img/tango/actions/document-new_list.svg deleted file mode 100644 index 2986fb8..0000000 --- a/media/mailman_django/default/img/tango/actions/document-new_list.svg +++ /dev/null @@ -1,2439 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - document new list - Aug 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - action undo - cancel - rewrite - change - - - - - Beate Kaspar, Hendrik Eggers - - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/actions/refuse.png> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/actions/document-settings.svg b/media/mailman_django/default/img/tango/actions/document-settings.svg deleted file mode 100644 index eade479..0000000 --- a/media/mailman_django/default/img/tango/actions/document-settings.svg +++ /dev/null @@ -1,2917 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - document settings - Aug 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - action undo - cancel - rewrite - change - - - - - Beate Kaspar, Hendrik Eggers - - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/actions/refuse.png> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/actions/list-all-participants.svg b/media/mailman_django/default/img/tango/actions/list-all-participants.svg deleted file mode 100644 index 4cf73c8..0000000 --- a/media/mailman_django/default/img/tango/actions/list-all-participants.svg +++ /dev/null @@ -1,522 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - list all participants - Jun 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - - list - participants - all - membership - membership-list - listing - group - user - - - - - Hendrik Eggers, Beate Kaspar - - - uses < http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/actions/approval.svg> http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/categories/user-group.svg> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/actions/remove-participant.svg b/media/mailman_django/default/img/tango/actions/remove-participant.svg deleted file mode 100644 index b09e58c..0000000 --- a/media/mailman_django/default/img/tango/actions/remove-participant.svg +++ /dev/null @@ -1,34 +0,0 @@ - - -image/svg+xmlparticipantaddremove participantJuly 2009Franziska SponselFranziska SponselRRZEHendrik Eggers, Franziska Sponseluses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/categories/user-other.png> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/categories/document-denied.svg b/media/mailman_django/default/img/tango/categories/document-denied.svg deleted file mode 100644 index 1678b21..0000000 --- a/media/mailman_django/default/img/tango/categories/document-denied.svg +++ /dev/null @@ -1,4898 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - document denied - Aug 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - action undo - cancel - rewrite - change - - - - - Beate Kaspar, Hendrik Eggers - - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/actions/refuse.png> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/categories/user-edit.svg b/media/mailman_django/default/img/tango/categories/user-edit.svg deleted file mode 100644 index 6771bce..0000000 --- a/media/mailman_django/default/img/tango/categories/user-edit.svg +++ /dev/null @@ -1,34 +0,0 @@ - - -image/svg+xmlparticipantadduser editJuly 2009Franziska SponselFranziska SponselRRZEHendrik Eggers, Franziska Sponseluses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/categories/user-other.png> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/emblems/account-delete.svg b/media/mailman_django/default/img/tango/emblems/account-delete.svg deleted file mode 100644 index 2455563..0000000 --- a/media/mailman_django/default/img/tango/emblems/account-delete.svg +++ /dev/null @@ -1,827 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - account delete - Sept 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - delete - account - email-account - - - - - Beate Kaspar, Hendrik Eggers - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/at.svg> and <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/status/false.svg> - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/emblems/account-edit.svg b/media/mailman_django/default/img/tango/emblems/account-edit.svg deleted file mode 100644 index 3bacacf..0000000 --- a/media/mailman_django/default/img/tango/emblems/account-edit.svg +++ /dev/null @@ -1,975 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - account edit - Sept 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - add - account - email-account - - - - - Beate Kaspar, Hendrik Eggers - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/at.svg> and <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/pen.svg> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/emblems/account-new.svg b/media/mailman_django/default/img/tango/emblems/account-new.svg deleted file mode 100644 index de31adc..0000000 --- a/media/mailman_django/default/img/tango/emblems/account-new.svg +++ /dev/null @@ -1,2935 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - account new - Sept 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - add - account - email-account - new - - - - - Beate Kaspar, Hendrik Eggers - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/message-new.svg> and <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/at.svg> - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/emblems/address-book.svg b/media/mailman_django/default/img/tango/emblems/address-book.svg deleted file mode 100644 index 3a248cf..0000000 --- a/media/mailman_django/default/img/tango/emblems/address-book.svg +++ /dev/null @@ -1,581 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - address book - July 2008 - - - Beate Kaspar - - - - - Beate Kaspar - - - - - RRZE - - - - - book - bookmark - bookmarks - favorites - marker - - - - - Hendrik Eggers, Franziska Sponsel - - - derived from <http://webcvs.freedesktop.org/tango/tango-icon-theme/scalable/actions/address-book-new.svg> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/img/tango/emblems/all-per-page.svg b/media/mailman_django/default/img/tango/emblems/all-per-page.svg deleted file mode 100644 index 32bf9fa..0000000 --- a/media/mailman_django/default/img/tango/emblems/all-per-page.svg +++ /dev/null @@ -1,716 +0,0 @@ - - all per page - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - all per page - Jun 2009 - - - Franziska Sponsel - - - - - Franziska Sponsel - - - - - RRZE - - - - - report - show - list - all - per page - - - - - Beate Kaspar, Hendrik Eggers - - - uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/report.svg> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/media/mailman_django/default/js/libs/._jquery-1.5.1.min.js b/media/mailman_django/default/js/libs/._jquery-1.5.1.min.js deleted file mode 100755 index 23c0b8d..0000000 --- a/media/mailman_django/default/js/libs/._jquery-1.5.1.min.js +++ /dev/null Binary files differ diff --git a/media/mailman_django/default/js/libs/._modernizr-1.7.min.js b/media/mailman_django/default/js/libs/._modernizr-1.7.min.js deleted file mode 100755 index 0ff0477..0000000 --- a/media/mailman_django/default/js/libs/._modernizr-1.7.min.js +++ /dev/null Binary files differ diff --git a/media/mailman_django/default/js/libs/jquery-1.5.1.min.js b/media/mailman_django/default/js/libs/jquery-1.5.1.min.js deleted file mode 100755 index 14fd647..0000000 --- a/media/mailman_django/default/js/libs/jquery-1.5.1.min.js +++ /dev/null @@ -1,16 +0,0 @@ -/*! - * jQuery JavaScript Library v1.5.1 - * http://jquery.com/ - * - * Copyright 2011, John Resig - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * Includes Sizzle.js - * http://sizzlejs.com/ - * Copyright 2011, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * - * Date: Wed Feb 23 13:55:29 2011 -0500 - */ -(function(a,b){function cg(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){if(!bZ[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;ic)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="
a";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="
";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(var g=c;g0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div
","
"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1>");try{for(var c=0,e=this.length;c1&&l0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]===""&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={},bI={},bJ,bK;try{bJ=c.location.href}catch(bL){bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("
").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(br,"\r\n")}}):{name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bQ(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){c&&c(0,1)}}}});var bZ={},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b
";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window); \ No newline at end of file diff --git a/media/mailman_django/default/js/libs/modernizr-1.7.min.js b/media/mailman_django/default/js/libs/modernizr-1.7.min.js deleted file mode 100755 index 6f54850..0000000 --- a/media/mailman_django/default/js/libs/modernizr-1.7.min.js +++ /dev/null @@ -1,2 +0,0 @@ -// Modernizr v1.7 www.modernizr.com -window.Modernizr=function(a,b,c){function G(){e.input=function(a){for(var b=0,c=a.length;b7)},r.history=function(){return !!(a.history&&history.pushState)},r.draganddrop=function(){return x("dragstart")&&x("drop")},r.websockets=function(){return"WebSocket"in a},r.rgba=function(){A("background-color:rgba(150,255,150,.5)");return D(k.backgroundColor,"rgba")},r.hsla=function(){A("background-color:hsla(120,40%,100%,.5)");return D(k.backgroundColor,"rgba")||D(k.backgroundColor,"hsla")},r.multiplebgs=function(){A("background:url(//:),url(//:),red url(//:)");return(new RegExp("(url\\s*\\(.*?){3}")).test(k.background)},r.backgroundsize=function(){return F("backgroundSize")},r.borderimage=function(){return F("borderImage")},r.borderradius=function(){return F("borderRadius","",function(a){return D(a,"orderRadius")})},r.boxshadow=function(){return F("boxShadow")},r.textshadow=function(){return b.createElement("div").style.textShadow===""},r.opacity=function(){B("opacity:.55");return/^0.55$/.test(k.opacity)},r.cssanimations=function(){return F("animationName")},r.csscolumns=function(){return F("columnCount")},r.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";A((a+o.join(b+a)+o.join(c+a)).slice(0,-a.length));return D(k.backgroundImage,"gradient")},r.cssreflections=function(){return F("boxReflect")},r.csstransforms=function(){return!!E(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])},r.csstransforms3d=function(){var a=!!E(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);a&&"webkitPerspective"in g.style&&(a=w("@media ("+o.join("transform-3d),(")+"modernizr)"));return a},r.csstransitions=function(){return F("transitionProperty")},r.fontface=function(){var a,c,d=h||g,e=b.createElement("style"),f=b.implementation||{hasFeature:function(){return!1}};e.type="text/css",d.insertBefore(e,d.firstChild),a=e.sheet||e.styleSheet;var i=f.hasFeature("CSS2","")?function(b){if(!a||!b)return!1;var c=!1;try{a.insertRule(b,0),c=/src/i.test(a.cssRules[0].cssText),a.deleteRule(a.cssRules.length-1)}catch(d){}return c}:function(b){if(!a||!b)return!1;a.cssText=b;return a.cssText.length!==0&&/src/i.test(a.cssText)&&a.cssText.replace(/\r+|\n+/g,"").indexOf(b.split(" ")[0])===0};c=i('@font-face { font-family: "font"; src: url(data:,); }'),d.removeChild(e);return c},r.video=function(){var a=b.createElement("video"),c=!!a.canPlayType;if(c){c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"');var d='video/mp4; codecs="avc1.42E01E';c.h264=a.canPlayType(d+'"')||a.canPlayType(d+', mp4a.40.2"'),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}return c},r.audio=function(){var a=b.createElement("audio"),c=!!a.canPlayType;c&&(c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"'),c.mp3=a.canPlayType("audio/mpeg;"),c.wav=a.canPlayType('audio/wav; codecs="1"'),c.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;"));return c},r.localstorage=function(){try{return!!localStorage.getItem}catch(a){return!1}},r.sessionstorage=function(){try{return!!sessionStorage.getItem}catch(a){return!1}},r.webWorkers=function(){return!!a.Worker},r.applicationcache=function(){return!!a.applicationCache},r.svg=function(){return!!b.createElementNS&&!!b.createElementNS(q.svg,"svg").createSVGRect},r.inlinesvg=function(){var a=b.createElement("div");a.innerHTML="";return(a.firstChild&&a.firstChild.namespaceURI)==q.svg},r.smil=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"animate")))},r.svgclippaths=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"clipPath")))};for(var H in r)z(r,H)&&(v=H.toLowerCase(),e[v]=r[H](),u.push((e[v]?"":"no-")+v));e.input||G(),e.crosswindowmessaging=e.postmessage,e.historymanagement=e.history,e.addTest=function(a,b){a=a.toLowerCase();if(!e[a]){b=!!b(),g.className+=" "+(b?"":"no-")+a,e[a]=b;return e}},A(""),j=l=null,f&&a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML="";return a.childNodes.length!==1}()&&function(a,b){function p(a,b){var c=-1,d=a.length,e,f=[];while(++c. - -def check_http_method(fn): - """ - Decorator function to return a mock response if the requested - method was PUT or PATCH. Will be removed once this functionality - is implemented in the REST server. - """ - def http_req(*args, **kwargs): - if 'method' in kwargs: - # If one of the not implemented methods gets called, return - # a response saying everything went well (204). - if kwargs['method'].upper() == 'PUT': - return 204 - elif kwargs['method'].upper() == 'PATCH': - return 204 - else: - # otherwise we return the function to let it perform its - # usual job - return fn(*args, **kwargs) - return http_req - - -def add_list_mock_data(cls): - """ - Decorator function to add mock data from the database to a list. - Once the functionality exists in the REST server this function can - be removed. - """ - cls.__orig__init__ = cls.__init__ - def __init__(self, *args, **kwargs): - """ - Initiate the list with the missing information and call the - usual init function to get the real data already available. - """ - cls.__orig__init__(self, *args, **kwargs) - self.info['id'] = 9 - #self.info['list_name'] = 'List name lorem ipsum dolor sit' - #self.info['host_name'] = 'Host name lorem ipsum dolor sit' - self.info['list_id'] = 'Some list ID lorem ipsum dolor sit' - self.info['include_list_post_header'] = True - self.info['include_rfc2369_headers'] = True - self.info['autorespond_owner'] = 9 - self.info['autoresponse_owner_text'] = 'Auto response owner text lorem ipsum dolor sit' - self.info['autorespond_postings'] = 9 - self.info['autoresponse_postings_text'] = 'Auto response postings text lorem ipsum dolor sit' - self.info['autorespond_requests'] = 9 - self.info['autoresponse_request_text'] = 'Auto response request text lorem ipsum dolor sit' - self.info['autoresponse_grace_period'] = 'Auto response grace period lorem ipsum dolor sit' - self.info['ban_list'] = 'Ban list (BLOB format) lorem ipsum dolor sit' - self.info['bounce_info_stale_after'] = 'Bounce info stale after lorem ipsum dolor sit' - self.info['bounce_matching_headers'] = 'Bounce matching headers lorem ipsum dolor sit' - self.info['bounce_notify_owner_on_disable'] = True - self.info['bounce_notify_owner_on_removal'] = True - self.info['bounce_processing'] = True - self.info['bounce_score_threshold'] = 9 - self.info['bounce_unrecognized_goes_to_list_owner'] = True - self.info['bounce_you_are_disabled_warnings'] = 9 - self.info['bounce_you_are_disabled_warnings_interval'] = 'Bounce you are disabled warnings lorem ipsum dolor sit' - self.info['filter_content'] = True - self.info['collapse_alternatives'] = True - self.info['convert_html_to_plaintext'] = True - self.info['default_member_moderation'] = True - self.info['description'] = 'Description lorem ipsum dolor sit' - self.info['digest_footer'] = 'Digest footer lorem ipsum dolor sit' - self.info['digest_header'] = 'Digest header lorem ipsum dolor sit' - self.info['digest_is_default'] = True - self.info['digest_send_periodic'] = True - self.info['digest_size_threshold'] = 9 - self.info['digest_volume_frequency'] = 'Digest volume frequency lorem ipsum dolor sit' - self.info['digestable'] = True - self.info['discard_these_nonmembers'] = 'Discard these non members (BLOB format) lorem ipsum dolor sit' - self.info['emergency'] = True - self.info['encode_ascii_prefixes'] = True - self.info['first_strip_reply_to'] = True - self.info['forward_auto_discards'] = True - self.info['gateway_to_mail'] = True - self.info['gateway_to_news'] = True - self.info['generic_nonmember_action'] = 9 - self.info['goodbye_msg'] = 'Goodbye message lorem ipsum dolor sit' - self.info['header_matches'] = 'Header matches (BLOB format) lorem ipsum dolor sit' - self.info['hold_these_nonmembers'] = 'Hold these non members (BLOB format) lorem ipsum dolor sit' - self.info['info'] = 'Info lorem ipsum dolor sit' - self.info['linked_newsgroup'] = 'Linked newsgroup lorem ipsum dolor sit' - self.info['max_days_to_hold'] = 9 - self.info['max_message_size'] = 9 - self.info['max_num_recipients'] = 9 - self.info['member_moderation_action'] = True - self.info['member_moderation_notice'] = 'Member moderation notice lorem ipsum dolor sit' - self.info['mime_is_default_digest'] = True - self.info['moderator_password'] = 'Moderator password lorem ipsum dolor sit' - self.info['msg_footer'] = 'Message footer lorem ipsum dolor sit' - self.info['msg_header'] = 'Message header lorem ipsum dolor sit' - self.info['new_member_options'] = 9 - self.info['news_moderation'] = 'News moderation lorem ipsum dolor sit' - self.info['news_prefix_subject_too'] = True - self.info['nntp_host'] = 'Nntp host lorem ipsum dolor sit' - self.info['nondigestable'] = True - self.info['nonmember_rejection_notice'] = 'Non member rejection notice lorem ipsum dolor sit' - self.info['obscure_addresses'] = True - self.info['personalize'] = 'Personalize lorem ipsum dolor sit' - self.info['pipeline'] = 'Pipeline lorem ipsum dolor sit' - self.info['post_id'] = 9 - self.info['preferred_language'] = 'Preferred language lorem ipsum dolor sit' - self.info['private_roster'] = True - #self.info['real_name'] = 'Real name lorem ipsum dolor sit' - self.info['reject_these_nonmembers'] = 'Reject these non members (BLOB format) lorem ipsum dolor sit' - self.info['reply_goes_to_list'] = 'Reply goes to list lorem ipsum dolor sit' - self.info['reply_to_address'] = 'some_reply_to_address@lorem.ipsum' - self.info['require_explicit_destination'] = True - self.info['respond_to_post_requests'] = True - self.info['scrub_nondigest'] = True - self.info['send_goodbye_msg'] = True - self.info['send_reminders'] = True - self.info['send_welcome_msg'] = True - self.info['start_chain'] = 'Start chain lorem ipsum dolor sit' - self.info['subject_prefix'] = 'Subject prefix lorem ipsum dolor sit' - self.info['subscribe_auto_approval'] = 'Subscribe auto approval (BLOB format) lorem ipsum dolor sit' - self.info['subscribe_policy'] = 9 - self.info['topics'] = 'Topics (BLOB format) lorem ipsum dolor sit' - self.info['topics_bodylines_limit'] = 9 - self.info['topics_enabled'] = True - self.info['unsubscribe_policy'] = 9 - self.info['welcome_msg'] = 'Welcome message lorem ipsum dolor sit' - self.info['advertised'] = True - self.info['archive'] = True - self.info['archive_private'] = True - self.info['acceptable_aliases'] = 'Acceptable aliases lorem ipsum dolor sit' - self.info['admin_immed_notify'] = True - self.info['admin_notify_mchanges'] = False - self.info['administrivia'] = True - self.info['anonymous_list'] = False - self.info['bounces_address'] = 'test-one-bounces@example.com' - self.info['created_at'] = 9 - self.info['digest_last_sent_at'] = 9 - self.info['join_address'] = 'test-one-join@example.com' - self.info['last_post_at'] = 9 - self.info['leave_address'] = 'test-one-leave@example.com' - self.info['next_digest_number'] = 9 - self.info['no_reply_address'] = 'noreply@example.com' - self.info['owner_address'] = 'test-one-owner@example.com' - self.info['posting_address'] = 'test-one@example.com' - self.info['request_address'] = 'test-one-request@example.com' - self.info['scheme'] = 'http' - self.info['volume'] = 9 - self.info['web_host'] = 'lists.example.com' - cls.__init__ = __init__ - - return cls - - -def add_user_mock_data(cls): - """Decorator function to add mock data to a user object.""" - - cls.__orig__init__ = cls.__init__ - def __init__(self, *args, **kwargs): - """Initiate a user and add mockdata.""" - cls.__orig__init__(self, *args, **kwargs) - self.info[u'real_name'] = u'Jack' - - def get_lists(self): - response = [{u'email_address': u'jack@example.com', - u'fqdn_listname': u'test-one@example.com', - u'real_name': u'Test-one'}, - {u'email_address': u'jack@example.com', - u'fqdn_listname': u'test-two@example.com', - u'real_name': u'Test-two'}] - return response - - def get_email_addresses(self): - response = [u'jack@example.com'] - return response - - cls.__init__ = __init__ - cls.get_lists = get_lists - cls.get_email_addresses = get_email_addresses - - return cls - - -def add_member_mock_data(cls): - """ - Decorator function to add mock data from the database to a member. - Once the functionality exists in the REST server this function can - be removed. - """ - cls.__orig__init__ = cls.__init__ - def __init__(self, *args, **kwargs): - """ - Initiate the member with the missing information and call the - usual init function to get the real data already available. - """ - cls.__orig__init__(self, *args, **kwargs) - self.info['id'] = 9 - self.info['acknowledge_posts'] = True - self.info['hide_address'] = True - self.info['preferred_language'] = 'Preferred language lorem ipsum dolor sit' - self.info['receive_list_copy'] = True - self.info['receive_own_postings'] = True - #self.info['delivery_mode'] = 'Delivery mode lorem ipsum dolor sit' - #self.info['delivery_status'] = 'Delivery status lorem ipsum dolor sit' - self.info['real_name'] = 'Real name lorem ipsum dolor sit' - self.info['password'] = 'Password lorem ipsum dolor sit' - self.info['preferences_id'] = 9 - self.info['role'] = 'Role lorem ipsum dolor sit' - self.info['mailing_list'] = 'Mailing list lorem ipsum dolor sit' - self.info['is_moderated'] = True - self.info['address_id'] = 9 - self.info['address'] = 'Address lorem ipsum dolor sit' - self.info['_original'] = 'Original lorem ipsum dolor sit' - self.info['verified_on'] = '2000-01-01 00:00:00' - self.info['registered_on'] = '2000-01-01 00:00:00' - self.info['user_id'] = 9 - cls.__init__ = __init__ - - return cls diff --git a/models.py b/models.py deleted file mode 100644 index 87daa02..0000000 --- a/models.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# -# GNU Mailman 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 -# GNU Mailman. If not, see . - -from django.db import models - -# Create your models here. diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ff1a9e8 --- /dev/null +++ b/setup.py @@ -0,0 +1,19 @@ +import ez_setup +ez_setup.use_setuptools() + +from setuptools import setup, find_packages + +setup( + name = "mailman_django", + version = "0.1", + description = "A web user interface for GNU Mailman", + long_description=open('README.rst').read(), + maintainer = "The Mailman GSOC Coders", + maintainer_email = "flo.fuchs@gmail.com", + license = 'GPLv3', + keywords = 'email mailman django', + url = "https://code.launchpad.net/~flo-fuchs/mailmanwebgsoc2011/transition", + packages = find_packages('src'), + package_dir = {'': 'src'}, + include_package_data = True +) diff --git a/src/mailman_django.egg-info/PKG-INFO b/src/mailman_django.egg-info/PKG-INFO new file mode 100644 index 0000000..b5c5ffc --- /dev/null +++ b/src/mailman_django.egg-info/PKG-INFO @@ -0,0 +1,44 @@ +Metadata-Version: 1.0 +Name: mailman-django +Version: 0.1 +Summary: A web user interface for GNU Mailman +Home-page: https://code.launchpad.net/~flo-fuchs/mailmanwebgsoc2011/transition +Author: The Mailman GSOC Coders +Author-email: flo.fuchs@gmail.com +License: GPLv3 +Description: ======================================= + mailman-django - web ui for GNU Mailman + ======================================= + + The ``mailman-django`` Django app provides a web user interface to + access GNU Mailman. + + ``mailman-django`` is free software: you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public License as + published by the Free Software Foundation, version 3 of the License. + + ``mailman-django`` 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 Lesser + General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with mailman.client. If not, see . + + + Requirements + ============ + + ``mailman-django`` requires Python 2.6 or newer and ``mailman.client``, + the official Python bindings for GNU Mailman. + + + Acknowledgements + ================ + + Many thanks go out to Anna Granudd and Benedict Stein for developing the + initial versions of this Django app during the Google Summer of Code + 2010 and 2011. + +Keywords: email mailman django +Platform: UNKNOWN diff --git a/src/mailman_django.egg-info/SOURCES.txt b/src/mailman_django.egg-info/SOURCES.txt new file mode 100644 index 0000000..b2d8f79 --- /dev/null +++ b/src/mailman_django.egg-info/SOURCES.txt @@ -0,0 +1,17 @@ +setup.py +src/mailman_django/__init__.py +src/mailman_django/context_processors.py +src/mailman_django/fieldset_forms.py +src/mailman_django/forms.py +src/mailman_django/models.py +src/mailman_django/urls.py +src/mailman_django/views.py +src/mailman_django.egg-info/PKG-INFO +src/mailman_django.egg-info/SOURCES.txt +src/mailman_django.egg-info/dependency_links.txt +src/mailman_django.egg-info/top_level.txt +src/mailman_django/auth/__init__.py +src/mailman_django/auth/restbackend.py +src/mailman_django/tests/__init__.py +src/mailman_django/tests/setup.py +src/mailman_django/tests/tests.py \ No newline at end of file diff --git a/src/mailman_django.egg-info/dependency_links.txt b/src/mailman_django.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/mailman_django.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/src/mailman_django.egg-info/top_level.txt b/src/mailman_django.egg-info/top_level.txt new file mode 100644 index 0000000..e796582 --- /dev/null +++ b/src/mailman_django.egg-info/top_level.txt @@ -0,0 +1 @@ +mailman_django diff --git a/src/mailman_django/__init__.py b/src/mailman_django/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/mailman_django/__init__.py diff --git a/src/mailman_django/auth/__init__.py b/src/mailman_django/auth/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/mailman_django/auth/__init__.py diff --git a/src/mailman_django/auth/restbackend.py b/src/mailman_django/auth/restbackend.py new file mode 100644 index 0000000..7f6c20b --- /dev/null +++ b/src/mailman_django/auth/restbackend.py @@ -0,0 +1,79 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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. +# +# GNU Mailman 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 +# GNU Mailman. If not, see . + +from django.contrib.auth.models import User, check_password + +class RESTBackend: + """ + Authenticate against the settings the REST Middleware + checking permissions ... + + Development uses hardcoded users atm. + + """ + + supports_object_permissions = False + supports_anonymous_user = False + supports_inactive_user = False + + def authenticate(self, **credentials): + """ + This authenticate function will check with the REST Middleware + wheteher the user exists and did provide a valid password. + + DEV: TODO - needs Middleware connection + """ + # make_password is used to create sha1 strings + valid_users = {"james@example.com": "james", #workaround until middleware exists + "katie@example.com": "katie", + "kevin@example.com": "kevin"} + login_valid = credentials["username"] in valid_users.keys() + try: + pwd_valid = (credentials["password"] == valid_users[credentials["username"]]) + except KeyError: + pwd_valid = False + if login_valid and pwd_valid: + try: + user = User.objects.get(username=credentials["username"]) + except User.DoesNotExist: + # Create a new user. Note that we can set password + # to anything, because it won't be checked; the password + # from settings.py will. + user = User(username=credentials["username"], password='doesnt matter') + user.is_staff = False + user.is_superuser = False + user.save() + return user + return None + + def get_user(self, user_id): + try: + return User.objects.get(pk=user_id) + except User.DoesNotExist: + return None + + def has_perm(self, user_obj, perm): + if perm == "server_admin": + if user_obj.username == "james@example.com": + return True + else: + return False + elif perm == "perm": #Test Fallback + pass + else: + raise Exception(perm+" Permisson unknown") diff --git a/src/mailman_django/context_processors.py b/src/mailman_django/context_processors.py new file mode 100644 index 0000000..c8f63ac --- /dev/null +++ b/src/mailman_django/context_processors.py @@ -0,0 +1,49 @@ +from mailman.client import Client +from mailmanweb.settings import API_USER, API_PASS, MAILMAN_THEME +from django.utils.translation import gettext as _ +from urllib2 import HTTPError + +def lists_of_domain(request): + """ This function is a wrapper to render a list of all + available List registered to the current request URL + """ + domain_lists = [] + domainname = None + message = "" + if "HTTP_HOST" in request.META.keys() :#TODO only lists of current domains if possible + #get the URL + web_host = ('http://%s' % request.META["HTTP_HOST"].split(":")[0]) + domainname = "unregistered Domain" + #querry the Domain object + try: + c = Client('http://localhost:8001/3.0', API_USER, API_PASS) + except AttributeError, e: + message="REST API not found / Offline" + try: + d = c.get_domain(web_host=web_host) + #workaround LP:802971 - only lists of the current domain #todo a8 + domainname= d.mail_host + for list in c.lists: + if list.mail_host == domainname: + domain_lists.append(list) + except HTTPError, e: + domain_lists = c.lists + message = str(e.code) + _(" - Accesing from an unregistered Domain - showing all lists") + + #return a Dict with the key used in templates + return {"lists":domain_lists,"domain":domainname, "message":message} + +def render_MAILMAN_THEME(request): + """ This function is a wrapper to render the Mailman Theme Variable from Settings + """ + return {"MAILMAN_THEME":MAILMAN_THEME} + +def extend_ajax(request): + """ This function checks if the request was made using AJAX + Using Ajax template_extend will base_ajax.html else it will be base.html + """ + if request.is_ajax(): + extend_template = "mailman-django/base_ajax.html" + else: + extend_template = "mailman-django/base.html" + return {"extend_template":extend_template} diff --git a/src/mailman_django/doc/Makefile b/src/mailman_django/doc/Makefile new file mode 100644 index 0000000..12bb576 --- /dev/null +++ b/src/mailman_django/doc/Makefile @@ -0,0 +1,130 @@ +# Makefile for Sphinx documentation +# + +# You can set these variables from the command line. +SPHINXOPTS = +SPHINXBUILD = sphinx-build +PAPER = +BUILDDIR = _build + +# Internal variables. +PAPEROPT_a4 = -D latex_paper_size=a4 +PAPEROPT_letter = -D latex_paper_size=letter +ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) . + +.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest + +help: + @echo "Please use \`make ' where is one of" + @echo " html to make standalone HTML files" + @echo " dirhtml to make HTML files named index.html in directories" + @echo " singlehtml to make a single large HTML file" + @echo " pickle to make pickle files" + @echo " json to make JSON files" + @echo " htmlhelp to make HTML files and a HTML help project" + @echo " qthelp to make HTML files and a qthelp project" + @echo " devhelp to make HTML files and a Devhelp project" + @echo " epub to make an epub" + @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter" + @echo " latexpdf to make LaTeX files and run them through pdflatex" + @echo " text to make text files" + @echo " man to make manual pages" + @echo " changes to make an overview of all changed/added/deprecated items" + @echo " linkcheck to check all external links for integrity" + @echo " doctest to run all doctests embedded in the documentation (if enabled)" + +clean: + -rm -rf $(BUILDDIR)/* + +html: + $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/html." + +dirhtml: + $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml + @echo + @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml." + +singlehtml: + $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml + @echo + @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml." + +pickle: + $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle + @echo + @echo "Build finished; now you can process the pickle files." + +json: + $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json + @echo + @echo "Build finished; now you can process the JSON files." + +htmlhelp: + $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp + @echo + @echo "Build finished; now you can run HTML Help Workshop with the" \ + ".hhp project file in $(BUILDDIR)/htmlhelp." + +qthelp: + $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp + @echo + @echo "Build finished; now you can run "qcollectiongenerator" with the" \ + ".qhcp project file in $(BUILDDIR)/qthelp, like this:" + @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/mailman_django.qhcp" + @echo "To view the help file:" + @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/mailman_django.qhc" + +devhelp: + $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp + @echo + @echo "Build finished." + @echo "To view the help file:" + @echo "# mkdir -p $$HOME/.local/share/devhelp/mailman_django" + @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/mailman_django" + @echo "# devhelp" + +epub: + $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub + @echo + @echo "Build finished. The epub file is in $(BUILDDIR)/epub." + +latex: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo + @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex." + @echo "Run \`make' in that directory to run these through (pdf)latex" \ + "(use \`make latexpdf' here to do that automatically)." + +latexpdf: + $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex + @echo "Running LaTeX files through pdflatex..." + make -C $(BUILDDIR)/latex all-pdf + @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex." + +text: + $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text + @echo + @echo "Build finished. The text files are in $(BUILDDIR)/text." + +man: + $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man + @echo + @echo "Build finished. The manual pages are in $(BUILDDIR)/man." + +changes: + $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes + @echo + @echo "The overview file is in $(BUILDDIR)/changes." + +linkcheck: + $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck + @echo + @echo "Link check complete; look for any errors in the above output " \ + "or in $(BUILDDIR)/linkcheck/output.txt." + +doctest: + $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) $(BUILDDIR)/doctest + @echo "Testing of doctests in the sources finished, look at the " \ + "results in $(BUILDDIR)/doctest/output.txt." diff --git a/src/mailman_django/doc/_build/doctrees/acknowledgements.doctree b/src/mailman_django/doc/_build/doctrees/acknowledgements.doctree new file mode 100644 index 0000000..b038c50 --- /dev/null +++ b/src/mailman_django/doc/_build/doctrees/acknowledgements.doctree Binary files differ diff --git a/src/mailman_django/doc/_build/doctrees/environment.pickle b/src/mailman_django/doc/_build/doctrees/environment.pickle new file mode 100644 index 0000000..f72d38a --- /dev/null +++ b/src/mailman_django/doc/_build/doctrees/environment.pickle Binary files differ diff --git a/src/mailman_django/doc/_build/doctrees/index.doctree b/src/mailman_django/doc/_build/doctrees/index.doctree new file mode 100644 index 0000000..c5b1fe5 --- /dev/null +++ b/src/mailman_django/doc/_build/doctrees/index.doctree Binary files differ diff --git a/src/mailman_django/doc/_build/doctrees/license.doctree b/src/mailman_django/doc/_build/doctrees/license.doctree new file mode 100644 index 0000000..be3eca3 --- /dev/null +++ b/src/mailman_django/doc/_build/doctrees/license.doctree Binary files differ diff --git a/src/mailman_django/doc/_build/doctrees/setup.doctree b/src/mailman_django/doc/_build/doctrees/setup.doctree new file mode 100644 index 0000000..5426668 --- /dev/null +++ b/src/mailman_django/doc/_build/doctrees/setup.doctree Binary files differ diff --git a/src/mailman_django/doc/_build/doctrees/using.doctree b/src/mailman_django/doc/_build/doctrees/using.doctree new file mode 100644 index 0000000..88ea4c3 --- /dev/null +++ b/src/mailman_django/doc/_build/doctrees/using.doctree Binary files differ diff --git a/src/mailman_django/doc/_build/html/.buildinfo b/src/mailman_django/doc/_build/html/.buildinfo new file mode 100644 index 0000000..bfab212 --- /dev/null +++ b/src/mailman_django/doc/_build/html/.buildinfo @@ -0,0 +1,4 @@ +# Sphinx build info version 1 +# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. +config: d09bb35413d67772527e3e0e86203d54 +tags: fbb0d17656682115ca4d033fb2f83ba1 diff --git a/src/mailman_django/doc/_build/html/_sources/acknowledgements.txt b/src/mailman_django/doc/_build/html/_sources/acknowledgements.txt new file mode 100644 index 0000000..4abdd73 --- /dev/null +++ b/src/mailman_django/doc/_build/html/_sources/acknowledgements.txt @@ -0,0 +1,37 @@ +Acknowledgements +================ + +Test Server +----------- + +We're proud to provide you a development server which is sponsered by XXX #Todo +Feel free to change anything you like, we can simply rest the DB from Time to Time. + +Missing Functionality +--------------------- + +* Delete Domain + * missing in REST + * implemented in mailman3 a8 + +* Show a List of all subscribed users + +ACL +--- + +* Middleware + + We don't have the Middleware which is required to work with users and it's permissions yet. For this reason we had to tweak some functions to be a hardcoded Demo object. + + * Login Check + At the moment we're using a hardcoded List of allowed usernames and Passwords which are all stored in Plain within the AuthBackends Source File. + * has_perm Decorator + As we don't have a middleware to check for users and it's permissions we do only use one permission at the moment. The permission site domain_admin is hardcoded to user.username == "james@example.com" + + + +Ideas +----- + +* ContactPage +* diff --git a/src/mailman_django/doc/_build/html/_sources/index.txt b/src/mailman_django/doc/_build/html/_sources/index.txt new file mode 100644 index 0000000..a241ad8 --- /dev/null +++ b/src/mailman_django/doc/_build/html/_sources/index.txt @@ -0,0 +1,19 @@ +.. mailman_django documentation master file, created by + sphinx-quickstart on Wed Aug 17 15:43:10 2011. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to mailman_django's documentation! +========================================== + +Contents: + +.. toctree:: + :maxdepth: 2 + + setup.rst + using.rst + acknowledgements.rst + license.rst + +* :ref:`search` diff --git a/src/mailman_django/doc/_build/html/_sources/license.txt b/src/mailman_django/doc/_build/html/_sources/license.txt new file mode 100644 index 0000000..9d427c5 --- /dev/null +++ b/src/mailman_django/doc/_build/html/_sources/license.txt @@ -0,0 +1,34 @@ +Contributions: +============== +Mailman is licensed unter *GPL* +----------------------------- +Copyright (C) 1998-2010 by the Free Software Foundation, Inc. + +This file is part of GNU Mailman. + +GNU Mailman 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. + +GNU Mailman 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 +GNU Mailman. If not, see . + +RRZE Icon Set +------------- + +**CreativeCommons Licence** + +The RRZE Icon Set is licenced under a Creative Commons Licence. +Please see the website for the current licence text. + +More information about the Project could be found here: +http://rrze-icon-set.berlios.de/licence.html + +Special thanks to: +* Franziska Sponsel (created additional Icons specially for our Project) diff --git a/src/mailman_django/doc/_build/html/_sources/setup.txt b/src/mailman_django/doc/_build/html/_sources/setup.txt new file mode 100644 index 0000000..70c7768 --- /dev/null +++ b/src/mailman_django/doc/_build/html/_sources/setup.txt @@ -0,0 +1,187 @@ +Installation +============ + +Mailman3 - a7 +------------- + +* Check Dependecys + .. note:: + This might differ on different systems - I was testing Ubuntu 11.04 natty and needed to install Postfix before running the installation. +* Download or branch Mailman3a7 from http://launchpad.net/mailman/3.0/3.0.0a7/+download/mailman-3.0.0a7.tar.gz and unpack it. +* Change into the unpacked DIR which might be named "mailman-3.0.0a7" + .. note:: + Please be aware that the following steps only work if you're really in that DIR. If you consider adding a subfolder name to the commands those woun't work ! +* Run the Installation from a Shell (not Python) + + .. code-block:: bash + + $ python bootstrap.py + $ bin/buildout + +* Vertify that everything was setup correclty and your branch fullfills the version requirements by running it's own test module + + .. code-block:: bash + + $ bin/test + +* Now you're able to run mailman using + + .. code-block:: bash + + $ bin/mailman + +Mailman Client / REST Api +------------------------- + +Next thing you need to do is installing the Plugin used for communication with non-mailman-code parts like our WebUI. Within the Client Branch we've put both, Classes to access the Core which are run as a Plugin and some Python Bindings. +The Python Bindings were used later on within our Django Application to access the Server. Failing to install the Client would result in an offline version of WebUI + +Once again start by branching the code which is on Launchpad + + .. code-block:: bash + + $ bzr branch lp:mailman.client + +.. note:: + We've successfully tested our functionality with Revision 16 - In case the Client gets updated which it surely will in future we can't guarentee that it is compatible anymore. + +As you only want to run the Client and not modify it's code you're fine with running the install command from within the directory. At the moment this requires Sudo Priveledges as files will copied to the Python Site-Packages Directory which is available to all users. + + .. code-block:: bash + + $ sudo python setup.py install + +.. note:: + If you want to change parts of the Client you can use the development option which will create a Symlink instead of a Hardcopy of all files: + + .. code-block:: bash + + $ sudo python setup.py develop + +All changes will apply once you restart Mailman itself. + +Django 1.3 +---------- +During our development we started a Django Site based on the 1.2 Version which is included into Ubuntu's repositorys. This made the installation easy but we ended up having some points which would get a much better code when using some elements introducing in 1.3. +As Mailman is supposed to be long-time stable - or however you call it - we decided that we should stick to the latest stable version right away. For this reason you're required to install Django 1.3+ which is descriped on their Website. (https://www.djangoproject.com/download/) + +.. note:: + Please be Aware that it's not recommended to run both 1.2 and 1.3 at the same time + +In Django you've got 3 different levels of data. +- Django Installation Files +- Django Site +- Django Apps +usually you don't see the Installation as it's hidden somewhere within the System and the Apps are simply included into The Site Directory. +As we wanted to have the possibility to include the App into any Django Site which might already exist we decided to keep Site and App seperated. + +During GSoC we've used different branches for this: +- lp:mailmanwebgsoc2011 +- lp:mailmanwebgsoc2011/django-site-0.1 + +Django Site Installation +------------------------ + +We've created this branch for quick development - everyone is free to use his own Django site, but this one already includes a couple of modifications we've made that will allow running the Development Server just a few seconds after Branching both Site and App. + +As far as I know at the moment we've made the following alignments: (All of these are in the settings.py file of the Django Site) + + REST_SERVER = 'localhost:8001' + API_USER = 'restadmin' + API_PASS = 'restpass' + + .. note:: + These are the default values used by the Mailman Client we've installed earlier. Feel free to modify the password and username if you need to. + +MAILMAN_TEST_BINDIR = '/home/benste/Projects/Gsoc_mailman/mailman-3.0.0a7/bin' +#/home/florian/Development/mailman/bin' + + .. note:: Running the test modules requires to launch a special version of mailman with it's own testing DB otherwise you'd destroy you're sites content during testing. This Path needs to point to YOUR own installation of mailman. + +MAILMAN_THEME = "default" + + .. note:: + We decided to allow simple Appearance Modifications, to use a custom CSS you could simply add a Directory within the media directory of the app and Link it's name here. All HTML Pages will use the Styles from the Directory mentioned in here + +PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) +MEDIA_ROOT = os.path.join(os.path.split(PROJECT_PATH)[0], "mailman_django/media/mailman_django/") + .. note:: + Absolute path to the directory that holds media. + Example: "/home/media/media.lawrence.com/" + +MEDIA_URL = '/mailman_media/' + + .. note:: + URL that handles the media served from MEDIA_ROOT. Make sure to use a trailing slash if there is a path component (optional in other cases).Examples: "http://media.lawrence.com", "http://example.com/media/" + +AUTHENTICATION_BACKENDS = ( + 'mailman_django.auth.restbackend.RESTBackend', + 'django.contrib.auth.backends.ModelBackend' + ) + + .. note:: + This creates a connection in between Djangos Login and Permission Decorators which we use for authentification and a custom Backend which we created in Preparation to work together with the REST API or an upcoming Middleware. + You need to keep the Django one for testing fallback. + +TEMPLATE_CONTEXT_PROCESSORS=( + "django.contrib.auth.context_processors.auth", + "django.core.context_processors.debug", + "django.core.context_processors.i18n", + "django.core.context_processors.media", + "django.core.context_processors.csrf", + "django.contrib.messages.context_processors.messages", + "mailman_django.context_processors.lists_of_domain", + "mailman_django.context_processors.render_MAILMAN_THEME", + "mailman_django.context_processors.extend_ajax" + + .. note:: + We're using Context Processors to easily render value which we need in nearly every view. + +ROOT_URLCONF = 'mailman_django.urls' + + .. note:: + This is where our URL Config is - if you run your own site with other Apps as well you might want to adjust this to your urls.py which includes our file. + +TEMPLATE_DIRS = ( + os.path.join(PROJECT_PATH, "mailman_django/templates"), + + .. note:: + Adds our own Templates + +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.admin', + 'mailman_django', + + .. note:: + Makes sure that Django knows about our directory as an App and creates needed Tables () when running + + .. code-block:: bash + + $ python manage.py syncdb + +Now that you know about all these you might start the development server. As usual in Django this is done by running + + .. code-block:: bash + + $ python manage.py runserver + +within the Django Site Directory - as usual the default address is localhost:8000 +Of course it will only be able to start once our app is in place as well. + +Django Application +------------------ +First get the files, and make sure you paste them into your Project directory and adjust it's name to the appropriate configuration you've made earlier in the Django Site. Remeber our default is mailman_django + + .. code-block:: bash + + $ bzr branch lp:mailmanwebgsoc2011 + +.. note:: + We've tested Revision 172 + +.. note:: + We're planning to ease up installation by creating an egg diff --git a/src/mailman_django/doc/_build/html/_sources/using.txt b/src/mailman_django/doc/_build/html/_sources/using.txt new file mode 100644 index 0000000..94f842d --- /dev/null +++ b/src/mailman_django/doc/_build/html/_sources/using.txt @@ -0,0 +1,29 @@ +Using the Django App - Developers Resource +========================================== + +.. automodule:: tests.tests + +Running the tests explained above. +---------------------------------- +We've added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site. + +Run the following in the Site Directory + + .. code-block:: bash + + $ python manage.py test + +.. note:: + Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it's own mailman temporily. + +Accessing the REST Client for Testing +------------------------------------- + +If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it's current Directory within the Django Site Directory. + + .. code-block:: python + + from settings import API_USER, API_PASS + from mailman.client import Client + c = Client('http://localhost:8001/3.0', API_USER, API_PASS) + #DEBUG: Python Session diff --git a/src/mailman_django/doc/_build/html/_static/basic.css b/src/mailman_django/doc/_build/html/_static/basic.css new file mode 100644 index 0000000..69f30d4 --- /dev/null +++ b/src/mailman_django/doc/_build/html/_static/basic.css @@ -0,0 +1,509 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 230px; + margin-left: -100%; + font-size: 90%; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +img { + border: 0; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li div.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable dl, table.indextable dd { + margin-top: 0; + margin-bottom: 0; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- general body styles --------------------------------------------------- */ + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.field-list ul { + padding-left: 1em; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +.align-left { + text-align: left; +} + +.align-center { + clear: both; + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px 7px 0 7px; + background-color: #ffe; + width: 40%; + float: right; +} + +p.sidebar-title { + font-weight: bold; +} + +/* -- topics ---------------------------------------------------------------- */ + +div.topic { + border: 1px solid #ccc; + padding: 7px 7px 0 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +div.admonition dl { + margin-bottom: 0; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + border: 0; + border-collapse: collapse; +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +table.field-list td, table.field-list th { + border: 0 !important; +} + +table.footnote td, table.footnote th { + border: 0 !important; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +dl { + margin-bottom: 15px; +} + +dd p { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dt:target, .highlighted { + background-color: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.refcount { + color: #060; +} + +.optional { + font-size: 1.3em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; +} + +td.linenos pre { + padding: 5px 0px; + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + margin-left: 0.5em; +} + +table.highlighttable td { + padding: 0 0.5em 0 0.5em; +} + +tt.descname { + background-color: transparent; + font-weight: bold; + font-size: 1.2em; +} + +tt.descclassname { + background-color: transparent; +} + +tt.xref, a tt { + background-color: transparent; + font-weight: bold; +} + +h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} diff --git a/src/mailman_django/doc/_build/html/_static/default.css b/src/mailman_django/doc/_build/html/_static/default.css new file mode 100644 index 0000000..b30cb79 --- /dev/null +++ b/src/mailman_django/doc/_build/html/_static/default.css @@ -0,0 +1,255 @@ +/* + * default.css_t + * ~~~~~~~~~~~~~ + * + * Sphinx stylesheet -- default theme. + * + * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +@import url("basic.css"); + +/* -- page layout ----------------------------------------------------------- */ + +body { + font-family: sans-serif; + font-size: 100%; + background-color: #11303d; + color: #000; + margin: 0; + padding: 0; +} + +div.document { + background-color: #1c4e63; +} + +div.documentwrapper { + float: left; + width: 100%; +} + +div.bodywrapper { + margin: 0 0 0 230px; +} + +div.body { + background-color: #ffffff; + color: #000000; + padding: 0 20px 30px 20px; +} + +div.footer { + color: #ffffff; + width: 100%; + padding: 9px 0 9px 0; + text-align: center; + font-size: 75%; +} + +div.footer a { + color: #ffffff; + text-decoration: underline; +} + +div.related { + background-color: #133f52; + line-height: 30px; + color: #ffffff; +} + +div.related a { + color: #ffffff; +} + +div.sphinxsidebar { +} + +div.sphinxsidebar h3 { + font-family: 'Trebuchet MS', sans-serif; + color: #ffffff; + font-size: 1.4em; + font-weight: normal; + margin: 0; + padding: 0; +} + +div.sphinxsidebar h3 a { + color: #ffffff; +} + +div.sphinxsidebar h4 { + font-family: 'Trebuchet MS', sans-serif; + color: #ffffff; + font-size: 1.3em; + font-weight: normal; + margin: 5px 0 0 0; + padding: 0; +} + +div.sphinxsidebar p { + color: #ffffff; +} + +div.sphinxsidebar p.topless { + margin: 5px 10px 10px 10px; +} + +div.sphinxsidebar ul { + margin: 10px; + padding: 0; + color: #ffffff; +} + +div.sphinxsidebar a { + color: #98dbcc; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + + +/* -- hyperlink styles ------------------------------------------------------ */ + +a { + color: #355f7c; + text-decoration: none; +} + +a:visited { + color: #355f7c; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + + + +/* -- body styles ----------------------------------------------------------- */ + +div.body h1, +div.body h2, +div.body h3, +div.body h4, +div.body h5, +div.body h6 { + font-family: 'Trebuchet MS', sans-serif; + background-color: #f2f2f2; + font-weight: normal; + color: #20435c; + border-bottom: 1px solid #ccc; + margin: 20px -20px 10px -20px; + padding: 3px 0 3px 10px; +} + +div.body h1 { margin-top: 0; font-size: 200%; } +div.body h2 { font-size: 160%; } +div.body h3 { font-size: 140%; } +div.body h4 { font-size: 120%; } +div.body h5 { font-size: 110%; } +div.body h6 { font-size: 100%; } + +a.headerlink { + color: #c60f0f; + font-size: 0.8em; + padding: 0 4px 0 4px; + text-decoration: none; +} + +a.headerlink:hover { + background-color: #c60f0f; + color: white; +} + +div.body p, div.body dd, div.body li { + text-align: justify; + line-height: 130%; +} + +div.admonition p.admonition-title + p { + display: inline; +} + +div.admonition p { + margin-bottom: 5px; +} + +div.admonition pre { + margin-bottom: 5px; +} + +div.admonition ul, div.admonition ol { + margin-bottom: 5px; +} + +div.note { + background-color: #eee; + border: 1px solid #ccc; +} + +div.seealso { + background-color: #ffc; + border: 1px solid #ff6; +} + +div.topic { + background-color: #eee; +} + +div.warning { + background-color: #ffe4e4; + border: 1px solid #f66; +} + +p.admonition-title { + display: inline; +} + +p.admonition-title:after { + content: ":"; +} + +pre { + padding: 5px; + background-color: #eeffcc; + color: #333333; + line-height: 120%; + border: 1px solid #ac9; + border-left: none; + border-right: none; +} + +tt { + background-color: #ecf0f3; + padding: 0 1px 0 1px; + font-size: 0.95em; +} + +th { + background-color: #ede; +} + +.warning tt { + background: #efc2c2; +} + +.note tt { + background: #d6d6d6; +} + +.viewcode-back { + font-family: sans-serif; +} + +div.viewcode-block:target { + background-color: #f4debf; + border-top: 1px solid #ac9; + border-bottom: 1px solid #ac9; +} \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/_static/doctools.js b/src/mailman_django/doc/_build/html/_static/doctools.js new file mode 100644 index 0000000..eeea95e --- /dev/null +++ b/src/mailman_django/doc/_build/html/_static/doctools.js @@ -0,0 +1,247 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Sphinx JavaScript utilties for all documentation. + * + * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/** + * select a different prefix for underscore + */ +$u = _.noConflict(); + +/** + * make the code below compatible with browsers without + * an installed firebug like debugger +if (!window.console || !console.firebug) { + var names = ["log", "debug", "info", "warn", "error", "assert", "dir", + "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", + "profile", "profileEnd"]; + window.console = {}; + for (var i = 0; i < names.length; ++i) + window.console[names[i]] = function() {}; +} + */ + +/** + * small helper function to urldecode strings + */ +jQuery.urldecode = function(x) { + return decodeURIComponent(x).replace(/\+/g, ' '); +} + +/** + * small helper function to urlencode strings + */ +jQuery.urlencode = encodeURIComponent; + +/** + * This function returns the parsed url parameters of the + * current request. Multiple values per key are supported, + * it will always return arrays of strings for the value parts. + */ +jQuery.getQueryParameters = function(s) { + if (typeof s == 'undefined') + s = document.location.search; + var parts = s.substr(s.indexOf('?') + 1).split('&'); + var result = {}; + for (var i = 0; i < parts.length; i++) { + var tmp = parts[i].split('=', 2); + var key = jQuery.urldecode(tmp[0]); + var value = jQuery.urldecode(tmp[1]); + if (key in result) + result[key].push(value); + else + result[key] = [value]; + } + return result; +}; + +/** + * small function to check if an array contains + * a given item. + */ +jQuery.contains = function(arr, item) { + for (var i = 0; i < arr.length; i++) { + if (arr[i] == item) + return true; + } + return false; +}; + +/** + * highlight a given string on a jquery object by wrapping it in + * span elements with the given class name. + */ +jQuery.fn.highlightText = function(text, className) { + function highlight(node) { + if (node.nodeType == 3) { + var val = node.nodeValue; + var pos = val.toLowerCase().indexOf(text); + if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { + var span = document.createElement("span"); + span.className = className; + span.appendChild(document.createTextNode(val.substr(pos, text.length))); + node.parentNode.insertBefore(span, node.parentNode.insertBefore( + document.createTextNode(val.substr(pos + text.length)), + node.nextSibling)); + node.nodeValue = val.substr(0, pos); + } + } + else if (!jQuery(node).is("button, select, textarea")) { + jQuery.each(node.childNodes, function() { + highlight(this); + }); + } + } + return this.each(function() { + highlight(this); + }); +}; + +/** + * Small JavaScript module for the documentation. + */ +var Documentation = { + + init : function() { + this.fixFirefoxAnchorBug(); + this.highlightSearchWords(); + this.initIndexTable(); + }, + + /** + * i18n support + */ + TRANSLATIONS : {}, + PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, + LOCALE : 'unknown', + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext : function(string) { + var translated = Documentation.TRANSLATIONS[string]; + if (typeof translated == 'undefined') + return string; + return (typeof translated == 'string') ? translated : translated[0]; + }, + + ngettext : function(singular, plural, n) { + var translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated == 'undefined') + return (n == 1) ? singular : plural; + return translated[Documentation.PLURALEXPR(n)]; + }, + + addTranslations : function(catalog) { + for (var key in catalog.messages) + this.TRANSLATIONS[key] = catalog.messages[key]; + this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); + this.LOCALE = catalog.locale; + }, + + /** + * add context elements like header anchor links + */ + addContextElements : function() { + $('div[id] > :header:first').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this headline')). + appendTo(this); + }); + $('dt[id]').each(function() { + $('\u00B6'). + attr('href', '#' + this.id). + attr('title', _('Permalink to this definition')). + appendTo(this); + }); + }, + + /** + * workaround a firefox stupidity + */ + fixFirefoxAnchorBug : function() { + if (document.location.hash && $.browser.mozilla) + window.setTimeout(function() { + document.location.href += ''; + }, 10); + }, + + /** + * highlight the search words provided in the url in the text + */ + highlightSearchWords : function() { + var params = $.getQueryParameters(); + var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; + if (terms.length) { + var body = $('div.body'); + window.setTimeout(function() { + $.each(terms, function() { + body.highlightText(this.toLowerCase(), 'highlighted'); + }); + }, 10); + $('') + .appendTo($('.sidebar .this-page-menu')); + } + }, + + /** + * init the domain index toggle buttons + */ + initIndexTable : function() { + var togglers = $('img.toggler').click(function() { + var src = $(this).attr('src'); + var idnum = $(this).attr('id').substr(7); + $('tr.cg-' + idnum).toggle(); + if (src.substr(-9) == 'minus.png') + $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); + else + $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); + }).css('display', ''); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { + togglers.click(); + } + }, + + /** + * helper function to hide the search marks again + */ + hideSearchWords : function() { + $('.sidebar .this-page-menu li.highlight-link').fadeOut(300); + $('span.highlighted').removeClass('highlighted'); + }, + + /** + * make the url absolute + */ + makeURL : function(relativeURL) { + return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; + }, + + /** + * get the current relative url + */ + getCurrentURL : function() { + var path = document.location.pathname; + var parts = path.split(/\//); + $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { + if (this == '..') + parts.pop(); + }); + var url = parts.join('/'); + return path.substring(url.lastIndexOf('/') + 1, path.length - 1); + } +}; + +// quick alias for translations +_ = Documentation.gettext; + +$(document).ready(function() { + Documentation.init(); +}); diff --git a/src/mailman_django/doc/_build/html/_static/file.png b/src/mailman_django/doc/_build/html/_static/file.png new file mode 100644 index 0000000..d18082e --- /dev/null +++ b/src/mailman_django/doc/_build/html/_static/file.png Binary files differ diff --git a/src/mailman_django/doc/_build/html/_static/jquery.js b/src/mailman_django/doc/_build/html/_static/jquery.js new file mode 100644 index 0000000..5c99a8d --- /dev/null +++ b/src/mailman_django/doc/_build/html/_static/jquery.js @@ -0,0 +1,8176 @@ +/*! + * jQuery JavaScript Library v1.5 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Mon Jan 31 08:31:29 2011 -0500 + */ +(function( window, undefined ) { + +// Use the correct document accordingly with window argument (sandbox) +var document = window.document; +var jQuery = (function() { + +// Define a local copy of jQuery +var jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // A central reference to the root jQuery(document) + rootjQuery, + + // A simple way to check for HTML strings or ID strings + // (both of which we optimize for) + quickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/, + + // Check if a string has a non-whitespace character in it + rnotwhite = /\S/, + + // Used for trimming whitespace + trimLeft = /^\s+/, + trimRight = /\s+$/, + + // Check for digits + rdigit = /\d/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidescape = /\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, + rvalidtokens = /"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + + // Useragent RegExp + rwebkit = /(webkit)[ \/]([\w.]+)/, + ropera = /(opera)(?:.*version)?[ \/]([\w.]+)/, + rmsie = /(msie) ([\w.]+)/, + rmozilla = /(mozilla)(?:.*? rv:([\w.]+))?/, + + // Keep a UserAgent string for use with jQuery.browser + userAgent = navigator.userAgent, + + // For matching the engine and version of the browser + browserMatch, + + // Has the ready events already been bound? + readyBound = false, + + // The deferred used on DOM ready + readyList, + + // Promise methods + promiseMethods = "then done fail isResolved isRejected promise".split( " " ), + + // The ready event handler + DOMContentLoaded, + + // Save a reference to some core methods + toString = Object.prototype.toString, + hasOwn = Object.prototype.hasOwnProperty, + push = Array.prototype.push, + slice = Array.prototype.slice, + trim = String.prototype.trim, + indexOf = Array.prototype.indexOf, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), or $(undefined) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // The body element only exists once, optimize finding it + if ( selector === "body" && !context && document.body ) { + this.context = document; + this[0] = document.body; + this.selector = "body"; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + // Are we dealing with HTML string or an ID? + match = quickExpr.exec( selector ); + + // Verify a match, and that no context was specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + doc = (context ? context.ownerDocument || context : document); + + // If a single string is passed in and it's a single tag + // just do a createElement and skip the rest + ret = rsingleTag.exec( selector ); + + if ( ret ) { + if ( jQuery.isPlainObject( context ) ) { + selector = [ document.createElement( ret[1] ) ]; + jQuery.fn.attr.call( selector, context, true ); + + } else { + selector = [ doc.createElement( ret[1] ) ]; + } + + } else { + ret = jQuery.buildFragment( [ match[1] ], [ doc ] ); + selector = (ret.cacheable ? jQuery.clone(ret.fragment) : ret.fragment).childNodes; + } + + return jQuery.merge( this, selector ); + + // HANDLE: $("#id") + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return (context || rootjQuery).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if (selector.selector !== undefined) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.5", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return slice.call( this, 0 ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + // Build a new jQuery matched element set + var ret = this.constructor(); + + if ( jQuery.isArray( elems ) ) { + push.apply( ret, elems ); + + } else { + jQuery.merge( ret, elems ); + } + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + (this.selector ? " " : "") + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Attach the listeners + jQuery.bindReady(); + + // Add the callback + readyList.done( fn ); + + return this; + }, + + eq: function( i ) { + return i === -1 ? + this.slice( i ) : + this.slice( i, +i + 1 ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + slice: function() { + return this.pushStack( slice.apply( this, arguments ), + "slice", slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + window.$ = _$; + + if ( deep ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Handle when the DOM is ready + ready: function( wait ) { + // A third-party is pushing the ready event forwards + if ( wait === true ) { + jQuery.readyWait--; + } + + // Make sure that the DOM is not already loaded + if ( !jQuery.readyWait || (wait !== true && !jQuery.isReady) ) { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger( "ready" ).unbind( "ready" ); + } + } + }, + + bindReady: function() { + if ( readyBound ) { + return; + } + + readyBound = true; + + // Catch cases where $(document).ready() is called after the + // browser event has already occurred. + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + return setTimeout( jQuery.ready, 1 ); + } + + // Mozilla, Opera and webkit nightlies currently support this event + if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else if ( document.attachEvent ) { + // ensure firing before onload, + // maybe late but safe also for iframes + document.attachEvent("onreadystatechange", DOMContentLoaded); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var toplevel = false; + + try { + toplevel = window.frameElement == null; + } catch(e) {} + + if ( document.documentElement.doScroll && toplevel ) { + doScrollCheck(); + } + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + // A crude way of determining if an object is a window + isWindow: function( obj ) { + return obj && typeof obj === "object" && "setInterval" in obj; + }, + + isNaN: function( obj ) { + return obj == null || !rdigit.test( obj ) || isNaN( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + // Not own constructor property must be Object + if ( obj.constructor && + !hasOwn.call(obj, "constructor") && + !hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + for ( var name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw msg; + }, + + parseJSON: function( data ) { + if ( typeof data !== "string" || !data ) { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test(data.replace(rvalidescape, "@") + .replace(rvalidtokens, "]") + .replace(rvalidbraces, "")) ) { + + // Try to use the native JSON parser first + return window.JSON && window.JSON.parse ? + window.JSON.parse( data ) : + (new Function("return " + data))(); + + } else { + jQuery.error( "Invalid JSON: " + data ); + } + }, + + // Cross-browser xml parsing + // (xml & tmp used internally) + parseXML: function( data , xml , tmp ) { + + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + + tmp = xml.documentElement; + + if ( ! tmp || ! tmp.nodeName || tmp.nodeName === "parsererror" ) { + jQuery.error( "Invalid XML: " + data ); + } + + return xml; + }, + + noop: function() {}, + + // Evalulates a script in a global context + globalEval: function( data ) { + if ( data && rnotwhite.test(data) ) { + // Inspired by code by Andrea Giammarchi + // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html + var head = document.getElementsByTagName("head")[0] || document.documentElement, + script = document.createElement("script"); + + script.type = "text/javascript"; + + if ( jQuery.support.scriptEval() ) { + script.appendChild( document.createTextNode( data ) ); + } else { + script.text = data; + } + + // Use insertBefore instead of appendChild to circumvent an IE6 bug. + // This arises when a base node is used (#2709). + head.insertBefore( script, head.firstChild ); + head.removeChild( script ); + } + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); + }, + + // args is for internal usage only + each: function( object, callback, args ) { + var name, i = 0, + length = object.length, + isObj = length === undefined || jQuery.isFunction(object); + + if ( args ) { + if ( isObj ) { + for ( name in object ) { + if ( callback.apply( object[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( object[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in object ) { + if ( callback.call( object[ name ], name, object[ name ] ) === false ) { + break; + } + } + } else { + for ( var value = object[0]; + i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {} + } + } + + return object; + }, + + // Use native String.trim function wherever possible + trim: trim ? + function( text ) { + return text == null ? + "" : + trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + text.toString().replace( trimLeft, "" ).replace( trimRight, "" ); + }, + + // results is for internal usage only + makeArray: function( array, results ) { + var ret = results || []; + + if ( array != null ) { + // The window, strings (and functions) also have 'length' + // The extra typeof function check is to prevent crashes + // in Safari 2 (See: #3039) + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + var type = jQuery.type(array); + + if ( array.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( array ) ) { + push.call( ret, array ); + } else { + jQuery.merge( ret, array ); + } + } + + return ret; + }, + + inArray: function( elem, array ) { + if ( array.indexOf ) { + return array.indexOf( elem ); + } + + for ( var i = 0, length = array.length; i < length; i++ ) { + if ( array[ i ] === elem ) { + return i; + } + } + + return -1; + }, + + merge: function( first, second ) { + var i = first.length, + j = 0; + + if ( typeof second.length === "number" ) { + for ( var l = second.length; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var ret = [], retVal; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( var i = 0, length = elems.length; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var ret = [], value; + + // Go through the array, translating each of the items to their + // new value (or values). + for ( var i = 0, length = elems.length; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Flatten any nested arrays + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + proxy: function( fn, proxy, thisObject ) { + if ( arguments.length === 2 ) { + if ( typeof proxy === "string" ) { + thisObject = fn; + fn = thisObject[ proxy ]; + proxy = undefined; + + } else if ( proxy && !jQuery.isFunction( proxy ) ) { + thisObject = proxy; + proxy = undefined; + } + } + + if ( !proxy && fn ) { + proxy = function() { + return fn.apply( thisObject || this, arguments ); + }; + } + + // Set the guid of unique handler to the same of original handler, so it can be removed + if ( fn ) { + proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; + } + + // So proxy can be declared as an argument + return proxy; + }, + + // Mutifunctional method to get and set values to a collection + // The value/s can be optionally by executed if its a function + access: function( elems, key, value, exec, fn, pass ) { + var length = elems.length; + + // Setting many attributes + if ( typeof key === "object" ) { + for ( var k in key ) { + jQuery.access( elems, k, key[k], exec, fn, value ); + } + return elems; + } + + // Setting one attribute + if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = !pass && exec && jQuery.isFunction(value); + + for ( var i = 0; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + + return elems; + } + + // Getting an attribute + return length ? fn( elems[0], key ) : undefined; + }, + + now: function() { + return (new Date()).getTime(); + }, + + // Create a simple deferred (one callbacks list) + _Deferred: function() { + var // callbacks list + callbacks = [], + // stored [ context , args ] + fired, + // to avoid firing when already doing so + firing, + // flag to know if the deferred has been cancelled + cancelled, + // the deferred itself + deferred = { + + // done( f1, f2, ...) + done: function() { + if ( !cancelled ) { + var args = arguments, + i, + length, + elem, + type, + _fired; + if ( fired ) { + _fired = fired; + fired = 0; + } + for ( i = 0, length = args.length; i < length; i++ ) { + elem = args[ i ]; + type = jQuery.type( elem ); + if ( type === "array" ) { + deferred.done.apply( deferred, elem ); + } else if ( type === "function" ) { + callbacks.push( elem ); + } + } + if ( _fired ) { + deferred.resolveWith( _fired[ 0 ], _fired[ 1 ] ); + } + } + return this; + }, + + // resolve with given context and args + resolveWith: function( context, args ) { + if ( !cancelled && !fired && !firing ) { + firing = 1; + try { + while( callbacks[ 0 ] ) { + callbacks.shift().apply( context, args ); + } + } + finally { + fired = [ context, args ]; + firing = 0; + } + } + return this; + }, + + // resolve with this as context and given arguments + resolve: function() { + deferred.resolveWith( jQuery.isFunction( this.promise ) ? this.promise() : this, arguments ); + return this; + }, + + // Has this deferred been resolved? + isResolved: function() { + return !!( firing || fired ); + }, + + // Cancel + cancel: function() { + cancelled = 1; + callbacks = []; + return this; + } + }; + + return deferred; + }, + + // Full fledged deferred (two callbacks list) + Deferred: function( func ) { + var deferred = jQuery._Deferred(), + failDeferred = jQuery._Deferred(), + promise; + // Add errorDeferred methods, then and promise + jQuery.extend( deferred, { + then: function( doneCallbacks, failCallbacks ) { + deferred.done( doneCallbacks ).fail( failCallbacks ); + return this; + }, + fail: failDeferred.done, + rejectWith: failDeferred.resolveWith, + reject: failDeferred.resolve, + isRejected: failDeferred.isResolved, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj , i /* internal */ ) { + if ( obj == null ) { + if ( promise ) { + return promise; + } + promise = obj = {}; + } + i = promiseMethods.length; + while( i-- ) { + obj[ promiseMethods[ i ] ] = deferred[ promiseMethods[ i ] ]; + } + return obj; + } + } ); + // Make sure only one callback list will be used + deferred.then( failDeferred.cancel, deferred.cancel ); + // Unexpose cancel + delete deferred.cancel; + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + return deferred; + }, + + // Deferred helper + when: function( object ) { + var args = arguments, + length = args.length, + deferred = length <= 1 && object && jQuery.isFunction( object.promise ) ? + object : + jQuery.Deferred(), + promise = deferred.promise(), + resolveArray; + + if ( length > 1 ) { + resolveArray = new Array( length ); + jQuery.each( args, function( index, element ) { + jQuery.when( element ).then( function( value ) { + resolveArray[ index ] = arguments.length > 1 ? slice.call( arguments, 0 ) : value; + if( ! --length ) { + deferred.resolveWith( promise, resolveArray ); + } + }, deferred.reject ); + } ); + } else if ( deferred !== object ) { + deferred.resolve( object ); + } + return promise; + }, + + // Use of jQuery.browser is frowned upon. + // More details: http://docs.jquery.com/Utilities/jQuery.browser + uaMatch: function( ua ) { + ua = ua.toLowerCase(); + + var match = rwebkit.exec( ua ) || + ropera.exec( ua ) || + rmsie.exec( ua ) || + ua.indexOf("compatible") < 0 && rmozilla.exec( ua ) || + []; + + return { browser: match[1] || "", version: match[2] || "0" }; + }, + + sub: function() { + function jQuerySubclass( selector, context ) { + return new jQuerySubclass.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySubclass, this ); + jQuerySubclass.superclass = this; + jQuerySubclass.fn = jQuerySubclass.prototype = this(); + jQuerySubclass.fn.constructor = jQuerySubclass; + jQuerySubclass.subclass = this.subclass; + jQuerySubclass.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySubclass) ) { + context = jQuerySubclass(context); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySubclass ); + }; + jQuerySubclass.fn.init.prototype = jQuerySubclass.fn; + var rootjQuerySubclass = jQuerySubclass(document); + return jQuerySubclass; + }, + + browser: {} +}); + +// Create readyList deferred +readyList = jQuery._Deferred(); + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +browserMatch = jQuery.uaMatch( userAgent ); +if ( browserMatch.browser ) { + jQuery.browser[ browserMatch.browser ] = true; + jQuery.browser.version = browserMatch.version; +} + +// Deprecated, use jQuery.browser.webkit instead +if ( jQuery.browser.webkit ) { + jQuery.browser.safari = true; +} + +if ( indexOf ) { + jQuery.inArray = function( elem, array ) { + return indexOf.call( array, elem ); + }; +} + +// IE doesn't match non-breaking spaces with \s +if ( rnotwhite.test( "\xA0" ) ) { + trimLeft = /^[\s\xA0]+/; + trimRight = /[\s\xA0]+$/; +} + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); + +// Cleanup functions for the document ready method +if ( document.addEventListener ) { + DOMContentLoaded = function() { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + }; + +} else if ( document.attachEvent ) { + DOMContentLoaded = function() { + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( document.readyState === "complete" ) { + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }; +} + +// The DOM ready check for Internet Explorer +function doScrollCheck() { + if ( jQuery.isReady ) { + return; + } + + try { + // If IE is used, use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + document.documentElement.doScroll("left"); + } catch(e) { + setTimeout( doScrollCheck, 1 ); + return; + } + + // and execute any waiting functions + jQuery.ready(); +} + +// Expose jQuery to the global object +return (window.jQuery = window.$ = jQuery); + +})(); + + +(function() { + + jQuery.support = {}; + + var div = document.createElement("div"); + + div.style.display = "none"; + div.innerHTML = "
a"; + + var all = div.getElementsByTagName("*"), + a = div.getElementsByTagName("a")[0], + select = document.createElement("select"), + opt = select.appendChild( document.createElement("option") ); + + // Can't get basic test support + if ( !all || !all.length || !a ) { + return; + } + + jQuery.support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: div.firstChild.nodeType === 3, + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText insted) + style: /red/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: a.getAttribute("href") === "/a", + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.55$/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: div.getElementsByTagName("input")[0].value === "on", + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Will be defined later + deleteExpando: true, + optDisabled: false, + checkClone: false, + _scriptEval: null, + noCloneEvent: true, + boxModel: null, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableHiddenOffsets: true + }; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as diabled) + select.disabled = true; + jQuery.support.optDisabled = !opt.disabled; + + jQuery.support.scriptEval = function() { + if ( jQuery.support._scriptEval === null ) { + var root = document.documentElement, + script = document.createElement("script"), + id = "script" + jQuery.now(); + + script.type = "text/javascript"; + try { + script.appendChild( document.createTextNode( "window." + id + "=1;" ) ); + } catch(e) {} + + root.insertBefore( script, root.firstChild ); + + // Make sure that the execution of code works by injecting a script + // tag with appendChild/createTextNode + // (IE doesn't support this, fails, and uses .text instead) + if ( window[ id ] ) { + jQuery.support._scriptEval = true; + delete window[ id ]; + } else { + jQuery.support._scriptEval = false; + } + + root.removeChild( script ); + // release memory in IE + root = script = id = null; + } + + return jQuery.support._scriptEval; + }; + + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete div.test; + + } catch(e) { + jQuery.support.deleteExpando = false; + } + + if ( div.attachEvent && div.fireEvent ) { + div.attachEvent("onclick", function click() { + // Cloning a node shouldn't copy over any + // bound event handlers (IE does this) + jQuery.support.noCloneEvent = false; + div.detachEvent("onclick", click); + }); + div.cloneNode(true).fireEvent("onclick"); + } + + div = document.createElement("div"); + div.innerHTML = ""; + + var fragment = document.createDocumentFragment(); + fragment.appendChild( div.firstChild ); + + // WebKit doesn't clone checked state correctly in fragments + jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked; + + // Figure out if the W3C box model works as expected + // document.body must exist before we can do this + jQuery(function() { + var div = document.createElement("div"), + body = document.getElementsByTagName("body")[0]; + + // Frameset documents with no body should not run this code + if ( !body ) { + return; + } + + div.style.width = div.style.paddingLeft = "1px"; + body.appendChild( div ); + jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; + + if ( "zoom" in div.style ) { + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + // (IE < 8 does this) + div.style.display = "inline"; + div.style.zoom = 1; + jQuery.support.inlineBlockNeedsLayout = div.offsetWidth === 2; + + // Check if elements with layout shrink-wrap their children + // (IE 6 does this) + div.style.display = ""; + div.innerHTML = "
"; + jQuery.support.shrinkWrapBlocks = div.offsetWidth !== 2; + } + + div.innerHTML = "
t
"; + var tds = div.getElementsByTagName("td"); + + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + // (only IE 8 fails this test) + jQuery.support.reliableHiddenOffsets = tds[0].offsetHeight === 0; + + tds[0].style.display = ""; + tds[1].style.display = "none"; + + // Check if empty table cells still have offsetWidth/Height + // (IE < 8 fail this test) + jQuery.support.reliableHiddenOffsets = jQuery.support.reliableHiddenOffsets && tds[0].offsetHeight === 0; + div.innerHTML = ""; + + body.removeChild( div ).style.display = "none"; + div = tds = null; + }); + + // Technique from Juriy Zaytsev + // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ + var eventSupported = function( eventName ) { + var el = document.createElement("div"); + eventName = "on" + eventName; + + // We only care about the case where non-standard event systems + // are used, namely in IE. Short-circuiting here helps us to + // avoid an eval call (in setAttribute) which can cause CSP + // to go haywire. See: https://developer.mozilla.org/en/Security/CSP + if ( !el.attachEvent ) { + return true; + } + + var isSupported = (eventName in el); + if ( !isSupported ) { + el.setAttribute(eventName, "return;"); + isSupported = typeof el[eventName] === "function"; + } + el = null; + + return isSupported; + }; + + jQuery.support.submitBubbles = eventSupported("submit"); + jQuery.support.changeBubbles = eventSupported("change"); + + // release memory in IE + div = all = a = null; +})(); + + + +var rbrace = /^(?:\{.*\}|\[.*\])$/; + +jQuery.extend({ + cache: {}, + + // Please use with caution + uuid: 0, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + + return !!elem && !jQuery.isEmptyObject(elem); + }, + + data: function( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var internalKey = jQuery.expando, getByName = typeof name === "string", thisCache, + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ jQuery.expando ] : elem[ jQuery.expando ] && jQuery.expando; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || (pvt && id && !cache[ id ][ internalKey ])) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ jQuery.expando ] = id = ++jQuery.uuid; + } else { + id = jQuery.expando; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" ) { + if ( pvt ) { + cache[ id ][ internalKey ] = jQuery.extend(cache[ id ][ internalKey ], name); + } else { + cache[ id ] = jQuery.extend(cache[ id ], name); + } + } + + thisCache = cache[ id ]; + + // Internal jQuery data is stored in a separate object inside the object's data + // cache in order to avoid key collisions between internal data and user-defined + // data + if ( pvt ) { + if ( !thisCache[ internalKey ] ) { + thisCache[ internalKey ] = {}; + } + + thisCache = thisCache[ internalKey ]; + } + + if ( data !== undefined ) { + thisCache[ name ] = data; + } + + // TODO: This is a hack for 1.5 ONLY. It will be removed in 1.6. Users should + // not attempt to inspect the internal events object using jQuery.data, as this + // internal data object is undocumented and subject to change. + if ( name === "events" && !thisCache[name] ) { + return thisCache[ internalKey ] && thisCache[ internalKey ].events; + } + + return getByName ? thisCache[ name ] : thisCache; + }, + + removeData: function( elem, name, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var internalKey = jQuery.expando, isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + + // See jQuery.data for more information + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + var thisCache = pvt ? cache[ id ][ internalKey ] : cache[ id ]; + + if ( thisCache ) { + delete thisCache[ name ]; + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !jQuery.isEmptyObject(thisCache) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( pvt ) { + delete cache[ id ][ internalKey ]; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !jQuery.isEmptyObject(cache[ id ]) ) { + return; + } + } + + var internalCache = cache[ id ][ internalKey ]; + + // Browsers that fail expando deletion also refuse to delete expandos on + // the window, but it will allow it on all other JS objects; other browsers + // don't care + if ( jQuery.support.deleteExpando || cache != window ) { + delete cache[ id ]; + } else { + cache[ id ] = null; + } + + // We destroyed the entire user cache at once because it's faster than + // iterating through each key, but we need to continue to persist internal + // data if it existed + if ( internalCache ) { + cache[ id ] = {}; + cache[ id ][ internalKey ] = internalCache; + + // Otherwise, we need to eliminate the expando on the node to avoid + // false lookups in the cache for entries that no longer exist + } else if ( isNode ) { + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( jQuery.support.deleteExpando ) { + delete elem[ jQuery.expando ]; + } else if ( elem.removeAttribute ) { + elem.removeAttribute( jQuery.expando ); + } else { + elem[ jQuery.expando ] = null; + } + } + }, + + // For internal use only. + _data: function( elem, name, data ) { + return jQuery.data( elem, name, data, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + if ( elem.nodeName ) { + var match = jQuery.noData[ elem.nodeName.toLowerCase() ]; + + if ( match ) { + return !(match === true || elem.getAttribute("classid") !== match); + } + } + + return true; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var data = null; + + if ( typeof key === "undefined" ) { + if ( this.length ) { + data = jQuery.data( this[0] ); + + if ( this[0].nodeType === 1 ) { + var attr = this[0].attributes, name; + for ( var i = 0, l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( name.indexOf( "data-" ) === 0 ) { + name = name.substr( 5 ); + dataAttr( this[0], name, data[ name ] ); + } + } + } + } + + return data; + + } else if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + var parts = key.split("."); + parts[1] = parts[1] ? "." + parts[1] : ""; + + if ( value === undefined ) { + data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); + + // Try to fetch any internally stored data first + if ( data === undefined && this.length ) { + data = jQuery.data( this[0], key ); + data = dataAttr( this[0], key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + + } else { + return this.each(function() { + var $this = jQuery( this ), + args = [ parts[0], value ]; + + $this.triggerHandler( "setData" + parts[1] + "!", args ); + jQuery.data( this, key, value ); + $this.triggerHandler( "changeData" + parts[1] + "!", args ); + }); + } + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + data = elem.getAttribute( "data-" + key ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + !jQuery.isNaN( data ) ? parseFloat( data ) : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + + + + +jQuery.extend({ + queue: function( elem, type, data ) { + if ( !elem ) { + return; + } + + type = (type || "fx") + "queue"; + var q = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( !data ) { + return q || []; + } + + if ( !q || jQuery.isArray(data) ) { + q = jQuery._data( elem, type, jQuery.makeArray(data) ); + + } else { + q.push( data ); + } + + return q; + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + fn = queue.shift(); + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + } + + if ( fn ) { + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift("inprogress"); + } + + fn.call(elem, function() { + jQuery.dequeue(elem, type); + }); + } + + if ( !queue.length ) { + jQuery.removeData( elem, type + "queue", true ); + } + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + } + + if ( data === undefined ) { + return jQuery.queue( this[0], type ); + } + return this.each(function( i ) { + var queue = jQuery.queue( this, type, data ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[time] || time : time; + type = type || "fx"; + + return this.queue( type, function() { + var elem = this; + setTimeout(function() { + jQuery.dequeue( elem, type ); + }, time ); + }); + }, + + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + } +}); + + + + +var rclass = /[\n\t\r]/g, + rspaces = /\s+/, + rreturn = /\r/g, + rspecialurl = /^(?:href|src|style)$/, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea)?$/i, + rradiocheck = /^(?:radio|checkbox)$/i; + +jQuery.props = { + "for": "htmlFor", + "class": "className", + readonly: "readOnly", + maxlength: "maxLength", + cellspacing: "cellSpacing", + rowspan: "rowSpan", + colspan: "colSpan", + tabindex: "tabIndex", + usemap: "useMap", + frameborder: "frameBorder" +}; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, name, value, true, jQuery.attr ); + }, + + removeAttr: function( name, fn ) { + return this.each(function(){ + jQuery.attr( this, name, "" ); + if ( this.nodeType === 1 ) { + this.removeAttribute( name ); + } + }); + }, + + addClass: function( value ) { + if ( jQuery.isFunction(value) ) { + return this.each(function(i) { + var self = jQuery(this); + self.addClass( value.call(this, i, self.attr("class")) ); + }); + } + + if ( value && typeof value === "string" ) { + var classNames = (value || "").split( rspaces ); + + for ( var i = 0, l = this.length; i < l; i++ ) { + var elem = this[i]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className ) { + elem.className = value; + + } else { + var className = " " + elem.className + " ", + setClass = elem.className; + + for ( var c = 0, cl = classNames.length; c < cl; c++ ) { + if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { + setClass += " " + classNames[c]; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + if ( jQuery.isFunction(value) ) { + return this.each(function(i) { + var self = jQuery(this); + self.removeClass( value.call(this, i, self.attr("class")) ); + }); + } + + if ( (value && typeof value === "string") || value === undefined ) { + var classNames = (value || "").split( rspaces ); + + for ( var i = 0, l = this.length; i < l; i++ ) { + var elem = this[i]; + + if ( elem.nodeType === 1 && elem.className ) { + if ( value ) { + var className = (" " + elem.className + " ").replace(rclass, " "); + for ( var c = 0, cl = classNames.length; c < cl; c++ ) { + className = className.replace(" " + classNames[c] + " ", " "); + } + elem.className = jQuery.trim( className ); + + } else { + elem.className = ""; + } + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function(i) { + var self = jQuery(this); + self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( rspaces ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space seperated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " "; + for ( var i = 0, l = this.length; i < l; i++ ) { + if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + if ( !arguments.length ) { + var elem = this[0]; + + if ( elem ) { + if ( jQuery.nodeName( elem, "option" ) ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + + // We need to handle select boxes special + if ( jQuery.nodeName( elem, "select" ) ) { + var index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type === "select-one"; + + // Nothing was selected + if ( index < 0 ) { + return null; + } + + // Loop through all the selected options + for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { + var option = options[ i ]; + + // Don't return options that are disabled or in a disabled optgroup + if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && + (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { + + // Get the specific value for the option + value = jQuery(option).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + return values; + } + + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) { + return elem.getAttribute("value") === null ? "on" : elem.value; + } + + // Everything else, we just grab the value + return (elem.value || "").replace(rreturn, ""); + + } + + return undefined; + } + + var isFunction = jQuery.isFunction(value); + + return this.each(function(i) { + var self = jQuery(this), val = value; + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call(this, i, self.val()); + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray(val) ) { + val = jQuery.map(val, function (value) { + return value == null ? "" : value + ""; + }); + } + + if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) { + this.checked = jQuery.inArray( self.val(), val ) >= 0; + + } else if ( jQuery.nodeName( this, "select" ) ) { + var values = jQuery.makeArray(val); + + jQuery( "option", this ).each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + this.selectedIndex = -1; + } + + } else { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + attrFn: { + val: true, + css: true, + html: true, + text: true, + data: true, + width: true, + height: true, + offset: true + }, + + attr: function( elem, name, value, pass ) { + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || elem.nodeType === 2 ) { + return undefined; + } + + if ( pass && name in jQuery.attrFn ) { + return jQuery(elem)[name](value); + } + + var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ), + // Whether we are setting (or getting) + set = value !== undefined; + + // Try to normalize/fix the name + name = notxml && jQuery.props[ name ] || name; + + // Only do all the following if this is a node (faster for style) + if ( elem.nodeType === 1 ) { + // These attributes require special treatment + var special = rspecialurl.test( name ); + + // Safari mis-reports the default selected property of an option + // Accessing the parent's selectedIndex property fixes it + if ( name === "selected" && !jQuery.support.optSelected ) { + var parent = elem.parentNode; + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + } + + // If applicable, access the attribute via the DOM 0 way + // 'in' checks fail in Blackberry 4.7 #6931 + if ( (name in elem || elem[ name ] !== undefined) && notxml && !special ) { + if ( set ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } + + if ( value === null ) { + if ( elem.nodeType === 1 ) { + elem.removeAttribute( name ); + } + + } else { + elem[ name ] = value; + } + } + + // browsers index elements by id/name on forms, give priority to attributes. + if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) { + return elem.getAttributeNode( name ).nodeValue; + } + + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + if ( name === "tabIndex" ) { + var attributeNode = elem.getAttributeNode( "tabIndex" ); + + return attributeNode && attributeNode.specified ? + attributeNode.value : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + + return elem[ name ]; + } + + if ( !jQuery.support.style && notxml && name === "style" ) { + if ( set ) { + elem.style.cssText = "" + value; + } + + return elem.style.cssText; + } + + if ( set ) { + // convert the value to a string (all browsers do this but IE) see #1070 + elem.setAttribute( name, "" + value ); + } + + // Ensure that missing attributes return undefined + // Blackberry 4.7 returns "" from getAttribute #6938 + if ( !elem.attributes[ name ] && (elem.hasAttribute && !elem.hasAttribute( name )) ) { + return undefined; + } + + var attr = !jQuery.support.hrefNormalized && notxml && special ? + // Some attributes require a special call on IE + elem.getAttribute( name, 2 ) : + elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return attr === null ? undefined : attr; + } + // Handle everything which isn't a DOM element node + if ( set ) { + elem[ name ] = value; + } + return elem[ name ]; + } +}); + + + + +var rnamespaces = /\.(.*)$/, + rformElems = /^(?:textarea|input|select)$/i, + rperiod = /\./g, + rspace = / /g, + rescape = /[^\w\s.|`]/g, + fcleanup = function( nm ) { + return nm.replace(rescape, "\\$&"); + }, + eventKey = "events"; + +/* + * A number of helper functions used for managing events. + * Many of the ideas behind this code originated from + * Dean Edwards' addEvent library. + */ +jQuery.event = { + + // Bind an event to an element + // Original by Dean Edwards + add: function( elem, types, handler, data ) { + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // For whatever reason, IE has trouble passing the window object + // around, causing it to be cloned in the process + if ( jQuery.isWindow( elem ) && ( elem !== window && !elem.frameElement ) ) { + elem = window; + } + + if ( handler === false ) { + handler = returnFalse; + } else if ( !handler ) { + // Fixes bug #7229. Fix recommended by jdalton + return; + } + + var handleObjIn, handleObj; + + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + } + + // Make sure that the function being executed has a unique ID + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure + var elemData = jQuery._data( elem ); + + // If no elemData is found then we must be trying to bind to one of the + // banned noData elements + if ( !elemData ) { + return; + } + + var events = elemData[ eventKey ], + eventHandle = elemData.handle; + + if ( typeof events === "function" ) { + // On plain objects events is a fn that holds the the data + // which prevents this data from being JSON serialized + // the function does not need to be called, it just contains the data + eventHandle = events.handle; + events = events.events; + + } else if ( !events ) { + if ( !elem.nodeType ) { + // On plain objects, create a fn that acts as the holder + // of the values to avoid JSON serialization of event data + elemData[ eventKey ] = elemData = function(){}; + } + + elemData.events = events = {}; + } + + if ( !eventHandle ) { + elemData.handle = eventHandle = function() { + // Handle the second event of a trigger and when + // an event is called after a page has unloaded + return typeof jQuery !== "undefined" && !jQuery.event.triggered ? + jQuery.event.handle.apply( eventHandle.elem, arguments ) : + undefined; + }; + } + + // Add elem as a property of the handle function + // This is to prevent a memory leak with non-native events in IE. + eventHandle.elem = elem; + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = types.split(" "); + + var type, i = 0, namespaces; + + while ( (type = types[ i++ ]) ) { + handleObj = handleObjIn ? + jQuery.extend({}, handleObjIn) : + { handler: handler, data: data }; + + // Namespaced event handlers + if ( type.indexOf(".") > -1 ) { + namespaces = type.split("."); + type = namespaces.shift(); + handleObj.namespace = namespaces.slice(0).sort().join("."); + + } else { + namespaces = []; + handleObj.namespace = ""; + } + + handleObj.type = type; + if ( !handleObj.guid ) { + handleObj.guid = handler.guid; + } + + // Get the current list of functions bound to this event + var handlers = events[ type ], + special = jQuery.event.special[ type ] || {}; + + // Init the event handler queue + if ( !handlers ) { + handlers = events[ type ] = []; + + // Check for a special event handler + // Only use addEventListener/attachEvent if the special + // events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add the function to the element's handler list + handlers.push( handleObj ); + + // Keep track of which events have been used, for global triggering + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, pos ) { + // don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + if ( handler === false ) { + handler = returnFalse; + } + + var ret, type, fn, j, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ), + events = elemData && elemData[ eventKey ]; + + if ( !elemData || !events ) { + return; + } + + if ( typeof events === "function" ) { + elemData = events; + events = events.events; + } + + // types is actually an event object here + if ( types && types.type ) { + handler = types.handler; + types = types.type; + } + + // Unbind all events for the element + if ( !types || typeof types === "string" && types.charAt(0) === "." ) { + types = types || ""; + + for ( type in events ) { + jQuery.event.remove( elem, type + types ); + } + + return; + } + + // Handle multiple events separated by a space + // jQuery(...).unbind("mouseover mouseout", fn); + types = types.split(" "); + + while ( (type = types[ i++ ]) ) { + origType = type; + handleObj = null; + all = type.indexOf(".") < 0; + namespaces = []; + + if ( !all ) { + // Namespaced event handlers + namespaces = type.split("."); + type = namespaces.shift(); + + namespace = new RegExp("(^|\\.)" + + jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)"); + } + + eventType = events[ type ]; + + if ( !eventType ) { + continue; + } + + if ( !handler ) { + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( all || namespace.test( handleObj.namespace ) ) { + jQuery.event.remove( elem, origType, handleObj.handler, j ); + eventType.splice( j--, 1 ); + } + } + + continue; + } + + special = jQuery.event.special[ type ] || {}; + + for ( j = pos || 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( handler.guid === handleObj.guid ) { + // remove the given handler for the given type + if ( all || namespace.test( handleObj.namespace ) ) { + if ( pos == null ) { + eventType.splice( j--, 1 ); + } + + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + + if ( pos != null ) { + break; + } + } + } + + // remove generic event handler if no more handlers exist + if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { + if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + ret = null; + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + var handle = elemData.handle; + if ( handle ) { + handle.elem = null; + } + + delete elemData.events; + delete elemData.handle; + + if ( typeof elemData === "function" ) { + jQuery.removeData( elem, eventKey, true ); + + } else if ( jQuery.isEmptyObject( elemData ) ) { + jQuery.removeData( elem, undefined, true ); + } + } + }, + + // bubbling is internal + trigger: function( event, data, elem /*, bubbling */ ) { + // Event object or event type + var type = event.type || event, + bubbling = arguments[3]; + + if ( !bubbling ) { + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + jQuery.extend( jQuery.Event(type), event ) : + // Just the event type (string) + jQuery.Event(type); + + if ( type.indexOf("!") >= 0 ) { + event.type = type = type.slice(0, -1); + event.exclusive = true; + } + + // Handle a global trigger + if ( !elem ) { + // Don't bubble custom events when global (to avoid too much overhead) + event.stopPropagation(); + + // Only trigger if we've ever bound an event for it + if ( jQuery.event.global[ type ] ) { + // XXX This code smells terrible. event.js should not be directly + // inspecting the data cache + jQuery.each( jQuery.cache, function() { + // internalKey variable is just used to make it easier to find + // and potentially change this stuff later; currently it just + // points to jQuery.expando + var internalKey = jQuery.expando, + internalCache = this[ internalKey ]; + if ( internalCache && internalCache.events && internalCache.events[type] ) { + jQuery.event.trigger( event, data, internalCache.handle.elem ); + } + }); + } + } + + // Handle triggering a single element + + // don't do events on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { + return undefined; + } + + // Clean up in case it is reused + event.result = undefined; + event.target = elem; + + // Clone the incoming data, if any + data = jQuery.makeArray( data ); + data.unshift( event ); + } + + event.currentTarget = elem; + + // Trigger the event, it is assumed that "handle" is a function + var handle = elem.nodeType ? + jQuery._data( elem, "handle" ) : + (jQuery._data( elem, eventKey ) || {}).handle; + + if ( handle ) { + handle.apply( elem, data ); + } + + var parent = elem.parentNode || elem.ownerDocument; + + // Trigger an inline bound script + try { + if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) { + if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) { + event.result = false; + event.preventDefault(); + } + } + + // prevent IE from throwing an error for some elements with some event types, see #3533 + } catch (inlineError) {} + + if ( !event.isPropagationStopped() && parent ) { + jQuery.event.trigger( event, data, parent, true ); + + } else if ( !event.isDefaultPrevented() ) { + var old, + target = event.target, + targetType = type.replace( rnamespaces, "" ), + isClick = jQuery.nodeName( target, "a" ) && targetType === "click", + special = jQuery.event.special[ targetType ] || {}; + + if ( (!special._default || special._default.call( elem, event ) === false) && + !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { + + try { + if ( target[ targetType ] ) { + // Make sure that we don't accidentally re-trigger the onFOO events + old = target[ "on" + targetType ]; + + if ( old ) { + target[ "on" + targetType ] = null; + } + + jQuery.event.triggered = true; + target[ targetType ](); + } + + // prevent IE from throwing an error for some elements with some event types, see #3533 + } catch (triggerError) {} + + if ( old ) { + target[ "on" + targetType ] = old; + } + + jQuery.event.triggered = false; + } + } + }, + + handle: function( event ) { + var all, handlers, namespaces, namespace_re, events, + namespace_sort = [], + args = jQuery.makeArray( arguments ); + + event = args[0] = jQuery.event.fix( event || window.event ); + event.currentTarget = this; + + // Namespaced event handlers + all = event.type.indexOf(".") < 0 && !event.exclusive; + + if ( !all ) { + namespaces = event.type.split("."); + event.type = namespaces.shift(); + namespace_sort = namespaces.slice(0).sort(); + namespace_re = new RegExp("(^|\\.)" + namespace_sort.join("\\.(?:.*\\.)?") + "(\\.|$)"); + } + + event.namespace = event.namespace || namespace_sort.join("."); + + events = jQuery._data(this, eventKey); + + if ( typeof events === "function" ) { + events = events.events; + } + + handlers = (events || {})[ event.type ]; + + if ( events && handlers ) { + // Clone the handlers to prevent manipulation + handlers = handlers.slice(0); + + for ( var j = 0, l = handlers.length; j < l; j++ ) { + var handleObj = handlers[ j ]; + + // Filter the functions by class + if ( all || namespace_re.test( handleObj.namespace ) ) { + // Pass in a reference to the handler function itself + // So that we can later remove it + event.handler = handleObj.handler; + event.data = handleObj.data; + event.handleObj = handleObj; + + var ret = handleObj.handler.apply( this, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + + if ( event.isImmediatePropagationStopped() ) { + break; + } + } + } + } + + return event.result; + }, + + props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // store a copy of the original event object + // and "clone" to set read-only properties + var originalEvent = event; + event = jQuery.Event( originalEvent ); + + for ( var i = this.props.length, prop; i; ) { + prop = this.props[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary + if ( !event.target ) { + // Fixes #1925 where srcElement might not be defined either + event.target = event.srcElement || document; + } + + // check if target is a textnode (safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && event.fromElement ) { + event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement; + } + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && event.clientX != null ) { + var doc = document.documentElement, + body = document.body; + + event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0); + event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0); + } + + // Add which for key events + if ( event.which == null && (event.charCode != null || event.keyCode != null) ) { + event.which = event.charCode != null ? event.charCode : event.keyCode; + } + + // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs) + if ( !event.metaKey && event.ctrlKey ) { + event.metaKey = event.ctrlKey; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && event.button !== undefined ) { + event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); + } + + return event; + }, + + // Deprecated, use jQuery.guid instead + guid: 1E8, + + // Deprecated, use jQuery.proxy instead + proxy: jQuery.proxy, + + special: { + ready: { + // Make sure the ready event is setup + setup: jQuery.bindReady, + teardown: jQuery.noop + }, + + live: { + add: function( handleObj ) { + jQuery.event.add( this, + liveConvert( handleObj.origType, handleObj.selector ), + jQuery.extend({}, handleObj, {handler: liveHandler, guid: handleObj.handler.guid}) ); + }, + + remove: function( handleObj ) { + jQuery.event.remove( this, liveConvert( handleObj.origType, handleObj.selector ), handleObj ); + } + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + } +}; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + if ( elem.detachEvent ) { + elem.detachEvent( "on" + type, handle ); + } + }; + +jQuery.Event = function( src ) { + // Allow instantiation without the 'new' keyword + if ( !this.preventDefault ) { + return new jQuery.Event( src ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = (src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault()) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // timeStamp is buggy for some events on Firefox(#3843) + // So we won't rely on the native value + this.timeStamp = jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Checks if an event happened on an element within another element +// Used in jQuery.event.special.mouseenter and mouseleave handlers +var withinElement = function( event ) { + // Check if mouse(over|out) are still within the same parent element + var parent = event.relatedTarget; + + // Firefox sometimes assigns relatedTarget a XUL element + // which we cannot access the parentNode property of + try { + // Traverse up the tree + while ( parent && parent !== this ) { + parent = parent.parentNode; + } + + if ( parent !== this ) { + // set the correct event type + event.type = event.data; + + // handle event if we actually just moused on to a non sub-element + jQuery.event.handle.apply( this, arguments ); + } + + // assuming we've left the element since we most likely mousedover a xul element + } catch(e) { } +}, + +// In case of event delegation, we only need to rename the event.type, +// liveHandler will take care of the rest. +delegate = function( event ) { + event.type = event.data; + jQuery.event.handle.apply( this, arguments ); +}; + +// Create mouseenter and mouseleave events +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + setup: function( data ) { + jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig ); + }, + teardown: function( data ) { + jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement ); + } + }; +}); + +// submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function( data, namespaces ) { + if ( this.nodeName && this.nodeName.toLowerCase() !== "form" ) { + jQuery.event.add(this, "click.specialSubmit", function( e ) { + var elem = e.target, + type = elem.type; + + if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { + e.liveFired = undefined; + return trigger( "submit", this, arguments ); + } + }); + + jQuery.event.add(this, "keypress.specialSubmit", function( e ) { + var elem = e.target, + type = elem.type; + + if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { + e.liveFired = undefined; + return trigger( "submit", this, arguments ); + } + }); + + } else { + return false; + } + }, + + teardown: function( namespaces ) { + jQuery.event.remove( this, ".specialSubmit" ); + } + }; + +} + +// change delegation, happens here so we have bind. +if ( !jQuery.support.changeBubbles ) { + + var changeFilters, + + getVal = function( elem ) { + var type = elem.type, val = elem.value; + + if ( type === "radio" || type === "checkbox" ) { + val = elem.checked; + + } else if ( type === "select-multiple" ) { + val = elem.selectedIndex > -1 ? + jQuery.map( elem.options, function( elem ) { + return elem.selected; + }).join("-") : + ""; + + } else if ( elem.nodeName.toLowerCase() === "select" ) { + val = elem.selectedIndex; + } + + return val; + }, + + testChange = function testChange( e ) { + var elem = e.target, data, val; + + if ( !rformElems.test( elem.nodeName ) || elem.readOnly ) { + return; + } + + data = jQuery._data( elem, "_change_data" ); + val = getVal(elem); + + // the current data will be also retrieved by beforeactivate + if ( e.type !== "focusout" || elem.type !== "radio" ) { + jQuery._data( elem, "_change_data", val ); + } + + if ( data === undefined || val === data ) { + return; + } + + if ( data != null || val ) { + e.type = "change"; + e.liveFired = undefined; + return jQuery.event.trigger( e, arguments[1], elem ); + } + }; + + jQuery.event.special.change = { + filters: { + focusout: testChange, + + beforedeactivate: testChange, + + click: function( e ) { + var elem = e.target, type = elem.type; + + if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { + return testChange.call( this, e ); + } + }, + + // Change has to be called before submit + // Keydown will be called before keypress, which is used in submit-event delegation + keydown: function( e ) { + var elem = e.target, type = elem.type; + + if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || + (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || + type === "select-multiple" ) { + return testChange.call( this, e ); + } + }, + + // Beforeactivate happens also before the previous element is blurred + // with this event you can't trigger a change event, but you can store + // information + beforeactivate: function( e ) { + var elem = e.target; + jQuery._data( elem, "_change_data", getVal(elem) ); + } + }, + + setup: function( data, namespaces ) { + if ( this.type === "file" ) { + return false; + } + + for ( var type in changeFilters ) { + jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); + } + + return rformElems.test( this.nodeName ); + }, + + teardown: function( namespaces ) { + jQuery.event.remove( this, ".specialChange" ); + + return rformElems.test( this.nodeName ); + } + }; + + changeFilters = jQuery.event.special.change.filters; + + // Handle when the input is .focus()'d + changeFilters.focus = changeFilters.beforeactivate; +} + +function trigger( type, elem, args ) { + args[0].type = type; + return jQuery.event.handle.apply( elem, args ); +} + +// Create "bubbling" focus and blur events +if ( document.addEventListener ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + jQuery.event.special[ fix ] = { + setup: function() { + this.addEventListener( orig, handler, true ); + }, + teardown: function() { + this.removeEventListener( orig, handler, true ); + } + }; + + function handler( e ) { + e = jQuery.event.fix( e ); + e.type = fix; + return jQuery.event.handle.call( this, e ); + } + }); +} + +jQuery.each(["bind", "one"], function( i, name ) { + jQuery.fn[ name ] = function( type, data, fn ) { + // Handle object literals + if ( typeof type === "object" ) { + for ( var key in type ) { + this[ name ](key, data, type[key], fn); + } + return this; + } + + if ( jQuery.isFunction( data ) || data === false ) { + fn = data; + data = undefined; + } + + var handler = name === "one" ? jQuery.proxy( fn, function( event ) { + jQuery( this ).unbind( event, handler ); + return fn.apply( this, arguments ); + }) : fn; + + if ( type === "unload" && name !== "one" ) { + this.one( type, data, fn ); + + } else { + for ( var i = 0, l = this.length; i < l; i++ ) { + jQuery.event.add( this[i], type, handler, data ); + } + } + + return this; + }; +}); + +jQuery.fn.extend({ + unbind: function( type, fn ) { + // Handle object literals + if ( typeof type === "object" && !type.preventDefault ) { + for ( var key in type ) { + this.unbind(key, type[key]); + } + + } else { + for ( var i = 0, l = this.length; i < l; i++ ) { + jQuery.event.remove( this[i], type, fn ); + } + } + + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.live( types, data, fn, selector ); + }, + + undelegate: function( selector, types, fn ) { + if ( arguments.length === 0 ) { + return this.unbind( "live" ); + + } else { + return this.die( types, null, fn, selector ); + } + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + + triggerHandler: function( type, data ) { + if ( this[0] ) { + var event = jQuery.Event( type ); + event.preventDefault(); + event.stopPropagation(); + jQuery.event.trigger( event, data, this[0] ); + return event.result; + } + }, + + toggle: function( fn ) { + // Save reference to arguments for access in closure + var args = arguments, + i = 1; + + // link all the functions, so any of them can unbind this click handler + while ( i < args.length ) { + jQuery.proxy( fn, args[ i++ ] ); + } + + return this.click( jQuery.proxy( fn, function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + })); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +var liveMap = { + focus: "focusin", + blur: "focusout", + mouseenter: "mouseover", + mouseleave: "mouseout" +}; + +jQuery.each(["live", "die"], function( i, name ) { + jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { + var type, i = 0, match, namespaces, preType, + selector = origSelector || this.selector, + context = origSelector ? this : jQuery( this.context ); + + if ( typeof types === "object" && !types.preventDefault ) { + for ( var key in types ) { + context[ name ]( key, data, types[key], selector ); + } + + return this; + } + + if ( jQuery.isFunction( data ) ) { + fn = data; + data = undefined; + } + + types = (types || "").split(" "); + + while ( (type = types[ i++ ]) != null ) { + match = rnamespaces.exec( type ); + namespaces = ""; + + if ( match ) { + namespaces = match[0]; + type = type.replace( rnamespaces, "" ); + } + + if ( type === "hover" ) { + types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); + continue; + } + + preType = type; + + if ( type === "focus" || type === "blur" ) { + types.push( liveMap[ type ] + namespaces ); + type = type + namespaces; + + } else { + type = (liveMap[ type ] || type) + namespaces; + } + + if ( name === "live" ) { + // bind live handler + for ( var j = 0, l = context.length; j < l; j++ ) { + jQuery.event.add( context[j], "live." + liveConvert( type, selector ), + { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); + } + + } else { + // unbind live handler + context.unbind( "live." + liveConvert( type, selector ), fn ); + } + } + + return this; + }; +}); + +function liveHandler( event ) { + var stop, maxLevel, related, match, handleObj, elem, j, i, l, data, close, namespace, ret, + elems = [], + selectors = [], + events = jQuery._data( this, eventKey ); + + if ( typeof events === "function" ) { + events = events.events; + } + + // Make sure we avoid non-left-click bubbling in Firefox (#3861) and disabled elements in IE (#6911) + if ( event.liveFired === this || !events || !events.live || event.target.disabled || event.button && event.type === "click" ) { + return; + } + + if ( event.namespace ) { + namespace = new RegExp("(^|\\.)" + event.namespace.split(".").join("\\.(?:.*\\.)?") + "(\\.|$)"); + } + + event.liveFired = this; + + var live = events.live.slice(0); + + for ( j = 0; j < live.length; j++ ) { + handleObj = live[j]; + + if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { + selectors.push( handleObj.selector ); + + } else { + live.splice( j--, 1 ); + } + } + + match = jQuery( event.target ).closest( selectors, event.currentTarget ); + + for ( i = 0, l = match.length; i < l; i++ ) { + close = match[i]; + + for ( j = 0; j < live.length; j++ ) { + handleObj = live[j]; + + if ( close.selector === handleObj.selector && (!namespace || namespace.test( handleObj.namespace )) ) { + elem = close.elem; + related = null; + + // Those two events require additional checking + if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { + event.type = handleObj.preType; + related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; + } + + if ( !related || related !== elem ) { + elems.push({ elem: elem, handleObj: handleObj, level: close.level }); + } + } + } + } + + for ( i = 0, l = elems.length; i < l; i++ ) { + match = elems[i]; + + if ( maxLevel && match.level > maxLevel ) { + break; + } + + event.currentTarget = match.elem; + event.data = match.handleObj.data; + event.handleObj = match.handleObj; + + ret = match.handleObj.origHandler.apply( match.elem, arguments ); + + if ( ret === false || event.isPropagationStopped() ) { + maxLevel = match.level; + + if ( ret === false ) { + stop = false; + } + if ( event.isImmediatePropagationStopped() ) { + break; + } + } + } + + return stop; +} + +function liveConvert( type, selector ) { + return (type && type !== "*" ? type + "." : "") + selector.replace(rperiod, "`").replace(rspace, "&"); +} + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + if ( fn == null ) { + fn = data; + data = null; + } + + return arguments.length > 0 ? + this.bind( name, data, fn ) : + this.trigger( name ); + }; + + if ( jQuery.attrFn ) { + jQuery.attrFn[ name ] = true; + } +}); + + +/*! + * Sizzle CSS Selector Engine + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * More information: http://sizzlejs.com/ + */ +(function(){ + +var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, + done = 0, + toString = Object.prototype.toString, + hasDuplicate = false, + baseHasDuplicate = true; + +// Here we check if the JavaScript engine is using some sort of +// optimization where it does not always call our comparision +// function. If that is the case, discard the hasDuplicate value. +// Thus far that includes Google Chrome. +[0, 0].sort(function() { + baseHasDuplicate = false; + return 0; +}); + +var Sizzle = function( selector, context, results, seed ) { + results = results || []; + context = context || document; + + var origContext = context; + + if ( context.nodeType !== 1 && context.nodeType !== 9 ) { + return []; + } + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + var m, set, checkSet, extra, ret, cur, pop, i, + prune = true, + contextXML = Sizzle.isXML( context ), + parts = [], + soFar = selector; + + // Reset the position of the chunker regexp (start from head) + do { + chunker.exec( "" ); + m = chunker.exec( soFar ); + + if ( m ) { + soFar = m[3]; + + parts.push( m[1] ); + + if ( m[2] ) { + extra = m[3]; + break; + } + } + } while ( m ); + + if ( parts.length > 1 && origPOS.exec( selector ) ) { + + if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { + set = posProcess( parts[0] + parts[1], context ); + + } else { + set = Expr.relative[ parts[0] ] ? + [ context ] : + Sizzle( parts.shift(), context ); + + while ( parts.length ) { + selector = parts.shift(); + + if ( Expr.relative[ selector ] ) { + selector += parts.shift(); + } + + set = posProcess( selector, set ); + } + } + + } else { + // Take a shortcut and set the context if the root selector is an ID + // (but not if it'll be faster if the inner selector is an ID) + if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && + Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { + + ret = Sizzle.find( parts.shift(), context, contextXML ); + context = ret.expr ? + Sizzle.filter( ret.expr, ret.set )[0] : + ret.set[0]; + } + + if ( context ) { + ret = seed ? + { expr: parts.pop(), set: makeArray(seed) } : + Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); + + set = ret.expr ? + Sizzle.filter( ret.expr, ret.set ) : + ret.set; + + if ( parts.length > 0 ) { + checkSet = makeArray( set ); + + } else { + prune = false; + } + + while ( parts.length ) { + cur = parts.pop(); + pop = cur; + + if ( !Expr.relative[ cur ] ) { + cur = ""; + } else { + pop = parts.pop(); + } + + if ( pop == null ) { + pop = context; + } + + Expr.relative[ cur ]( checkSet, pop, contextXML ); + } + + } else { + checkSet = parts = []; + } + } + + if ( !checkSet ) { + checkSet = set; + } + + if ( !checkSet ) { + Sizzle.error( cur || selector ); + } + + if ( toString.call(checkSet) === "[object Array]" ) { + if ( !prune ) { + results.push.apply( results, checkSet ); + + } else if ( context && context.nodeType === 1 ) { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && Sizzle.contains(context, checkSet[i])) ) { + results.push( set[i] ); + } + } + + } else { + for ( i = 0; checkSet[i] != null; i++ ) { + if ( checkSet[i] && checkSet[i].nodeType === 1 ) { + results.push( set[i] ); + } + } + } + + } else { + makeArray( checkSet, results ); + } + + if ( extra ) { + Sizzle( extra, origContext, results, seed ); + Sizzle.uniqueSort( results ); + } + + return results; +}; + +Sizzle.uniqueSort = function( results ) { + if ( sortOrder ) { + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( var i = 1; i < results.length; i++ ) { + if ( results[i] === results[ i - 1 ] ) { + results.splice( i--, 1 ); + } + } + } + } + + return results; +}; + +Sizzle.matches = function( expr, set ) { + return Sizzle( expr, null, null, set ); +}; + +Sizzle.matchesSelector = function( node, expr ) { + return Sizzle( expr, null, null, [node] ).length > 0; +}; + +Sizzle.find = function( expr, context, isXML ) { + var set; + + if ( !expr ) { + return []; + } + + for ( var i = 0, l = Expr.order.length; i < l; i++ ) { + var match, + type = Expr.order[i]; + + if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { + var left = match[1]; + match.splice( 1, 1 ); + + if ( left.substr( left.length - 1 ) !== "\\" ) { + match[1] = (match[1] || "").replace(/\\/g, ""); + set = Expr.find[ type ]( match, context, isXML ); + + if ( set != null ) { + expr = expr.replace( Expr.match[ type ], "" ); + break; + } + } + } + } + + if ( !set ) { + set = typeof context.getElementsByTagName !== "undefined" ? + context.getElementsByTagName( "*" ) : + []; + } + + return { set: set, expr: expr }; +}; + +Sizzle.filter = function( expr, set, inplace, not ) { + var match, anyFound, + old = expr, + result = [], + curLoop = set, + isXMLFilter = set && set[0] && Sizzle.isXML( set[0] ); + + while ( expr && set.length ) { + for ( var type in Expr.filter ) { + if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { + var found, item, + filter = Expr.filter[ type ], + left = match[1]; + + anyFound = false; + + match.splice(1,1); + + if ( left.substr( left.length - 1 ) === "\\" ) { + continue; + } + + if ( curLoop === result ) { + result = []; + } + + if ( Expr.preFilter[ type ] ) { + match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); + + if ( !match ) { + anyFound = found = true; + + } else if ( match === true ) { + continue; + } + } + + if ( match ) { + for ( var i = 0; (item = curLoop[i]) != null; i++ ) { + if ( item ) { + found = filter( item, match, i, curLoop ); + var pass = not ^ !!found; + + if ( inplace && found != null ) { + if ( pass ) { + anyFound = true; + + } else { + curLoop[i] = false; + } + + } else if ( pass ) { + result.push( item ); + anyFound = true; + } + } + } + } + + if ( found !== undefined ) { + if ( !inplace ) { + curLoop = result; + } + + expr = expr.replace( Expr.match[ type ], "" ); + + if ( !anyFound ) { + return []; + } + + break; + } + } + } + + // Improper expression + if ( expr === old ) { + if ( anyFound == null ) { + Sizzle.error( expr ); + + } else { + break; + } + } + + old = expr; + } + + return curLoop; +}; + +Sizzle.error = function( msg ) { + throw "Syntax error, unrecognized expression: " + msg; +}; + +var Expr = Sizzle.selectors = { + order: [ "ID", "NAME", "TAG" ], + + match: { + ID: /#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + CLASS: /\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/, + NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/, + ATTR: /\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/, + TAG: /^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/, + CHILD: /:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/, + POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/, + PSEUDO: /:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ + }, + + leftMatch: {}, + + attrMap: { + "class": "className", + "for": "htmlFor" + }, + + attrHandle: { + href: function( elem ) { + return elem.getAttribute( "href" ); + } + }, + + relative: { + "+": function(checkSet, part){ + var isPartStr = typeof part === "string", + isTag = isPartStr && !/\W/.test( part ), + isPartStrNotTag = isPartStr && !isTag; + + if ( isTag ) { + part = part.toLowerCase(); + } + + for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { + if ( (elem = checkSet[i]) ) { + while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} + + checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? + elem || false : + elem === part; + } + } + + if ( isPartStrNotTag ) { + Sizzle.filter( part, checkSet, true ); + } + }, + + ">": function( checkSet, part ) { + var elem, + isPartStr = typeof part === "string", + i = 0, + l = checkSet.length; + + if ( isPartStr && !/\W/.test( part ) ) { + part = part.toLowerCase(); + + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + var parent = elem.parentNode; + checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; + } + } + + } else { + for ( ; i < l; i++ ) { + elem = checkSet[i]; + + if ( elem ) { + checkSet[i] = isPartStr ? + elem.parentNode : + elem.parentNode === part; + } + } + + if ( isPartStr ) { + Sizzle.filter( part, checkSet, true ); + } + } + }, + + "": function(checkSet, part, isXML){ + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !/\W/.test(part) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "parentNode", part, doneName, checkSet, nodeCheck, isXML ); + }, + + "~": function( checkSet, part, isXML ) { + var nodeCheck, + doneName = done++, + checkFn = dirCheck; + + if ( typeof part === "string" && !/\W/.test( part ) ) { + part = part.toLowerCase(); + nodeCheck = part; + checkFn = dirNodeCheck; + } + + checkFn( "previousSibling", part, doneName, checkSet, nodeCheck, isXML ); + } + }, + + find: { + ID: function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + }, + + NAME: function( match, context ) { + if ( typeof context.getElementsByName !== "undefined" ) { + var ret = [], + results = context.getElementsByName( match[1] ); + + for ( var i = 0, l = results.length; i < l; i++ ) { + if ( results[i].getAttribute("name") === match[1] ) { + ret.push( results[i] ); + } + } + + return ret.length === 0 ? null : ret; + } + }, + + TAG: function( match, context ) { + if ( typeof context.getElementsByTagName !== "undefined" ) { + return context.getElementsByTagName( match[1] ); + } + } + }, + preFilter: { + CLASS: function( match, curLoop, inplace, result, not, isXML ) { + match = " " + match[1].replace(/\\/g, "") + " "; + + if ( isXML ) { + return match; + } + + for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { + if ( elem ) { + if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n\r]/g, " ").indexOf(match) >= 0) ) { + if ( !inplace ) { + result.push( elem ); + } + + } else if ( inplace ) { + curLoop[i] = false; + } + } + } + + return false; + }, + + ID: function( match ) { + return match[1].replace(/\\/g, ""); + }, + + TAG: function( match, curLoop ) { + return match[1].toLowerCase(); + }, + + CHILD: function( match ) { + if ( match[1] === "nth" ) { + if ( !match[2] ) { + Sizzle.error( match[0] ); + } + + match[2] = match[2].replace(/^\+|\s*/g, ''); + + // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' + var test = /(-?)(\d*)(?:n([+\-]?\d*))?/.exec( + match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || + !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); + + // calculate the numbers (first)n+(last) including if they are negative + match[2] = (test[1] + (test[2] || 1)) - 0; + match[3] = test[3] - 0; + } + else if ( match[2] ) { + Sizzle.error( match[0] ); + } + + // TODO: Move to normal caching system + match[0] = done++; + + return match; + }, + + ATTR: function( match, curLoop, inplace, result, not, isXML ) { + var name = match[1] = match[1].replace(/\\/g, ""); + + if ( !isXML && Expr.attrMap[name] ) { + match[1] = Expr.attrMap[name]; + } + + // Handle if an un-quoted value was used + match[4] = ( match[4] || match[5] || "" ).replace(/\\/g, ""); + + if ( match[2] === "~=" ) { + match[4] = " " + match[4] + " "; + } + + return match; + }, + + PSEUDO: function( match, curLoop, inplace, result, not ) { + if ( match[1] === "not" ) { + // If we're dealing with a complex expression, or a simple one + if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { + match[3] = Sizzle(match[3], null, null, curLoop); + + } else { + var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); + + if ( !inplace ) { + result.push.apply( result, ret ); + } + + return false; + } + + } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { + return true; + } + + return match; + }, + + POS: function( match ) { + match.unshift( true ); + + return match; + } + }, + + filters: { + enabled: function( elem ) { + return elem.disabled === false && elem.type !== "hidden"; + }, + + disabled: function( elem ) { + return elem.disabled === true; + }, + + checked: function( elem ) { + return elem.checked === true; + }, + + selected: function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + elem.parentNode.selectedIndex; + + return elem.selected === true; + }, + + parent: function( elem ) { + return !!elem.firstChild; + }, + + empty: function( elem ) { + return !elem.firstChild; + }, + + has: function( elem, i, match ) { + return !!Sizzle( match[3], elem ).length; + }, + + header: function( elem ) { + return (/h\d/i).test( elem.nodeName ); + }, + + text: function( elem ) { + return "text" === elem.type; + }, + radio: function( elem ) { + return "radio" === elem.type; + }, + + checkbox: function( elem ) { + return "checkbox" === elem.type; + }, + + file: function( elem ) { + return "file" === elem.type; + }, + password: function( elem ) { + return "password" === elem.type; + }, + + submit: function( elem ) { + return "submit" === elem.type; + }, + + image: function( elem ) { + return "image" === elem.type; + }, + + reset: function( elem ) { + return "reset" === elem.type; + }, + + button: function( elem ) { + return "button" === elem.type || elem.nodeName.toLowerCase() === "button"; + }, + + input: function( elem ) { + return (/input|select|textarea|button/i).test( elem.nodeName ); + } + }, + setFilters: { + first: function( elem, i ) { + return i === 0; + }, + + last: function( elem, i, match, array ) { + return i === array.length - 1; + }, + + even: function( elem, i ) { + return i % 2 === 0; + }, + + odd: function( elem, i ) { + return i % 2 === 1; + }, + + lt: function( elem, i, match ) { + return i < match[3] - 0; + }, + + gt: function( elem, i, match ) { + return i > match[3] - 0; + }, + + nth: function( elem, i, match ) { + return match[3] - 0 === i; + }, + + eq: function( elem, i, match ) { + return match[3] - 0 === i; + } + }, + filter: { + PSEUDO: function( elem, match, i, array ) { + var name = match[1], + filter = Expr.filters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + + } else if ( name === "contains" ) { + return (elem.textContent || elem.innerText || Sizzle.getText([ elem ]) || "").indexOf(match[3]) >= 0; + + } else if ( name === "not" ) { + var not = match[3]; + + for ( var j = 0, l = not.length; j < l; j++ ) { + if ( not[j] === elem ) { + return false; + } + } + + return true; + + } else { + Sizzle.error( name ); + } + }, + + CHILD: function( elem, match ) { + var type = match[1], + node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + + case "nth": + var first = match[2], + last = match[3]; + + if ( first === 1 && last === 0 ) { + return true; + } + + var doneName = match[0], + parent = elem.parentNode; + + if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) { + var count = 0; + + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + node.nodeIndex = ++count; + } + } + + parent.sizcache = doneName; + } + + var diff = elem.nodeIndex - last; + + if ( first === 0 ) { + return diff === 0; + + } else { + return ( diff % first === 0 && diff / first >= 0 ); + } + } + }, + + ID: function( elem, match ) { + return elem.nodeType === 1 && elem.getAttribute("id") === match; + }, + + TAG: function( elem, match ) { + return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match; + }, + + CLASS: function( elem, match ) { + return (" " + (elem.className || elem.getAttribute("class")) + " ") + .indexOf( match ) > -1; + }, + + ATTR: function( elem, match ) { + var name = match[1], + result = Expr.attrHandle[ name ] ? + Expr.attrHandle[ name ]( elem ) : + elem[ name ] != null ? + elem[ name ] : + elem.getAttribute( name ), + value = result + "", + type = match[2], + check = match[4]; + + return result == null ? + type === "!=" : + type === "=" ? + value === check : + type === "*=" ? + value.indexOf(check) >= 0 : + type === "~=" ? + (" " + value + " ").indexOf(check) >= 0 : + !check ? + value && result !== false : + type === "!=" ? + value !== check : + type === "^=" ? + value.indexOf(check) === 0 : + type === "$=" ? + value.substr(value.length - check.length) === check : + type === "|=" ? + value === check || value.substr(0, check.length + 1) === check + "-" : + false; + }, + + POS: function( elem, match, i, array ) { + var name = match[2], + filter = Expr.setFilters[ name ]; + + if ( filter ) { + return filter( elem, i, match, array ); + } + } + } +}; + +var origPOS = Expr.match.POS, + fescape = function(all, num){ + return "\\" + (num - 0 + 1); + }; + +for ( var type in Expr.match ) { + Expr.match[ type ] = new RegExp( Expr.match[ type ].source + (/(?![^\[]*\])(?![^\(]*\))/.source) ); + Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, fescape) ); +} + +var makeArray = function( array, results ) { + array = Array.prototype.slice.call( array, 0 ); + + if ( results ) { + results.push.apply( results, array ); + return results; + } + + return array; +}; + +// Perform a simple check to determine if the browser is capable of +// converting a NodeList to an array using builtin methods. +// Also verifies that the returned array holds DOM nodes +// (which is not the case in the Blackberry browser) +try { + Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; + +// Provide a fallback method if it does not work +} catch( e ) { + makeArray = function( array, results ) { + var i = 0, + ret = results || []; + + if ( toString.call(array) === "[object Array]" ) { + Array.prototype.push.apply( ret, array ); + + } else { + if ( typeof array.length === "number" ) { + for ( var l = array.length; i < l; i++ ) { + ret.push( array[i] ); + } + + } else { + for ( ; array[i]; i++ ) { + ret.push( array[i] ); + } + } + } + + return ret; + }; +} + +var sortOrder, siblingCheck; + +if ( document.documentElement.compareDocumentPosition ) { + sortOrder = function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { + return a.compareDocumentPosition ? -1 : 1; + } + + return a.compareDocumentPosition(b) & 4 ? -1 : 1; + }; + +} else { + sortOrder = function( a, b ) { + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // If the nodes are siblings (or identical) we can do a quick check + } else if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + + siblingCheck = function( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; + }; +} + +// Utility function for retreiving the text value of an array of DOM nodes +Sizzle.getText = function( elems ) { + var ret = "", elem; + + for ( var i = 0; elems[i]; i++ ) { + elem = elems[i]; + + // Get the text from text nodes and CDATA nodes + if ( elem.nodeType === 3 || elem.nodeType === 4 ) { + ret += elem.nodeValue; + + // Traverse everything else, except comment nodes + } else if ( elem.nodeType !== 8 ) { + ret += Sizzle.getText( elem.childNodes ); + } + } + + return ret; +}; + +// Check to see if the browser returns elements by name when +// querying by getElementById (and provide a workaround) +(function(){ + // We're going to inject a fake input element with a specified name + var form = document.createElement("div"), + id = "script" + (new Date()).getTime(), + root = document.documentElement; + + form.innerHTML = ""; + + // Inject it into the root element, check its status, and remove it quickly + root.insertBefore( form, root.firstChild ); + + // The workaround has to do additional checks after a getElementById + // Which slows things down for other browsers (hence the branching) + if ( document.getElementById( id ) ) { + Expr.find.ID = function( match, context, isXML ) { + if ( typeof context.getElementById !== "undefined" && !isXML ) { + var m = context.getElementById(match[1]); + + return m ? + m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? + [m] : + undefined : + []; + } + }; + + Expr.filter.ID = function( elem, match ) { + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); + + return elem.nodeType === 1 && node && node.nodeValue === match; + }; + } + + root.removeChild( form ); + + // release memory in IE + root = form = null; +})(); + +(function(){ + // Check to see if the browser returns only elements + // when doing getElementsByTagName("*") + + // Create a fake element + var div = document.createElement("div"); + div.appendChild( document.createComment("") ); + + // Make sure no comments are found + if ( div.getElementsByTagName("*").length > 0 ) { + Expr.find.TAG = function( match, context ) { + var results = context.getElementsByTagName( match[1] ); + + // Filter out possible comments + if ( match[1] === "*" ) { + var tmp = []; + + for ( var i = 0; results[i]; i++ ) { + if ( results[i].nodeType === 1 ) { + tmp.push( results[i] ); + } + } + + results = tmp; + } + + return results; + }; + } + + // Check to see if an attribute returns normalized href attributes + div.innerHTML = ""; + + if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && + div.firstChild.getAttribute("href") !== "#" ) { + + Expr.attrHandle.href = function( elem ) { + return elem.getAttribute( "href", 2 ); + }; + } + + // release memory in IE + div = null; +})(); + +if ( document.querySelectorAll ) { + (function(){ + var oldSizzle = Sizzle, + div = document.createElement("div"), + id = "__sizzle__"; + + div.innerHTML = "

"; + + // Safari can't handle uppercase or unicode characters when + // in quirks mode. + if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { + return; + } + + Sizzle = function( query, context, extra, seed ) { + context = context || document; + + // Only use querySelectorAll on non-XML documents + // (ID selectors don't work in non-HTML documents) + if ( !seed && !Sizzle.isXML(context) ) { + // See if we find a selector to speed up + var match = /^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec( query ); + + if ( match && (context.nodeType === 1 || context.nodeType === 9) ) { + // Speed-up: Sizzle("TAG") + if ( match[1] ) { + return makeArray( context.getElementsByTagName( query ), extra ); + + // Speed-up: Sizzle(".CLASS") + } else if ( match[2] && Expr.find.CLASS && context.getElementsByClassName ) { + return makeArray( context.getElementsByClassName( match[2] ), extra ); + } + } + + if ( context.nodeType === 9 ) { + // Speed-up: Sizzle("body") + // The body element only exists once, optimize finding it + if ( query === "body" && context.body ) { + return makeArray( [ context.body ], extra ); + + // Speed-up: Sizzle("#ID") + } else if ( match && match[3] ) { + var elem = context.getElementById( match[3] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id === match[3] ) { + return makeArray( [ elem ], extra ); + } + + } else { + return makeArray( [], extra ); + } + } + + try { + return makeArray( context.querySelectorAll(query), extra ); + } catch(qsaError) {} + + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + var old = context.getAttribute( "id" ), + nid = old || id, + hasParent = context.parentNode, + relativeHierarchySelector = /^\s*[+~]/.test( query ); + + if ( !old ) { + context.setAttribute( "id", nid ); + } else { + nid = nid.replace( /'/g, "\\$&" ); + } + if ( relativeHierarchySelector && hasParent ) { + context = context.parentNode; + } + + try { + if ( !relativeHierarchySelector || hasParent ) { + return makeArray( context.querySelectorAll( "[id='" + nid + "'] " + query ), extra ); + } + + } catch(pseudoError) { + } finally { + if ( !old ) { + context.removeAttribute( "id" ); + } + } + } + } + + return oldSizzle(query, context, extra, seed); + }; + + for ( var prop in oldSizzle ) { + Sizzle[ prop ] = oldSizzle[ prop ]; + } + + // release memory in IE + div = null; + })(); +} + +(function(){ + var html = document.documentElement, + matches = html.matchesSelector || html.mozMatchesSelector || html.webkitMatchesSelector || html.msMatchesSelector, + pseudoWorks = false; + + try { + // This should fail with an exception + // Gecko does not error, returns false instead + matches.call( document.documentElement, "[test!='']:sizzle" ); + + } catch( pseudoError ) { + pseudoWorks = true; + } + + if ( matches ) { + Sizzle.matchesSelector = function( node, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace(/\=\s*([^'"\]]*)\s*\]/g, "='$1']"); + + if ( !Sizzle.isXML( node ) ) { + try { + if ( pseudoWorks || !Expr.match.PSEUDO.test( expr ) && !/!=/.test( expr ) ) { + return matches.call( node, expr ); + } + } catch(e) {} + } + + return Sizzle(expr, null, null, [node]).length > 0; + }; + } +})(); + +(function(){ + var div = document.createElement("div"); + + div.innerHTML = "
"; + + // Opera can't find a second classname (in 9.6) + // Also, make sure that getElementsByClassName actually exists + if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { + return; + } + + // Safari caches class attributes, doesn't catch changes (in 3.2) + div.lastChild.className = "e"; + + if ( div.getElementsByClassName("e").length === 1 ) { + return; + } + + Expr.order.splice(1, 0, "CLASS"); + Expr.find.CLASS = function( match, context, isXML ) { + if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { + return context.getElementsByClassName(match[1]); + } + }; + + // release memory in IE + div = null; +})(); + +function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem.sizcache === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 && !isXML ){ + elem.sizcache = doneName; + elem.sizset = i; + } + + if ( elem.nodeName.toLowerCase() === cur ) { + match = elem; + break; + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { + for ( var i = 0, l = checkSet.length; i < l; i++ ) { + var elem = checkSet[i]; + + if ( elem ) { + var match = false; + + elem = elem[dir]; + + while ( elem ) { + if ( elem.sizcache === doneName ) { + match = checkSet[elem.sizset]; + break; + } + + if ( elem.nodeType === 1 ) { + if ( !isXML ) { + elem.sizcache = doneName; + elem.sizset = i; + } + + if ( typeof cur !== "string" ) { + if ( elem === cur ) { + match = true; + break; + } + + } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { + match = elem; + break; + } + } + + elem = elem[dir]; + } + + checkSet[i] = match; + } + } +} + +if ( document.documentElement.contains ) { + Sizzle.contains = function( a, b ) { + return a !== b && (a.contains ? a.contains(b) : true); + }; + +} else if ( document.documentElement.compareDocumentPosition ) { + Sizzle.contains = function( a, b ) { + return !!(a.compareDocumentPosition(b) & 16); + }; + +} else { + Sizzle.contains = function() { + return false; + }; +} + +Sizzle.isXML = function( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; + + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +var posProcess = function( selector, context ) { + var match, + tmpSet = [], + later = "", + root = context.nodeType ? [context] : context; + + // Position selectors must be done after the filter + // And so must :not(positional) so we move all PSEUDOs to the end + while ( (match = Expr.match.PSEUDO.exec( selector )) ) { + later += match[0]; + selector = selector.replace( Expr.match.PSEUDO, "" ); + } + + selector = Expr.relative[selector] ? selector + "*" : selector; + + for ( var i = 0, l = root.length; i < l; i++ ) { + Sizzle( selector, root[i], tmpSet ); + } + + return Sizzle.filter( later, tmpSet ); +}; + +// EXPOSE +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.filters; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})(); + + +var runtil = /Until$/, + rparentsprev = /^(?:parents|prevUntil|prevAll)/, + // Note: This RegExp should be improved, or likely pulled from Sizzle + rmultiselector = /,/, + isSimple = /^.[^:#\[\.,]*$/, + slice = Array.prototype.slice, + POS = jQuery.expr.match.POS, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var ret = this.pushStack( "", "find", selector ), + length = 0; + + for ( var i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( var n = length; n < ret.length; n++ ) { + for ( var r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + var targets = jQuery( target ); + return this.filter(function() { + for ( var i = 0, l = targets.length; i < l; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + return !!selector && jQuery.filter( selector, this ).length > 0; + }, + + closest: function( selectors, context ) { + var ret = [], i, l, cur = this[0]; + + if ( jQuery.isArray( selectors ) ) { + var match, selector, + matches = {}, + level = 1; + + if ( cur && selectors.length ) { + for ( i = 0, l = selectors.length; i < l; i++ ) { + selector = selectors[i]; + + if ( !matches[selector] ) { + matches[selector] = jQuery.expr.match.POS.test( selector ) ? + jQuery( selector, context || this.context ) : + selector; + } + } + + while ( cur && cur.ownerDocument && cur !== context ) { + for ( selector in matches ) { + match = matches[selector]; + + if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) { + ret.push({ selector: selector, elem: cur, level: level }); + } + } + + cur = cur.parentNode; + level++; + } + } + + return ret; + } + + var pos = POS.test( selectors ) ? + jQuery( selectors, context || this.context ) : null; + + for ( i = 0, l = this.length; i < l; i++ ) { + cur = this[i]; + + while ( cur ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + + } else { + cur = cur.parentNode; + if ( !cur || !cur.ownerDocument || cur === context ) { + break; + } + } + } + } + + ret = ret.length > 1 ? jQuery.unique(ret) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + if ( !elem || typeof elem === "string" ) { + return jQuery.inArray( this[0], + // If it receives a string, the selector is used + // If it receives nothing, the siblings are used + elem ? jQuery( elem ) : this.parent().children() ); + } + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + andSelf: function() { + return this.add( this.prevObject ); + } +}); + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return jQuery.nth( elem, 2, "nextSibling" ); + }, + prev: function( elem ) { + return jQuery.nth( elem, 2, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( elem.parentNode.firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.makeArray( elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ), + // The variable 'args' was introduced in + // https://github.com/jquery/jquery/commit/52a0238 + // to work around a bug in Chrome 10 (Dev) and should be removed when the bug is fixed. + // http://code.google.com/p/v8/issues/detail?id=1050 + args = slice.call(arguments); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, args.join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + nth: function( cur, result, dir, elem ) { + result = result || 1; + var num = 0; + + for ( ; cur; cur = cur[dir] ) { + if ( cur.nodeType === 1 && ++num === result ) { + break; + } + } + + return cur; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return (elem === qualifier) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return (jQuery.inArray( elem, qualifier ) >= 0) === keep; + }); +} + + + + +var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig, + rtagName = /<([\w:]+)/, + rtbody = /", "" ], + legend: [ 1, "
", "
" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + col: [ 2, "", "
" ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }; + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE can't serialize and + + + + + + + + + + +
+
+
+
+ +
+

Acknowledgements

+
+

Test Server

+

We’re proud to provide you a development server which is sponsered by XXX #Todo +Feel free to change anything you like, we can simply rest the DB from Time to Time.

+
+
+

Missing Functionality

+
    +
  • +
    Delete Domain
    +
      +
    • missing in REST
    • +
    • implemented in mailman3 a8
    • +
    +
    +
    +
  • +
  • Show a List of all subscribed users

    +
  • +
+
+
+

ACL

+
    +
  • Middleware

    +
    +

    We don’t have the Middleware which is required to work with users and it’s permissions yet. For this reason we had to tweak some functions to be a hardcoded Demo object.

    +
      +
    • +
      Login Check
      +

      At the moment we’re using a hardcoded List of allowed usernames and Passwords which are all stored in Plain within the AuthBackends Source File.

      +
      +
      +
    • +
    • +
      has_perm Decorator
      +

      As we don’t have a middleware to check for users and it’s permissions we do only use one permission at the moment. The permission site domain_admin is hardcoded to user.username == “james@example.com

      +
      +
      +
    • +
    +
    +
  • +
+
+
+

Ideas

+
    +
  • ContactPage
  • +
  • +
+
+
+ + +
+
+
+
+
+

Table Of Contents

+ + +

Previous topic

+

Using the Django App - Developers Resource

+

Next topic

+

Contributions:

+

This Page

+ + + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/genindex.html b/src/mailman_django/doc/_build/html/genindex.html new file mode 100644 index 0000000..916dddf --- /dev/null +++ b/src/mailman_django/doc/_build/html/genindex.html @@ -0,0 +1,103 @@ + + + + + + + + + Index — mailman_django v0.1 documentation + + + + + + + + + + + +
+
+
+
+ + +

Index

+ +
+ T +
+

T

+ + +
+
tests.tests (module)
+
+ + + +
+
+
+
+
+ + + + + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/index.html b/src/mailman_django/doc/_build/html/index.html new file mode 100644 index 0000000..367df44 --- /dev/null +++ b/src/mailman_django/doc/_build/html/index.html @@ -0,0 +1,141 @@ + + + + + + + + + Welcome to mailman_django’s documentation! — mailman_django v0.1 documentation + + + + + + + + + + + + +
+ +
+
+

Next topic

+

Installation

+

This Page

+ + + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/license.html b/src/mailman_django/doc/_build/html/license.html new file mode 100644 index 0000000..009e917 --- /dev/null +++ b/src/mailman_django/doc/_build/html/license.html @@ -0,0 +1,139 @@ + + + + + + + + + Contributions: — mailman_django v0.1 documentation + + + + + + + + + + + + +
+
+
+
+ +
+

Contributions:

+
+

Mailman is licensed unter GPL

+

Copyright (C) 1998-2010 by the Free Software Foundation, Inc.

+

This file is part of GNU Mailman.

+

GNU Mailman 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.

+

GNU Mailman 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 +GNU Mailman. If not, see <http://www.gnu.org/licenses/>.

+
+
+

RRZE Icon Set

+

CreativeCommons Licence

+

The RRZE Icon Set is licenced under a Creative Commons Licence. +Please see the website for the current licence text.

+

More information about the Project could be found here: +http://rrze-icon-set.berlios.de/licence.html

+

Special thanks to: +* Franziska Sponsel (created additional Icons specially for our Project)

+
+
+ + +
+
+
+
+
+

Table Of Contents

+ + +

Previous topic

+

Using the Django App - Developers Resource

+

This Page

+ + + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/objects.inv b/src/mailman_django/doc/_build/html/objects.inv new file mode 100644 index 0000000..aba4c66 --- /dev/null +++ b/src/mailman_django/doc/_build/html/objects.inv Binary files differ diff --git a/src/mailman_django/doc/_build/html/py-modindex.html b/src/mailman_django/doc/_build/html/py-modindex.html new file mode 100644 index 0000000..131bbd1 --- /dev/null +++ b/src/mailman_django/doc/_build/html/py-modindex.html @@ -0,0 +1,113 @@ + + + + + + + + + Python Module Index — mailman_django v0.1 documentation + + + + + + + + + + + + + + +
+
+
+
+ + +

Python Module Index

+ +
+ t +
+ + + + + + + + + + +
 
+ t
+ tests +
    + tests.tests +
+ + +
+
+
+
+
+ + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/search.html b/src/mailman_django/doc/_build/html/search.html new file mode 100644 index 0000000..d432562 --- /dev/null +++ b/src/mailman_django/doc/_build/html/search.html @@ -0,0 +1,102 @@ + + + + + + + + + Search — mailman_django v0.1 documentation + + + + + + + + + + + + + + + +
+
+
+
+ +

Search

+
+ +

+ Please activate JavaScript to enable the search + functionality. +

+
+

+ From here you can search these documents. Enter your search + words into the box below and click "search". Note that the search + function will automatically search for all of the words. Pages + containing fewer words won't appear in the result list. +

+
+ + + +
+ +
+ +
+ +
+
+
+
+
+
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/searchindex.js b/src/mailman_django/doc/_build/html/searchindex.js new file mode 100644 index 0000000..4570732 --- /dev/null +++ b/src/mailman_django/doc/_build/html/searchindex.js @@ -0,0 +1 @@ +Search.setIndex({objects:{tests:{tests:[4,0,0]}},terms:{all:[4,1,2],code:[4,1],forget:4,prefil:4,four:[],ackownledg:4,runserv:1,dirnam:1,follow:[4,1],decid:[4,1],authoris:4,send:4,under:3,introduc:1,merchant:3,sourc:2,everi:1,string:4,far:1,none:4,offlin:1,util:4,context_processor:1,mechan:4,exact:4,special:[4,1,3],contenttyp:1,administr:4,level:1,did:4,button:4,list:[4,2],"try":4,item:4,adjust:1,httpredirectobject:4,quick:1,setup:[4,1],dir:1,pleas:[4,1,3],modelbackend:1,impli:3,httpresponseredirect:4,cfg:[],seper:[4,1],request:4,past:1,second:1,download:1,further:[],click:4,compat:1,index:4,what:4,name_of_permiss:4,appear:1,sum:[],abl:[4,1],current:[4,3],delet:[4,2],new_list1:4,franziska:3,"new":4,net:1,"public":3,gener:3,remeb:1,here:[4,1,3],themself:4,ubuntu:1,path:1,along:3,modifi:[4,1,3],sinc:[],valu:[4,1],search:0,mailinglist:4,vertifi:1,anymor:1,step:1,jame:[4,2],doctest:4,action:4,chang:[4,1,2],mailman_media:1,contactpag:2,via:4,appli:1,app:[0,1,4],sponser:2,foundat:3,api:[0,1],sponsel:3,instal:[0,1,4],middlewar:[4,1,2],from:[4,1,2],describ:4,would:1,commun:1,doubl:4,two:4,perm:[],next:[4,1],websit:[1,3],few:1,call:[4,1],recommend:1,type:4,web_host:4,mailman_django:[0,1],abspath:1,relat:4,ital:[],site:[0,1,2,4],trail:1,berlio:3,stick:1,particular:3,hold:1,unpack:1,easiest:4,account:4,join:1,prepar:1,work:[4,1,2],uniqu:4,dev:4,itself:1,can:[4,1,2,3],purpos:3,login_requir:4,tar:1,sudo:1,templat:1,topic:4,want:[4,1],nearli:1,cours:1,multipl:4,anoth:4,faulti:4,georg:4,write:4,how:[],instead:[4,1],config:1,css:1,updat:1,resourc:[0,4],after:[4,1],"long":1,usabl:[],befor:[4,1],wrong:4,mai:4,end:1,data:[4,1],postfix:1,bind:1,bootstrap:1,django:[0,1,4],inform:[4,3],adverrtis:4,allow:[4,1,2],enter:4,fallback:1,automaticli:4,egg:1,order:4,listnam:4,help:[],becaus:4,has_perm:2,style:1,directli:4,fit:3,better:1,restart:1,onc:[4,1],mail:4,hidden:1,main:4,might:1,guarente:1,split:1,them:1,"return":4,thei:4,python:[4,1],auth:[4,1],unfortuneatli:4,mention:[4,1],front:4,now:[4,1],term:3,benst:1,somewher:1,name:[4,1],anyth:2,edit:4,simpl:[4,1],authent:4,separ:4,easili:1,each:4,debug:[4,1],found:[4,3],went:4,mailman_test_bindir:1,domain:[4,2],replac:[],idea:[0,2],procedur:4,realli:[4,1],redistribut:3,meta:4,"static":[],connect:[4,1],our:[4,1,3],todo:[4,2],dependeci:1,shown:4,space:[],miss:[0,2],develop:[0,1,2,4],publish:3,api_us:[4,1],content:[0,1,4],rest_serv:1,got:1,correct:4,earlier:[4,1],free:[4,1,2,3],cooki:[],reason:[4,1,2],base:1,mailmanweb:[],lists_of_domain:1,put:1,org:3,"40mail":4,launch:1,could:[4,1,3],membership:4,keep:1,filter:4,thing:[4,1],place:[4,1],isn:4,root_urlconf:1,requireti:[],summari:4,first:[4,1],softwar:3,rang:[],render:1,feel:[4,1,2],media_root:1,natti:1,restrict:4,instruct:4,alreadi:[4,1],done:[4,1],least:4,authentif:[4,1],owner:4,stabl:[4,1],installed_app:1,open:4,gpl:[0,3],differ:1,rrze:[0,3],hardcopi:1,licens:[0,3],system:1,messag:[4,1],licenc:3,fullfil:1,"final":4,store:[4,2],shell:[4,1],option:[4,1,3],real_nam:4,copi:[1,3],specifi:4,gsoc:1,part:[4,1,3],pars:4,priveledg:1,serv:1,enjoi:4,provid:[4,2],remov:4,new_domain:[],project:[4,1,3],were:[4,1],posit:4,fqdn_listnam:4,pre:4,ani:[1,3],packag:1,have:[4,1,2,3],tabl:1,need:[4,1],element:1,florian:1,destroi:1,client:[0,1,4],note:[4,1],without:[4,3],take:4,indic:4,singl:4,even:3,sure:[4,1],kati:4,distribut:3,shall:4,usernam:[4,1,2],object:[4,2],most:4,plan:[4,1],letter:4,watt:4,"class":[4,1],icon:[0,3],don:[4,1,2],bzr:1,url:[4,1],doc:4,later:[1,3],hardcod:[4,2],temporili:4,doe:4,mm_membership:4,left:4,came:[],show:[4,2],text:[4,3],liza:4,session:[4,1],permiss:[0,1,2,4],corner:4,fine:1,eas:1,redirect:4,absolut:1,onli:[4,1,2],locat:4,launchpad:1,copyright:3,explain:[0,4],configur:[4,1],should:[4,1,3],version:[1,3],suppos:1,local:4,hope:3,media_url:1,contribut:[0,3],get:[4,1],"__file__":1,stop:4,obviou:4,csrf:1,subscript:4,requir:[4,1,2],template_dir:1,whether:4,common:3,restadmin:1,where:1,view:[4,1],set:[0,1,3,4],see:[4,1,3],domain_admin:2,result:1,respons:4,fail:[4,1],wonder:4,awar:[4,1],statu:4,mailman3a7:1,correctli:4,databas:4,someth:4,restbackend:[4,1],behind:4,between:[4,1],"import":4,awai:1,email:4,realnam:[],correclti:[4,1],advertis:4,subfold:1,addit:[4,3],both:[4,1],last:4,plugin:1,admin:1,howev:1,etc:4,instanc:4,context:[4,1],delete_list:4,logout:4,login:[0,1,2,4],com:[4,1,2],load:4,english:4,simpli:[4,1,2],point:1,instanti:[],overview:4,address:[4,1],header:[],non:1,linux:4,backend:[4,1],mailman:[0,1,3,4],coupl:[4,1],"0a7":1,been:4,compon:1,much:1,unsubscrib:4,modif:1,upcom:1,xxx:2,togeth:[4,1],i18n:1,ngeorg:4,those:[4,1],"case":[4,1],creativecommon:3,therefor:[],look:4,gnu:3,plain:2,align:1,dashboard:4,abov:[0,4],mail_host:4,everyon:1,authentication_backend:1,new_list:[],demo:2,list_own:4,archiv:4,revis:1,subscrib:[4,2],decor:[4,1,2],let:4,welcom:0,author:[],receiv:3,media:1,make:[4,1],belong:4,same:[4,1],handl:[4,1],html:[1,3],gui:4,document:[0,4],finish:[0,4],http:[4,1,3],upon:4,moment:[4,1,2],http_host:4,user:[4,1,2],implement:[4,2],expand:4,appropri:1,framework:[],api_pass:[4,1],usual:1,well:[4,1],membership_set:4,exampl:[4,1,2],command:1,thi:[4,1,2,3],choos:4,everyth:[4,1],latest:1,just:1,rest:[0,1,2,4],mailman3:[0,1,2,4],webui:[4,1],yet:2,languag:4,easi:1,project_path:1,had:[4,2],list_summari:4,mailmanwebgsoc2011:1,add:[4,1],other:[4,1],lawrenc:1,save:[],modul:[4,1],bin:1,applic:[0,1],which:[4,1,2],unter:[0,3],know:1,gsoc_mailman:1,press:4,password:[4,1,2],tweak:2,authbackend:2,like:[4,1,2],template_context_processor:1,success:4,restpass:1,server:[0,1,2],href:4,setup_mm:4,either:[4,3],page:[0,1,4],www:[1,3],right:1,acknowledg:[0,2,4],creation:4,some:[4,1,2],home:1,funcit:[],buildout:1,djangoproject:[4,1],confirm:4,woun:1,thank:3,select:4,slash:1,necessari:4,testobject:4,localhost:[4,1],refer:4,machin:4,core:1,who:4,run:[0,1,4],bold:[],symlink:1,host:4,repositori:1,post:4,mm_new_domain:4,stage:[],about:[1,3],central:[],usa:4,mass_subscrib:4,acl:[0,2],permission_requir:4,act:4,fals:4,processor:1,block:4,own:[4,1],addus:4,status_cod:4,within:[4,1,2],warranti:3,creativ:3,empti:4,contrib:1,your:[4,1,3],manag:[4,1],choosen:4,log:4,wai:4,"40exampl":4,execut:4,print:4,submit:4,custom:1,avail:[4,1],start:[4,1],reli:4,includ:[4,1],suit:4,systers_django:[],"function":[0,1,2,4],head:4,form:4,offer:4,descrip:1,link:[4,1],translat:4,teardown_mm:4,branch:1,line:4,"true":4,succe:4,made:[4,1],render_mailman_them:1,possibl:1,"default":1,access:[0,1,4],displai:4,below:4,memebership:4,otherwis:1,more:[4,3],extend_ajax:1,proud:2,creat:[4,1,3],cover:4,dure:[4,1],doesn:4,exist:1,file:[4,1,2,3],syncdb:1,check:[4,1,2],inc:3,again:[4,1],successfulli:1,titl:[],when:[4,1],detail:3,gettext:4,valid:4,futur:1,rememb:4,test:[0,1,2,4],you:[4,1,2,3],nice:4,why:4,prequir:4,consid:1,stai:4,bullet:[],directori:[4,1],bottom:4,descript:4,mailman_them:1,mass:4,time:[4,1,2],escap:4},objtypes:{"0":"py:module"},titles:["Welcome to mailman_django’s documentation!","Installation","Acknowledgements","Contributions:","Using the Django App - Developers Resource"],objnames:{"0":"Python module"},filenames:["index","setup","acknowledgements","license","using"]}) \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/setup.html b/src/mailman_django/doc/_build/html/setup.html new file mode 100644 index 0000000..1dd1d62 --- /dev/null +++ b/src/mailman_django/doc/_build/html/setup.html @@ -0,0 +1,349 @@ + + + + + + + + + Installation — mailman_django v0.1 documentation + + + + + + + + + + + + + +
+
+
+
+ +
+

Installation

+
+

Mailman3 - a7

+
    +
  • +
    Check Dependecys
    +
    +

    Note

    +

    This might differ on different systems - I was testing Ubuntu 11.04 natty and needed to install Postfix before running the installation.

    +
    +
    +
    +
  • +
  • Download or branch Mailman3a7 from http://launchpad.net/mailman/3.0/3.0.0a7/+download/mailman-3.0.0a7.tar.gz and unpack it.

    +
  • +
  • +
    Change into the unpacked DIR which might be named “mailman-3.0.0a7”
    +
    +

    Note

    +

    Please be aware that the following steps only work if you’re really in that DIR. If you consider adding a subfolder name to the commands those woun’t work !

    +
    +
    +
    +
  • +
  • Run the Installation from a Shell (not Python)

    +
    +
    $ python bootstrap.py
    +$ bin/buildout
    +
    +
    +
    +
  • +
  • Vertify that everything was setup correclty and your branch fullfills the version requirements by running it’s own test module

    +
    +
    $ bin/test
    +
    +
    +
    +
  • +
  • Now you’re able to run mailman using

    +
    +
    $ bin/mailman
    +
    +
    +
    +
  • +
+
+
+

Mailman Client / REST Api

+

Next thing you need to do is installing the Plugin used for communication with non-mailman-code parts like our WebUI. Within the Client Branch we’ve put both, Classes to access the Core which are run as a Plugin and some Python Bindings. +The Python Bindings were used later on within our Django Application to access the Server. Failing to install the Client would result in an offline version of WebUI

+

Once again start by branching the code which is on Launchpad

+
+
$ bzr branch lp:mailman.client
+
+
+
+
+

Note

+

We’ve successfully tested our functionality with Revision 16 - In case the Client gets updated which it surely will in future we can’t guarentee that it is compatible anymore.

+
+

As you only want to run the Client and not modify it’s code you’re fine with running the install command from within the directory. At the moment this requires Sudo Priveledges as files will copied to the Python Site-Packages Directory which is available to all users.

+
+
$ sudo python setup.py install
+
+
+
+
+

Note

+

If you want to change parts of the Client you can use the development option which will create a Symlink instead of a Hardcopy of all files:

+
$ sudo python setup.py develop
+
+
+
+

All changes will apply once you restart Mailman itself.

+
+
+

Django 1.3

+

During our development we started a Django Site based on the 1.2 Version which is included into Ubuntu’s repositorys. This made the installation easy but we ended up having some points which would get a much better code when using some elements introducing in 1.3. +As Mailman is supposed to be long-time stable - or however you call it - we decided that we should stick to the latest stable version right away. For this reason you’re required to install Django 1.3+ which is descriped on their Website. (https://www.djangoproject.com/download/)

+
+

Note

+

Please be Aware that it’s not recommended to run both 1.2 and 1.3 at the same time

+
+

In Django you’ve got 3 different levels of data. +- Django Installation Files +- Django Site +- Django Apps +usually you don’t see the Installation as it’s hidden somewhere within the System and the Apps are simply included into The Site Directory. +As we wanted to have the possibility to include the App into any Django Site which might already exist we decided to keep Site and App seperated.

+

During GSoC we’ve used different branches for this: +- lp:mailmanwebgsoc2011 +- lp:mailmanwebgsoc2011/django-site-0.1

+
+
+

Django Site Installation

+

We’ve created this branch for quick development - everyone is free to use his own Django site, but this one already includes a couple of modifications we’ve made that will allow running the Development Server just a few seconds after Branching both Site and App.

+

As far as I know at the moment we’ve made the following alignments: (All of these are in the settings.py file of the Django Site)

+
+

REST_SERVER = ‘localhost:8001’ +API_USER = ‘restadmin’ +API_PASS = ‘restpass’

+
+

Note

+

These are the default values used by the Mailman Client we’ve installed earlier. Feel free to modify the password and username if you need to.

+
+
+

MAILMAN_TEST_BINDIR = ‘/home/benste/Projects/Gsoc_mailman/mailman-3.0.0a7/bin’ +#/home/florian/Development/mailman/bin’

+
+
+

Note

+

Running the test modules requires to launch a special version of mailman with it’s own testing DB otherwise you’d destroy you’re sites content during testing. This Path needs to point to YOUR own installation of mailman.

+
+
+

MAILMAN_THEME = “default”

+
+
+

Note

+

We decided to allow simple Appearance Modifications, to use a custom CSS you could simply add a Directory within the media directory of the app and Link it’s name here. All HTML Pages will use the Styles from the Directory mentioned in here

+
+
+

PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) +MEDIA_ROOT = os.path.join(os.path.split(PROJECT_PATH)[0], “mailman_django/media/mailman_django/”)

+
+
+

Note

+

Absolute path to the directory that holds media. +Example: “/home/media/media.lawrence.com/”

+
+
+

MEDIA_URL = ‘/mailman_media/’

+
+
+

Note

+

URL that handles the media served from MEDIA_ROOT. Make sure to use a trailing slash if there is a path component (optional in other cases).Examples: “http://media.lawrence.com“, “http://example.com/media/

+
+
+
+
AUTHENTICATION_BACKENDS = (
+

‘mailman_django.auth.restbackend.RESTBackend’, +‘django.contrib.auth.backends.ModelBackend’ +)

+
+

Note

+

This creates a connection in between Djangos Login and Permission Decorators which we use for authentification and a custom Backend which we created in Preparation to work together with the REST API or an upcoming Middleware. +You need to keep the Django one for testing fallback.

+
+
+
TEMPLATE_CONTEXT_PROCESSORS=(
+

“django.contrib.auth.context_processors.auth”, +“django.core.context_processors.debug”, +“django.core.context_processors.i18n”, +“django.core.context_processors.media”, +“django.core.context_processors.csrf”, +“django.contrib.messages.context_processors.messages”, +“mailman_django.context_processors.lists_of_domain”, +“mailman_django.context_processors.render_MAILMAN_THEME”, +“mailman_django.context_processors.extend_ajax”

+
+

Note

+

We’re using Context Processors to easily render value which we need in nearly every view.

+
+
+
+

ROOT_URLCONF = ‘mailman_django.urls’

+
+
+

Note

+

This is where our URL Config is - if you run your own site with other Apps as well you might want to adjust this to your urls.py which includes our file.

+
+
+
+
TEMPLATE_DIRS = (
+

os.path.join(PROJECT_PATH, “mailman_django/templates”),

+
+

Note

+

Adds our own Templates

+
+
+
INSTALLED_APPS = (
+

‘django.contrib.auth’, +‘django.contrib.contenttypes’, +‘django.contrib.sessions’, +‘django.contrib.sites’, +‘django.contrib.admin’, +‘mailman_django’,

+
+

Note

+

Makes sure that Django knows about our directory as an App and creates needed Tables () when running

+
+
$ python manage.py syncdb
+
+
+
+
+

Now that you know about all these you might start the development server. As usual in Django this is done by running

+
+
$ python manage.py runserver
+
+
+
+

within the Django Site Directory - as usual the default address is localhost:8000 +Of course it will only be able to start once our app is in place as well.

+
+
+

Django Application

+

First get the files, and make sure you paste them into your Project directory and adjust it’s name to the appropriate configuration you’ve made earlier in the Django Site. Remeber our default is mailman_django

+
+
$ bzr branch lp:mailmanwebgsoc2011
+
+
+
+
+

Note

+

We’ve tested Revision 172

+
+
+

Note

+

We’re planning to ease up installation by creating an egg

+
+
+
+ + +
+
+
+
+
+

Table Of Contents

+ + +

Previous topic

+

Welcome to mailman_django’s documentation!

+

Next topic

+

Using the Django App - Developers Resource

+

This Page

+ + + +
+
+
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/_build/html/using.html b/src/mailman_django/doc/_build/html/using.html new file mode 100644 index 0000000..8405715 --- /dev/null +++ b/src/mailman_django/doc/_build/html/using.html @@ -0,0 +1,545 @@ + + + + + + + + + Using the Django App - Developers Resource — mailman_django v0.1 documentation + + + + + + + + + + + + + +
+
+
+
+ +
+

Using the Django App - Developers Resource

+
+

Tests Login and Permissions

+

This document both acts as a test for all the functions implemented +in the UI as well as documenting what can be done

+
+

Test Pre Requirements

+
    +
  • We’ve created a special Testobject which will run it’s own instance of Mailman3 with a new empty Database.

    +
    +
    >>> from setup import setup_mm, Testobject, teardown_mm
    +>>> testobject = setup_mm(Testobject())
    +
    +
    +
    +

    Note

    +

    You need to stop all Mailman3 instances before running the tests

    +
    +
    +
  • +
  • +
    Modules needed
    +

    As we can’t make sure that you’re running the same language as we did we made sure that each test below is executed using the exact same translation mechanism as we use to Display you Status Messages and other GUI Texts.

    +
    +
    Import Translation Module to check success messages
    +
    >>> from django.utils.translation import gettext as _
    +
    +
    +
    +
    Import HTTPRedirectObject to check whether a response redirects
    +
    >>> from django.http import HttpResponseRedirect
    +
    +
    +
    +
    +
    +
    +
  • +
+
+
+

Getting Started

+

Starting the test module we do use a special Django Test Client which needs to be imported first.

+
>>> from django.test.client import Client
+>>> c = Client()
+
+
+

Once this is created we can try accessing our first Page and check that this was done successful

+
>>> response = c.get('/lists/',)
+>>> response.status_code
+200
+
+
+
+
+

Login Required

+

As described within the installation instructions we already started using authentification. The easiest way testing it is that we simply load a page which is restricted to some users only. +This was done using Django’s @login_required Decorator in front of the View. +One of the pages which requires a Login is the Domain Administration, if we can load the page without a redirect to the Login page, you’re either already logged in or something went wrong.

+
>>> response = c.get('/domains/')
+>>> print type(response) == HttpResponseRedirect
+True
+
+
+
+
+

Login of a User

+

We’ve decided to write our own Authentification Backend to use with Django. +This will handle all @login_required .authenticate() .login() requests.

+

As we do not have the Authenticating Part which connects Both Mailman and the WebUI we had to hardcode usernames and permissions into the file (auth/restbackend.py) +For more information what we’re planning to implement here take a look at the Acknowledgements.

+
+
+

Note

+

If you’re planning to expand this feel free to use this wonderful resource: +https://docs.djangoproject.com/en/dev/topics/auth/

+
+
+

Once the new middleware is in place we will need to create a user first. At the moment the user is automaticly created upon success of the login procedure.

+
>>> #c.... adduser() #TODO add user
+
+
+

Users will have to use the Login form which is located at (/accounts/login/) in order to authenticate themself. The Login / Logout button is linked in the bottom left corner of each page as well.

+

After each successful login users should be redirected either to the site which they requested before - stored in a GET Value named next - or get the List index. Only if they’ve used a faulty login they should stay on the Login Page to try again.

+
>>> response = c.post('/accounts/login/',
+...                   {"user": "james@example.com",
+...                   "password": "james"})
+
+
+
>>> print type(response) == HttpResponseRedirect
+True
+
+
+

Unfortuneatly the Test Client requires to use the Login directly because it does handle each request seperately. For this reason we have to use the following part in the Tests only to authenticate a user. +Each successful Login will return True and write the users object into the request context, which allows simple checks whether there is a user logged in and what his name is.

+
>>> c.login(username='katie@example.com', password='katie')
+True
+
+
+
+
+

Permissions

+

Our own Auth Backend allows the use of Djangos own Permission Decorator which is

+
@permission_required(NAME_OF_PERMISSION)
+
+

At the moment we’ve installed this for Domain Administration,

+
+
+

Note

+

Please take a look at the ackownledgement to see what is working in this part

+
+
+

Get the Domains page and get redirected because Katie who is logged in doesn’t have the Permission

+
>>> response = c.get('/domains/')
+>>> print type(response) == HttpResponseRedirect
+True
+
+
+

Logout Katie who isn’t a Domain-Owner and Login James who should be allowed to view this page

+
>>> c.logout() #katie
+>>> c.login(username='james@example.com', password='james')
+True
+
+
+

Check that the Page now loads correctly

+
>>> response = c.get('/domains/')
+>>> response.status_code
+200
+
+
+
+
+
+

Pages

+
+

Create a New Domain

+

Domain Administration is called by opening the URL mentioned below. Prequirements like Authorisation and Permissions have been covered before. +Now we do check that the response really does have the correct heading.

+
>>> response = c.get('/domains/')
+>>> print "Domain Index" in response.content
+True
+
+
+

On this page there should be a button which allows to create a new Domain. +If you’re running Mailman for the first time you need to create a Domain before creating Mailinglists. That’s only because each List is Part of a Domain and could not be created without it’s reference.

+
>>> '<li class="mm_new_domain"><a href="/domains/new/">New Domain</a></li>' in response.content
+True
+
+
+
+
For sure the page allowing the creation of a new Domain should open correclty as well
+
>>> response = c.get('/domains/new/')
+>>> response.status_code
+200
+>>> print "Add a new Domain" in response.content #TODO - change heading
+True
+
+
+
+
+

Each Domain has two main Data Parts, most obvious for a mailinglist we do need a mail_host that’s the part behind the @ when getting an email. In addition we offer you this WebUI for configuration, some may have multiple URLs they can use to access the same installation of mailman. For this reason each Mailinglist gets it’s own web_host as well - which doesn’t need to be unique.

+

Testing the Site we do now submit the form we’ve loaded earlier by sending all necessary data in a POST request. The new Domain will be called mail.example.com and available via it’s web_host example.com.

+
+
+

Note

+

If you do want to use web_host filtering in your webUI you need to remember adding the URL to your /etc/hosts - at least for development

+
+
>>> response = c.post('/domains/new/',
+...                   {"mail_host": "mail.example.com",
+...                    "web_host": "example.com",
+...                    "description": "doctest testing domain"})  
+>>> response = c.get('/domains/')
+
+
+
+
+
Then we check that everything went well.
+
>>> response.status_code
+200
+>>> print "doctest testing domain" in response.content
+True
+
+
+
+
+
+
+

Create a New List

+

After creating a Domain you should be able to create new Lists. The Button for doing so is shown on the List index Page which should offer a list of all available (adverrtised) lists.

+
>>> response = c.get('/lists/')
+>>> response.status_code
+200
+>>> "All available Lists" in response.content
+True
+
+
+

The new List creation form is opened by clicking on the Button mentioned above or accessing the page directly

+
>>> response = c.get('/lists/new/')
+>>> response.status_code
+200
+>>> print "Create a new List on" in response.content
+True
+
+
+

Creating a new List we do need to specify at least the below mentioned items. Those were entered using some nice GUI Forms which do only show up available Values or offer you to choose a name which will be checked during validation. +We’re now submitting the form using a POST request and get redirected to the List Index Page

+
>>> response = c.post('/lists/new/',
+...                   {"listname": "new_list1",
+...                    "mail_host": "mail.example.com",
+...                    "list_owner": "james@example.com",
+...                    "description": "doctest testing list",
+...                    "advertised": "True",    
+...                    "languages": "English (USA)"})    
+>>> print type(response) == HttpResponseRedirect
+True
+
+
+

As List index is an overview of all advertised Lists and we’ve choosen to do so we should now see our new List within the overview. HTTP_HOST is added as META Data for the request because we do only want to see Domains which belong to the example.com web_host

+
>>> response = c.get('/lists/',HTTP_HOST='example.com')
+>>> response.status_code
+200
+>>> "New_list1" in response.content
+True
+
+
+
+
+

List Summary

+

List summary is a dashboard for each List. It does have Links to the most useful functions which are only related to that Domain. These include the Values mentioned below. _(function) is used to Translate these to you local language.

+
>>> response = c.get('/lists/new_list1%40mail.example.com/',)    
+>>> response.status_code
+200
+>>> _("Subscribe") in response.content
+True
+>>> _("Archives") in response.content
+True
+>>> _("Edit Options") in response.content
+True
+>>> _("Unsubscribe") in response.content
+True
+
+
+
+
+

Subscriptions

+

The Subscriptions form is found on the below URL. Last part of the Url is one of [None,’subscribe’,’unsubscribe’]

+
>>> url = '/subscriptions/new_list1%40mail.example.com/subscribe'
+>>> response = c.get(url)
+>>> response.status_code
+200
+
+
+

Forms will be prefilled with the Users Email if so. is logged in.

+
>>> "james@example.com" in response.content
+True
+
+
+

Now we can subscribe James and Katie and check that we get redirected to List Summary.

+
>>> response = c.post(url,
+...                   {"email": "james@example.com",
+...                   "real_name": "James Watt",
+...                   "name": "subscribe",
+...                   "fqdn_listname": "new_list1@mail.example.com"})
+>>> response = c.post(url,
+...                   {"email": "katie@example.com",
+...                   "real_name": "Katie Doe",
+...                   "name": "subscribe",
+...                   "fqdn_listname": "new_list1@mail.example.com"})   
+>>> print (_('Subscribed')+' katie@example.com') in response.content
+True
+
+
+

The logged in user (james@example.com) can now modify his own membership using a button which is displayed in list_summary.

+
>>> response = c.get('/lists/new_list1%40mail.example.com/')
+>>> "mm_membership" in response.content
+True
+
+
+

Using the same subscription page we can unsubscribe as well.

+
>>> response = c.post('/subscriptions/new_list1%40mail.example.com/unsubscribe',
+...                   {"email": "katie@example.com",
+...                   "name": "unsubscribe",
+...                   "fqdn_listname": "new_list1@mail.example.com"})
+>>> print (_('Unsubscribed')+' katie@example.com') in response.content
+True
+
+
+
+
+

Mass Subscribe Users (within settings)

+

Another page related to Mass Subscriptions will be available to List Owners as well. This page will allow adding a couple of users to one lists at the same time.

+
>>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/'
+>>> response = c.get(url)
+>>> response.status_code
+200
+
+
+

Try mass subscribing the users 'liza@example.com‘ and +'george@example.com‘. Each address should be provided on a separate +line so add ‘n’ between the names to indicate that this was done +(we’re on a Linux machine which is why the letter ‘n’ was used and +the double ‘’ instead of a single one is to escape the string +parsing of Python).

+
>>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/'
+>>> response = c.post(url,
+...                   {"emails": "liza@example.com\ngeorge@example.com"})
+
+
+

If everything was successful, we shall get a positive response from +the page. We’ll check that this was the case.

+
>>> print _("The mass subscription was successful.") in response.content
+True
+
+
+
+
+

Change the Memebership Settings

+

Now let’s go to the membership settings page. Once we go there we +should get a list of all the available lists.

+
>>> response = c.get('/membership_settings/new_list1%40mail.example.com/')
+>>> print "Membership Settings" in response.content
+True
+
+
+

Select the list 'new_list1@example.com‘.

+
>>> response = c.get('/membership_settings/new_list1%40mail.example.com/')
+>>> print ("Membership Settings" in response.content) and ("for new_list1@mail.example.com" in response.content)
+True
+
+
+
+

Note

+

This page relies on the Middleware connecting the Django Project with Mailman - see acknowledgements

+
+
+
+

Delete the List

+

Finally, let’s delete the list. +We start by checking that the list is really there (for reference).

+
>>> response = c.get('/lists/',HTTP_HOST='example.com')
+>>> print "New_list1" in response.content
+True
+
+
+
+
Trying to delete the List we have to confirm this action
+
>>> response = c.get('/delete_list/new_list1%40mail.example.com/',)
+>>> print "Please confirm" in response.content
+True
+
+
+
+
Confirmed by pressing the button which requests the same page using POST
+
>>> response = c.post('/delete_list/new_list1%40mail.example.com/',)
+
+
+
+
...and check that it’s been deleted.
+
>>> response = c.get('/lists/',HTTP_HOST='example.com')
+>>> print "new_list1%40example.com" in response.content
+False
+
+
+
+
+
+
+
+

Finishing Test

+
+
Don’t forget to remove the test object after testing all functions
+
>>> teardown_mm(testobject)    
+
+
+
+
+
+
+

Running the tests explained above.

+

We’ve added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site.

+

Run the following in the Site Directory

+
+
$ python manage.py test
+
+
+
+
+

Note

+

Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it’s own mailman temporily.

+
+
+
+

Accessing the REST Client for Testing

+

If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it’s current Directory within the Django Site Directory.

+
+
from settings import API_USER, API_PASS
+from mailman.client import Client
+c = Client('http://localhost:8001/3.0', API_USER, API_PASS)
+#DEBUG: Python Session
+
+
+
+
+
+ + +
+
+
+ +
+
+ + + + \ No newline at end of file diff --git a/src/mailman_django/doc/acknowledgements.rst b/src/mailman_django/doc/acknowledgements.rst new file mode 100644 index 0000000..4abdd73 --- /dev/null +++ b/src/mailman_django/doc/acknowledgements.rst @@ -0,0 +1,37 @@ +Acknowledgements +================ + +Test Server +----------- + +We're proud to provide you a development server which is sponsered by XXX #Todo +Feel free to change anything you like, we can simply rest the DB from Time to Time. + +Missing Functionality +--------------------- + +* Delete Domain + * missing in REST + * implemented in mailman3 a8 + +* Show a List of all subscribed users + +ACL +--- + +* Middleware + + We don't have the Middleware which is required to work with users and it's permissions yet. For this reason we had to tweak some functions to be a hardcoded Demo object. + + * Login Check + At the moment we're using a hardcoded List of allowed usernames and Passwords which are all stored in Plain within the AuthBackends Source File. + * has_perm Decorator + As we don't have a middleware to check for users and it's permissions we do only use one permission at the moment. The permission site domain_admin is hardcoded to user.username == "james@example.com" + + + +Ideas +----- + +* ContactPage +* diff --git a/src/mailman_django/doc/conf.py b/src/mailman_django/doc/conf.py new file mode 100644 index 0000000..c67bc2b --- /dev/null +++ b/src/mailman_django/doc/conf.py @@ -0,0 +1,260 @@ +# -*- coding: utf-8 -*- +# +# mailman_django documentation build configuration file, created by +# sphinx-quickstart on Wed Aug 17 15:43:10 2011. +# +# This file is execfile()d with the current directory set to its containing dir. +# +# Note that not all possible configuration values are present in this +# autogenerated file. +# +# All configuration values have a default; values that are commented out +# serve to show the default. + +import sys, os + +#import the source code directory into Python Path for use with Auto Module +APP_ROOT = os.path.dirname(__file__) +sys.path.insert(0, os.path.split(APP_ROOT)[0]) + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. +#sys.path.insert(0, os.path.abspath('.')) + +# -- General configuration ----------------------------------------------------- + +# If your documentation needs a minimal Sphinx version, state it here. +#needs_sphinx = '1.0' + +# Add any Sphinx extension module names here, as strings. They can be extensions +# coming with Sphinx (named 'sphinx.ext.*') or your custom ones. +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.viewcode'] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# The suffix of source filenames. +source_suffix = '.rst' + +# The encoding of source files. +#source_encoding = 'utf-8-sig' + +# The master toctree document. +master_doc = 'index' + +# General information about the project. +project = u'mailman_django' +copyright = u'2011, Benedict Stein' + +# The version info for the project you're documenting, acts as replacement for +# |version| and |release|, also used in various other places throughout the +# built documents. +# +# The short X.Y version. +version = '0.1' +# The full version, including alpha/beta/rc tags. +release = '0.1' + +# The language for content autogenerated by Sphinx. Refer to documentation +# for a list of supported languages. +#language = None + +# There are two options for replacing |today|: either, you set today to some +# non-false value, then it is used: +#today = '' +# Else, today_fmt is used as the format for a strftime call. +#today_fmt = '%B %d, %Y' + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +exclude_patterns = ['_build'] + +# The reST default role (used for this markup: `text`) to use for all documents. +#default_role = None + +# If true, '()' will be appended to :func: etc. cross-reference text. +#add_function_parentheses = True + +# If true, the current module name will be prepended to all description +# unit titles (such as .. function::). +#add_module_names = True + +# If true, sectionauthor and moduleauthor directives will be shown in the +# output. They are ignored by default. +#show_authors = False + +# The name of the Pygments (syntax highlighting) style to use. +pygments_style = 'sphinx' + +# A list of ignored prefixes for module index sorting. +#modindex_common_prefix = [] + + +# -- Options for HTML output --------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +html_theme = 'default' + +# Theme options are theme-specific and customize the look and feel of a theme +# further. For a list of options available for each theme, see the +# documentation. +#html_theme_options = {} + +# Add any paths that contain custom themes here, relative to this directory. +#html_theme_path = [] + +# The name for this set of Sphinx documents. If None, it defaults to +# " v documentation". +#html_title = None + +# A shorter title for the navigation bar. Default is the same as html_title. +#html_short_title = None + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +#html_logo = None + +# The name of an image file (within the static path) to use as favicon of the +# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 +# pixels large. +#html_favicon = None + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] + +# If not '', a 'Last updated on:' timestamp is inserted at every page bottom, +# using the given strftime format. +#html_last_updated_fmt = '%b %d, %Y' + +# If true, SmartyPants will be used to convert quotes and dashes to +# typographically correct entities. +#html_use_smartypants = True + +# Custom sidebar templates, maps document names to template names. +#html_sidebars = {} + +# Additional templates that should be rendered to pages, maps page names to +# template names. +#html_additional_pages = {} + +# If false, no module index is generated. +#html_domain_indices = True + +# If false, no index is generated. +#html_use_index = True + +# If true, the index is split into individual pages for each letter. +#html_split_index = False + +# If true, links to the reST sources are added to the pages. +#html_show_sourcelink = True + +# If true, "Created using Sphinx" is shown in the HTML footer. Default is True. +#html_show_sphinx = True + +# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. +#html_show_copyright = True + +# If true, an OpenSearch description file will be output, and all pages will +# contain a tag referring to it. The value of this option must be the +# base URL from which the finished HTML is served. +#html_use_opensearch = '' + +# This is the file name suffix for HTML files (e.g. ".xhtml"). +#html_file_suffix = None + +# Output file base name for HTML help builder. +htmlhelp_basename = 'mailman_djangodoc' + + +# -- Options for LaTeX output -------------------------------------------------- + +# The paper size ('letter' or 'a4'). +#latex_paper_size = 'letter' + +# The font size ('10pt', '11pt' or '12pt'). +#latex_font_size = '10pt' + +# Grouping the document tree into LaTeX files. List of tuples +# (source start file, target name, title, author, documentclass [howto/manual]). +latex_documents = [ + ('index', 'mailman_django.tex', u'mailman\\_django Documentation', + u'Benedict Stein', 'manual'), +] + +# The name of an image file (relative to this directory) to place at the top of +# the title page. +#latex_logo = None + +# For "manual" documents, if this is true, then toplevel headings are parts, +# not chapters. +#latex_use_parts = False + +# If true, show page references after internal links. +#latex_show_pagerefs = False + +# If true, show URL addresses after external links. +#latex_show_urls = False + +# Additional stuff for the LaTeX preamble. +#latex_preamble = '' + +# Documents to append as an appendix to all manuals. +#latex_appendices = [] + +# If false, no module index is generated. +#latex_domain_indices = True + + +# -- Options for manual page output -------------------------------------------- + +# One entry per manual page. List of tuples +# (source start file, name, description, authors, manual section). +man_pages = [ + ('index', 'mailman_django', u'mailman_django Documentation', + [u'Benedict Stein'], 1) +] + + +# -- Options for Epub output --------------------------------------------------- + +# Bibliographic Dublin Core info. +epub_title = u'mailman_django' +epub_author = u'Benedict Stein' +epub_publisher = u'Benedict Stein' +epub_copyright = u'2011, Benedict Stein' + +# The language of the text. It defaults to the language option +# or en if the language is not set. +#epub_language = '' + +# The scheme of the identifier. Typical schemes are ISBN or URL. +#epub_scheme = '' + +# The unique identifier of the text. This can be a ISBN number +# or the project homepage. +#epub_identifier = '' + +# A unique identification for the text. +#epub_uid = '' + +# HTML files that should be inserted before the pages created by sphinx. +# The format is a list of tuples containing the path and title. +#epub_pre_files = [] + +# HTML files shat should be inserted after the pages created by sphinx. +# The format is a list of tuples containing the path and title. +#epub_post_files = [] + +# A list of files that should not be packed into the epub file. +#epub_exclude_files = [] + +# The depth of the table of contents in toc.ncx. +#epub_tocdepth = 3 + +# Allow duplicate toc entries. +#epub_tocdup = True diff --git a/src/mailman_django/doc/index.rst b/src/mailman_django/doc/index.rst new file mode 100644 index 0000000..a241ad8 --- /dev/null +++ b/src/mailman_django/doc/index.rst @@ -0,0 +1,19 @@ +.. mailman_django documentation master file, created by + sphinx-quickstart on Wed Aug 17 15:43:10 2011. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to mailman_django's documentation! +========================================== + +Contents: + +.. toctree:: + :maxdepth: 2 + + setup.rst + using.rst + acknowledgements.rst + license.rst + +* :ref:`search` diff --git a/src/mailman_django/doc/license.rst b/src/mailman_django/doc/license.rst new file mode 100644 index 0000000..9d427c5 --- /dev/null +++ b/src/mailman_django/doc/license.rst @@ -0,0 +1,34 @@ +Contributions: +============== +Mailman is licensed unter *GPL* +----------------------------- +Copyright (C) 1998-2010 by the Free Software Foundation, Inc. + +This file is part of GNU Mailman. + +GNU Mailman 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. + +GNU Mailman 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 +GNU Mailman. If not, see . + +RRZE Icon Set +------------- + +**CreativeCommons Licence** + +The RRZE Icon Set is licenced under a Creative Commons Licence. +Please see the website for the current licence text. + +More information about the Project could be found here: +http://rrze-icon-set.berlios.de/licence.html + +Special thanks to: +* Franziska Sponsel (created additional Icons specially for our Project) diff --git a/src/mailman_django/doc/setup.rst b/src/mailman_django/doc/setup.rst new file mode 100644 index 0000000..70c7768 --- /dev/null +++ b/src/mailman_django/doc/setup.rst @@ -0,0 +1,187 @@ +Installation +============ + +Mailman3 - a7 +------------- + +* Check Dependecys + .. note:: + This might differ on different systems - I was testing Ubuntu 11.04 natty and needed to install Postfix before running the installation. +* Download or branch Mailman3a7 from http://launchpad.net/mailman/3.0/3.0.0a7/+download/mailman-3.0.0a7.tar.gz and unpack it. +* Change into the unpacked DIR which might be named "mailman-3.0.0a7" + .. note:: + Please be aware that the following steps only work if you're really in that DIR. If you consider adding a subfolder name to the commands those woun't work ! +* Run the Installation from a Shell (not Python) + + .. code-block:: bash + + $ python bootstrap.py + $ bin/buildout + +* Vertify that everything was setup correclty and your branch fullfills the version requirements by running it's own test module + + .. code-block:: bash + + $ bin/test + +* Now you're able to run mailman using + + .. code-block:: bash + + $ bin/mailman + +Mailman Client / REST Api +------------------------- + +Next thing you need to do is installing the Plugin used for communication with non-mailman-code parts like our WebUI. Within the Client Branch we've put both, Classes to access the Core which are run as a Plugin and some Python Bindings. +The Python Bindings were used later on within our Django Application to access the Server. Failing to install the Client would result in an offline version of WebUI + +Once again start by branching the code which is on Launchpad + + .. code-block:: bash + + $ bzr branch lp:mailman.client + +.. note:: + We've successfully tested our functionality with Revision 16 - In case the Client gets updated which it surely will in future we can't guarentee that it is compatible anymore. + +As you only want to run the Client and not modify it's code you're fine with running the install command from within the directory. At the moment this requires Sudo Priveledges as files will copied to the Python Site-Packages Directory which is available to all users. + + .. code-block:: bash + + $ sudo python setup.py install + +.. note:: + If you want to change parts of the Client you can use the development option which will create a Symlink instead of a Hardcopy of all files: + + .. code-block:: bash + + $ sudo python setup.py develop + +All changes will apply once you restart Mailman itself. + +Django 1.3 +---------- +During our development we started a Django Site based on the 1.2 Version which is included into Ubuntu's repositorys. This made the installation easy but we ended up having some points which would get a much better code when using some elements introducing in 1.3. +As Mailman is supposed to be long-time stable - or however you call it - we decided that we should stick to the latest stable version right away. For this reason you're required to install Django 1.3+ which is descriped on their Website. (https://www.djangoproject.com/download/) + +.. note:: + Please be Aware that it's not recommended to run both 1.2 and 1.3 at the same time + +In Django you've got 3 different levels of data. +- Django Installation Files +- Django Site +- Django Apps +usually you don't see the Installation as it's hidden somewhere within the System and the Apps are simply included into The Site Directory. +As we wanted to have the possibility to include the App into any Django Site which might already exist we decided to keep Site and App seperated. + +During GSoC we've used different branches for this: +- lp:mailmanwebgsoc2011 +- lp:mailmanwebgsoc2011/django-site-0.1 + +Django Site Installation +------------------------ + +We've created this branch for quick development - everyone is free to use his own Django site, but this one already includes a couple of modifications we've made that will allow running the Development Server just a few seconds after Branching both Site and App. + +As far as I know at the moment we've made the following alignments: (All of these are in the settings.py file of the Django Site) + + REST_SERVER = 'localhost:8001' + API_USER = 'restadmin' + API_PASS = 'restpass' + + .. note:: + These are the default values used by the Mailman Client we've installed earlier. Feel free to modify the password and username if you need to. + +MAILMAN_TEST_BINDIR = '/home/benste/Projects/Gsoc_mailman/mailman-3.0.0a7/bin' +#/home/florian/Development/mailman/bin' + + .. note:: Running the test modules requires to launch a special version of mailman with it's own testing DB otherwise you'd destroy you're sites content during testing. This Path needs to point to YOUR own installation of mailman. + +MAILMAN_THEME = "default" + + .. note:: + We decided to allow simple Appearance Modifications, to use a custom CSS you could simply add a Directory within the media directory of the app and Link it's name here. All HTML Pages will use the Styles from the Directory mentioned in here + +PROJECT_PATH = os.path.abspath(os.path.dirname(__file__)) +MEDIA_ROOT = os.path.join(os.path.split(PROJECT_PATH)[0], "mailman_django/media/mailman_django/") + .. note:: + Absolute path to the directory that holds media. + Example: "/home/media/media.lawrence.com/" + +MEDIA_URL = '/mailman_media/' + + .. note:: + URL that handles the media served from MEDIA_ROOT. Make sure to use a trailing slash if there is a path component (optional in other cases).Examples: "http://media.lawrence.com", "http://example.com/media/" + +AUTHENTICATION_BACKENDS = ( + 'mailman_django.auth.restbackend.RESTBackend', + 'django.contrib.auth.backends.ModelBackend' + ) + + .. note:: + This creates a connection in between Djangos Login and Permission Decorators which we use for authentification and a custom Backend which we created in Preparation to work together with the REST API or an upcoming Middleware. + You need to keep the Django one for testing fallback. + +TEMPLATE_CONTEXT_PROCESSORS=( + "django.contrib.auth.context_processors.auth", + "django.core.context_processors.debug", + "django.core.context_processors.i18n", + "django.core.context_processors.media", + "django.core.context_processors.csrf", + "django.contrib.messages.context_processors.messages", + "mailman_django.context_processors.lists_of_domain", + "mailman_django.context_processors.render_MAILMAN_THEME", + "mailman_django.context_processors.extend_ajax" + + .. note:: + We're using Context Processors to easily render value which we need in nearly every view. + +ROOT_URLCONF = 'mailman_django.urls' + + .. note:: + This is where our URL Config is - if you run your own site with other Apps as well you might want to adjust this to your urls.py which includes our file. + +TEMPLATE_DIRS = ( + os.path.join(PROJECT_PATH, "mailman_django/templates"), + + .. note:: + Adds our own Templates + +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.admin', + 'mailman_django', + + .. note:: + Makes sure that Django knows about our directory as an App and creates needed Tables () when running + + .. code-block:: bash + + $ python manage.py syncdb + +Now that you know about all these you might start the development server. As usual in Django this is done by running + + .. code-block:: bash + + $ python manage.py runserver + +within the Django Site Directory - as usual the default address is localhost:8000 +Of course it will only be able to start once our app is in place as well. + +Django Application +------------------ +First get the files, and make sure you paste them into your Project directory and adjust it's name to the appropriate configuration you've made earlier in the Django Site. Remeber our default is mailman_django + + .. code-block:: bash + + $ bzr branch lp:mailmanwebgsoc2011 + +.. note:: + We've tested Revision 172 + +.. note:: + We're planning to ease up installation by creating an egg diff --git a/src/mailman_django/doc/using.rst b/src/mailman_django/doc/using.rst new file mode 100644 index 0000000..94f842d --- /dev/null +++ b/src/mailman_django/doc/using.rst @@ -0,0 +1,29 @@ +Using the Django App - Developers Resource +========================================== + +.. automodule:: tests.tests + +Running the tests explained above. +---------------------------------- +We've added our own test-suite to the Django App which will be executed together with the Django Test. Last thing you should do is running these tests. If they fail you did something wrong, if they succeed you can enjoy the site. + +Run the following in the Site Directory + + .. code-block:: bash + + $ python manage.py test + +.. note:: + Please be aware that we want to run a development instance of mailman you need to stop the stable one first and the tests will open it's own mailman temporily. + +Accessing the REST Client for Testing +------------------------------------- + +If you want to access the Functions, which we use in the views, directly feel free to run the following block of code within a Shell which does have it's current Directory within the Django Site Directory. + + .. code-block:: python + + from settings import API_USER, API_PASS + from mailman.client import Client + c = Client('http://localhost:8001/3.0', API_USER, API_PASS) + #DEBUG: Python Session diff --git a/src/mailman_django/fieldset_forms.py b/src/mailman_django/fieldset_forms.py new file mode 100644 index 0000000..3f0c773 --- /dev/null +++ b/src/mailman_django/fieldset_forms.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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. +# +# GNU Mailman 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 +# GNU Mailman. If not, see . + +from django.forms import Form +from django.utils import safestring +from django.forms.forms import BoundField +from django.forms.util import ErrorList + +class FieldsetError(Exception): + pass + +class FieldsetForm(Form): + """ + Extends a standard form and adds fieldsets and the possibililty + to use as_div for the automatic rendering of form fields. Inspired + by WTForm. + """ + + def __init__(self, *args, **kwargs): + """Initialize a FormsetField.""" + super(FieldsetForm, self).__init__(*args, **kwargs) + # check if the user specified the wished layout of the form + if hasattr(self, 'Meta') and hasattr(self.Meta, 'layout'): + msg = "Meta.layout must be iterable" + assert hasattr(self.Meta.layout, '__getitem__'), msg + self.layout = self.Meta.layout + else: + self.layout = [["All"]] + self.layout[0][1:]=(self.fields.keys()) + + def as_div(self): + """Render the form as a set of
s.""" + output = "" + #Adding Errors + try: output += str(self.errors["NON_FIELD_ERRORS"]) + except: pass + #create the fieldsets + for index in range(len(self.layout)): + output += self.create_fieldset(self.layout[index]) + return safestring.mark_safe(output) + + def create_fieldset(self, field): + """ + Create a
around a number of field instances. + field[0] is the name of the fieldset and field[1:] the fields + it should include. + """ + # Create the divs in each fieldset by calling create_divs. + return u'
%s%s
' % (field[0], + self.create_divs(field[1:])) + + def create_divs(self, fields): + """Create a
for each field.""" + output = "" + for field in fields: + try: + # create a field instance for the bound field + field_instance = self.fields[field] + except KeyError: + # could not create the instance so throw an exception + # msg on a separate line since the line got too long + # otherwise + msg = "Could not resolve form field '%s'." % field + raise FieldsetError(msg) + # create a bound field containing all the necessary fields + # from the form + bound_field = BoundField(self, field_instance, field) + output += '
%(label)s%(help_text)s%(errors)s%(field)s
\n' % \ + {'class': bound_field.name, + 'label': bound_field.label, + 'help_text': bound_field.help_text, + 'errors': bound_field.errors, + 'field': unicode(bound_field)} + return output diff --git a/src/mailman_django/forms.py b/src/mailman_django/forms.py new file mode 100644 index 0000000..1c74727 --- /dev/null +++ b/src/mailman_django/forms.py @@ -0,0 +1,1032 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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. +# +# GNU Mailman 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 +# GNU Mailman. If not, see . + +from django import forms +from django.core.validators import validate_email +from django.utils.translation import gettext as _ +from fieldset_forms import FieldsetForm + +#Fieldsets for use within the views +class DomainNew(FieldsetForm): + """ + Form field to add a new domain + """ + mail_host = forms.CharField( + label = _('Mail Host'), + error_messages = {'required': _('Please a domain name'), + 'invalid': _('Please enter a valid domain name.')}, + required = True + ) + web_host = forms.CharField( + label = _('Web Host'), + error_messages = {'required': _('Please a domain name'), + 'invalid': _('Please enter a valid domain name.')}, + required = True + ) + description = forms.CharField( + label = _('Description'), + required = False + ) + def clean_mail_host(self): + mail_host = self.cleaned_data['mail_host'] + try: validate_email('mail@' + mail_host) + except: raise forms.ValidationError(_("Please enter a valid Mail Host (mail.example.net)")) + return mail_host + + def clean_web_host(self): + web_host = self.cleaned_data['web_host'] + try: + validate_email('mail@' + web_host) + except: + raise forms.ValidationError(_("Please enter a valid Web Host (example.net)")) + return web_host + + class Meta: + """ + Class to handle the automatic insertion of fieldsets and divs. + + To use it: add a list for each wished fieldset. The first item in + the list should be the wished name of the fieldset, the following + the fields that should be included in the fieldset. + """ + layout = [["Please enter Details","mail_host", "web_host", "description",]] + + +class ListNew(FieldsetForm): + """ + Form fields to add a new list. Languages are hard coded which should + be replaced by a REST lookup of available languages. + """ + languages = (("Arabic", "Arabic"), + ("Catalan", "Catalan"), + ("Chinese (China)", "Chinese (China)"), + ("Chinese (Taiwan)", "Chinese (Taiwan)"), + ("Croatian", "Croatian"), + ("Czech", "Czech"), + ("Danish", "Danish"), + ("Dutch", "Dutch"), + ("English (USA)", "English (USA)"), + ("Estonian", "Estonian"), + ("Estonian", "Estonian"), + ("Euskara", "Euskara"), + ("Finnish", "Finnish"), + ("French", "French"), + ("German", "German"), + ("Hungarian", "Hungarian"), + ("Interlingua", "Interlingua"), + ("Italian", "Italian"), + ("Japanese", "Japanese"), + ("Korean", "Korean"), + ("Lithuanian", "Lithuanian"), + ("Norwegian", "Norwegian"), + ("Polish", "Polish"), + ("Portuguese", "Portuguese"), + ("Portuguese (Brazil)", "Portuguese (Brazil)"), + ("Romanian", "Romanian"), + ("Russian", "Russian"), + ("Serbian", "Serbian"), + ("Slovenian", "Slovenian"), + ("Spanish (Spain)", "Spanish (Spain)"), + ("Swedish", "Swedish"), + ("Turkish", "Turkish"), + ("Ukrainian", "Ukrainian"), + ("Vietnamese", "Vietnamese")) + listname = forms.CharField( + label = _('List Name'), + required = True, + error_messages = {'required': _('Please enter a name for your list.'), + 'invalid': _('Please enter a valid list name.')} + ) + list_owner = forms.EmailField( + label = _('Inital list owner address'), + error_messages = { + 'required': _("Please enter the list owner's email address."), + }, + required = True) + advertised = forms.ChoiceField( + widget = forms.RadioSelect(), + label = _('List Type'), + error_messages = { + 'required': _("Please choose a list type."), + }, + required = True, + choices = ( + (True, _("Advertise this list in List Index")), + (False, _("Hide this list in Liste Index")), + )) + + languages = forms.MultipleChoiceField( + label = _('Language'), + widget = forms.CheckboxSelectMultiple(), + choices = languages, + required = False) + + description = forms.CharField( + label = _('Description'), + required = True) + + mail_host = forms.ChoiceField() + + def __init__(self,domain_choices, *args, **kwargs): + super(ListNew, self).__init__(*args, **kwargs) + self.fields["mail_host"] = forms.ChoiceField( + widget = forms.Select(), + label = _('Mail Host'), + required = True, + choices = domain_choices, + error_messages = {'required': _("Choose an existing Domain."), + 'invalid':"ERROR-todo_forms.py" }#todo + ) + + def clean_listname(self): + try: + validate_email(self.cleaned_data['listname']+'@example.net') + except: + raise forms.ValidationError(_("Please enter a valid listname (my-list-1)")) + return self.cleaned_data['listname'] + + class Meta: + """ + Class to handle the automatic insertion of fieldsets and divs. + + To use it: add a list for each wished fieldset. The first item in + the list should be the wished name of the fieldset, the following + the fields that should be included in the fieldset. + """ + layout = [["List Details", "listname", "mail_host", "list_owner", "description", "advertised"], + ["Available Languages", "languages"]] + +class ListSubscribe(FieldsetForm): + """Form fields to join an existing list. + """ + fqdn_listname = forms.EmailField( + label = '',#_('List Name'), + widget = forms.HiddenInput(), + error_messages = { + 'required': _('Please enter the mailing list address.'), + 'invalid': _('Please enter a valid email address.') + }) + email = forms.EmailField( + label = _('Your email address'), + error_messages = {'required': _('Please enter an email address.'), + 'invalid': _('Please enter a valid email address.')}) + real_name = forms.CharField( + label = _('Your name'), + required = False, + ) + name = forms.CharField( + label = '', #Name of action + widget = forms.HiddenInput(), + initial = 'subscribe', + ) + + # should add password! TODO + class Meta: + """ + Class to handle the automatic insertion of fieldsets and divs. + + To use it: add a list for each wished fieldset. The first item in + the list should be the wished name of the fieldset, the following + the fields that should be included in the fieldset. + """ + layout = [["Subscribe", "email","real_name","name","fqdn_listname"]] + +class ListUnsubscribe(FieldsetForm): + """Form fields to leave an existing list. + """ + fqdn_listname = forms.EmailField( + label = '',#_('List Name'), + widget = forms.HiddenInput(), + error_messages = { + 'required': _('Please enter the mailing list address.'), + 'invalid': _('Please enter a valid email address.') + } + ) + email = forms.EmailField( + label = _('Your email address'), + error_messages = { + 'required': _('Please enter an email address.'), + 'invalid': _('Please enter a valid email address.') + } + ) + name = forms.CharField( + label = '', #Name of action + widget = forms.HiddenInput(), + initial = 'unsubscribe', + ) + class Meta: + """ + Class to handle the automatic insertion of fieldsets and divs. + + To use it: add a list for each wished fieldset. The first item in + the list should be the wished name of the fieldset, the following + the fields that should be included in the fieldset. + """ + layout = [["Unsubscribe", "email","name","fqdn_listname"]] + + # should at one point add the password to be required as well! #TODO +class ListSettings(FieldsetForm): + """Form fields dealing with the list settings. + """ + choices = ((True, 'Yes'), (False, 'No'),) + list_name = forms.CharField( + label = _('List Name'), + required = False, + ) + host_name = forms.CharField( + label = _('Domain host name'), + required = False, + ) + fqdn_listname = forms.CharField( + label = _('Fqdn listname'), + required = False, + ) + #id = forms.IntegerField( # this should probably not be changeable... + #label = _('ID'), + #initial = 9, + #widget = forms.HiddenInput(), + #required = False, + #error_messages = { + #'invalid': _('Please provide an integer ID.') + #} + #) + list_id = forms.CharField( # this should probably not be changeable... + label = _('List ID'), + required = False, + ) + http_etag = forms.CharField( + label = _('Http etag'), + required = False, + ) + include_list_post_header = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Include list post header'), + ) + include_rfc2369_headers = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Include RFC2369 headers'), + ) + autorespond_owner = forms.BooleanField( + label = _('Autorespond owner'), + ) + autoresponse_owner_text = forms.CharField( + label = _('Autoresponse owner text'), + ) + autorespond_postings = forms.BooleanField( + label = _('Autorespond postings'), + ) + autoresponse_postings_text = forms.CharField( + label = _('Autoresponse postings text'), + ) + autorespond_requests = forms.BooleanField( + label = _('Autorespond requests'), + ) + autoresponse_request_text = forms.CharField( + label = _('Autoresponse request text'), + ) + autoresponse_grace_period = forms.CharField(#TODO - either different type or different Validator ! + label = _('Autoresponse grace period'), + ) + bounces_address = forms.EmailField( + label = _('Bounces Address'), + required = False, + ) + #ban_list = forms.CharField( + #label = _('Ban list'), + #widget = forms.Textarea + #) + #bounce_info_stale_after = forms.CharField( + #label = _('Bounce info stale after'), + #) + #bounce_matching_headers = forms.CharField( + #label = _('Bounce matching headers'), + #) + #bounce_notify_owner_on_disable = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Bounce notify owner on disable'), + #) + #bounce_notify_owner_on_removal = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Bounce notify owner on removal'), + #) + #bounce_processing = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Bounce processing'), + #) + #bounce_score_threshold = forms.IntegerField( + #label = _('Bounce score threshold'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #bounce_score_threshold = forms.IntegerField( + #label = _('Bounce score threshold'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #bounce_unrecognized_goes_to_list_owner = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Bounce unrecognized goes to list owner'), + #) + #bounce_you_are_disabled_warnings = forms.IntegerField( + #label = _('Bounce you are disabled warnings'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #bounce_you_are_disabled_warnings_interval = forms.CharField( + #label = _('Bounce you are disabled warnings interval'), + #) + #archive = forms.BooleanField( + #widget = forms.RadioSelect(choices=choices), + #required = False, + #label = _('Archive'), + #) + #archive_private = forms.BooleanField( + #widget = forms.RadioSelect(choices=choices), + #required = False, + #label = _('Private Archive'), + #) + advertised = forms.ChoiceField( + widget = forms.RadioSelect(), + label = _('List Type (advertised)'), + error_messages = { + 'required': _("Please choose a list type."), + }, + required = True, + choices = ( + (True, _("Advertise this list in List Index")), + (False, _("Hide this list in Liste Index")), + )) + filter_content = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Filter content'), + ) + collapse_alternatives = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Collapse alternatives'), + ) + convert_html_to_plaintext = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Convert html to plaintext'), + ) + #default_member_moderation = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Default member moderation'), + #) + description = forms.CharField( + label = _('Description'), + widget = forms.Textarea() + ) + #digest_footer = forms.CharField( + #label = _('Digest footer'), + #) + #digest_header = forms.CharField( + #label = _('Digest header'), + #) + #digest_is_default = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Digest is default'), + #) + #digest_send_periodic = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Digest send periodic'), + #) + digest_size_threshold = forms.DecimalField( + label = _('Digest size threshold'), + ) + #digest_volume_frequency = forms.CharField( + #label = _('Digest volume frequency'), + #) + #digestable = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Digestable'), + #) + digest_last_sent_at = forms.IntegerField( + label = _('Digest last sent at'), + error_messages = { + 'invalid': _('Please provide an integer.'), + }, + required = False, + ) + #discard_these_nonmembers = forms.CharField( + #label = _('Discard these nonmembers'), + #widget = forms.Textarea + #) + #emergency = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Emergency'), + #) + #encode_ascii_prefixes = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Encode ascii prefixes'), + #) + #first_strip_reply_to = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('First strip reply to'), + #) + #forward_auto_discards = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Forward auto discards'), + #) + #gateway_to_mail = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Gateway to mail'), + #) + #gateway_to_news = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Gateway to news'), + #) + #generic_nonmember_action = forms.IntegerField( + #label = _('Generic nonmember action'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #goodbye_msg = forms.CharField( + #label = _('Goodbye message'), + #) + #header_matches = forms.CharField( + #label = _('Header matches'), + #widget = forms.Textarea + #) + #hold_these_nonmembers = forms.CharField( + #label = _('Hold these nonmembers'), + #widget = forms.Textarea + #) + #info = forms.CharField( + #label = _('Information'), + #) + #linked_newsgroup = forms.CharField( + #label = _('Linked newsgroup'), + #) + #max_days_to_hold = forms.IntegerField( + #label = _('Maximum days to hold'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #max_message_size = forms.IntegerField( + #label = _('Maximum message size'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #max_num_recipients = forms.IntegerField( + #label = _('Maximum number of recipients'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #member_moderation_action = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Member moderation action'), + #) + #member_moderation_notice = forms.CharField( + #label = _('Member moderation notice'), + #) + #mime_is_default_digest = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Mime is default digest'), + #) + #moderator_password = forms.CharField( + #label = _('Moderator password'), + #widget = forms.PasswordInput, + #error_messages = {'required': _('Please enter your password.'), + #'invalid': _('Please enter a valid password.')}, + #) + #msg_footer = forms.CharField( + #label = _('Message footer'), + #) + #msg_header = forms.CharField( + #label = _('Message header'), + #) + #new_member_options = forms.IntegerField( + #label = _('New member options'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #news_moderation = forms.CharField( + #label = _('News moderation'), + #) + #news_prefix_subject_too = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('News prefix subject too'), + #) + #nntp_host = forms.CharField( + #label = _('Nntp host'), + #) + #nondigestable = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Nondigestable'), + #) + #nonmember_rejection_notice = forms.CharField( + #label = _('Nonmember rejection notice'), + #) + next_digest_number = forms.IntegerField( + label = _('Next digest number'), + error_messages = { + 'invalid': _('Please provide an integer.'), + }, + required = False, + ) + no_reply_address = forms.EmailField( + label = _('No reply address'), + required = False, + ) + #obscure_addresses = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Obscure addresses'), + #) + #personalize = forms.CharField( + #label = _('Personalize'), + #) + pipeline = forms.CharField( + label = _('Pipeline'), + ) + post_id = forms.IntegerField( + label = _('Post ID'), + error_messages = { + 'invalid': _('Please provide an integer.'), + }, + required = False, + ) + #preferred_language = forms.CharField( + #label = _('Preferred language'), + #) + #private_roster = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Private roster'), + #) + real_name = forms.CharField( + label = _('Real name'), + ) + #reject_these_nonmembers = forms.CharField( + #label = _('Reject these nonmembers'), + #widget = forms.Textarea + #) + #reply_goes_to_list = forms.CharField( + #label = _('Reply goes to list'), + #) + #reply_to_address = forms.EmailField( + #label = _('Reply to address'), + #) + #require_explicit_destination = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Require explicit destination'), + #) + #respond_to_post_requests = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Respond to post requests'), + #) + request_address = forms.EmailField( + label = _('Request address'), + required = False, + ) + #scrub_nondigest = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Scrub nondigest'), + #) + #send_goodbye_msg = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Send goodbye message'), + #) + #send_reminders = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Send reminders'), + #) + #send_welcome_msg = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Send welcome message'), + #) + #start_chain = forms.CharField( + #label = _('Start chain'), + #) + #subject_prefix = forms.CharField( + #label = _('Subject prefix'), + #) + #subscribe_auto_approval = forms.CharField( + #label = _('Subscribe auto approval'), + #widget = forms.Textarea + #) + #subscribe_policy = forms.IntegerField( + #label = _('Subscribe policy'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + scheme = forms.CharField( + label = _('Scheme'), + required = False, + ) + #topics = forms.CharField( + #label = _('Topics'), + #widget = forms.Textarea + #) + #topics_bodylines_limit = forms.IntegerField( + #label = _('Topics bodylines limit'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #topics_enabled = forms.BooleanField( + #widget = forms.RadioSelect(choices = choices), + #required = False, + #label = _('Topics enabled'), + #) + #unsubscribe_policy = forms.IntegerField( + #label = _('Unsubscribe policy'), + #error_messages = { + #'invalid': _('Please provide an integer.') + #} + #) + #welcome_msg = forms.CharField( + #label = _('Welcome message'), + #) + volume = forms.IntegerField( + label = _('Volume'), + required = False, + ) + web_host = forms.CharField( + label = _('Web host'), + required = False, + ) + acceptable_aliases = forms.CharField( + label = _("Acceptable aliases"), + ) + admin_immed_notify = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Admin immed notify'), + ) + admin_notify_mchanges = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Admin notify mchanges'), + ) + administrivia = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Administrivia'), + ) + anonymous_list = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Anonymous list'), + ) + created_at = forms.IntegerField( + label = _('Created at'), + widget = forms.HiddenInput(), + required = False, + ) + join_address = forms.EmailField( + label = _('Join address'), + required = False, + ) + last_post_at = forms.IntegerField( + label = _('Last post at'), + required = False, + ) + leave_address = forms.EmailField( + label = _('Leave address'), + required = False, + ) + owner_address = forms.EmailField( + label = _('Owner Address'), + required = False, + ) + posting_address = forms.EmailField( + label = _('Posting Address'), + required = False, + ) + #Descriptions used in the Settings Overview Page + section_descriptions = { + "List Identity":_("General List settings use"), + "Automatic Responses":_("All options for Autoreply"), + "Content Filtering":_("Decide how incoming mails might be filtered"), + "Digest": _("Modify and check some Digest options"), + "Privacy" : _("Check the lists privacy standards"), + "Assorted" : _("Some other Admin stuff"), + } + def __init__(self,visible_section,visible_option, *args, **kwargs): + super(ListSettings, self).__init__(*args, **kwargs) + #if settings:raise Exception(settings) #debug + if visible_option: + options=[] + for option in self.layout: + options += option[1:] + if visible_option in options: + self.layout = [["",visible_option]] + if visible_section: + sections=[] + for section in self.layout: + sections.append(section[0]) + if visible_section in sections: + for section in self.layout: + if section[0] == visible_section: + self.layout = [section] + try: + if data: + for section in self.layout: + for option in section[1:]: + self.fields[option].initial = settings[option] + except: + pass #empty form + def truncate(self): + """ + truncates the form to have only those fields which are in self.layout + """ + #delete form.fields which are not in the layout + used_options=[] + for section in self.layout: + used_options += section[1:] + + for key in self.fields.keys(): + if not(key in used_options): + del self.fields[key] + + class Meta: + """Class to handle the automatic insertion of fieldsets and divs. + + To use it: add a list for each wished fieldset. The first item in + the list should be the wished name of the fieldset, the following + the fields that should be included in the fieldset. + """ + # just a really temporary layout to see that it works. -- Anna + layout = [ + ["List Identity", "real_name", "include_list_post_header", + "include_rfc2369_headers"], + #"info", "list_name", "host_name", "list_id", "fqdn_listname", + #"http_etag", "volume", "web_host" + ["Automatic Responses", "autorespond_owner", + "autoresponse_owner_text", "autorespond_postings", + "autoresponse_postings_text", "autorespond_requests", + "autoresponse_request_text", "autoresponse_grace_period"], + #["Bounce", "ban_list", + #"bounce_info_stale_after", "bounce_matching_headers", + # "bounce_notify_owner_on_disable", + #"bounce_notify_owner_on_removal", "bounce_processing", + #"bounce_score_threshold", + #"bounce_unrecognized_goes_to_list_owner", + #"bounce_you_are_disabled_warnings", + #"bounce_you_are_disabled_warnings_interval"], + #["Archiving", "archive"], + ["Content Filtering", "filter_content", "collapse_alternatives", + "convert_html_to_plaintext", "description"], + #"default_member_moderation", "scheme" + ["Digest", "digest_size_threshold"], #"next_digest_number", + #"last_post_at", "digest_last_sent_at", "digest_footer", + #"digest_header", "digest_is_default", + #"digest_send_periodic", "digest_size_threshold", + #"digest_volume_frequency", "digestable"], + #["Moderation","discard_these_nonmembers", "emergency", + #"generic_nonmember_action", "generic_nonmember_action", + #"member_moderation_action", "member_moderation_notice", + #"moderator_password", "hold_these_nonmembers"], + #["Message Text", "msg_header", "msg_footer", "welcome_msg", + #"goodbye_msg"], + ["Privacy", "advertised", "admin_immed_notify", + "admin_notify_mchanges", "anonymous_list"], #"archive_private", + #"obscure_addresses", "private_roster", + #["Addresses", "bounces_address", "join_address", "leave_address", + #"no_reply_address", "owner_address", "posting_address", + #"request_address"], + ["Assorted", "acceptable_aliases", "administrivia", "pipeline"] + #"post_id", "encode_ascii_prefixes", "first_strip_reply_to", + #"forward_auto_discards", "gateway_to_mail", "gateway_to_news", + #"header_matches", "linked_newsgroup", "max_days_to_hold", + #"max_message_size", "max_num_recipients", + #"mime_is_default_digest", "new_member_options", + #"news_moderation", "news_prefix_subject_too", "nntp_host", + #"nondigestable", "nonmember_rejection_notice", "personalize", + #"preferred_language", + #"reject_these_nonmembers", "reply_goes_to_list", + #"reply_to_address", "require_explicit_destination", + #"respond_to_post_requests", "scrub_nondigest", + #"send_goodbye_msg", "send_reminders", "send_welcome_msg", + #"start_chain", "subject_prefix", "subscribe_auto_approval", + #"subscribe_policy", "topics", "topics_bodylines_limit", + #"topics_enabled", "unsubscribe_policy"]] + ] + +class Login(FieldsetForm): + """Form fields to let the user log in. + """ + user = forms.EmailField( + label = _('Email address'), + error_messages = {'required': _('Please enter an email address.'), + 'invalid': _('Please enter a valid email address.')}, + required = True, + ) + password = forms.CharField( + label = _('Password'), + widget = forms.PasswordInput, + error_messages = {'required': _('Please enter your password.'), + 'invalid': _('Please enter a valid password.')}, + required = True, + ) + + class Meta: + """ + Class to define the name of the fieldsets and what should be + included in each. + """ + layout = [["Login", "user", "password"],] + +class ListMassSubscription(FieldsetForm): + """Form fields to masssubscribe users to a list. + """ + emails = forms.CharField( + label = _('Emails to mass subscribe'), + widget = forms.Textarea, + ) + + class Meta: + """ + Class to define the name of the fieldsets and what should be + included in each. + """ + layout = [["Mass subscription", "emails"],] + +class MembershipSettings(FieldsetForm): + """Form handling the membership settings. + """ + choices = ((True, _('Yes')), (False, _('No')),) + acknowledge_posts = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Acknowledge posts'), + ) + hide_address = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Hide address'), + ) + receive_list_copy = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Receive list copy'), + ) + receive_own_postings = forms.BooleanField( + widget = forms.RadioSelect(choices = choices), + required = False, + label = _('Receive own postings'), + ) + delivery_mode = forms.ChoiceField( + widget = forms.Select(), + error_messages = { + 'required': _("Please choose a mode."), + }, + required = False, + choices = ( + ("", _("Please choose")), + ("delivery_mode", "some mode..."), # TODO: this must later + # be dynalically changed to what modes the list offers + # (see the address field in __init__ in UserSettings for + # how to do this) + ), + label = _('Delivery mode'), + ) + delivery_status = forms.ChoiceField( + widget = forms.Select(), + error_messages = { + 'required': _("Please choose a status."), + }, + required = False, + choices = ( + ("", _("Please choose")), + ("delivery_status", "some status..."), # TODO: this must + # later be dynalically changed to what statuses the list + # offers (see the address field in __init__ in UserSettings + # for how to do this) + ), + label = _('Delivery status'), + ) + + class Meta: + """ + Class to define the name of the fieldsets and what should be + included in each. + """ + layout = [["Membership Settings", "acknowledge_posts", "hide_address", + "receive_list_copy", "receive_own_postings", + "delivery_mode", "delivery_status"],] + +class UserSettings(FieldsetForm): + """Form handling the user settings. + """ + def __init__(self, address_choices, *args, **kwargs): + """ + Initialize the user settings with a field 'address' where + the values are set dynamically in the view. + """ + super(UserSettings, self).__init__(*args, **kwargs) + self.fields['address'] = forms.ChoiceField(choices=(address_choices), + widget = forms.Select(), + error_messages = {'required': _("Please choose an address."),}, + required = True, + label = _('Default email address'),) + + id = forms.IntegerField( # this should probably not be + # changeable... + label = _('ID'), + initial = 9, + widget = forms.HiddenInput(), + required = False, + error_messages = { + 'invalid': _('Please provide an integer ID.') + } + ) + mailing_list = forms.CharField( # not sure this needs to be here + label = _('Mailing list'), + widget = forms.HiddenInput(), + required = False, + ) + real_name =forms.CharField( + label = _('Real name'), + required = False, + ) + preferred_language = forms.ChoiceField( + label = _('Default/Preferred language'), + widget = forms.Select(), + error_messages = { + 'required': _("Please choose a language."), + }, + required = False, + choices = ( + ("", _("Please choose")), + ("English (USA)", "English (USA)"), # TODO: this must later + # be dynalically changed to what languages the list offers + # (see the address field in __init__ for how to do this) + ) + ) + password = forms.CharField( + label = _('Change password'), + widget = forms.PasswordInput, + required = False, + error_messages = {'required': _('Please enter your password.'), + 'invalid': _('Please enter a valid password.')}, + ) + conf_password = forms.CharField( + label = _('Confirm password'), + widget = forms.PasswordInput, + required = False, + error_messages = {'required': _('Please enter your password.'), + 'invalid': _('Please enter a valid password.')}, + ) + + class Meta: + """ + Class to define the name of the fieldsets and what should be + included in each. + """ + layout = [["User settings", "real_name", "password", + "conf_password", "preferred_language", "address"],] diff --git a/src/mailman_django/media/mailman_django/default/css/forms.css b/src/mailman_django/media/mailman_django/default/css/forms.css new file mode 100644 index 0000000..a673edf --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/css/forms.css @@ -0,0 +1,53 @@ +/************************* + * Forms + *************************/ + +form ul { + list-style-type:none; + } + +input, select { + border: 1px solid #b2b2b2; + border-radius: 3px; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + left:50%; + width: 50%; + padding: 2px; + float:right; +} + +input[type="radio"], input[type="checkbox"] { + float:none; + } + +input[type="submit"], +input.button { + width: auto; + margin-right: 10px; +} +.errorlist { + float: right; + width: 300px; + list-style: none; + margin: 0 0 0 15px; + padding: 0; + color: red; +} +form div.field { + clear: both; + padding-top: 10px; +} +label { + clear: both; + display: block; +} +button { + margin-top: 5px; +} + + +.languages ul { + column-count: 3; + -moz-column-count: 3; +} diff --git a/src/mailman_django/media/mailman_django/default/css/icons.css b/src/mailman_django/media/mailman_django/default/css/icons.css new file mode 100644 index 0000000..3ad574f --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/css/icons.css @@ -0,0 +1,55 @@ +.mm_actionButtons li a + { + background-color: transparent; + background-position: left center; + background-repeat: no-repeat; + background-size: auto 100%; + } + +/** List **/ +.mm_list_summary a + {background: url(../img/tango/emblems/all-per-page.svg)} + +.mm_list_new a + {background-image: url(../img/tango/actions/document-new_list.svg);} + +.mm_delete_list a + {background-image: url(../img/tango/categories/document-denied.svg);} + +.mm_subscribe a + {background-image: url(../img/tango/actions/add-participant.svg);} + +.mm_archives a + {background-image: url(../img/tango/emblems/address-book.svg);} + +.mm_options a + {background-image: url(../img/tango/actions/document-settings.svg);} + +.mm_unsubscribe a + {background-image: url(../img/tango/actions/remove-participant.svg);} + +.mm_mass_subscribe a + {background-image: url(../img/tango/actions/list-all-participants.svg);} + +.mm_membership a + {background-image: url(../img/tango/categories/user-edit.svg);} + +/** Domain **/ +.mm_new_domain a + {background-image: url(../img/tango/emblems/account-new.svg);} + +.mm_edit_domain a + {background-image: url(../img/tango/emblems/account-edit.svg);} + +.mm_delete_domain a + {background-image: url(../img/tango/emblems/account-delete.svg);} + +/** Settings **/ + +/** user_settings - membership_settings **/ + +.mm_user_settings a + {background-image: url(../img/tango/TODO-blueuser_with_editPen);} + +.mm_user_subscriptions a + {background-image: url(../img/tango/TODO-blueuser_with_editlist_icon);} diff --git a/src/mailman_django/media/mailman_django/default/css/style.css b/src/mailman_django/media/mailman_django/default/css/style.css new file mode 100755 index 0000000..418bebf --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/css/style.css @@ -0,0 +1,242 @@ +/* Reset styles - do not modify */ + +html, body, div, span, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, +small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, figcaption, figure, +footer, header, hgroup, menu, nav, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} + +blockquote, q { quotes: none; } +blockquote:before, blockquote:after, +q:before, q:after { content: ''; content: none; } +ins { background-color: #ff9; color: #000; text-decoration: none; } +mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } +del { text-decoration: line-through; } +abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } +table { border-collapse: collapse; border-spacing: 0; } +hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } +input, select { vertical-align: middle; } + +body { font:13px/1.231 sans-serif; *font-size:small; } +select, input, textarea, button { font:99% sans-serif; } +pre, code, kbd, samp { font-family: monospace, sans-serif; } + +html { overflow-y: scroll; } +a:hover, a:active { outline: none; } +ul, ol { margin-left: 2em; } +ol { list-style-type: decimal; } +nav ul, nav li { margin: 0; list-style:none; list-style-image: none; } +small { font-size: 85%; } +strong, th { font-weight: bold; } +td { vertical-align: top; } + +sub, sup { font-size: 75%; line-height: 0; position: relative; } +sup { top: -0.5em; } +sub { bottom: -0.25em; } + +pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; padding: 15px; } +textarea { overflow: auto; } +.ie6 legend, .ie7 legend { margin-left: -7px; } +input[type="radio"] { vertical-align: text-bottom; } +input[type="checkbox"] { vertical-align: bottom; } +.ie7 input[type="checkbox"] { vertical-align: baseline; } +.ie6 input { vertical-align: text-bottom; } +label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; } +button, input, select, textarea { margin: 0; } +input:valid, textarea:valid { } +input:invalid, textarea:invalid { border-radius: 1px; -moz-box-shadow: 0px 0px 5px red; -webkit-box-shadow: 0px 0px 5px red; box-shadow: 0px 0px 5px red; } +.no-boxshadow input:invalid, .no-boxshadow textarea:invalid { background-color: #f0dddd; } + +a:link { -webkit-tap-highlight-color: #FF5E99; } + +button { width: auto; overflow: visible; } +.ie7 img { -ms-interpolation-mode: bicubic; } + +body, select, input, textarea { color: #444; } +h1, h2, h3, h4, h5, h6 { font-weight: bold; } +a, a:active, a:visited { color: #607890; } +a:hover { color: #036; } + +/* Add layout tyles here */ + +body { + background-color: #d4d4d4; + font-size: 87.5%; + font-family: Verdana, Arial, sans-serif; +} +h1 { + font-size: 2em; + text-align: center; +} +h1 span { + font-size: 0.667em; + font-weight: normal; +} + +#mm_page { + width: 765px; + margin: 5px auto; + padding: 25px 0 25px 35px; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + background: #fff repeat top left url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAKCAYAAAD2Fg1xAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAAN1wAADdcBQiibeAAAAAd0SU1FB9sHFAYzEtopMl4AAAAidEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVAgb24gYSBNYWOHqHdDAAAAUklEQVQ4y+2T0QnAQAhDbbkf3X/DW0JDsN2h4IHSN0DgkeRy90eas/eWW4ZQIgJAAPQXISkkj4qsilAzmzGtMR+JCImI/tPKzOONlIio6v+Rr7wQbht30ThlBAAAAABJRU5ErkJggg=='); +} +.mm_actionButtons { + margin: 30px 0 30px 0; +} +.mm_actionButtons li { + float: left; + margin-right: 24px; + margin-bottom: 35px; + height: 46px; + display: table; + width: 165px; + border: 1px solid #babdb6; + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + box-shadow: 0 0 5px #babdb6; + background: #D4D4D4; +} +.mm_actionButtons li:last-child { + margin-right: 0; +} +.mm_actionButtons a, +.mm_actionButtons a:hover { + padding-left: 10px; + text-decoration: none; + font-weight: bold; + color: #444; + display: table-cell; + vertical-align: middle; + border: 1px solid; + border-color: #f8f8f7 #f8f8f7 #d1d2d1 #f8f8f7; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + background: -webkit-linear-gradient(rgb(244,244,243), rgb(197,197,197)); + background: -webkit-linear-gradient(rgb(244,244,243), rgb(197,197,197)); +} + +.mm_box, fieldset { + margin: 35px 35px 35px 0; + padding: 0 10px 10px 10px; + background-color: #FFF; + border-radius: 3px; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + box-shadow: 0 0 5px #babdb6; +} +.mm_boxHeader, fieldset legend{ + background-color: #F2F2F0; + font-weight: bold; + padding: 5px 10px; + margin-left: -10px; + margin-right: -10px; + margin-bottom: 10px; + border-bottom: 1px solid #E4E5E2; +} + +fieldset legend { + width: 100%; + } + +.mm_box p { + margin: 10px 0; + text-align: center; +} +.mm_smallBox { + width: 333px; + margin: 0 25px 35px 0; + float: left; +} +#mm_footer { + clear: both; + margin: 35px 35px 0 35px; + text-align: right; +} + +/* IE styles */ +.ie6 .mm_actionButtons li, +.ie7 .mm_actionButtons li, +.ie8 .mm_actionButtons li { + margin-right: 21px; +} +.ie6 .mm_box, +.ie7 .mm_box, +.ie8 .mm_box { + border: 1px solid #E4E5E2; +} + +.ie6 .mm_actionButtons li.mm_last, +.ie7 .mm_actionButtons li.mm_last, +.ie8 .mm_actionButtons li.mm_last { + margin-right: 0; +} + + + + + + + + + + +.mm_ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; } +.mm_hidden { display: none; visibility: hidden; } +.mm_visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } +.mm_visuallyhidden.focusable:active, +.mm_visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } +.mm_invisible { visibility: hidden; } +.mm_clear { clear: both; } +.mm_clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; } +.mm_clearfix:after { clear: both; } +.mm_clearfix { zoom: 1; } + + +@media all and (orientation:portrait) { + +} + +@media all and (orientation:landscape) { + +} + +@media screen and (max-device-width: 480px) { + + /* html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */ +} + + +@media print { + * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; + -ms-filter: none !important; } + a, a:visited { color: #444 !important; text-decoration: underline; } + a[href]:after { content: " (" attr(href) ")"; } + abbr[title]:after { content: " (" attr(title) ")"; } + .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } + pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } + thead { display: table-header-group; } + tr, img { page-break-inside: avoid; } + @page { margin: 0.5cm; } + p, h2, h3 { orphans: 3; widows: 3; } + h2, h3{ page-break-after: avoid; } +} diff --git a/src/mailman_django/media/mailman_django/default/img/icons/minus.png b/src/mailman_django/media/mailman_django/default/img/icons/minus.png new file mode 100755 index 0000000..03fb9be --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/icons/minus.png Binary files differ diff --git a/src/mailman_django/media/mailman_django/default/img/icons/plus.png b/src/mailman_django/media/mailman_django/default/img/icons/plus.png new file mode 100755 index 0000000..7428c48 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/icons/plus.png Binary files differ diff --git a/src/mailman_django/media/mailman_django/default/img/mailman_logo.png b/src/mailman_django/media/mailman_django/default/img/mailman_logo.png new file mode 100755 index 0000000..6a76d94 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/mailman_logo.png Binary files differ diff --git a/src/mailman_django/media/mailman_django/default/img/tango/_license.txt b/src/mailman_django/media/mailman_django/default/img/tango/_license.txt new file mode 100644 index 0000000..356097e --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/_license.txt @@ -0,0 +1,7 @@ +All Icons within this folder belong to the RRZE Icon Set which is based on Tango + +Both are published CC by SA and where included into mailman with special permission of Franziska Sponsel - one of the designers. + +Please see http://rrze-icon-set.berlios.de/team.html for the full team + +And http://tango.freedesktop.org/Tango_Desktop_Project for the Tango Project. diff --git a/src/mailman_django/media/mailman_django/default/img/tango/actions/add-participant.svg b/src/mailman_django/media/mailman_django/default/img/tango/actions/add-participant.svg new file mode 100644 index 0000000..7e1acf5 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/actions/add-participant.svg @@ -0,0 +1,34 @@ + + +image/svg+xmlparticipantaddadd participantJuly 2009Franziska SponselFranziska SponselRRZEHendrik Eggers, Franziska Sponseluses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/categories/user-other.png> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/actions/document-new_list.svg b/src/mailman_django/media/mailman_django/default/img/tango/actions/document-new_list.svg new file mode 100644 index 0000000..2986fb8 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/actions/document-new_list.svg @@ -0,0 +1,2439 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + document new list + Aug 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + action undo + cancel + rewrite + change + + + + + Beate Kaspar, Hendrik Eggers + + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/actions/refuse.png> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/actions/document-settings.svg b/src/mailman_django/media/mailman_django/default/img/tango/actions/document-settings.svg new file mode 100644 index 0000000..eade479 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/actions/document-settings.svg @@ -0,0 +1,2917 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + document settings + Aug 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + action undo + cancel + rewrite + change + + + + + Beate Kaspar, Hendrik Eggers + + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/actions/refuse.png> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/actions/list-all-participants.svg b/src/mailman_django/media/mailman_django/default/img/tango/actions/list-all-participants.svg new file mode 100644 index 0000000..4cf73c8 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/actions/list-all-participants.svg @@ -0,0 +1,522 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + list all participants + Jun 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + + list + participants + all + membership + membership-list + listing + group + user + + + + + Hendrik Eggers, Beate Kaspar + + + uses < http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/actions/approval.svg> http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/categories/user-group.svg> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/actions/remove-participant.svg b/src/mailman_django/media/mailman_django/default/img/tango/actions/remove-participant.svg new file mode 100644 index 0000000..b09e58c --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/actions/remove-participant.svg @@ -0,0 +1,34 @@ + + +image/svg+xmlparticipantaddremove participantJuly 2009Franziska SponselFranziska SponselRRZEHendrik Eggers, Franziska Sponseluses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/categories/user-other.png> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/categories/document-denied.svg b/src/mailman_django/media/mailman_django/default/img/tango/categories/document-denied.svg new file mode 100644 index 0000000..1678b21 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/categories/document-denied.svg @@ -0,0 +1,4898 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + document denied + Aug 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + action undo + cancel + rewrite + change + + + + + Beate Kaspar, Hendrik Eggers + + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/actions/refuse.png> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/categories/user-edit.svg b/src/mailman_django/media/mailman_django/default/img/tango/categories/user-edit.svg new file mode 100644 index 0000000..6771bce --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/categories/user-edit.svg @@ -0,0 +1,34 @@ + + +image/svg+xmlparticipantadduser editJuly 2009Franziska SponselFranziska SponselRRZEHendrik Eggers, Franziska Sponseluses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/16x16/categories/user-other.png> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-delete.svg b/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-delete.svg new file mode 100644 index 0000000..2455563 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-delete.svg @@ -0,0 +1,827 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + account delete + Sept 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + delete + account + email-account + + + + + Beate Kaspar, Hendrik Eggers + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/at.svg> and <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/status/false.svg> + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-edit.svg b/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-edit.svg new file mode 100644 index 0000000..3bacacf --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-edit.svg @@ -0,0 +1,975 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + account edit + Sept 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + add + account + email-account + + + + + Beate Kaspar, Hendrik Eggers + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/at.svg> and <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/pen.svg> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-new.svg b/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-new.svg new file mode 100644 index 0000000..de31adc --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/emblems/account-new.svg @@ -0,0 +1,2935 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + account new + Sept 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + add + account + email-account + new + + + + + Beate Kaspar, Hendrik Eggers + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/message-new.svg> and <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/at.svg> + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/emblems/address-book.svg b/src/mailman_django/media/mailman_django/default/img/tango/emblems/address-book.svg new file mode 100644 index 0000000..3a248cf --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/emblems/address-book.svg @@ -0,0 +1,581 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + address book + July 2008 + + + Beate Kaspar + + + + + Beate Kaspar + + + + + RRZE + + + + + book + bookmark + bookmarks + favorites + marker + + + + + Hendrik Eggers, Franziska Sponsel + + + derived from <http://webcvs.freedesktop.org/tango/tango-icon-theme/scalable/actions/address-book-new.svg> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/img/tango/emblems/all-per-page.svg b/src/mailman_django/media/mailman_django/default/img/tango/emblems/all-per-page.svg new file mode 100644 index 0000000..32bf9fa --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/img/tango/emblems/all-per-page.svg @@ -0,0 +1,716 @@ + + all per page + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + all per page + Jun 2009 + + + Franziska Sponsel + + + + + Franziska Sponsel + + + + + RRZE + + + + + report + show + list + all + per page + + + + + Beate Kaspar, Hendrik Eggers + + + uses <http://ftp.uni-erlangen.de/pub/rrze/tango/rrze-icon-set/tango/scalable/emblems/report.svg> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mailman_django/media/mailman_django/default/js/libs/._jquery-1.5.1.min.js b/src/mailman_django/media/mailman_django/default/js/libs/._jquery-1.5.1.min.js new file mode 100755 index 0000000..23c0b8d --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/js/libs/._jquery-1.5.1.min.js Binary files differ diff --git a/src/mailman_django/media/mailman_django/default/js/libs/._modernizr-1.7.min.js b/src/mailman_django/media/mailman_django/default/js/libs/._modernizr-1.7.min.js new file mode 100755 index 0000000..0ff0477 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/js/libs/._modernizr-1.7.min.js Binary files differ diff --git a/src/mailman_django/media/mailman_django/default/js/libs/jquery-1.5.1.min.js b/src/mailman_django/media/mailman_django/default/js/libs/jquery-1.5.1.min.js new file mode 100755 index 0000000..14fd647 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/js/libs/jquery-1.5.1.min.js @@ -0,0 +1,16 @@ +/*! + * jQuery JavaScript Library v1.5.1 + * http://jquery.com/ + * + * Copyright 2011, John Resig + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * Copyright 2011, The Dojo Foundation + * Released under the MIT, BSD, and GPL Licenses. + * + * Date: Wed Feb 23 13:55:29 2011 -0500 + */ +(function(a,b){function cg(a){return d.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cd(a){if(!bZ[a]){var b=d("<"+a+">").appendTo("body"),c=b.css("display");b.remove();if(c==="none"||c==="")c="block";bZ[a]=c}return bZ[a]}function cc(a,b){var c={};d.each(cb.concat.apply([],cb.slice(0,b)),function(){c[this]=a});return c}function bY(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function bX(){try{return new a.XMLHttpRequest}catch(b){}}function bW(){d(a).unload(function(){for(var a in bU)bU[a](0,1)})}function bQ(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var e=a.dataTypes,f={},g,h,i=e.length,j,k=e[0],l,m,n,o,p;for(g=1;g=0===c})}function N(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function F(a,b){return(a&&a!=="*"?a+".":"")+b.replace(r,"`").replace(s,"&")}function E(a){var b,c,e,f,g,h,i,j,k,l,m,n,o,q=[],r=[],s=d._data(this,"events");if(a.liveFired!==this&&s&&s.live&&!a.target.disabled&&(!a.button||a.type!=="click")){a.namespace&&(n=new RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)")),a.liveFired=this;var t=s.live.slice(0);for(i=0;ic)break;a.currentTarget=f.elem,a.data=f.handleObj.data,a.handleObj=f.handleObj,o=f.handleObj.origHandler.apply(f.elem,arguments);if(o===!1||a.isPropagationStopped()){c=f.level,o===!1&&(b=!1);if(a.isImmediatePropagationStopped())break}}return b}}function C(a,c,e){var f=d.extend({},e[0]);f.type=a,f.originalEvent={},f.liveFired=b,d.event.handle.call(c,f),f.isDefaultPrevented()&&e[0].preventDefault()}function w(){return!0}function v(){return!1}function g(a){for(var b in a)if(b!=="toJSON")return!1;return!0}function f(a,c,f){if(f===b&&a.nodeType===1){f=a.getAttribute("data-"+c);if(typeof f==="string"){try{f=f==="true"?!0:f==="false"?!1:f==="null"?null:d.isNaN(f)?e.test(f)?d.parseJSON(f):f:parseFloat(f)}catch(g){}d.data(a,c,f)}else f=b}return f}var c=a.document,d=function(){function I(){if(!d.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(I,1);return}d.ready()}}var d=function(a,b){return new d.fn.init(a,b,g)},e=a.jQuery,f=a.$,g,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,i=/\S/,j=/^\s+/,k=/\s+$/,l=/\d/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=navigator.userAgent,w,x=!1,y,z="then done fail isResolved isRejected promise".split(" "),A,B=Object.prototype.toString,C=Object.prototype.hasOwnProperty,D=Array.prototype.push,E=Array.prototype.slice,F=String.prototype.trim,G=Array.prototype.indexOf,H={};d.fn=d.prototype={constructor:d,init:function(a,e,f){var g,i,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!e&&c.body){this.context=c,this[0]=c.body,this.selector="body",this.length=1;return this}if(typeof a==="string"){g=h.exec(a);if(!g||!g[1]&&e)return!e||e.jquery?(e||f).find(a):this.constructor(e).find(a);if(g[1]){e=e instanceof d?e[0]:e,k=e?e.ownerDocument||e:c,j=m.exec(a),j?d.isPlainObject(e)?(a=[c.createElement(j[1])],d.fn.attr.call(a,e,!0)):a=[k.createElement(j[1])]:(j=d.buildFragment([g[1]],[k]),a=(j.cacheable?d.clone(j.fragment):j.fragment).childNodes);return d.merge(this,a)}i=c.getElementById(g[2]);if(i&&i.parentNode){if(i.id!==g[2])return f.find(a);this.length=1,this[0]=i}this.context=c,this.selector=a;return this}if(d.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return d.makeArray(a,this)},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length},toArray:function(){return E.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var e=this.constructor();d.isArray(a)?D.apply(e,a):d.merge(e,a),e.prevObject=this,e.context=this.context,b==="find"?e.selector=this.selector+(this.selector?" ":"")+c:b&&(e.selector=this.selector+"."+b+"("+c+")");return e},each:function(a,b){return d.each(this,a,b)},ready:function(a){d.bindReady(),y.done(a);return this},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(E.apply(this,arguments),"slice",E.call(arguments).join(","))},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:D,sort:[].sort,splice:[].splice},d.fn.init.prototype=d.fn,d.extend=d.fn.extend=function(){var a,c,e,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i==="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!=="object"&&!d.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j0)return;y.resolveWith(c,[d]),d.fn.trigger&&d(c).trigger("ready").unbind("ready")}},bindReady:function(){if(!x){x=!0;if(c.readyState==="complete")return setTimeout(d.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",A,!1),a.addEventListener("load",d.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",A),a.attachEvent("onload",d.ready);var b=!1;try{b=a.frameElement==null}catch(e){}c.documentElement.doScroll&&b&&I()}}},isFunction:function(a){return d.type(a)==="function"},isArray:Array.isArray||function(a){return d.type(a)==="array"},isWindow:function(a){return a&&typeof a==="object"&&"setInterval"in a},isNaN:function(a){return a==null||!l.test(a)||isNaN(a)},type:function(a){return a==null?String(a):H[B.call(a)]||"object"},isPlainObject:function(a){if(!a||d.type(a)!=="object"||a.nodeType||d.isWindow(a))return!1;if(a.constructor&&!C.call(a,"constructor")&&!C.call(a.constructor.prototype,"isPrototypeOf"))return!1;var c;for(c in a){}return c===b||C.call(a,c)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw a},parseJSON:function(b){if(typeof b!=="string"||!b)return null;b=d.trim(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return a.JSON&&a.JSON.parse?a.JSON.parse(b):(new Function("return "+b))();d.error("Invalid JSON: "+b)},parseXML:function(b,c,e){a.DOMParser?(e=new DOMParser,c=e.parseFromString(b,"text/xml")):(c=new ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b)),e=c.documentElement,(!e||!e.nodeName||e.nodeName==="parsererror")&&d.error("Invalid XML: "+b);return c},noop:function(){},globalEval:function(a){if(a&&i.test(a)){var b=c.head||c.getElementsByTagName("head")[0]||c.documentElement,e=c.createElement("script");d.support.scriptEval()?e.appendChild(c.createTextNode(a)):e.text=a,b.insertBefore(e,b.firstChild),b.removeChild(e)}},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,e){var f,g=0,h=a.length,i=h===b||d.isFunction(a);if(e){if(i){for(f in a)if(c.apply(a[f],e)===!1)break}else for(;g1){var f=E.call(arguments,0),g=b,h=function(a){return function(b){f[a]=arguments.length>1?E.call(arguments,0):b,--g||c.resolveWith(e,f)}};while(b--)a=f[b],a&&d.isFunction(a.promise)?a.promise().then(h(b),c.reject):--g;g||c.resolveWith(e,f)}else c!==a&&c.resolve(a);return e},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}d.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.subclass=this.subclass,a.fn.init=function b(b,c){c&&c instanceof d&&!(c instanceof a)&&(c=a(c));return d.fn.init.call(this,b,c,e)},a.fn.init.prototype=a.fn;var e=a(c);return a},browser:{}}),y=d._Deferred(),d.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){H["[object "+b+"]"]=b.toLowerCase()}),w=d.uaMatch(v),w.browser&&(d.browser[w.browser]=!0,d.browser.version=w.version),d.browser.webkit&&(d.browser.safari=!0),G&&(d.inArray=function(a,b){return G.call(b,a)}),i.test(" ")&&(j=/^[\s\xA0]+/,k=/[\s\xA0]+$/),g=d(c),c.addEventListener?A=function(){c.removeEventListener("DOMContentLoaded",A,!1),d.ready()}:c.attachEvent&&(A=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",A),d.ready())});return d}();(function(){d.support={};var b=c.createElement("div");b.style.display="none",b.innerHTML="
a";var e=b.getElementsByTagName("*"),f=b.getElementsByTagName("a")[0],g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=b.getElementsByTagName("input")[0];if(e&&e.length&&f){d.support={leadingWhitespace:b.firstChild.nodeType===3,tbody:!b.getElementsByTagName("tbody").length,htmlSerialize:!!b.getElementsByTagName("link").length,style:/red/.test(f.getAttribute("style")),hrefNormalized:f.getAttribute("href")==="/a",opacity:/^0.55$/.test(f.style.opacity),cssFloat:!!f.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,deleteExpando:!0,optDisabled:!1,checkClone:!1,noCloneEvent:!0,noCloneChecked:!0,boxModel:null,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableHiddenOffsets:!0},i.checked=!0,d.support.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,d.support.optDisabled=!h.disabled;var j=null;d.support.scriptEval=function(){if(j===null){var b=c.documentElement,e=c.createElement("script"),f="script"+d.now();try{e.appendChild(c.createTextNode("window."+f+"=1;"))}catch(g){}b.insertBefore(e,b.firstChild),a[f]?(j=!0,delete a[f]):j=!1,b.removeChild(e),b=e=f=null}return j};try{delete b.test}catch(k){d.support.deleteExpando=!1}!b.addEventListener&&b.attachEvent&&b.fireEvent&&(b.attachEvent("onclick",function l(){d.support.noCloneEvent=!1,b.detachEvent("onclick",l)}),b.cloneNode(!0).fireEvent("onclick")),b=c.createElement("div"),b.innerHTML="";var m=c.createDocumentFragment();m.appendChild(b.firstChild),d.support.checkClone=m.cloneNode(!0).cloneNode(!0).lastChild.checked,d(function(){var a=c.createElement("div"),b=c.getElementsByTagName("body")[0];if(b){a.style.width=a.style.paddingLeft="1px",b.appendChild(a),d.boxModel=d.support.boxModel=a.offsetWidth===2,"zoom"in a.style&&(a.style.display="inline",a.style.zoom=1,d.support.inlineBlockNeedsLayout=a.offsetWidth===2,a.style.display="",a.innerHTML="
",d.support.shrinkWrapBlocks=a.offsetWidth!==2),a.innerHTML="
t
";var e=a.getElementsByTagName("td");d.support.reliableHiddenOffsets=e[0].offsetHeight===0,e[0].style.display="",e[1].style.display="none",d.support.reliableHiddenOffsets=d.support.reliableHiddenOffsets&&e[0].offsetHeight===0,a.innerHTML="",b.removeChild(a).style.display="none",a=e=null}});var n=function(a){var b=c.createElement("div");a="on"+a;if(!b.attachEvent)return!0;var d=a in b;d||(b.setAttribute(a,"return;"),d=typeof b[a]==="function"),b=null;return d};d.support.submitBubbles=n("submit"),d.support.changeBubbles=n("change"),b=e=f=null}})();var e=/^(?:\{.*\}|\[.*\])$/;d.extend({cache:{},uuid:0,expando:"jQuery"+(d.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?d.cache[a[d.expando]]:a[d.expando];return!!a&&!g(a)},data:function(a,c,e,f){if(d.acceptData(a)){var g=d.expando,h=typeof c==="string",i,j=a.nodeType,k=j?d.cache:a,l=j?a[d.expando]:a[d.expando]&&d.expando;if((!l||f&&l&&!k[l][g])&&h&&e===b)return;l||(j?a[d.expando]=l=++d.uuid:l=d.expando),k[l]||(k[l]={},j||(k[l].toJSON=d.noop));if(typeof c==="object"||typeof c==="function")f?k[l][g]=d.extend(k[l][g],c):k[l]=d.extend(k[l],c);i=k[l],f&&(i[g]||(i[g]={}),i=i[g]),e!==b&&(i[c]=e);if(c==="events"&&!i[c])return i[g]&&i[g].events;return h?i[c]:i}},removeData:function(b,c,e){if(d.acceptData(b)){var f=d.expando,h=b.nodeType,i=h?d.cache:b,j=h?b[d.expando]:d.expando;if(!i[j])return;if(c){var k=e?i[j][f]:i[j];if(k){delete k[c];if(!g(k))return}}if(e){delete i[j][f];if(!g(i[j]))return}var l=i[j][f];d.support.deleteExpando||i!=a?delete i[j]:i[j]=null,l?(i[j]={},h||(i[j].toJSON=d.noop),i[j][f]=l):h&&(d.support.deleteExpando?delete b[d.expando]:b.removeAttribute?b.removeAttribute(d.expando):b[d.expando]=null)}},_data:function(a,b,c){return d.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=d.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),d.fn.extend({data:function(a,c){var e=null;if(typeof a==="undefined"){if(this.length){e=d.data(this[0]);if(this[0].nodeType===1){var g=this[0].attributes,h;for(var i=0,j=g.length;i-1)return!0;return!1},val:function(a){if(!arguments.length){var c=this[0];if(c){if(d.nodeName(c,"option")){var e=c.attributes.value;return!e||e.specified?c.value:c.text}if(d.nodeName(c,"select")){var f=c.selectedIndex,g=[],h=c.options,i=c.type==="select-one";if(f<0)return null;for(var k=i?f:0,l=i?f+1:h.length;k=0;else if(d.nodeName(this,"select")){var f=d.makeArray(e);d("option",this).each(function(){this.selected=d.inArray(d(this).val(),f)>=0}),f.length||(this.selectedIndex=-1)}else this.value=e}})}}),d.extend({attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,e,f){if(!a||a.nodeType===3||a.nodeType===8||a.nodeType===2)return b;if(f&&c in d.attrFn)return d(a)[c](e);var g=a.nodeType!==1||!d.isXMLDoc(a),h=e!==b;c=g&&d.props[c]||c;if(a.nodeType===1){var i=k.test(c);if(c==="selected"&&!d.support.optSelected){var j=a.parentNode;j&&(j.selectedIndex,j.parentNode&&j.parentNode.selectedIndex)}if((c in a||a[c]!==b)&&g&&!i){h&&(c==="type"&&l.test(a.nodeName)&&a.parentNode&&d.error("type property can't be changed"),e===null?a.nodeType===1&&a.removeAttribute(c):a[c]=e);if(d.nodeName(a,"form")&&a.getAttributeNode(c))return a.getAttributeNode(c).nodeValue;if(c==="tabIndex"){var o=a.getAttributeNode("tabIndex");return o&&o.specified?o.value:m.test(a.nodeName)||n.test(a.nodeName)&&a.href?0:b}return a[c]}if(!d.support.style&&g&&c==="style"){h&&(a.style.cssText=""+e);return a.style.cssText}h&&a.setAttribute(c,""+e);if(!a.attributes[c]&&(a.hasAttribute&&!a.hasAttribute(c)))return b;var p=!d.support.hrefNormalized&&g&&i?a.getAttribute(c,2):a.getAttribute(c);return p===null?b:p}h&&(a[c]=e);return a[c]}});var p=/\.(.*)$/,q=/^(?:textarea|input|select)$/i,r=/\./g,s=/ /g,t=/[^\w\s.|`]/g,u=function(a){return a.replace(t,"\\$&")};d.event={add:function(c,e,f,g){if(c.nodeType!==3&&c.nodeType!==8){try{d.isWindow(c)&&(c!==a&&!c.frameElement)&&(c=a)}catch(h){}if(f===!1)f=v;else if(!f)return;var i,j;f.handler&&(i=f,f=i.handler),f.guid||(f.guid=d.guid++);var k=d._data(c);if(!k)return;var l=k.events,m=k.handle;l||(k.events=l={}),m||(k.handle=m=function(){return typeof d!=="undefined"&&!d.event.triggered?d.event.handle.apply(m.elem,arguments):b}),m.elem=c,e=e.split(" ");var n,o=0,p;while(n=e[o++]){j=i?d.extend({},i):{handler:f,data:g},n.indexOf(".")>-1?(p=n.split("."),n=p.shift(),j.namespace=p.slice(0).sort().join(".")):(p=[],j.namespace=""),j.type=n,j.guid||(j.guid=f.guid);var q=l[n],r=d.event.special[n]||{};if(!q){q=l[n]=[];if(!r.setup||r.setup.call(c,g,p,m)===!1)c.addEventListener?c.addEventListener(n,m,!1):c.attachEvent&&c.attachEvent("on"+n,m)}r.add&&(r.add.call(c,j),j.handler.guid||(j.handler.guid=f.guid)),q.push(j),d.event.global[n]=!0}c=null}},global:{},remove:function(a,c,e,f){if(a.nodeType!==3&&a.nodeType!==8){e===!1&&(e=v);var g,h,i,j,k=0,l,m,n,o,p,q,r,s=d.hasData(a)&&d._data(a),t=s&&s.events;if(!s||!t)return;c&&c.type&&(e=c.handler,c=c.type);if(!c||typeof c==="string"&&c.charAt(0)==="."){c=c||"";for(h in t)d.event.remove(a,h+c);return}c=c.split(" ");while(h=c[k++]){r=h,q=null,l=h.indexOf(".")<0,m=[],l||(m=h.split("."),h=m.shift(),n=new RegExp("(^|\\.)"+d.map(m.slice(0).sort(),u).join("\\.(?:.*\\.)?")+"(\\.|$)")),p=t[h];if(!p)continue;if(!e){for(j=0;j=0&&(a.type=f=f.slice(0,-1),a.exclusive=!0),e||(a.stopPropagation(),d.event.global[f]&&d.each(d.cache,function(){var b=d.expando,e=this[b];e&&e.events&&e.events[f]&&d.event.trigger(a,c,e.handle.elem)}));if(!e||e.nodeType===3||e.nodeType===8)return b;a.result=b,a.target=e,c=d.makeArray(c),c.unshift(a)}a.currentTarget=e;var h=d._data(e,"handle");h&&h.apply(e,c);var i=e.parentNode||e.ownerDocument;try{e&&e.nodeName&&d.noData[e.nodeName.toLowerCase()]||e["on"+f]&&e["on"+f].apply(e,c)===!1&&(a.result=!1,a.preventDefault())}catch(j){}if(!a.isPropagationStopped()&&i)d.event.trigger(a,c,i,!0);else if(!a.isDefaultPrevented()){var k,l=a.target,m=f.replace(p,""),n=d.nodeName(l,"a")&&m==="click",o=d.event.special[m]||{};if((!o._default||o._default.call(e,a)===!1)&&!n&&!(l&&l.nodeName&&d.noData[l.nodeName.toLowerCase()])){try{l[m]&&(k=l["on"+m],k&&(l["on"+m]=null),d.event.triggered=!0,l[m]())}catch(q){}k&&(l["on"+m]=k),d.event.triggered=!1}}},handle:function(c){var e,f,g,h,i,j=[],k=d.makeArray(arguments);c=k[0]=d.event.fix(c||a.event),c.currentTarget=this,e=c.type.indexOf(".")<0&&!c.exclusive,e||(g=c.type.split("."),c.type=g.shift(),j=g.slice(0).sort(),h=new RegExp("(^|\\.)"+j.join("\\.(?:.*\\.)?")+"(\\.|$)")),c.namespace=c.namespace||j.join("."),i=d._data(this,"events"),f=(i||{})[c.type];if(i&&f){f=f.slice(0);for(var l=0,m=f.length;l-1?d.map(a.options,function(a){return a.selected}).join("-"):"":a.nodeName.toLowerCase()==="select"&&(c=a.selectedIndex);return c},B=function B(a){var c=a.target,e,f;if(q.test(c.nodeName)&&!c.readOnly){e=d._data(c,"_change_data"),f=A(c),(a.type!=="focusout"||c.type!=="radio")&&d._data(c,"_change_data",f);if(e===b||f===e)return;if(e!=null||f)a.type="change",a.liveFired=b,d.event.trigger(a,arguments[1],c)}};d.event.special.change={filters:{focusout:B,beforedeactivate:B,click:function(a){var b=a.target,c=b.type;(c==="radio"||c==="checkbox"||b.nodeName.toLowerCase()==="select")&&B.call(this,a)},keydown:function(a){var b=a.target,c=b.type;(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(c==="checkbox"||c==="radio")||c==="select-multiple")&&B.call(this,a)},beforeactivate:function(a){var b=a.target;d._data(b,"_change_data",A(b))}},setup:function(a,b){if(this.type==="file")return!1;for(var c in z)d.event.add(this,c+".specialChange",z[c]);return q.test(this.nodeName)},teardown:function(a){d.event.remove(this,".specialChange");return q.test(this.nodeName)}},z=d.event.special.change.filters,z.focus=z.beforeactivate}c.addEventListener&&d.each({focus:"focusin",blur:"focusout"},function(a,b){function c(a){a=d.event.fix(a),a.type=b;return d.event.handle.call(this,a)}d.event.special[b]={setup:function(){this.addEventListener(a,c,!0)},teardown:function(){this.removeEventListener(a,c,!0)}}}),d.each(["bind","one"],function(a,c){d.fn[c]=function(a,e,f){if(typeof a==="object"){for(var g in a)this[c](g,e,a[g],f);return this}if(d.isFunction(e)||e===!1)f=e,e=b;var h=c==="one"?d.proxy(f,function(a){d(this).unbind(a,h);return f.apply(this,arguments)}):f;if(a==="unload"&&c!=="one")this.one(a,e,f);else for(var i=0,j=this.length;i0?this.bind(b,a,c):this.trigger(b)},d.attrFn&&(d.attrFn[b]=!0)}),function(){function u(a,b,c,d,e,f){for(var g=0,h=d.length;g0){j=i;break}}i=i[a]}d[g]=j}}}function t(a,b,c,d,e,f){for(var g=0,h=d.length;g+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,g=!1,h=!0,i=/\\/g,j=/\W/;[0,0].sort(function(){h=!1;return 0});var k=function(b,d,e,g){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!=="string")return e;var i,j,n,o,q,r,s,t,u=!0,w=k.isXML(d),x=[],y=b;do{a.exec(""),i=a.exec(y);if(i){y=i[3],x.push(i[1]);if(i[2]){o=i[3];break}}}while(i);if(x.length>1&&m.exec(b))if(x.length===2&&l.relative[x[0]])j=v(x[0]+x[1],d);else{j=l.relative[x[0]]?[d]:k(x.shift(),d);while(x.length)b=x.shift(),l.relative[b]&&(b+=x.shift()),j=v(b,j)}else{!g&&x.length>1&&d.nodeType===9&&!w&&l.match.ID.test(x[0])&&!l.match.ID.test(x[x.length-1])&&(q=k.find(x.shift(),d,w),d=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]);if(d){q=g?{expr:x.pop(),set:p(g)}:k.find(x.pop(),x.length===1&&(x[0]==="~"||x[0]==="+")&&d.parentNode?d.parentNode:d,w),j=q.expr?k.filter(q.expr,q.set):q.set,x.length>0?n=p(j):u=!1;while(x.length)r=x.pop(),s=r,l.relative[r]?s=x.pop():r="",s==null&&(s=d),l.relative[r](n,s,w)}else n=x=[]}n||(n=j),n||k.error(r||b);if(f.call(n)==="[object Array]")if(u)if(d&&d.nodeType===1)for(t=0;n[t]!=null;t++)n[t]&&(n[t]===!0||n[t].nodeType===1&&k.contains(d,n[t]))&&e.push(j[t]);else for(t=0;n[t]!=null;t++)n[t]&&n[t].nodeType===1&&e.push(j[t]);else e.push.apply(e,n);else p(n,e);o&&(k(o,h,e,g),k.uniqueSort(e));return e};k.uniqueSort=function(a){if(r){g=h,a.sort(r);if(g)for(var b=1;b0},k.find=function(a,b,c){var d;if(!a)return[];for(var e=0,f=l.order.length;e":function(a,b){var c,d=typeof b==="string",e=0,f=a.length;if(d&&!j.test(b)){b=b.toLowerCase();for(;e=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(i,"")},TAG:function(a,b){return a[1].replace(i,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||k.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&k.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(i,"");!f&&l.attrMap[g]&&(a[1]=l.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(i,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=k(b[3],null,null,c);else{var g=k.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(l.match.POS.test(b[0])||l.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!k(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){return"text"===a.getAttribute("type")},radio:function(a){return"radio"===a.type},checkbox:function(a){return"checkbox"===a.type},file:function(a){return"file"===a.type},password:function(a){return"password"===a.type},submit:function(a){return"submit"===a.type},image:function(a){return"image"===a.type},reset:function(a){return"reset"===a.type},button:function(a){return"button"===a.type||a.nodeName.toLowerCase()==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return bc[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=l.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||k.getText([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=l.attrHandle[c]?l.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=l.setFilters[e];if(f)return f(a,c,b,d)}}},m=l.match.POS,n=function(a,b){return"\\"+(b-0+1)};for(var o in l.match)l.match[o]=new RegExp(l.match[o].source+/(?![^\[]*\])(?![^\(]*\))/.source),l.leftMatch[o]=new RegExp(/(^(?:.|\r|\n)*?)/.source+l.match[o].source.replace(/\\(\d+)/g,n));var p=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(q){p=function(a,b){var c=0,d=b||[];if(f.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length==="number")for(var e=a.length;c",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(l.find.ID=function(a,c,d){if(typeof c.getElementById!=="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!=="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},l.filter.ID=function(a,b){var c=typeof a.getAttributeNode!=="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(l.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!=="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(l.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=k,b=c.createElement("div"),d="__sizzle__";b.innerHTML="

";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){k=function(b,e,f,g){e=e||c;if(!g&&!k.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return p(e.getElementsByTagName(b),f);if(h[2]&&l.find.CLASS&&e.getElementsByClassName)return p(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return p([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return p([],f);if(i.id===h[3])return p([i],f)}try{return p(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var m=e,n=e.getAttribute("id"),o=n||d,q=e.parentNode,r=/^\s*[+~]/.test(b);n?o=o.replace(/'/g,"\\$&"):e.setAttribute("id",o),r&&q&&(e=e.parentNode);try{if(!r||q)return p(e.querySelectorAll("[id='"+o+"'] "+b),f)}catch(s){}finally{n||m.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)k[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector,d=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(e){d=!0}b&&(k.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(a))try{if(d||!l.match.PSEUDO.test(c)&&!/!=/.test(c))return b.call(a,c)}catch(e){}return k(c,null,null,[a]).length>0})}(),function(){var a=c.createElement("div");a.innerHTML="
";if(a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;l.order.splice(1,0,"CLASS"),l.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!=="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?k.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?k.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:k.contains=function(){return!1},k.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var v=function(a,b){var c,d=[],e="",f=b.nodeType?[b]:b;while(c=l.match.PSEUDO.exec(a))e+=c[0],a=a.replace(l.match.PSEUDO,"");a=l.relative[a]?a+"*":a;for(var g=0,h=f.length;g0)for(var g=c;g0},closest:function(a,b){var c=[],e,f,g=this[0];if(d.isArray(a)){var h,i,j={},k=1;if(g&&a.length){for(e=0,f=a.length;e-1:d(g).is(h))&&c.push({selector:i,elem:g,level:k});g=g.parentNode,k++}}return c}var l=L.test(a)?d(a,b||this.context):null;for(e=0,f=this.length;e-1:d.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b)break}}c=c.length>1?d.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a||typeof a==="string")return d.inArray(this[0],a?d(a):this.parent().children());return d.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a==="string"?d(a,b):d.makeArray(a),e=d.merge(this.get(),c);return this.pushStack(N(c[0])||N(e[0])?e:d.unique(e))},andSelf:function(){return this.add(this.prevObject)}}),d.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return d.dir(a,"parentNode")},parentsUntil:function(a,b,c){return d.dir(a,"parentNode",c)},next:function(a){return d.nth(a,2,"nextSibling")},prev:function(a){return d.nth(a,2,"previousSibling")},nextAll:function(a){return d.dir(a,"nextSibling")},prevAll:function(a){return d.dir(a,"previousSibling")},nextUntil:function(a,b,c){return d.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return d.dir(a,"previousSibling",c)},siblings:function(a){return d.sibling(a.parentNode.firstChild,a)},children:function(a){return d.sibling(a.firstChild)},contents:function(a){return d.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:d.makeArray(a.childNodes)}},function(a,b){d.fn[a]=function(c,e){var f=d.map(this,b,c),g=K.call(arguments);G.test(a)||(e=c),e&&typeof e==="string"&&(f=d.filter(e,f)),f=this.length>1&&!M[a]?d.unique(f):f,(this.length>1||I.test(e))&&H.test(a)&&(f=f.reverse());return this.pushStack(f,a,g.join(","))}}),d.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?d.find.matchesSelector(b[0],a)?[b[0]]:[]:d.find.matches(a,b)},dir:function(a,c,e){var f=[],g=a[c];while(g&&g.nodeType!==9&&(e===b||g.nodeType!==1||!d(g).is(e)))g.nodeType===1&&f.push(g),g=g[c];return f},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var P=/ jQuery\d+="(?:\d+|null)"/g,Q=/^\s+/,R=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,S=/<([\w:]+)/,T=/",""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]};X.optgroup=X.option,X.tbody=X.tfoot=X.colgroup=X.caption=X.thead,X.th=X.td,d.support.htmlSerialize||(X._default=[1,"div
","
"]),d.fn.extend({text:function(a){if(d.isFunction(a))return this.each(function(b){var c=d(this);c.text(a.call(this,b,c.text()))});if(typeof a!=="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return d.text(this)},wrapAll:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapAll(a.call(this,b))});if(this[0]){var b=d(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(d.isFunction(a))return this.each(function(b){d(this).wrapInner(a.call(this,b))});return this.each(function(){var b=d(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){d(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){d.nodeName(this,"body")||d(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=d(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,d(arguments[0]).toArray());return a}},remove:function(a,b){for(var c=0,e;(e=this[c])!=null;c++)if(!a||d.filter(a,[e]).length)!b&&e.nodeType===1&&(d.cleanData(e.getElementsByTagName("*")),d.cleanData([e])),e.parentNode&&e.parentNode.removeChild(e);return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&d.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return d.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(P,""):null;if(typeof a!=="string"||V.test(a)||!d.support.leadingWhitespace&&Q.test(a)||X[(S.exec(a)||["",""])[1].toLowerCase()])d.isFunction(a)?this.each(function(b){var c=d(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);else{a=a.replace(R,"<$1>");try{for(var c=0,e=this.length;c1&&l0?this.clone(!0):this).get();d(f[h])[b](j),e=e.concat(j)}return this.pushStack(e,a,f.selector)}}),d.extend({clone:function(a,b,c){var e=a.cloneNode(!0),f,g,h;if((!d.support.noCloneEvent||!d.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!d.isXMLDoc(a)){$(a,e),f=_(a),g=_(e);for(h=0;f[h];++h)$(f[h],g[h])}if(b){Z(a,e);if(c){f=_(a),g=_(e);for(h=0;f[h];++h)Z(f[h],g[h])}}return e},clean:function(a,b,e,f){b=b||c,typeof b.createElement==="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var g=[];for(var h=0,i;(i=a[h])!=null;h++){typeof i==="number"&&(i+="");if(!i)continue;if(typeof i!=="string"||U.test(i)){if(typeof i==="string"){i=i.replace(R,"<$1>");var j=(S.exec(i)||["",""])[1].toLowerCase(),k=X[j]||X._default,l=k[0],m=b.createElement("div");m.innerHTML=k[1]+i+k[2];while(l--)m=m.lastChild;if(!d.support.tbody){var n=T.test(i),o=j==="table"&&!n?m.firstChild&&m.firstChild.childNodes:k[1]===""&&!n?m.childNodes:[];for(var p=o.length-1;p>=0;--p)d.nodeName(o[p],"tbody")&&!o[p].childNodes.length&&o[p].parentNode.removeChild(o[p])}!d.support.leadingWhitespace&&Q.test(i)&&m.insertBefore(b.createTextNode(Q.exec(i)[0]),m.firstChild),i=m.childNodes}}else i=b.createTextNode(i);i.nodeType?g.push(i):g=d.merge(g,i)}if(e)for(h=0;g[h];h++)!f||!d.nodeName(g[h],"script")||g[h].type&&g[h].type.toLowerCase()!=="text/javascript"?(g[h].nodeType===1&&g.splice.apply(g,[h+1,0].concat(d.makeArray(g[h].getElementsByTagName("script")))),e.appendChild(g[h])):f.push(g[h].parentNode?g[h].parentNode.removeChild(g[h]):g[h]);return g},cleanData:function(a){var b,c,e=d.cache,f=d.expando,g=d.event.special,h=d.support.deleteExpando;for(var i=0,j;(j=a[i])!=null;i++){if(j.nodeName&&d.noData[j.nodeName.toLowerCase()])continue;c=j[d.expando];if(c){b=e[c]&&e[c][f];if(b&&b.events){for(var k in b.events)g[k]?d.event.remove(j,k):d.removeEvent(j,k,b.handle);b.handle&&(b.handle.elem=null)}h?delete j[d.expando]:j.removeAttribute&&j.removeAttribute(d.expando),delete e[c]}}}});var bb=/alpha\([^)]*\)/i,bc=/opacity=([^)]*)/,bd=/-([a-z])/ig,be=/([A-Z])/g,bf=/^-?\d+(?:px)?$/i,bg=/^-?\d/,bh={position:"absolute",visibility:"hidden",display:"block"},bi=["Left","Right"],bj=["Top","Bottom"],bk,bl,bm,bn=function(a,b){return b.toUpperCase()};d.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return d.access(this,a,c,!0,function(a,c,e){return e!==b?d.style(a,c,e):d.css(a,c)})},d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bk(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{zIndex:!0,fontWeight:!0,opacity:!0,zoom:!0,lineHeight:!0},cssProps:{"float":d.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,e,f){if(a&&a.nodeType!==3&&a.nodeType!==8&&a.style){var g,h=d.camelCase(c),i=a.style,j=d.cssHooks[h];c=d.cssProps[h]||h;if(e===b){if(j&&"get"in j&&(g=j.get(a,!1,f))!==b)return g;return i[c]}if(typeof e==="number"&&isNaN(e)||e==null)return;typeof e==="number"&&!d.cssNumber[h]&&(e+="px");if(!j||!("set"in j)||(e=j.set(a,e))!==b)try{i[c]=e}catch(k){}}},css:function(a,c,e){var f,g=d.camelCase(c),h=d.cssHooks[g];c=d.cssProps[g]||g;if(h&&"get"in h&&(f=h.get(a,!0,e))!==b)return f;if(bk)return bk(a,c,g)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]},camelCase:function(a){return a.replace(bd,bn)}}),d.curCSS=d.css,d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,c,e){var f;if(c){a.offsetWidth!==0?f=bo(a,b,e):d.swap(a,bh,function(){f=bo(a,b,e)});if(f<=0){f=bk(a,b,b),f==="0px"&&bm&&(f=bm(a,b,b));if(f!=null)return f===""||f==="auto"?"0px":f}if(f<0||f==null){f=a.style[b];return f===""||f==="auto"?"0px":f}return typeof f==="string"?f:f+"px"}},set:function(a,b){if(!bf.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),d.support.opacity||(d.cssHooks.opacity={get:function(a,b){return bc.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style;c.zoom=1;var e=d.isNaN(b)?"":"alpha(opacity="+b*100+")",f=c.filter||"";c.filter=bb.test(f)?f.replace(bb,e):c.filter+" "+e}}),c.defaultView&&c.defaultView.getComputedStyle&&(bl=function(a,c,e){var f,g,h;e=e.replace(be,"-$1").toLowerCase();if(!(g=a.ownerDocument.defaultView))return b;if(h=g.getComputedStyle(a,null))f=h.getPropertyValue(e),f===""&&!d.contains(a.ownerDocument.documentElement,a)&&(f=d.style(a,e));return f}),c.documentElement.currentStyle&&(bm=function(a,b){var c,d=a.currentStyle&&a.currentStyle[b],e=a.runtimeStyle&&a.runtimeStyle[b],f=a.style;!bf.test(d)&&bg.test(d)&&(c=f.left,e&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":d||0,d=f.pixelLeft+"px",f.left=c,e&&(a.runtimeStyle.left=e));return d===""?"auto":d}),bk=bl||bm,d.expr&&d.expr.filters&&(d.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!d.support.reliableHiddenOffsets&&(a.style.display||d.css(a,"display"))==="none"},d.expr.filters.visible=function(a){return!d.expr.filters.hidden(a)});var bp=/%20/g,bq=/\[\]$/,br=/\r?\n/g,bs=/#.*$/,bt=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bu=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bv=/(?:^file|^widget|\-extension):$/,bw=/^(?:GET|HEAD)$/,bx=/^\/\//,by=/\?/,bz=/)<[^<]*)*<\/script>/gi,bA=/^(?:select|textarea)/i,bB=/\s+/,bC=/([?&])_=[^&]*/,bD=/(^|\-)([a-z])/g,bE=function(a,b,c){return b+c.toUpperCase()},bF=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,bG=d.fn.load,bH={},bI={},bJ,bK;try{bJ=c.location.href}catch(bL){bJ=c.createElement("a"),bJ.href="",bJ=bJ.href}bK=bF.exec(bJ.toLowerCase()),d.fn.extend({load:function(a,c,e){if(typeof a!=="string"&&bG)return bG.apply(this,arguments);if(!this.length)return this;var f=a.indexOf(" ");if(f>=0){var g=a.slice(f,a.length);a=a.slice(0,f)}var h="GET";c&&(d.isFunction(c)?(e=c,c=b):typeof c==="object"&&(c=d.param(c,d.ajaxSettings.traditional),h="POST"));var i=this;d.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?d("
").append(c.replace(bz,"")).find(g):c)),e&&i.each(e,[c,b,a])}});return this},serialize:function(){return d.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?d.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bA.test(this.nodeName)||bu.test(this.type))}).map(function(a,b){var c=d(this).val();return c==null?null:d.isArray(c)?d.map(c,function(a,c){return{name:b.name,value:a.replace(br,"\r\n")}}):{name:b.name,value:c.replace(br,"\r\n")}}).get()}}),d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.bind(b,a)}}),d.each(["get","post"],function(a,c){d[c]=function(a,e,f,g){d.isFunction(e)&&(g=g||f,f=e,e=b);return d.ajax({type:c,url:a,data:e,success:f,dataType:g})}}),d.extend({getScript:function(a,c){return d.get(a,b,c,"script")},getJSON:function(a,b,c){return d.get(a,b,c,"json")},ajaxSetup:function(a,b){b?d.extend(!0,a,d.ajaxSettings,b):(b=a,a=d.extend(!0,d.ajaxSettings,b));for(var c in {context:1,url:1})c in b?a[c]=b[c]:c in d.ajaxSettings&&(a[c]=d.ajaxSettings[c]);return a},ajaxSettings:{url:bJ,isLocal:bv.test(bK[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":d.parseJSON,"text xml":d.parseXML}},ajaxPrefilter:bM(bH),ajaxTransport:bM(bI),ajax:function(a,c){function v(a,c,l,n){if(r!==2){r=2,p&&clearTimeout(p),o=b,m=n||"",u.readyState=a?4:0;var q,t,v,w=l?bP(e,u,l):b,x,y;if(a>=200&&a<300||a===304){if(e.ifModified){if(x=u.getResponseHeader("Last-Modified"))d.lastModified[k]=x;if(y=u.getResponseHeader("Etag"))d.etag[k]=y}if(a===304)c="notmodified",q=!0;else try{t=bQ(e,w),c="success",q=!0}catch(z){c="parsererror",v=z}}else{v=c;if(!c||a)c="error",a<0&&(a=0)}u.status=a,u.statusText=c,q?h.resolveWith(f,[t,c,u]):h.rejectWith(f,[u,c,v]),u.statusCode(j),j=b,s&&g.trigger("ajax"+(q?"Success":"Error"),[u,e,q?t:v]),i.resolveWith(f,[u,c]),s&&(g.trigger("ajaxComplete",[u,e]),--d.active||d.event.trigger("ajaxStop"))}}typeof a==="object"&&(c=a,a=b),c=c||{};var e=d.ajaxSetup({},c),f=e.context||e,g=f!==e&&(f.nodeType||f instanceof d)?d(f):d.event,h=d.Deferred(),i=d._Deferred(),j=e.statusCode||{},k,l={},m,n,o,p,q,r=0,s,t,u={readyState:0,setRequestHeader:function(a,b){r||(l[a.toLowerCase().replace(bD,bE)]=b);return this},getAllResponseHeaders:function(){return r===2?m:null},getResponseHeader:function(a){var c;if(r===2){if(!n){n={};while(c=bt.exec(m))n[c[1].toLowerCase()]=c[2]}c=n[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){r||(e.mimeType=a);return this},abort:function(a){a=a||"abort",o&&o.abort(a),v(0,a);return this}};h.promise(u),u.success=u.done,u.error=u.fail,u.complete=i.done,u.statusCode=function(a){if(a){var b;if(r<2)for(b in a)j[b]=[j[b],a[b]];else b=a[u.status],u.then(b,b)}return this},e.url=((a||e.url)+"").replace(bs,"").replace(bx,bK[1]+"//"),e.dataTypes=d.trim(e.dataType||"*").toLowerCase().split(bB),e.crossDomain||(q=bF.exec(e.url.toLowerCase()),e.crossDomain=q&&(q[1]!=bK[1]||q[2]!=bK[2]||(q[3]||(q[1]==="http:"?80:443))!=(bK[3]||(bK[1]==="http:"?80:443)))),e.data&&e.processData&&typeof e.data!=="string"&&(e.data=d.param(e.data,e.traditional)),bN(bH,e,c,u);if(r===2)return!1;s=e.global,e.type=e.type.toUpperCase(),e.hasContent=!bw.test(e.type),s&&d.active++===0&&d.event.trigger("ajaxStart");if(!e.hasContent){e.data&&(e.url+=(by.test(e.url)?"&":"?")+e.data),k=e.url;if(e.cache===!1){var w=d.now(),x=e.url.replace(bC,"$1_="+w);e.url=x+(x===e.url?(by.test(e.url)?"&":"?")+"_="+w:"")}}if(e.data&&e.hasContent&&e.contentType!==!1||c.contentType)l["Content-Type"]=e.contentType;e.ifModified&&(k=k||e.url,d.lastModified[k]&&(l["If-Modified-Since"]=d.lastModified[k]),d.etag[k]&&(l["If-None-Match"]=d.etag[k])),l.Accept=e.dataTypes[0]&&e.accepts[e.dataTypes[0]]?e.accepts[e.dataTypes[0]]+(e.dataTypes[0]!=="*"?", */*; q=0.01":""):e.accepts["*"];for(t in e.headers)u.setRequestHeader(t,e.headers[t]);if(e.beforeSend&&(e.beforeSend.call(f,u,e)===!1||r===2)){u.abort();return!1}for(t in {success:1,error:1,complete:1})u[t](e[t]);o=bN(bI,e,c,u);if(o){u.readyState=1,s&&g.trigger("ajaxSend",[u,e]),e.async&&e.timeout>0&&(p=setTimeout(function(){u.abort("timeout")},e.timeout));try{r=1,o.send(l,v)}catch(y){status<2?v(-1,y):d.error(y)}}else v(-1,"No Transport");return u},param:function(a,c){var e=[],f=function(a,b){b=d.isFunction(b)?b():b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=d.ajaxSettings.traditional);if(d.isArray(a)||a.jquery&&!d.isPlainObject(a))d.each(a,function(){f(this.name,this.value)});else for(var g in a)bO(g,a[g],c,f);return e.join("&").replace(bp,"+")}}),d.extend({active:0,lastModified:{},etag:{}});var bR=d.now(),bS=/(\=)\?(&|$)|()\?\?()/i;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return d.expando+"_"+bR++}}),d.ajaxPrefilter("json jsonp",function(b,c,e){var f=typeof b.data==="string";if(b.dataTypes[0]==="jsonp"||c.jsonpCallback||c.jsonp!=null||b.jsonp!==!1&&(bS.test(b.url)||f&&bS.test(b.data))){var g,h=b.jsonpCallback=d.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2",m=function(){a[h]=i,g&&d.isFunction(i)&&a[h](g[0])};b.jsonp!==!1&&(j=j.replace(bS,l),b.url===j&&(f&&(k=k.replace(bS,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},e.then(m,m),b.converters["script json"]=function(){g||d.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),d.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){d.globalEval(a);return a}}}),d.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),d.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var bT=d.now(),bU,bV;d.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&bX()||bY()}:bX,bV=d.ajaxSettings.xhr(),d.support.ajax=!!bV,d.support.cors=bV&&"withCredentials"in bV,bV=b,d.support.ajax&&d.ajaxTransport(function(a){if(!a.crossDomain||d.support.cors){var c;return{send:function(e,f){var g=a.xhr(),h,i;a.username?g.open(a.type,a.url,a.async,a.username,a.password):g.open(a.type,a.url,a.async);if(a.xhrFields)for(i in a.xhrFields)g[i]=a.xhrFields[i];a.mimeType&&g.overrideMimeType&&g.overrideMimeType(a.mimeType),(!a.crossDomain||a.hasContent)&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(i in e)g.setRequestHeader(i,e[i])}catch(j){}g.send(a.hasContent&&a.data||null),c=function(e,i){var j,k,l,m,n;try{if(c&&(i||g.readyState===4)){c=b,h&&(g.onreadystatechange=d.noop,delete bU[h]);if(i)g.readyState!==4&&g.abort();else{j=g.status,l=g.getAllResponseHeaders(),m={},n=g.responseXML,n&&n.documentElement&&(m.xml=n),m.text=g.responseText;try{k=g.statusText}catch(o){k=""}j||!a.isLocal||a.crossDomain?j===1223&&(j=204):j=m.text?200:404}}}catch(p){i||f(-1,p)}m&&f(j,k,m,l)},a.async&&g.readyState!==4?(bU||(bU={},bW()),h=bT++,g.onreadystatechange=bU[h]=c):c()},abort:function(){c&&c(0,1)}}}});var bZ={},b$=/^(?:toggle|show|hide)$/,b_=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,ca,cb=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];d.fn.extend({show:function(a,b,c){var e,f;if(a||a===0)return this.animate(cc("show",3),a,b,c);for(var g=0,h=this.length;g=0;a--)c[a].elem===this&&(b&&c[a](!0),c.splice(a,1))}),b||this.dequeue();return this}}),d.each({slideDown:cc("show",1),slideUp:cc("hide",1),slideToggle:cc("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){d.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),d.extend({speed:function(a,b,c){var e=a&&typeof a==="object"?d.extend({},a):{complete:c||!c&&b||d.isFunction(a)&&a,duration:a,easing:c&&b||b&&!d.isFunction(b)&&b};e.duration=d.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in d.fx.speeds?d.fx.speeds[e.duration]:d.fx.speeds._default,e.old=e.complete,e.complete=function(){e.queue!==!1&&d(this).dequeue(),d.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig||(b.orig={})}}),d.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(d.fx.step[this.prop]||d.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=d.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,b,c){function g(a){return e.step(a)}var e=this,f=d.fx;this.startTime=d.now(),this.start=a,this.end=b,this.unit=c||this.unit||(d.cssNumber[this.prop]?"":"px"),this.now=this.start,this.pos=this.state=0,g.elem=this.elem,g()&&d.timers.push(g)&&!ca&&(ca=setInterval(f.tick,f.interval))},show:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.show=!0,this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),d(this.elem).show()},hide:function(){this.options.orig[this.prop]=d.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b=d.now(),c=!0;if(a||b>=this.options.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),this.options.curAnim[this.prop]=!0;for(var e in this.options.curAnim)this.options.curAnim[e]!==!0&&(c=!1);if(c){if(this.options.overflow!=null&&!d.support.shrinkWrapBlocks){var f=this.elem,g=this.options;d.each(["","X","Y"],function(a,b){f.style["overflow"+b]=g.overflow[a]})}this.options.hide&&d(this.elem).hide();if(this.options.hide||this.options.show)for(var h in this.options.curAnim)d.style(this.elem,h,this.options.orig[h]);this.options.complete.call(this.elem)}return!1}var i=b-this.startTime;this.state=i/this.options.duration;var j=this.options.specialEasing&&this.options.specialEasing[this.prop],k=this.options.easing||(d.easing.swing?"swing":"linear");this.pos=d.easing[j||k](this.state,i,0,1,this.options.duration),this.now=this.start+(this.end-this.start)*this.pos,this.update();return!0}},d.extend(d.fx,{tick:function(){var a=d.timers;for(var b=0;b
";d.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"}),b.innerHTML=j,a.insertBefore(b,a.firstChild),e=b.firstChild,f=e.firstChild,h=e.nextSibling.firstChild.firstChild,this.doesNotAddBorder=f.offsetTop!==5,this.doesAddBorderForTableAndCells=h.offsetTop===5,f.style.position="fixed",f.style.top="20px",this.supportsFixedPosition=f.offsetTop===20||f.offsetTop===15,f.style.position=f.style.top="",e.style.overflow="hidden",e.style.position="relative",this.subtractsBorderForOverflowNotVisible=f.offsetTop===-5,this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==i,a.removeChild(b),a=b=e=f=g=h=null,d.offset.initialize=d.noop},bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;d.offset.initialize(),d.offset.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(d.css(a,"marginTop"))||0,c+=parseFloat(d.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var e=d.css(a,"position");e==="static"&&(a.style.position="relative");var f=d(a),g=f.offset(),h=d.css(a,"top"),i=d.css(a,"left"),j=e==="absolute"&&d.inArray("auto",[h,i])>-1,k={},l={},m,n;j&&(l=f.position()),m=j?l.top:parseInt(h,10)||0,n=j?l.left:parseInt(i,10)||0,d.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):f.css(k)}},d.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),e=cf.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(d.css(a,"marginTop"))||0,c.left-=parseFloat(d.css(a,"marginLeft"))||0,e.top+=parseFloat(d.css(b[0],"borderTopWidth"))||0,e.left+=parseFloat(d.css(b[0],"borderLeftWidth"))||0;return{top:c.top-e.top,left:c.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&(!cf.test(a.nodeName)&&d.css(a,"position")==="static"))a=a.offsetParent;return a})}}),d.each(["Left","Top"],function(a,c){var e="scroll"+c;d.fn[e]=function(c){var f=this[0],g;if(!f)return null;if(c!==b)return this.each(function(){g=cg(this),g?g.scrollTo(a?d(g).scrollLeft():c,a?c:d(g).scrollTop()):this[e]=c});g=cg(f);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:d.support.boxModel&&g.document.documentElement[e]||g.document.body[e]:f[e]}}),d.each(["Height","Width"],function(a,c){var e=c.toLowerCase();d.fn["inner"+c]=function(){return this[0]?parseFloat(d.css(this[0],e,"padding")):null},d.fn["outer"+c]=function(a){return this[0]?parseFloat(d.css(this[0],e,a?"margin":"border")):null},d.fn[e]=function(a){var f=this[0];if(!f)return a==null?null:this;if(d.isFunction(a))return this.each(function(b){var c=d(this);c[e](a.call(this,b,c[e]()))});if(d.isWindow(f)){var g=f.document.documentElement["client"+c];return f.document.compatMode==="CSS1Compat"&&g||f.document.body["client"+c]||g}if(f.nodeType===9)return Math.max(f.documentElement["client"+c],f.body["scroll"+c],f.documentElement["scroll"+c],f.body["offset"+c],f.documentElement["offset"+c]);if(a===b){var h=d.css(f,e),i=parseFloat(h);return d.isNaN(i)?h:i}return this.css(e,typeof a==="string"?a:a+"px")}}),a.jQuery=a.$=d})(window); \ No newline at end of file diff --git a/src/mailman_django/media/mailman_django/default/js/libs/modernizr-1.7.min.js b/src/mailman_django/media/mailman_django/default/js/libs/modernizr-1.7.min.js new file mode 100755 index 0000000..6f54850 --- /dev/null +++ b/src/mailman_django/media/mailman_django/default/js/libs/modernizr-1.7.min.js @@ -0,0 +1,2 @@ +// Modernizr v1.7 www.modernizr.com +window.Modernizr=function(a,b,c){function G(){e.input=function(a){for(var b=0,c=a.length;b7)},r.history=function(){return !!(a.history&&history.pushState)},r.draganddrop=function(){return x("dragstart")&&x("drop")},r.websockets=function(){return"WebSocket"in a},r.rgba=function(){A("background-color:rgba(150,255,150,.5)");return D(k.backgroundColor,"rgba")},r.hsla=function(){A("background-color:hsla(120,40%,100%,.5)");return D(k.backgroundColor,"rgba")||D(k.backgroundColor,"hsla")},r.multiplebgs=function(){A("background:url(//:),url(//:),red url(//:)");return(new RegExp("(url\\s*\\(.*?){3}")).test(k.background)},r.backgroundsize=function(){return F("backgroundSize")},r.borderimage=function(){return F("borderImage")},r.borderradius=function(){return F("borderRadius","",function(a){return D(a,"orderRadius")})},r.boxshadow=function(){return F("boxShadow")},r.textshadow=function(){return b.createElement("div").style.textShadow===""},r.opacity=function(){B("opacity:.55");return/^0.55$/.test(k.opacity)},r.cssanimations=function(){return F("animationName")},r.csscolumns=function(){return F("columnCount")},r.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";A((a+o.join(b+a)+o.join(c+a)).slice(0,-a.length));return D(k.backgroundImage,"gradient")},r.cssreflections=function(){return F("boxReflect")},r.csstransforms=function(){return!!E(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])},r.csstransforms3d=function(){var a=!!E(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);a&&"webkitPerspective"in g.style&&(a=w("@media ("+o.join("transform-3d),(")+"modernizr)"));return a},r.csstransitions=function(){return F("transitionProperty")},r.fontface=function(){var a,c,d=h||g,e=b.createElement("style"),f=b.implementation||{hasFeature:function(){return!1}};e.type="text/css",d.insertBefore(e,d.firstChild),a=e.sheet||e.styleSheet;var i=f.hasFeature("CSS2","")?function(b){if(!a||!b)return!1;var c=!1;try{a.insertRule(b,0),c=/src/i.test(a.cssRules[0].cssText),a.deleteRule(a.cssRules.length-1)}catch(d){}return c}:function(b){if(!a||!b)return!1;a.cssText=b;return a.cssText.length!==0&&/src/i.test(a.cssText)&&a.cssText.replace(/\r+|\n+/g,"").indexOf(b.split(" ")[0])===0};c=i('@font-face { font-family: "font"; src: url(data:,); }'),d.removeChild(e);return c},r.video=function(){var a=b.createElement("video"),c=!!a.canPlayType;if(c){c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"');var d='video/mp4; codecs="avc1.42E01E';c.h264=a.canPlayType(d+'"')||a.canPlayType(d+', mp4a.40.2"'),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}return c},r.audio=function(){var a=b.createElement("audio"),c=!!a.canPlayType;c&&(c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"'),c.mp3=a.canPlayType("audio/mpeg;"),c.wav=a.canPlayType('audio/wav; codecs="1"'),c.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;"));return c},r.localstorage=function(){try{return!!localStorage.getItem}catch(a){return!1}},r.sessionstorage=function(){try{return!!sessionStorage.getItem}catch(a){return!1}},r.webWorkers=function(){return!!a.Worker},r.applicationcache=function(){return!!a.applicationCache},r.svg=function(){return!!b.createElementNS&&!!b.createElementNS(q.svg,"svg").createSVGRect},r.inlinesvg=function(){var a=b.createElement("div");a.innerHTML="";return(a.firstChild&&a.firstChild.namespaceURI)==q.svg},r.smil=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"animate")))},r.svgclippaths=function(){return!!b.createElementNS&&/SVG/.test(n.call(b.createElementNS(q.svg,"clipPath")))};for(var H in r)z(r,H)&&(v=H.toLowerCase(),e[v]=r[H](),u.push((e[v]?"":"no-")+v));e.input||G(),e.crosswindowmessaging=e.postmessage,e.historymanagement=e.history,e.addTest=function(a,b){a=a.toLowerCase();if(!e[a]){b=!!b(),g.className+=" "+(b?"":"no-")+a,e[a]=b;return e}},A(""),j=l=null,f&&a.attachEvent&&function(){var a=b.createElement("div");a.innerHTML="";return a.childNodes.length!==1}()&&function(a,b){function p(a,b){var c=-1,d=a.length,e,f=[];while(++c. + +from django.db import models + +# Create your models here. diff --git a/src/mailman_django/templates/.DS_Store b/src/mailman_django/templates/.DS_Store new file mode 100644 index 0000000..b2cc5eb --- /dev/null +++ b/src/mailman_django/templates/.DS_Store Binary files differ diff --git a/src/mailman_django/templates/mailman-django/.DS_Store b/src/mailman_django/templates/mailman-django/.DS_Store new file mode 100644 index 0000000..5afaf87 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/.DS_Store Binary files differ diff --git a/src/mailman_django/templates/mailman-django/base.html b/src/mailman_django/templates/mailman-django/base.html new file mode 100644 index 0000000..b788a6c --- /dev/null +++ b/src/mailman_django/templates/mailman-django/base.html @@ -0,0 +1,62 @@ + +{% load i18n %} + + + + + + + + + + + + + + + + + +
+

+ {% block heading %} + {% if list %} + {{list.list_name}} {{list.real_name}} + {% else %} + on {{domain}} + {% endif %} + {% endblock %}

+ {% if error %} +
+
{% trans "Error" %}
+ {{error}} +
+ {% endif %} + {% if message %} +
+
{% trans "Message" %}
+ {{message}} +
+ {% endif %} + {% block header%}{% endblock %} + {% block actionButtonsList %}{% endblock %} + {% block smallBoxLeft %}{% endblock %} + {% block smallBoxRight %}{% endblock %} + +
+ + + + diff --git a/src/mailman_django/templates/mailman-django/base_ajax.html b/src/mailman_django/templates/mailman-django/base_ajax.html new file mode 100644 index 0000000..75ddf24 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/base_ajax.html @@ -0,0 +1,3 @@ + +{% load i18n %} + {% block header%}{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/confirm_dialog.html b/src/mailman_django/templates/mailman-django/confirm_dialog.html new file mode 100644 index 0000000..e9e1b2c --- /dev/null +++ b/src/mailman_django/templates/mailman-django/confirm_dialog.html @@ -0,0 +1,16 @@ +{% extends extend_template %} +{% load i18n %} + +{% block header %} +
+
{% trans "Please confirm this action" %}
+
+
+ +
+ +
+
+{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/domain_index.html b/src/mailman_django/templates/mailman-django/domain_index.html new file mode 100644 index 0000000..87b9080 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/domain_index.html @@ -0,0 +1,37 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + +{% block heading %} + {% trans "Domain Index" %} +{% endblock %} + +{% block header %} +
+
{% trans "About" %}
+ Register new Domains. +

+
+{% endblock %} +{% block actionButtonsList %} + +{% endblock %} + +{% block smallBoxLeft %} + {% for domain in domains %} +
+
{{ domain.contact_address }} ({{ domain.base_url }})
+ {% if domain.description %} + {{ domain.description }} + {% endif %} +
+ {% endfor %} +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/domain_new.html b/src/mailman_django/templates/mailman-django/domain_new.html new file mode 100644 index 0000000..a862a6e --- /dev/null +++ b/src/mailman_django/templates/mailman-django/domain_new.html @@ -0,0 +1,18 @@ +{% extends extend_template %} +{% load i18n %} + +{% block heading %} + {% trans "Add a new Domain" %} +{% endblock %} + +{% block header %} + +
+ {{ form.as_div }} +
+ +
+
+ +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/errors/generic.html b/src/mailman_django/templates/mailman-django/errors/generic.html new file mode 100644 index 0000000..59ea176 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/errors/generic.html @@ -0,0 +1,14 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + +{% block heading %} +ERROR +{% endblock %} + +{% block header %} +
+
{% trans "Error-Site" %}
+ {% if error %}

{{ error }}

{% endif %} + {% if message %}

{{ message }}

{% endif %} +
+{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/list_selector.html b/src/mailman_django/templates/mailman-django/list_selector.html new file mode 100644 index 0000000..da987cd --- /dev/null +++ b/src/mailman_django/templates/mailman-django/list_selector.html @@ -0,0 +1,21 @@ +{% load i18n %} + +{% block selector %} +
+{%if lists|length >= 1 and lists|length <= 15 %} +
+ + +
+ +{% else %} + {% trans "List Index" %} +{%endif%} +
+{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/lists/__init__.py b/src/mailman_django/templates/mailman-django/lists/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/__init__.py diff --git a/src/mailman_django/templates/mailman-django/lists/index.html b/src/mailman_django/templates/mailman-django/lists/index.html new file mode 100644 index 0000000..fc829a5 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/index.html @@ -0,0 +1,38 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + +{% block heading %} + All available Lists on {{domain}} +{% endblock %} + +{% block header %} +
+
{% trans "About" %}
+ {% trans "This site shows all available lists, either on the registered Domain or the whole server."%} +
+{% endblock %} + +{% block actionButtonsList %} + +{% endblock %} + +{% block smallBoxLeft %} + {% for list in lists %} + + + {% endfor %} +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/lists/mass_subscribe.html b/src/mailman_django/templates/mailman-django/lists/mass_subscribe.html new file mode 100644 index 0000000..475cdaa --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/mass_subscribe.html @@ -0,0 +1,23 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + +{% block heading %} + {% trans "Mass Subscribe Users to" %} {{list.fqdn_listname}} +{% endblock %} + +{% block header %} +
+
{% trans "Form" %}
+ +

{% blocktrans %}Here you can mass subscribe users to the list {{ list.fqdn_listname }}. To do so, please enter one name on each row.{% endblocktrans %}

+ +
+ + {{ form.as_div }} + +
+ +
+
+
+{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/lists/new.html b/src/mailman_django/templates/mailman-django/lists/new.html new file mode 100644 index 0000000..e7cc577 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/new.html @@ -0,0 +1,18 @@ +{% extends extend_template %} +{% load i18n %} + +{% block heading %} + {% trans "Create a new List on" %} {{ block.super }} +{% endblock %} + +{% block header %} +
+
{% trans "New List Preferences" %}
+
+ {{ form.as_div }} +
+ +
+
+
+{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/lists/settings.html b/src/mailman_django/templates/mailman-django/lists/settings.html new file mode 100644 index 0000000..e642e32 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/settings.html @@ -0,0 +1,40 @@ +{% extends extend_template %} +{% load i18n %} + +{% block heading %} + {{list.list_name}} {{list.real_name}} +{% endblock %} + +{% block header %} +{% if visible_section %} +
+
{% trans "List Settings " %}{{ fqdn_listname }}
+

{% trans "This page visualizes all list settings. This gives an idea of what the settings page could look like." %}

+ +
+
+ {{ form.as_div }} +
+ +
+
+{% endif %} +{% endblock %} + +{% block smallBoxLeft %} + {% for section in form_sections %} +
+ + {{section.1}} +
+ {% endfor %} +{% endblock %} + + +{% block actionButtonsList %} + +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/lists/subscriptions.html b/src/mailman_django/templates/mailman-django/lists/subscriptions.html new file mode 100644 index 0000000..ea511c1 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/subscriptions.html @@ -0,0 +1,30 @@ +{% extends extend_template %} +{% load i18n %} + +{% block heading %} + {{list.list_name}} {{list.real_name}} +{% endblock %} + +{% block header %} + + {% if form_subscribe %} + + {% endif %} + {% if form_unsubscribe %} +
+ {{ form_unsubscribe.as_div }} +
+ +
+ +
+ {% endif %} + +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/lists/summary.html b/src/mailman_django/templates/mailman-django/lists/summary.html new file mode 100644 index 0000000..e63ef3a --- /dev/null +++ b/src/mailman_django/templates/mailman-django/lists/summary.html @@ -0,0 +1,36 @@ +{% extends "mailman-django/base.html" %} +{% load i18n %} + +{% block heading %} + {{list.list_name}} {{list.real_name}} +{% endblock %} + +{% block header %} +
+
{% trans "About" %}
+ {{list.settings.description}} +
+{% endblock %} + +{% block actionButtonsList %} + +{% endblock %} + +{% block smallBoxLeft %} +
+
{% trans "Contact" %}
+ {% trans "Contact Owner" %} #TODO +
+
+
{% trans "Other Lists" %}
+ {% trans "View overview of all mailing lists" %} +
+{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/login.html b/src/mailman_django/templates/mailman-django/login.html new file mode 100644 index 0000000..d2508ea --- /dev/null +++ b/src/mailman_django/templates/mailman-django/login.html @@ -0,0 +1,18 @@ +{% extends extend_template %} +{% load i18n %} + +{% block heading %} + {% trans "Login Required" %} +{% endblock %} + +{% block header %} + + + +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/menu/administration.html b/src/mailman_django/templates/mailman-django/menu/administration.html new file mode 100644 index 0000000..d330a63 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/administration.html @@ -0,0 +1,34 @@ +{% load i18n %} + +{% block menu_administration %} + {% trans "Administration" %} + +{% endblock%} diff --git a/src/mailman_django/templates/mailman-django/menu/general.html b/src/mailman_django/templates/mailman-django/menu/general.html new file mode 100644 index 0000000..263b052 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/general.html @@ -0,0 +1,112 @@ +{% load i18n %} + +{% block menu_general %} + {% trans "General" %} + +{% endblock%} diff --git a/src/mailman_django/templates/mailman-django/menu/index.html b/src/mailman_django/templates/mailman-django/menu/index.html new file mode 100644 index 0000000..0d50d9e --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/index.html @@ -0,0 +1,21 @@ +{% load i18n %} + + + + diff --git a/src/mailman_django/templates/mailman-django/menu/info.html b/src/mailman_django/templates/mailman-django/menu/info.html new file mode 100644 index 0000000..05938f8 --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/info.html @@ -0,0 +1,51 @@ +{% load i18n %} + +{% block menu_info %} + {% trans "Info" %} + +{% endblock%} diff --git a/src/mailman_django/templates/mailman-django/menu/maintanance.html b/src/mailman_django/templates/mailman-django/menu/maintanance.html new file mode 100644 index 0000000..3139afa --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/maintanance.html @@ -0,0 +1,83 @@ +{% load i18n %} + +{% block menu_maintanance %} +{% if fqdn_listname %} + {% trans "Maintanance" %} + +{% endif %} +{% endblock%} diff --git a/src/mailman_django/templates/mailman-django/menu/subscriptions.html b/src/mailman_django/templates/mailman-django/menu/subscriptions.html new file mode 100644 index 0000000..ba9a90d --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/subscriptions.html @@ -0,0 +1,48 @@ +{% load i18n %} + +{% block menu_subscriptions %} + {% if fqdn_listname %} + {% trans "Subscriptions" %} + + {%endif%} +{% endblock%} diff --git a/src/mailman_django/templates/mailman-django/menu/user_options.html b/src/mailman_django/templates/mailman-django/menu/user_options.html new file mode 100644 index 0000000..07550da --- /dev/null +++ b/src/mailman_django/templates/mailman-django/menu/user_options.html @@ -0,0 +1,12 @@ +{% load i18n %} + +{% block menu_user_options %} + {% trans "User Options" %} + +{% endblock %} diff --git a/src/mailman_django/templates/mailman-django/user_settings.html b/src/mailman_django/templates/mailman-django/user_settings.html new file mode 100644 index 0000000..34fe30a --- /dev/null +++ b/src/mailman_django/templates/mailman-django/user_settings.html @@ -0,0 +1,57 @@ +{% extends extend_template %} +{% load i18n %} + + +{% block heading %} + {% ifequal tab "membership"%} + {% trans "Membership Settings" %} + {% if list %}{% trans "for"%}{% endif %} {{ list.fqdn_listname }} + {% else %} + {% trans "User Settings" %} + {% endifequal %} +{% endblock %} + +{% block header %} +
+
+ {% trans "Content" %} +
+

{%trans "Use this page to manage your account. You'll be able to see a list of your subscirbed lists, modify these membership settings of the list and your personal preferences in user_settings LP:821438 is solved
" %}

+ {% if form %} +
+
    + {{ form.as_div }} +
  • + +
  • +
+
+ {% endif %} +
+{% endblock %} + +{% block actionButtonsList %} + +{% endblock %} + +{% block smallBoxLeft %} + {% if membership_lists %} + {% for list in membership_lists %} + + {% endfor %} + {% endif %} +{% endblock %} diff --git a/src/mailman_django/tests/__init__.py b/src/mailman_django/tests/__init__.py new file mode 100644 index 0000000..9722531 --- /dev/null +++ b/src/mailman_django/tests/__init__.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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. +# GNU Mailman 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 +# GNU Mailman. If not, see . + +import tests +__test__ = { + "Doctest": tests, +} diff --git a/src/mailman_django/tests/old_tests.txt b/src/mailman_django/tests/old_tests.txt new file mode 100644 index 0000000..aa91a50 --- /dev/null +++ b/src/mailman_django/tests/old_tests.txt @@ -0,0 +1,107 @@ +Change the List Settings +======================== + +Try to update the settings. Here we must provide all the settings +on the page to be allowed to update it. + + >>> response = c.post('/settings/new_list%40mail.example.com/', + ... {'send_welcome_msg': True, + ... 'advertised': True, + ... u'list_name': u'new_list', + ... 'unsubscribe_policy': 9, + ... 'autorespond_owner': 9, + ... 'default_member_moderation': True, + ... 'scrub_nondigest': True, + ... 'subscribe_auto_approval': 'Subscribe auto approval lorem ipsum dolor sit', + ... u'fqdn_listname': u'new_list@example.com', + ... 'gateway_to_news': True, + ... 'encode_ascii_prefixes': True, + ... 'generic_nonmember_action': 9, + ... 'autoresponse_grace_period': 'Auto response grace period lorem ipsum dolor sit', + ... 'autoresponse_owner_text': 'Auto response owner text lorem ipsum dolor sit', + ... 'digest_is_default': True, + ... 'bounce_info_stale_after': 'Bounce info stale after lorem ipsum dolor sit', + ... 'welcome_msg': 'Welcome message lorem ipsum dolor sit', + ... 'topics_enabled': True, + ... 'digest_size_threshold': 9, + ... 'header_matches': 'Header matches lorem ipsum dolor sit', + ... u'real_name': u'New_list', + ... u'host_name': u'example.com', + ... 'reject_these_nonmembers': 'Reject these non members lorem ipsum dolor sit', + ... 'collapse_alternatives': True, + ... 'linked_newsgroup': 'Linked newsgroup lorem ipsum dolor sit', + ... 'send_reminders': True, + ... 'hold_these_nonmembers': 'Hold these non members lorem ipsum dolor sit', + ... 'digest_header': 'Digest header lorem ipsum dolor sit', + ... 'archive_private': True, + ... 'bounce_matching_headers': 'Bounce matching headers lorem ipsum dolor sit', + ... 'bounce_score_threshold': 9, + ... 'nondigestable': True, + ... u'http_etag': u'"008c561be0aeaf134fea95066e5a7509a79e4842"', + ... 'bounce_notify_owner_on_removal': True, + ... 'autoresponse_request_text': 'Auto response request text lorem ipsum dolor sit', + ... 'personalize': 'Personalize lorem ipsum dolor sit', + ... 'max_num_recipients': 9, + ... 'post_id': 9, + ... 'send_goodbye_msg': True, + ... 'max_days_to_hold': 9, + ... 'pipeline': 'Pipeline lorem ipsum dolor sit', + ... 'start_chain': 'Start chain lorem ipsum dolor sit', + ... 'preferred_language': 'Preferred language lorem ipsum dolor sit', + ... 'autorespond_requests': 9, + ... 'msg_header': 'Message header lorem ipsum dolor sit', + ... 'max_message_size': 9, + ... 'bounce_you_are_disabled_warnings': 9, + ... 'private_roster': True, + ... 'require_explicit_destination': True, + ... 'gateway_to_mail': True, + ... 'digest_send_periodic': True, + ... 'digestable': True, + ... 'member_moderation_notice': 'Member moderation notice lorem ipsum dolor sit', + ... 'bounce_you_are_disabled_warnings_interval': 'Bounce you are disabled warnings lorem ipsum dolor sit', + ... u'self_link': u'http://localhost:8001/3.0/lists/new_list@example.com', + ... 'digest_footer': 'Digest footer lorem ipsum dolor sit', + ... 'discard_these_nonmembers': 'Discard these non members lorem ipsum dolor sit', + ... 'respond_to_post_requests': True, + ... 'mime_is_default_digest': True, + ... 'subject_prefix': 'Subject prefix lorem ipsum dolor sit', + ... 'convert_html_to_plaintext': True, + ... 'autorespond_postings': 9, + ... 'msg_footer': 'Message footer lorem ipsum dolor sit', + ... 'info': 'Info lorem ipsum dolor sit', + ... 'reply_goes_to_list': 'Reply goes to list lorem ipsum dolor sit', + ... 'obscure_addresses': True, + ... 'include_list_post_header': True, + ... 'news_moderation': 'News moderation lorem ipsum dolor sit', + ... 'topics': 'Topics (BLOB format) lorem ipsum dolor sit', + ... 'bounce_notify_owner_on_disable': True, + ... 'goodbye_msg': 'Goodbye message lorem ipsum dolor sit', + ... 'topics_bodylines_limit': 9, + ... 'id': 9, + ... 'filter_content': True, + ... 'emergency': True, + ... 'member_moderation_action': True, + ... 'archive': True, + ... 'nonmember_rejection_notice': 'Non member rejection notice lorem ipsum dolor sit', + ... 'list_id': 'Some list ID lorem ipsum dolor sit', + ... 'first_strip_reply_to': True, + ... 'nntp_host': 'Nntp host lorem ipsum dolor sit', + ... 'news_prefix_subject_too': True, + ... 'bounce_processing': True, + ... 'description': 'Description lorem ipsum dolor sit', + ... 'reply_to_address': 'some_reply_to_address@lorem.ipsum', + ... 'moderator_password': 'Moderator password lorem ipsum dolor sit', + ... 'digest_volume_frequency': 'Digest volume frequency lorem ipsum dolor sit', + ... 'include_rfc2369_headers': True, + ... 'forward_auto_discards': True, + ... 'ban_list': 'Ban list lorem ipsum dolor sit', + ... 'new_member_options': 9, + ... 'subscribe_policy': 9, + ... 'bounce_unrecognized_goes_to_list_owner': True, + ... 'autoresponse_postings_text': 'Auto response postings text lorem ipsum dolor sit'}) + +If the post was successful, a positive response should appear in +the HTML content. + + >>> print "The list has been updated." in response.content + True diff --git a/src/mailman_django/tests/setup.py b/src/mailman_django/tests/setup.py new file mode 100644 index 0000000..d5b1f53 --- /dev/null +++ b/src/mailman_django/tests/setup.py @@ -0,0 +1,62 @@ +import os +import time +import shutil +import tempfile +import subprocess +from settings import MAILMAN_TEST_BINDIR + +class Testobject: + bindir = None + vardir = None + cfgfile = None + +def setup_mm(testobject): + os.environ['MAILMAN_TEST_BINDIR'] = MAILMAN_TEST_BINDIR + bindir = testobject.bindir = os.environ.get('MAILMAN_TEST_BINDIR') + if bindir is None: + raise RuntimeError("something's not quite right") + vardir = testobject.vardir = tempfile.mkdtemp() + cfgfile = testobject.cfgfile = os.path.join(vardir, 'client_test.cfg') + with open(cfgfile, 'w') as fp: + print >> fp, """\ +[mailman] +layout: tmpdir +[paths.tmpdir] +var_dir: {vardir} +log_dir: /tmp/mmclient/logs +[qrunner.archive] +start: no +[qrunner.bounces] +start: no +[qrunner.command] +start: no +[qrunner.in] +start: no +[qrunner.lmtp] +start: no +[qrunner.news] +start: no +[qrunner.out] +start: no +[qrunner.pipeline] +start: no +[qrunner.retry] +start: no +[qrunner.virgin] +start: no +[qrunner.digest] +start: no +""".format(vardir=vardir) + mailman = os.path.join(bindir, 'mailman') + subprocess.call([mailman, '-C', cfgfile, 'start', '-q']) + time.sleep(3) + return testobject + +def teardown_mm(testobject): + bindir = testobject.bindir + cfgfile = testobject.cfgfile + vardir = testobject.vardir + mailman = os.path.join(bindir, 'mailman') + subprocess.call([mailman, '-C', cfgfile, 'stop', '-q']) + shutil.rmtree(vardir) + time.sleep(3) diff --git a/src/mailman_django/tests/test_to_check.txt b/src/mailman_django/tests/test_to_check.txt new file mode 100644 index 0000000..cfa0884 --- /dev/null +++ b/src/mailman_django/tests/test_to_check.txt @@ -0,0 +1,58 @@ +Change the User Settings #TODO → LP:820827 +======================== + +Now let's check out the user settings. Start by accessing the user +settings page. The user settings also requires the user to be logged +in. We'll call the page and log in as the Katie. + + >>> response = c.post('/user_settings/katie%40example.com/', + ... {"addr": "katie@example.com", + ... "psw": "katie"}) + +Let's check that we ended up on the right page. + + >>> print "User Settings" in response.content + True + +The settings page contains two tabs - one for the general user settings +valid for all lists and a specific membership page with links to all +lists the user is subscribed to. On the latter the user can change the +settings for each list. +We'll start by changing some of the user settings. We'll set the real +name to Katie and the default email address to 'jack@example.com'. + + >>> response = c.post('/user_settings/katie%40example.com/', + ... {'real_name': 'Katie', + ... 'address': u'jack@example.com'}) + +If we now check the content of the page that was loaded, we should get +a confirmation that everything went well. + + >>> print "The user settings have been updated." in response.content + True + + +#MEMBERSHIP SETTINGS part2 #TODO - → LP:820827 +We want to make sure we don't hide our address when posting to the +list, so we change this option and save the form. + + >>> response = c.post('/membership_settings/katie%40example.com/?list=test-one@example.com', + ... {"hide_address": False}) + +Now we just need to make sure the saving went well. We do this by +checking the content of the page that was loaded. + + >>> print "The membership settings have been updated." in response.content + True + +We feel done with the user and memebership settings so let's log out +before we continue. + + >>> response = c.get('/lists/logout/',) + +Again, if the request was successful we should end up on the list info +page. Make sure that we got redirected there. + + >>> print "All mailing lists" in response.content + True +""" diff --git a/src/mailman_django/tests/tests.py b/src/mailman_django/tests/tests.py new file mode 100644 index 0000000..e1034f1 --- /dev/null +++ b/src/mailman_django/tests/tests.py @@ -0,0 +1,363 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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. +# +# GNU Mailman 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 +# GNU Mailman. If not, see . + +""" +============================== +Tests Login and Permissions +============================== + +This document both acts as a test for all the functions implemented +in the UI as well as documenting what can be done + +Test Pre Requirements +===================== + +* We've created a special Testobject which will run it's own instance of Mailman3 with a new empty Database. + + >>> from setup import setup_mm, Testobject, teardown_mm + >>> testobject = setup_mm(Testobject()) + + .. note:: + You need to stop all Mailman3 instances before running the tests + +* Modules needed + As we can't make sure that you're running the same language as we did we made sure that each test below is executed using the exact same translation mechanism as we use to Display you Status Messages and other GUI Texts. + + Import Translation Module to check success messages + >>> from django.utils.translation import gettext as _ + + Import HTTPRedirectObject to check whether a response redirects + >>> from django.http import HttpResponseRedirect + +Getting Started +=============== + +Starting the test module we do use a special Django Test Client which needs to be imported first. + + >>> from django.test.client import Client + >>> c = Client() + +Once this is created we can try accessing our first Page and check that this was done successful + + >>> response = c.get('/lists/',) + >>> response.status_code + 200 + +Login Required +================================================== + +As described within the installation instructions we *already* started using authentification. The easiest way testing it is that we simply load a page which is restricted to some users only. +This was done using Django's @login_required Decorator in front of the View. +One of the pages which requires a Login is the Domain Administration, if we can load the page without a redirect to the Login page, you're either already logged in or something went wrong. + + >>> response = c.get('/domains/') + >>> print type(response) == HttpResponseRedirect + True + +Login of a User +=============== + +We've decided to write our own Authentification Backend to use with Django. +This will handle all @login_required .authenticate() .login() requests. + +As we do not have the Authenticating Part which connects Both Mailman and the WebUI we had to hardcode usernames and permissions into the file (auth/restbackend.py) +For more information what we're planning to implement here take a look at the Acknowledgements. + + .. note:: + If you're planning to expand this feel free to use this wonderful resource: + https://docs.djangoproject.com/en/dev/topics/auth/ + +Once the new middleware is in place we will need to create a user first. At the moment the user is automaticly created upon success of the login procedure. + + >>> #c.... adduser() #TODO add user + +Users will have to use the Login form which is located at (/accounts/login/) in order to authenticate themself. The Login / Logout button is linked in the bottom left corner of each page as well. + +After each successful login users should be redirected either to the site which they requested before - stored in a GET Value named next - or get the List index. Only if they've used a faulty login they should stay on the Login Page to try again. + + >>> response = c.post('/accounts/login/', + ... {"user": "james@example.com", + ... "password": "james"}) + + >>> print type(response) == HttpResponseRedirect + True + +Unfortuneatly the Test Client requires to use the Login directly because it does handle each request seperately. For this reason we have to use the following part in the Tests only to authenticate a user. +Each successful Login will return True and write the users object into the request context, which allows simple checks whether there is a user logged in and what his name is. + + >>> c.login(username='katie@example.com', password='katie') + True + +Permissions +=========== + +Our own Auth Backend allows the use of Djangos own Permission Decorator which is + +.. code-block:: python + + @permission_required(NAME_OF_PERMISSION) + +At the moment we've installed this for Domain Administration, + + .. note:: + Please take a look at the ackownledgement to see what is working in this part + +Get the Domains page and get redirected because Katie who is logged in doesn't have the Permission + + >>> response = c.get('/domains/') + >>> print type(response) == HttpResponseRedirect + True + +Logout Katie who isn't a Domain-Owner and Login James who should be allowed to view this page + + >>> c.logout() #katie + >>> c.login(username='james@example.com', password='james') + True + +Check that the Page now loads correctly + + >>> response = c.get('/domains/') + >>> response.status_code + 200 + + +===== +Pages +===== + + +Create a New Domain +=================== + +Domain Administration is called by opening the URL mentioned below. Prequirements like Authorisation and Permissions have been covered before. +Now we do check that the response really does have the correct heading. + + >>> response = c.get('/domains/') + >>> print "Domain Index" in response.content + True + +On this page there should be a button which allows to create a new Domain. +If you're running Mailman for the first time you need to create a Domain before creating Mailinglists. That's only because each List is Part of a Domain and could not be created without it's reference. + + >>> '
  • New Domain
  • ' in response.content + True + +For sure the page allowing the creation of a new Domain should open correclty as well + >>> response = c.get('/domains/new/') + >>> response.status_code + 200 + >>> print "Add a new Domain" in response.content #TODO - change heading + True + +Each Domain has two main Data Parts, most obvious for a mailinglist we do need a mail_host that's the part behind the @ when getting an email. In addition we offer you this WebUI for configuration, some may have multiple URLs they can use to access the same installation of mailman. For this reason each Mailinglist gets it's own web_host as well - which doesn't need to be unique. + +Testing the Site we do now submit the form we've loaded earlier by sending all necessary data in a POST request. The new Domain will be called mail.example.com and available via it's web_host example.com. + + .. note:: + If you do want to use web_host filtering in your webUI you need to remember adding the URL to your /etc/hosts - at least for development + + >>> response = c.post('/domains/new/', + ... {"mail_host": "mail.example.com", + ... "web_host": "example.com", + ... "description": "doctest testing domain"}) + >>> response = c.get('/domains/') + +Then we check that everything went well. + >>> response.status_code + 200 + >>> print "doctest testing domain" in response.content + True + +Create a New List +================= + +After creating a Domain you should be able to create new Lists. The Button for doing so is shown on the List index Page which should offer a list of all available (adverrtised) lists. + + >>> response = c.get('/lists/') + >>> response.status_code + 200 + >>> "All available Lists" in response.content + True + +The new List creation form is opened by clicking on the Button mentioned above or accessing the page directly + + >>> response = c.get('/lists/new/') + >>> response.status_code + 200 + >>> print "Create a new List on" in response.content + True + +Creating a new List we do need to specify at least the below mentioned items. Those were entered using some nice GUI Forms which do only show up available Values or offer you to choose a name which will be checked during validation. +We're now submitting the form using a POST request and get redirected to the List Index Page + + >>> response = c.post('/lists/new/', + ... {"listname": "new_list1", + ... "mail_host": "mail.example.com", + ... "list_owner": "james@example.com", + ... "description": "doctest testing list", + ... "advertised": "True", + ... "languages": "English (USA)"}) + >>> print type(response) == HttpResponseRedirect + True + +As List index is an overview of all advertised Lists and we've choosen to do so we should now see our new List within the overview. HTTP_HOST is added as META Data for the request because we do only want to see Domains which belong to the example.com web_host + + >>> response = c.get('/lists/',HTTP_HOST='example.com') + >>> response.status_code + 200 + >>> "New_list1" in response.content + True + +List Summary +============ + +List summary is a dashboard for each List. It does have Links to the most useful functions which are only related to that Domain. These include the Values mentioned below. _(function) is used to Translate these to you local language. + + >>> response = c.get('/lists/new_list1%40mail.example.com/',) + >>> response.status_code + 200 + >>> _("Subscribe") in response.content + True + >>> _("Archives") in response.content + True + >>> _("Edit Options") in response.content + True + >>> _("Unsubscribe") in response.content + True + +Subscriptions +============= + +The Subscriptions form is found on the below URL. Last part of the Url is one of [None,'subscribe','unsubscribe'] + + >>> url = '/subscriptions/new_list1%40mail.example.com/subscribe' + >>> response = c.get(url) + >>> response.status_code + 200 + +Forms will be prefilled with the Users Email if so. is logged in. + + >>> "james@example.com" in response.content + True + +Now we can subscribe James and Katie and check that we get redirected to List Summary. + + >>> response = c.post(url, + ... {"email": "james@example.com", + ... "real_name": "James Watt", + ... "name": "subscribe", + ... "fqdn_listname": "new_list1@mail.example.com"}) + >>> response = c.post(url, + ... {"email": "katie@example.com", + ... "real_name": "Katie Doe", + ... "name": "subscribe", + ... "fqdn_listname": "new_list1@mail.example.com"}) + >>> print (_('Subscribed')+' katie@example.com') in response.content + True + +The logged in user (james@example.com) can now modify his own membership using a button which is displayed in list_summary. + + >>> response = c.get('/lists/new_list1%40mail.example.com/') + >>> "mm_membership" in response.content + True + +Using the same subscription page we can unsubscribe as well. + + >>> response = c.post('/subscriptions/new_list1%40mail.example.com/unsubscribe', + ... {"email": "katie@example.com", + ... "name": "unsubscribe", + ... "fqdn_listname": "new_list1@mail.example.com"}) + >>> print (_('Unsubscribed')+' katie@example.com') in response.content + True + +Mass Subscribe Users (within settings) +====================================== + +Another page related to Mass Subscriptions will be available to List Owners as well. This page will allow adding a couple of users to one lists at the same time. + + >>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/' + >>> response = c.get(url) + >>> response.status_code + 200 + +Try mass subscribing the users 'liza@example.com' and +'george@example.com'. Each address should be provided on a separate +line so add '\\n' between the names to indicate that this was done +(we're on a Linux machine which is why the letter 'n' was used and +the double '\\' instead of a single one is to escape the string +parsing of Python). + + >>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/' + >>> response = c.post(url, + ... {"emails": "liza@example.com\\ngeorge@example.com"}) + +If everything was successful, we shall get a positive response from +the page. We'll check that this was the case. + + >>> print _("The mass subscription was successful.") in response.content + True + +Change the Memebership Settings +=============================== + +Now let's go to the membership settings page. Once we go there we +should get a list of all the available lists. + + >>> response = c.get('/membership_settings/new_list1%40mail.example.com/') + >>> print "Membership Settings" in response.content + True + +Select the list 'new_list1@example.com'. + + >>> response = c.get('/membership_settings/new_list1%40mail.example.com/') + >>> print ("Membership Settings" in response.content) and ("for new_list1@mail.example.com" in response.content) + True + +.. note:: + This page relies on the Middleware connecting the Django Project with Mailman - see acknowledgements + +Delete the List +=============== + +Finally, let's delete the list. +We start by checking that the list is really there (for reference). + + >>> response = c.get('/lists/',HTTP_HOST='example.com') + >>> print "New_list1" in response.content + True + +Trying to delete the List we have to confirm this action + >>> response = c.get('/delete_list/new_list1%40mail.example.com/',) + >>> print "Please confirm" in response.content + True + +Confirmed by pressing the button which requests the same page using POST + >>> response = c.post('/delete_list/new_list1%40mail.example.com/',) + +...and check that it's been deleted. + >>> response = c.get('/lists/',HTTP_HOST='example.com') + >>> print "new_list1%40example.com" in response.content + False + +============== +Finishing Test +============== + +Don't forget to remove the test object after testing all functions + >>> teardown_mm(testobject) +""" diff --git a/src/mailman_django/urls.py b/src/mailman_django/urls.py new file mode 100644 index 0000000..5fa8a23 --- /dev/null +++ b/src/mailman_django/urls.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. +# +# This file is part of GNU Mailman. +# +# GNU Mailman 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. +# +# GNU Mailman 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 +# GNU Mailman. If not, see . + +from django.conf.urls.defaults import * +from django.conf import settings +from django.conf.urls.static import static + + +urlpatterns = patterns('mailman_django.views', + (r'^$', 'list_index'), + url(r'^accounts/login/$', 'user_login', name = 'user_login'), + url(r'^accounts/logout/$', 'user_logout', name = 'user_logout'), + url(r'^administration/$', 'administration', name = 'administration'), + url(r'^domains/$', 'domain_index', name = 'domain_index'), + url(r'^domains/new/$', 'domain_new', name = 'domain_new'), + url(r'^lists/$', 'list_index', name = 'list_index'), + url(r'^lists/new/$', 'list_new', name = 'list_new'), + url(r'^lists/(?P[^/]+)/$', 'list_summary', name = 'list_summary'), #PUBLIC + url(r'^subscriptions/(?P[^/]+)/(?:(?P
    -{% endblock %} diff --git a/templates/mailman-django/lists/__init__.py b/templates/mailman-django/lists/__init__.py deleted file mode 100644 index e69de29..0000000 --- a/templates/mailman-django/lists/__init__.py +++ /dev/null diff --git a/templates/mailman-django/lists/index.html b/templates/mailman-django/lists/index.html deleted file mode 100644 index fc829a5..0000000 --- a/templates/mailman-django/lists/index.html +++ /dev/null @@ -1,38 +0,0 @@ -{% extends "mailman-django/base.html" %} -{% load i18n %} - -{% block heading %} - All available Lists on {{domain}} -{% endblock %} - -{% block header %} -
    -
    {% trans "About" %}
    - {% trans "This site shows all available lists, either on the registered Domain or the whole server."%} -
    -{% endblock %} - -{% block actionButtonsList %} - -{% endblock %} - -{% block smallBoxLeft %} - {% for list in lists %} - - - {% endfor %} -{% endblock %} diff --git a/templates/mailman-django/lists/mass_subscribe.html b/templates/mailman-django/lists/mass_subscribe.html deleted file mode 100644 index 475cdaa..0000000 --- a/templates/mailman-django/lists/mass_subscribe.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends "mailman-django/base.html" %} -{% load i18n %} - -{% block heading %} - {% trans "Mass Subscribe Users to" %} {{list.fqdn_listname}} -{% endblock %} - -{% block header %} -
    -
    {% trans "Form" %}
    - -

    {% blocktrans %}Here you can mass subscribe users to the list {{ list.fqdn_listname }}. To do so, please enter one name on each row.{% endblocktrans %}

    - -
    - - {{ form.as_div }} - -
    - -
    -
    -
    -{% endblock %} diff --git a/templates/mailman-django/lists/new.html b/templates/mailman-django/lists/new.html deleted file mode 100644 index e7cc577..0000000 --- a/templates/mailman-django/lists/new.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends extend_template %} -{% load i18n %} - -{% block heading %} - {% trans "Create a new List on" %} {{ block.super }} -{% endblock %} - -{% block header %} -
    -
    {% trans "New List Preferences" %}
    -
    - {{ form.as_div }} -
    - -
    -
    -
    -{% endblock %} diff --git a/templates/mailman-django/lists/settings.html b/templates/mailman-django/lists/settings.html deleted file mode 100644 index e642e32..0000000 --- a/templates/mailman-django/lists/settings.html +++ /dev/null @@ -1,40 +0,0 @@ -{% extends extend_template %} -{% load i18n %} - -{% block heading %} - {{list.list_name}} {{list.real_name}} -{% endblock %} - -{% block header %} -{% if visible_section %} -
    -
    {% trans "List Settings " %}{{ fqdn_listname }}
    -

    {% trans "This page visualizes all list settings. This gives an idea of what the settings page could look like." %}

    - -
    -
    - {{ form.as_div }} -
    - -
    -
    -{% endif %} -{% endblock %} - -{% block smallBoxLeft %} - {% for section in form_sections %} -
    - - {{section.1}} -
    - {% endfor %} -{% endblock %} - - -{% block actionButtonsList %} - -{% endblock %} diff --git a/templates/mailman-django/lists/subscriptions.html b/templates/mailman-django/lists/subscriptions.html deleted file mode 100644 index ea511c1..0000000 --- a/templates/mailman-django/lists/subscriptions.html +++ /dev/null @@ -1,30 +0,0 @@ -{% extends extend_template %} -{% load i18n %} - -{% block heading %} - {{list.list_name}} {{list.real_name}} -{% endblock %} - -{% block header %} - - {% if form_subscribe %} - - {% endif %} - {% if form_unsubscribe %} -
    - {{ form_unsubscribe.as_div }} -
    - -
    - -
    - {% endif %} - -{% endblock %} diff --git a/templates/mailman-django/lists/summary.html b/templates/mailman-django/lists/summary.html deleted file mode 100644 index e63ef3a..0000000 --- a/templates/mailman-django/lists/summary.html +++ /dev/null @@ -1,36 +0,0 @@ -{% extends "mailman-django/base.html" %} -{% load i18n %} - -{% block heading %} - {{list.list_name}} {{list.real_name}} -{% endblock %} - -{% block header %} -
    -
    {% trans "About" %}
    - {{list.settings.description}} -
    -{% endblock %} - -{% block actionButtonsList %} - -{% endblock %} - -{% block smallBoxLeft %} -
    -
    {% trans "Contact" %}
    - {% trans "Contact Owner" %} #TODO -
    -
    -
    {% trans "Other Lists" %}
    - {% trans "View overview of all mailing lists" %} -
    -{% endblock %} diff --git a/templates/mailman-django/login.html b/templates/mailman-django/login.html deleted file mode 100644 index d2508ea..0000000 --- a/templates/mailman-django/login.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends extend_template %} -{% load i18n %} - -{% block heading %} - {% trans "Login Required" %} -{% endblock %} - -{% block header %} - - - -{% endblock %} diff --git a/templates/mailman-django/menu/administration.html b/templates/mailman-django/menu/administration.html deleted file mode 100644 index d330a63..0000000 --- a/templates/mailman-django/menu/administration.html +++ /dev/null @@ -1,34 +0,0 @@ -{% load i18n %} - -{% block menu_administration %} - {% trans "Administration" %} - -{% endblock%} diff --git a/templates/mailman-django/menu/general.html b/templates/mailman-django/menu/general.html deleted file mode 100644 index 263b052..0000000 --- a/templates/mailman-django/menu/general.html +++ /dev/null @@ -1,112 +0,0 @@ -{% load i18n %} - -{% block menu_general %} - {% trans "General" %} - -{% endblock%} diff --git a/templates/mailman-django/menu/index.html b/templates/mailman-django/menu/index.html deleted file mode 100644 index 0d50d9e..0000000 --- a/templates/mailman-django/menu/index.html +++ /dev/null @@ -1,21 +0,0 @@ -{% load i18n %} - - - - diff --git a/templates/mailman-django/menu/info.html b/templates/mailman-django/menu/info.html deleted file mode 100644 index 05938f8..0000000 --- a/templates/mailman-django/menu/info.html +++ /dev/null @@ -1,51 +0,0 @@ -{% load i18n %} - -{% block menu_info %} - {% trans "Info" %} - -{% endblock%} diff --git a/templates/mailman-django/menu/maintanance.html b/templates/mailman-django/menu/maintanance.html deleted file mode 100644 index 3139afa..0000000 --- a/templates/mailman-django/menu/maintanance.html +++ /dev/null @@ -1,83 +0,0 @@ -{% load i18n %} - -{% block menu_maintanance %} -{% if fqdn_listname %} - {% trans "Maintanance" %} - -{% endif %} -{% endblock%} diff --git a/templates/mailman-django/menu/subscriptions.html b/templates/mailman-django/menu/subscriptions.html deleted file mode 100644 index ba9a90d..0000000 --- a/templates/mailman-django/menu/subscriptions.html +++ /dev/null @@ -1,48 +0,0 @@ -{% load i18n %} - -{% block menu_subscriptions %} - {% if fqdn_listname %} - {% trans "Subscriptions" %} - - {%endif%} -{% endblock%} diff --git a/templates/mailman-django/menu/user_options.html b/templates/mailman-django/menu/user_options.html deleted file mode 100644 index 07550da..0000000 --- a/templates/mailman-django/menu/user_options.html +++ /dev/null @@ -1,12 +0,0 @@ -{% load i18n %} - -{% block menu_user_options %} - {% trans "User Options" %} - -{% endblock %} diff --git a/templates/mailman-django/user_settings.html b/templates/mailman-django/user_settings.html deleted file mode 100644 index 34fe30a..0000000 --- a/templates/mailman-django/user_settings.html +++ /dev/null @@ -1,57 +0,0 @@ -{% extends extend_template %} -{% load i18n %} - - -{% block heading %} - {% ifequal tab "membership"%} - {% trans "Membership Settings" %} - {% if list %}{% trans "for"%}{% endif %} {{ list.fqdn_listname }} - {% else %} - {% trans "User Settings" %} - {% endifequal %} -{% endblock %} - -{% block header %} -
    -
    - {% trans "Content" %} -
    -

    {%trans "Use this page to manage your account. You'll be able to see a list of your subscirbed lists, modify these membership settings of the list and your personal preferences in user_settings LP:821438 is solved
    " %}

    - {% if form %} -
    -
      - {{ form.as_div }} -
    • - -
    • -
    -
    - {% endif %} -
    -{% endblock %} - -{% block actionButtonsList %} - -{% endblock %} - -{% block smallBoxLeft %} - {% if membership_lists %} - {% for list in membership_lists %} - - {% endfor %} - {% endif %} -{% endblock %} diff --git a/tests/__init__.py b/tests/__init__.py deleted file mode 100644 index 9722531..0000000 --- a/tests/__init__.py +++ /dev/null @@ -1,21 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# GNU Mailman 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 -# GNU Mailman. If not, see . - -import tests -__test__ = { - "Doctest": tests, -} diff --git a/tests/old_tests.txt b/tests/old_tests.txt deleted file mode 100644 index aa91a50..0000000 --- a/tests/old_tests.txt +++ /dev/null @@ -1,107 +0,0 @@ -Change the List Settings -======================== - -Try to update the settings. Here we must provide all the settings -on the page to be allowed to update it. - - >>> response = c.post('/settings/new_list%40mail.example.com/', - ... {'send_welcome_msg': True, - ... 'advertised': True, - ... u'list_name': u'new_list', - ... 'unsubscribe_policy': 9, - ... 'autorespond_owner': 9, - ... 'default_member_moderation': True, - ... 'scrub_nondigest': True, - ... 'subscribe_auto_approval': 'Subscribe auto approval lorem ipsum dolor sit', - ... u'fqdn_listname': u'new_list@example.com', - ... 'gateway_to_news': True, - ... 'encode_ascii_prefixes': True, - ... 'generic_nonmember_action': 9, - ... 'autoresponse_grace_period': 'Auto response grace period lorem ipsum dolor sit', - ... 'autoresponse_owner_text': 'Auto response owner text lorem ipsum dolor sit', - ... 'digest_is_default': True, - ... 'bounce_info_stale_after': 'Bounce info stale after lorem ipsum dolor sit', - ... 'welcome_msg': 'Welcome message lorem ipsum dolor sit', - ... 'topics_enabled': True, - ... 'digest_size_threshold': 9, - ... 'header_matches': 'Header matches lorem ipsum dolor sit', - ... u'real_name': u'New_list', - ... u'host_name': u'example.com', - ... 'reject_these_nonmembers': 'Reject these non members lorem ipsum dolor sit', - ... 'collapse_alternatives': True, - ... 'linked_newsgroup': 'Linked newsgroup lorem ipsum dolor sit', - ... 'send_reminders': True, - ... 'hold_these_nonmembers': 'Hold these non members lorem ipsum dolor sit', - ... 'digest_header': 'Digest header lorem ipsum dolor sit', - ... 'archive_private': True, - ... 'bounce_matching_headers': 'Bounce matching headers lorem ipsum dolor sit', - ... 'bounce_score_threshold': 9, - ... 'nondigestable': True, - ... u'http_etag': u'"008c561be0aeaf134fea95066e5a7509a79e4842"', - ... 'bounce_notify_owner_on_removal': True, - ... 'autoresponse_request_text': 'Auto response request text lorem ipsum dolor sit', - ... 'personalize': 'Personalize lorem ipsum dolor sit', - ... 'max_num_recipients': 9, - ... 'post_id': 9, - ... 'send_goodbye_msg': True, - ... 'max_days_to_hold': 9, - ... 'pipeline': 'Pipeline lorem ipsum dolor sit', - ... 'start_chain': 'Start chain lorem ipsum dolor sit', - ... 'preferred_language': 'Preferred language lorem ipsum dolor sit', - ... 'autorespond_requests': 9, - ... 'msg_header': 'Message header lorem ipsum dolor sit', - ... 'max_message_size': 9, - ... 'bounce_you_are_disabled_warnings': 9, - ... 'private_roster': True, - ... 'require_explicit_destination': True, - ... 'gateway_to_mail': True, - ... 'digest_send_periodic': True, - ... 'digestable': True, - ... 'member_moderation_notice': 'Member moderation notice lorem ipsum dolor sit', - ... 'bounce_you_are_disabled_warnings_interval': 'Bounce you are disabled warnings lorem ipsum dolor sit', - ... u'self_link': u'http://localhost:8001/3.0/lists/new_list@example.com', - ... 'digest_footer': 'Digest footer lorem ipsum dolor sit', - ... 'discard_these_nonmembers': 'Discard these non members lorem ipsum dolor sit', - ... 'respond_to_post_requests': True, - ... 'mime_is_default_digest': True, - ... 'subject_prefix': 'Subject prefix lorem ipsum dolor sit', - ... 'convert_html_to_plaintext': True, - ... 'autorespond_postings': 9, - ... 'msg_footer': 'Message footer lorem ipsum dolor sit', - ... 'info': 'Info lorem ipsum dolor sit', - ... 'reply_goes_to_list': 'Reply goes to list lorem ipsum dolor sit', - ... 'obscure_addresses': True, - ... 'include_list_post_header': True, - ... 'news_moderation': 'News moderation lorem ipsum dolor sit', - ... 'topics': 'Topics (BLOB format) lorem ipsum dolor sit', - ... 'bounce_notify_owner_on_disable': True, - ... 'goodbye_msg': 'Goodbye message lorem ipsum dolor sit', - ... 'topics_bodylines_limit': 9, - ... 'id': 9, - ... 'filter_content': True, - ... 'emergency': True, - ... 'member_moderation_action': True, - ... 'archive': True, - ... 'nonmember_rejection_notice': 'Non member rejection notice lorem ipsum dolor sit', - ... 'list_id': 'Some list ID lorem ipsum dolor sit', - ... 'first_strip_reply_to': True, - ... 'nntp_host': 'Nntp host lorem ipsum dolor sit', - ... 'news_prefix_subject_too': True, - ... 'bounce_processing': True, - ... 'description': 'Description lorem ipsum dolor sit', - ... 'reply_to_address': 'some_reply_to_address@lorem.ipsum', - ... 'moderator_password': 'Moderator password lorem ipsum dolor sit', - ... 'digest_volume_frequency': 'Digest volume frequency lorem ipsum dolor sit', - ... 'include_rfc2369_headers': True, - ... 'forward_auto_discards': True, - ... 'ban_list': 'Ban list lorem ipsum dolor sit', - ... 'new_member_options': 9, - ... 'subscribe_policy': 9, - ... 'bounce_unrecognized_goes_to_list_owner': True, - ... 'autoresponse_postings_text': 'Auto response postings text lorem ipsum dolor sit'}) - -If the post was successful, a positive response should appear in -the HTML content. - - >>> print "The list has been updated." in response.content - True diff --git a/tests/setup.py b/tests/setup.py deleted file mode 100644 index d5b1f53..0000000 --- a/tests/setup.py +++ /dev/null @@ -1,62 +0,0 @@ -import os -import time -import shutil -import tempfile -import subprocess -from settings import MAILMAN_TEST_BINDIR - -class Testobject: - bindir = None - vardir = None - cfgfile = None - -def setup_mm(testobject): - os.environ['MAILMAN_TEST_BINDIR'] = MAILMAN_TEST_BINDIR - bindir = testobject.bindir = os.environ.get('MAILMAN_TEST_BINDIR') - if bindir is None: - raise RuntimeError("something's not quite right") - vardir = testobject.vardir = tempfile.mkdtemp() - cfgfile = testobject.cfgfile = os.path.join(vardir, 'client_test.cfg') - with open(cfgfile, 'w') as fp: - print >> fp, """\ -[mailman] -layout: tmpdir -[paths.tmpdir] -var_dir: {vardir} -log_dir: /tmp/mmclient/logs -[qrunner.archive] -start: no -[qrunner.bounces] -start: no -[qrunner.command] -start: no -[qrunner.in] -start: no -[qrunner.lmtp] -start: no -[qrunner.news] -start: no -[qrunner.out] -start: no -[qrunner.pipeline] -start: no -[qrunner.retry] -start: no -[qrunner.virgin] -start: no -[qrunner.digest] -start: no -""".format(vardir=vardir) - mailman = os.path.join(bindir, 'mailman') - subprocess.call([mailman, '-C', cfgfile, 'start', '-q']) - time.sleep(3) - return testobject - -def teardown_mm(testobject): - bindir = testobject.bindir - cfgfile = testobject.cfgfile - vardir = testobject.vardir - mailman = os.path.join(bindir, 'mailman') - subprocess.call([mailman, '-C', cfgfile, 'stop', '-q']) - shutil.rmtree(vardir) - time.sleep(3) diff --git a/tests/test_to_check.txt b/tests/test_to_check.txt deleted file mode 100644 index cfa0884..0000000 --- a/tests/test_to_check.txt +++ /dev/null @@ -1,58 +0,0 @@ -Change the User Settings #TODO → LP:820827 -======================== - -Now let's check out the user settings. Start by accessing the user -settings page. The user settings also requires the user to be logged -in. We'll call the page and log in as the Katie. - - >>> response = c.post('/user_settings/katie%40example.com/', - ... {"addr": "katie@example.com", - ... "psw": "katie"}) - -Let's check that we ended up on the right page. - - >>> print "User Settings" in response.content - True - -The settings page contains two tabs - one for the general user settings -valid for all lists and a specific membership page with links to all -lists the user is subscribed to. On the latter the user can change the -settings for each list. -We'll start by changing some of the user settings. We'll set the real -name to Katie and the default email address to 'jack@example.com'. - - >>> response = c.post('/user_settings/katie%40example.com/', - ... {'real_name': 'Katie', - ... 'address': u'jack@example.com'}) - -If we now check the content of the page that was loaded, we should get -a confirmation that everything went well. - - >>> print "The user settings have been updated." in response.content - True - - -#MEMBERSHIP SETTINGS part2 #TODO - → LP:820827 -We want to make sure we don't hide our address when posting to the -list, so we change this option and save the form. - - >>> response = c.post('/membership_settings/katie%40example.com/?list=test-one@example.com', - ... {"hide_address": False}) - -Now we just need to make sure the saving went well. We do this by -checking the content of the page that was loaded. - - >>> print "The membership settings have been updated." in response.content - True - -We feel done with the user and memebership settings so let's log out -before we continue. - - >>> response = c.get('/lists/logout/',) - -Again, if the request was successful we should end up on the list info -page. Make sure that we got redirected there. - - >>> print "All mailing lists" in response.content - True -""" diff --git a/tests/tests.py b/tests/tests.py deleted file mode 100644 index e1034f1..0000000 --- a/tests/tests.py +++ /dev/null @@ -1,363 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# -# GNU Mailman 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 -# GNU Mailman. If not, see . - -""" -============================== -Tests Login and Permissions -============================== - -This document both acts as a test for all the functions implemented -in the UI as well as documenting what can be done - -Test Pre Requirements -===================== - -* We've created a special Testobject which will run it's own instance of Mailman3 with a new empty Database. - - >>> from setup import setup_mm, Testobject, teardown_mm - >>> testobject = setup_mm(Testobject()) - - .. note:: - You need to stop all Mailman3 instances before running the tests - -* Modules needed - As we can't make sure that you're running the same language as we did we made sure that each test below is executed using the exact same translation mechanism as we use to Display you Status Messages and other GUI Texts. - - Import Translation Module to check success messages - >>> from django.utils.translation import gettext as _ - - Import HTTPRedirectObject to check whether a response redirects - >>> from django.http import HttpResponseRedirect - -Getting Started -=============== - -Starting the test module we do use a special Django Test Client which needs to be imported first. - - >>> from django.test.client import Client - >>> c = Client() - -Once this is created we can try accessing our first Page and check that this was done successful - - >>> response = c.get('/lists/',) - >>> response.status_code - 200 - -Login Required -================================================== - -As described within the installation instructions we *already* started using authentification. The easiest way testing it is that we simply load a page which is restricted to some users only. -This was done using Django's @login_required Decorator in front of the View. -One of the pages which requires a Login is the Domain Administration, if we can load the page without a redirect to the Login page, you're either already logged in or something went wrong. - - >>> response = c.get('/domains/') - >>> print type(response) == HttpResponseRedirect - True - -Login of a User -=============== - -We've decided to write our own Authentification Backend to use with Django. -This will handle all @login_required .authenticate() .login() requests. - -As we do not have the Authenticating Part which connects Both Mailman and the WebUI we had to hardcode usernames and permissions into the file (auth/restbackend.py) -For more information what we're planning to implement here take a look at the Acknowledgements. - - .. note:: - If you're planning to expand this feel free to use this wonderful resource: - https://docs.djangoproject.com/en/dev/topics/auth/ - -Once the new middleware is in place we will need to create a user first. At the moment the user is automaticly created upon success of the login procedure. - - >>> #c.... adduser() #TODO add user - -Users will have to use the Login form which is located at (/accounts/login/) in order to authenticate themself. The Login / Logout button is linked in the bottom left corner of each page as well. - -After each successful login users should be redirected either to the site which they requested before - stored in a GET Value named next - or get the List index. Only if they've used a faulty login they should stay on the Login Page to try again. - - >>> response = c.post('/accounts/login/', - ... {"user": "james@example.com", - ... "password": "james"}) - - >>> print type(response) == HttpResponseRedirect - True - -Unfortuneatly the Test Client requires to use the Login directly because it does handle each request seperately. For this reason we have to use the following part in the Tests only to authenticate a user. -Each successful Login will return True and write the users object into the request context, which allows simple checks whether there is a user logged in and what his name is. - - >>> c.login(username='katie@example.com', password='katie') - True - -Permissions -=========== - -Our own Auth Backend allows the use of Djangos own Permission Decorator which is - -.. code-block:: python - - @permission_required(NAME_OF_PERMISSION) - -At the moment we've installed this for Domain Administration, - - .. note:: - Please take a look at the ackownledgement to see what is working in this part - -Get the Domains page and get redirected because Katie who is logged in doesn't have the Permission - - >>> response = c.get('/domains/') - >>> print type(response) == HttpResponseRedirect - True - -Logout Katie who isn't a Domain-Owner and Login James who should be allowed to view this page - - >>> c.logout() #katie - >>> c.login(username='james@example.com', password='james') - True - -Check that the Page now loads correctly - - >>> response = c.get('/domains/') - >>> response.status_code - 200 - - -===== -Pages -===== - - -Create a New Domain -=================== - -Domain Administration is called by opening the URL mentioned below. Prequirements like Authorisation and Permissions have been covered before. -Now we do check that the response really does have the correct heading. - - >>> response = c.get('/domains/') - >>> print "Domain Index" in response.content - True - -On this page there should be a button which allows to create a new Domain. -If you're running Mailman for the first time you need to create a Domain before creating Mailinglists. That's only because each List is Part of a Domain and could not be created without it's reference. - - >>> '
  • New Domain
  • ' in response.content - True - -For sure the page allowing the creation of a new Domain should open correclty as well - >>> response = c.get('/domains/new/') - >>> response.status_code - 200 - >>> print "Add a new Domain" in response.content #TODO - change heading - True - -Each Domain has two main Data Parts, most obvious for a mailinglist we do need a mail_host that's the part behind the @ when getting an email. In addition we offer you this WebUI for configuration, some may have multiple URLs they can use to access the same installation of mailman. For this reason each Mailinglist gets it's own web_host as well - which doesn't need to be unique. - -Testing the Site we do now submit the form we've loaded earlier by sending all necessary data in a POST request. The new Domain will be called mail.example.com and available via it's web_host example.com. - - .. note:: - If you do want to use web_host filtering in your webUI you need to remember adding the URL to your /etc/hosts - at least for development - - >>> response = c.post('/domains/new/', - ... {"mail_host": "mail.example.com", - ... "web_host": "example.com", - ... "description": "doctest testing domain"}) - >>> response = c.get('/domains/') - -Then we check that everything went well. - >>> response.status_code - 200 - >>> print "doctest testing domain" in response.content - True - -Create a New List -================= - -After creating a Domain you should be able to create new Lists. The Button for doing so is shown on the List index Page which should offer a list of all available (adverrtised) lists. - - >>> response = c.get('/lists/') - >>> response.status_code - 200 - >>> "All available Lists" in response.content - True - -The new List creation form is opened by clicking on the Button mentioned above or accessing the page directly - - >>> response = c.get('/lists/new/') - >>> response.status_code - 200 - >>> print "Create a new List on" in response.content - True - -Creating a new List we do need to specify at least the below mentioned items. Those were entered using some nice GUI Forms which do only show up available Values or offer you to choose a name which will be checked during validation. -We're now submitting the form using a POST request and get redirected to the List Index Page - - >>> response = c.post('/lists/new/', - ... {"listname": "new_list1", - ... "mail_host": "mail.example.com", - ... "list_owner": "james@example.com", - ... "description": "doctest testing list", - ... "advertised": "True", - ... "languages": "English (USA)"}) - >>> print type(response) == HttpResponseRedirect - True - -As List index is an overview of all advertised Lists and we've choosen to do so we should now see our new List within the overview. HTTP_HOST is added as META Data for the request because we do only want to see Domains which belong to the example.com web_host - - >>> response = c.get('/lists/',HTTP_HOST='example.com') - >>> response.status_code - 200 - >>> "New_list1" in response.content - True - -List Summary -============ - -List summary is a dashboard for each List. It does have Links to the most useful functions which are only related to that Domain. These include the Values mentioned below. _(function) is used to Translate these to you local language. - - >>> response = c.get('/lists/new_list1%40mail.example.com/',) - >>> response.status_code - 200 - >>> _("Subscribe") in response.content - True - >>> _("Archives") in response.content - True - >>> _("Edit Options") in response.content - True - >>> _("Unsubscribe") in response.content - True - -Subscriptions -============= - -The Subscriptions form is found on the below URL. Last part of the Url is one of [None,'subscribe','unsubscribe'] - - >>> url = '/subscriptions/new_list1%40mail.example.com/subscribe' - >>> response = c.get(url) - >>> response.status_code - 200 - -Forms will be prefilled with the Users Email if so. is logged in. - - >>> "james@example.com" in response.content - True - -Now we can subscribe James and Katie and check that we get redirected to List Summary. - - >>> response = c.post(url, - ... {"email": "james@example.com", - ... "real_name": "James Watt", - ... "name": "subscribe", - ... "fqdn_listname": "new_list1@mail.example.com"}) - >>> response = c.post(url, - ... {"email": "katie@example.com", - ... "real_name": "Katie Doe", - ... "name": "subscribe", - ... "fqdn_listname": "new_list1@mail.example.com"}) - >>> print (_('Subscribed')+' katie@example.com') in response.content - True - -The logged in user (james@example.com) can now modify his own membership using a button which is displayed in list_summary. - - >>> response = c.get('/lists/new_list1%40mail.example.com/') - >>> "mm_membership" in response.content - True - -Using the same subscription page we can unsubscribe as well. - - >>> response = c.post('/subscriptions/new_list1%40mail.example.com/unsubscribe', - ... {"email": "katie@example.com", - ... "name": "unsubscribe", - ... "fqdn_listname": "new_list1@mail.example.com"}) - >>> print (_('Unsubscribed')+' katie@example.com') in response.content - True - -Mass Subscribe Users (within settings) -====================================== - -Another page related to Mass Subscriptions will be available to List Owners as well. This page will allow adding a couple of users to one lists at the same time. - - >>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/' - >>> response = c.get(url) - >>> response.status_code - 200 - -Try mass subscribing the users 'liza@example.com' and -'george@example.com'. Each address should be provided on a separate -line so add '\\n' between the names to indicate that this was done -(we're on a Linux machine which is why the letter 'n' was used and -the double '\\' instead of a single one is to escape the string -parsing of Python). - - >>> url = '/subscriptions/new_list1%40mail.example.com/mass_subscribe/' - >>> response = c.post(url, - ... {"emails": "liza@example.com\\ngeorge@example.com"}) - -If everything was successful, we shall get a positive response from -the page. We'll check that this was the case. - - >>> print _("The mass subscription was successful.") in response.content - True - -Change the Memebership Settings -=============================== - -Now let's go to the membership settings page. Once we go there we -should get a list of all the available lists. - - >>> response = c.get('/membership_settings/new_list1%40mail.example.com/') - >>> print "Membership Settings" in response.content - True - -Select the list 'new_list1@example.com'. - - >>> response = c.get('/membership_settings/new_list1%40mail.example.com/') - >>> print ("Membership Settings" in response.content) and ("for new_list1@mail.example.com" in response.content) - True - -.. note:: - This page relies on the Middleware connecting the Django Project with Mailman - see acknowledgements - -Delete the List -=============== - -Finally, let's delete the list. -We start by checking that the list is really there (for reference). - - >>> response = c.get('/lists/',HTTP_HOST='example.com') - >>> print "New_list1" in response.content - True - -Trying to delete the List we have to confirm this action - >>> response = c.get('/delete_list/new_list1%40mail.example.com/',) - >>> print "Please confirm" in response.content - True - -Confirmed by pressing the button which requests the same page using POST - >>> response = c.post('/delete_list/new_list1%40mail.example.com/',) - -...and check that it's been deleted. - >>> response = c.get('/lists/',HTTP_HOST='example.com') - >>> print "new_list1%40example.com" in response.content - False - -============== -Finishing Test -============== - -Don't forget to remove the test object after testing all functions - >>> teardown_mm(testobject) -""" diff --git a/urls.py b/urls.py deleted file mode 100644 index 5fa8a23..0000000 --- a/urls.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- coding: utf-8 -*- -# Copyright (C) 1998-2010 by the Free Software Foundation, Inc. -# -# This file is part of GNU Mailman. -# -# GNU Mailman 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. -# -# GNU Mailman 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 -# GNU Mailman. If not, see . - -from django.conf.urls.defaults import * -from django.conf import settings -from django.conf.urls.static import static - - -urlpatterns = patterns('mailman_django.views', - (r'^$', 'list_index'), - url(r'^accounts/login/$', 'user_login', name = 'user_login'), - url(r'^accounts/logout/$', 'user_logout', name = 'user_logout'), - url(r'^administration/$', 'administration', name = 'administration'), - url(r'^domains/$', 'domain_index', name = 'domain_index'), - url(r'^domains/new/$', 'domain_new', name = 'domain_new'), - url(r'^lists/$', 'list_index', name = 'list_index'), - url(r'^lists/new/$', 'list_new', name = 'list_new'), - url(r'^lists/(?P[^/]+)/$', 'list_summary', name = 'list_summary'), #PUBLIC - url(r'^subscriptions/(?P[^/]+)/(?:(?P