/usr/share/pyshared/django_localeurl-1.5.egg-info/PKG-INFO is in python-django-localeurl 1.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | Metadata-Version: 1.0
Name: django-localeurl
Version: 1.5
Summary: A Django application that allow you to specify the language of a page in the URL.
Home-page: http://packages.python.org/django-localeurl/
Author: Carl Meyer
Author-email: carl@oddbird.net
License: MIT License
Description: Welcome to django-localeurl
===========================
The localeurl Django_ application allows you to specify the language
of a page in the URL.
Suppose you have a Django website in multiple languages. Using
localeurl, without modifying your URLconfs, you can have URLs like
this: ``http://www.example.com/nl/company/profile``. Any URLs without
a language prefix will be redirected to add the prefix for the default
language (or, optionally, the language preferred in the user's browser
settings).
Some reasons for using localeurl:
* Search engines will index all languages.
* Every page should have a unique URL. If you feel that different languages
means different pages, then each language should get its own unique URL.
* If you don't set the language via the URL, setting the language
for the website should be done using a POST request (because it
influences subsequent page views, see `Django ticket #3651`_).
You might prefer a simple link for changing the language, and
localeurl allows this.
.. _Django: http://www.djangoproject.com/
.. _`Django ticket #3651`: http://code.djangoproject.com/ticket/3651
You can install localeurl with pip_::
pip install django-localeurl
or install the `in-development version`_::
pip install django-localeurl==dev
.. _pip: http://pip.openplans.org
.. _`in-development version`: http://bitbucket.org/carljm/django-localeurl/get/tip.gz#egg=django-localeurl-dev
.. comment:
See the `full documentation`_.
.. _`full documentation`: http://packages.python.org/django-localeurl/
Keywords: django i18n
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Localization
|