pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-mezzanine py-mezzanine: updated to 4.2.3



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9c15a662c2c4
branches:  trunk
changeset: 373244:9c15a662c2c4
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Dec 30 13:44:21 2017 +0000

description:
py-mezzanine: updated to 4.2.3

Version 4.2.3:
* Test MultiChoiceField.validate when invalid. For the record, this raises a TypeError prior to Simen's commit
* Test MultiChoiceField.validate when valid. Also, I realized that the choices kwarg needs to be a nested list
* Ensure createdb command passes on the exepcted options to base class
* Workaround for Django bug with templates field and empty values
* Update travis django versions.
* Subclass Django's redirect admin to filter by site
* Remove "Overriding vs. Extending" Docs. I know we discussed this a little bit somewhere and rewriting this. section was suggested. However, I don't see any reason to keep it. around. This was 
always a django issue but we provided a. mezzanine-specific solution. Now that there's a django solution, why. clutter our docs with it?
* Fix SSLRedirectMiddleware.__init__ signature. As reported on the mailing list. (https://groups.google.com/d/msg/mezzanine-users/d5mcAMOVcnk/uqw61LyjAwAJ),. this raised a TypeError because the 
get_response argument is optional
* Move ?required? from field help text to template. The forms app used to set ?required? as the help text for fields that. are required and didn?t have a help text already. Move this text into. the 
template instead, making it easier to override
* Use call_command() instead of execute()
* Remove the no_color handling in createdb management command
* Fix example in profile docs
* Remove outdated message regarding auto-reload. Since local_settings.py is added to sys.modules, the autoreload is working as expected.
* Document static_lazy's purpose.
* Update contributing guidelines to reflect practice. The language here is too broad and has caused several users to submit. high quality bug reports or patches to the mailing list when it's. 
actually easier to deal with them in the tracker
* Fix TinyMCE support in dynamic inlines.
* Fix TinyMCE support in dynamic inlines. Use TinyMCE?s jQuery plugin to initialise our editors, and handle. Django?s formset:added event to initialise editors in dynamically added. forms. * Tidy up 
TinyMCE initialisation code. * Call out changes to jquery.tinymce.min.js more visibly
* Warn when editing admin users without permissions.
* Move contributing guidelines to CONTRIBUTING.rst. This will present itself before people open issues which should cut down. on a lot of the erroneous ones
* Fix short URL generation
* Add support for importing via blogml
* Clean up blogml importer
* Added python 3.6
* Deprecate as_tag templatetag shortcut. It isn't documented but folks may be using it anyway. We can't switch. over to simple_tag internally yet until we drop support for django-1.8
* Restore tinymce support in front-end editing.
* Fix caching editable settings forever when no request
* Blog RSS feed - set length property for images (enclosure)
* Blog RSS - add mime_type for images (enclosure)
* Blog Atom feed - add "updatedate" property
* Fix issue with PyPy2. Under PyPy2 you can't do u"foo" == lazy(static, str)("bar") because the. code assumes dir(str) is a strict subset of dir(unicode), which isn't. true on PyPy2. The other way 
around is no problem however, and the. other strings in the static assets lists are unicode anyway
* Fix issue 1710. During user validation, only save POST data in session if it is a POST. request, otherwise saved comment may be overwritten by GET request that. results from redirect if user 
verification is required
* Re-order JavaScript loading to ensure TinyMCE has access to correct variables.
* Nicer way to import and register checks. The previous way meant every check gets mentioned 3 times (def, import,. register), with this way it is just once, and all the django.core.checks. are 
together
* Converted SitePermissionMiddleware warning to a Django check.
* Added hashbangs/permission bits to make scripts more easily runnable
* Made it easier to run individual tests
* Documented how to run tests
* Fixed pyflakes errors for .checks imports
* Fixed login form to not use request.REQUEST. This is not available in Django 1.9 and greater, so without this fix the. forms are (slightly) broken. There doesn't seem to be any reason to use. 
REQUEST instead of POST - the form is a POST one, and the parameters are not. used elsewhere in the code base to construct a querystring
* Fixed search forms to use request.GET instead of request.REQUEST. request.REQUEST is not available in Django 1.9 and greater
* Support latest bleach, BS, html5lib.

diffstat:

 www/py-mezzanine/ALTERNATIVES                                                             |     1 +
 www/py-mezzanine/Makefile                                                                 |    47 +-
 www/py-mezzanine/PLIST                                                                    |  1001 ++++++++-
 www/py-mezzanine/distinfo                                                                 |    25 +-
 www/py-mezzanine/patches/patch-mezzanine_blog_migrations_0003__auto__20170411__0504.py    |    35 +
 www/py-mezzanine/patches/patch-mezzanine_blog_templatetags_blog__tags.py                  |    13 +
 www/py-mezzanine/patches/patch-mezzanine_core_auth__backends.py                           |    16 +
 www/py-mezzanine/patches/patch-mezzanine_core_managers.py                                 |    26 +
 www/py-mezzanine/patches/patch-mezzanine_core_models.py                                   |    48 +
 www/py-mezzanine/patches/patch-mezzanine_core_templatetags_mezzanine__tags.py             |   102 +
 www/py-mezzanine/patches/patch-mezzanine_generic_migrations_0003__auto__20170411__0504.py |    29 +
 www/py-mezzanine/patches/patch-mezzanine_generic_templatetags_comment__tags.py            |    34 +
 www/py-mezzanine/patches/patch-mezzanine_generic_templatetags_rating__tags.py             |    13 +
 www/py-mezzanine/patches/patch-mezzanine_generic_tests.py                                 |    16 +
 www/py-mezzanine/patches/patch-mezzanine_pages_migrations_0004__auto__20170411__0504.py   |    29 +
 www/py-mezzanine/patches/patch-mezzanine_pages_templatetags_pages__tags.py                |    25 +
 www/py-mezzanine/patches/patch-mezzanine_template_____init____.py                         |    28 +
 www/py-mezzanine/patches/patch-mezzanine_utils_email.py                                   |    34 +
 www/py-mezzanine/patches/patch-setup.py                                                   |    16 +
 19 files changed, 1324 insertions(+), 214 deletions(-)

diffs (truncated from 2177 to 300 lines):

diff -r 8806c0f5dc2a -r 9c15a662c2c4 www/py-mezzanine/ALTERNATIVES
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/py-mezzanine/ALTERNATIVES     Sat Dec 30 13:44:21 2017 +0000
@@ -0,0 +1,1 @@
+bin/mezzanine-project @PREFIX@/bin/mezzanine-project@PYVERSSUFFIX@
diff -r 8806c0f5dc2a -r 9c15a662c2c4 www/py-mezzanine/Makefile
--- a/www/py-mezzanine/Makefile Sat Dec 30 13:43:32 2017 +0000
+++ b/www/py-mezzanine/Makefile Sat Dec 30 13:44:21 2017 +0000
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.9 2017/01/01 14:44:05 wiz Exp $
+# $NetBSD: Makefile,v 1.10 2017/12/30 13:44:21 adam Exp $
 
-DISTNAME=      Mezzanine-1.2.4
+DISTNAME=      Mezzanine-4.2.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
-CATEGORIES=    www
+CATEGORIES=    www python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=M/Mezzanine/}
 
 MAINTAINER=    ryoon%NetBSD.org@localhost
@@ -10,26 +10,35 @@
 COMMENT=       Open source content management platform on Django
 LICENSE=       2-clause-bsd
 
-DEPENDS+=      ${PYPKGPREFIX}-flakes-[0-9]*:../../devel/py-flakes
-DEPENDS+=      ${PYPKGPREFIX}-postgresql-[0-9]*:../../databases/py-postgresql
-DEPENDS+=      ${PYPKGPREFIX}-pep8-[0-9]*:../../devel/py-pep8
-DEPENDS+=      ${PYPKGPREFIX}-imaging-[0-9]*:../../graphics/py-imaging
-DEPENDS+=      ${PYPKGPREFIX}-html5lib-[0-9]*:../../textproc/py-html5lib
-DEPENDS+=      ${PYPKGPREFIX}-pytz-[0-9]*:../../time/py-pytz
-DEPENDS+=      ${PYPKGPREFIX}-django-[0-9]*:../../www/py-django
-DEPENDS+=      ${PYPKGPREFIX}-django-appconf-[0-9]*:../../www/py-django-appconf
-DEPENDS+=      ${PYPKGPREFIX}-django-south-[0-9]*:../../www/py-django-south
-DEPENDS+=      ${PYPKGPREFIX}-bleach-[0-9]*:../../www/py-bleach
-DEPENDS+=      ${PYPKGPREFIX}-django-mezzanine-filebrowser-[0-9]*:../../www/py-django-mezzanine-filebrowser
-DEPENDS+=      ${PYPKGPREFIX}-django-mezzanine-grappelli-[0-9]*:../../www/py-django-mezzanine-grappelli
+DEPENDS+=      ${PYPKGPREFIX}-Pillow-[0-9]*:../../graphics/py-Pillow
+DEPENDS+=      ${PYPKGPREFIX}-beautifulsoup4>=4.5.3:../../www/py-beautifulsoup4
+DEPENDS+=      ${PYPKGPREFIX}-bleach>=2.0:../../www/py-bleach
+DEPENDS+=      ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet
+DEPENDS+=      ${PYPKGPREFIX}-django>=1.8:../../www/py-django
+DEPENDS+=      ${PYPKGPREFIX}-django-contrib-comments-[0-9]*:../../www/py-django-contrib-comments
+DEPENDS+=      ${PYPKGPREFIX}-future>=0.9.0:../../devel/py-future
+DEPENDS+=      ${PYPKGPREFIX}-requests>=2.1.0:../../devel/py-requests
+DEPENDS+=      ${PYPKGPREFIX}-requests-oauthlib>=0.4.0:../../security/py-requests-oauthlib
+DEPENDS+=      ${PYPKGPREFIX}-tzlocal>=1.0:../../time/py-tzlocal
 
-USE_PKGLOCALEDIR=      yes
-USE_LANGUAGES=         # none
+DEPENDS+=      ${PYPKGPREFIX}-filebrowser_safe-[0-9]*:../../www/py-filebrowser_safe
+DEPENDS+=      ${PYPKGPREFIX}-grappelli_safe-[0-9]*:../../www/py-grappelli_safe
 
-PYTHON_VERSIONS_INCOMPATIBLE=  34 35 36 # py-django-mezzanine-filebrowser, py-django-mezzanine-grappelli, py-imaging
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-flakes>=0.6.1:../../devel/py-flakes
+BUILD_DEPENDS+=        ${PYPKGPREFIX}-pep8>=1.4.1:../../devel/py-pep8
+
+USE_LANGUAGES= # none
 
 MESSAGE_SUBST+=        PYTHONBIN=${PYTHONBIN}
 
+REPLACE_PYTHON=        mezzanine/project_template/manage.py
+
+pre-configure:
+       find ${WRKSRC} -name '*.orig' -delete
+
+post-install:
+       cd ${DESTDIR}${PREFIX}/bin && ${MV} mezzanine-project mezzanine-project${PYVERSSUFFIX} || ${TRUE}
+
 .include "../../lang/python/application.mk"
-.include "../../lang/python/distutils.mk"
+.include "../../lang/python/egg.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 8806c0f5dc2a -r 9c15a662c2c4 www/py-mezzanine/PLIST
--- a/www/py-mezzanine/PLIST    Sat Dec 30 13:43:32 2017 +0000
+++ b/www/py-mezzanine/PLIST    Sat Dec 30 13:44:21 2017 +0000
@@ -1,12 +1,12 @@
-@comment $NetBSD: PLIST,v 1.1 2013/01/03 14:29:29 ryoon Exp $
-bin/mezzanine-project
-${PYSITELIB}/${EGG_FILE}/PKG-INFO
-${PYSITELIB}/${EGG_FILE}/SOURCES.txt
-${PYSITELIB}/${EGG_FILE}/dependency_links.txt
-${PYSITELIB}/${EGG_FILE}/entry_points.txt
-${PYSITELIB}/${EGG_FILE}/not-zip-safe
-${PYSITELIB}/${EGG_FILE}/requires.txt
-${PYSITELIB}/${EGG_FILE}/top_level.txt
+@comment $NetBSD: PLIST,v 1.2 2017/12/30 13:44:21 adam Exp $
+bin/mezzanine-project${PYVERSSUFFIX}
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
+${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/requires.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
 ${PYSITELIB}/mezzanine/__init__.py
 ${PYSITELIB}/mezzanine/__init__.pyc
 ${PYSITELIB}/mezzanine/__init__.pyo
@@ -22,10 +22,82 @@
 ${PYSITELIB}/mezzanine/accounts/forms.py
 ${PYSITELIB}/mezzanine/accounts/forms.pyc
 ${PYSITELIB}/mezzanine/accounts/forms.pyo
+${PYSITELIB}/mezzanine/accounts/locale/ar/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/ar/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/bg/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/bg/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/ca/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/ca/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/cs/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/cs/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/da/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/da/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/de/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/de/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/en/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/en/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/eo/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/eo/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/es/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/es/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/et/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/et/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/fa/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/fa/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/fa_IR/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/fa_IR/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/fi/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/fi/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/fr/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/fr/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/hr_HR/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/hr_HR/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/hu/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/hu/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/id_ID/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/id_ID/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/is_IS/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/is_IS/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/it/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/it/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/ja/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/ja/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/ko/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/ko/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/lv/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/lv/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/nb/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/nb/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/nl/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/nl/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/pap/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/pap/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/pl/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/pl/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/pt_BR/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/pt_BR/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/accounts/locale/pt_PT/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/accounts/locale/pt_PT/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/accounts/locale/ru/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/accounts/locale/ru/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/sk/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/sk/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/sr_Latn/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/sr_Latn/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/sv/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/sv/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/tr/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/tr/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/uk_UA/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/uk_UA/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/vi_VN/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/vi_VN/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/zh/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/zh/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/zh_CN/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/zh_CN/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/accounts/locale/zh_TW/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/accounts/locale/zh_TW/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/accounts/models.py
 ${PYSITELIB}/mezzanine/accounts/models.pyc
 ${PYSITELIB}/mezzanine/accounts/models.pyo
@@ -36,7 +108,14 @@
 ${PYSITELIB}/mezzanine/accounts/templates/accounts/account_profile_update.html
 ${PYSITELIB}/mezzanine/accounts/templates/accounts/account_signup.html
 ${PYSITELIB}/mezzanine/accounts/templates/accounts/includes/user_panel.html
+${PYSITELIB}/mezzanine/accounts/templates/accounts/includes/user_panel_nav.html
 ${PYSITELIB}/mezzanine/accounts/templates/admin/profile_inline.html
+${PYSITELIB}/mezzanine/accounts/templates/email/account_approve.html
+${PYSITELIB}/mezzanine/accounts/templates/email/account_approve.txt
+${PYSITELIB}/mezzanine/accounts/templates/email/account_approve_subject.txt
+${PYSITELIB}/mezzanine/accounts/templates/email/account_approved.html
+${PYSITELIB}/mezzanine/accounts/templates/email/account_approved.txt
+${PYSITELIB}/mezzanine/accounts/templates/email/account_approved_subject.txt
 ${PYSITELIB}/mezzanine/accounts/templates/email/password_reset_verify.html
 ${PYSITELIB}/mezzanine/accounts/templates/email/password_reset_verify.txt
 ${PYSITELIB}/mezzanine/accounts/templates/email/password_reset_verify_subject.txt
@@ -49,6 +128,9 @@
 ${PYSITELIB}/mezzanine/accounts/templatetags/accounts_tags.py
 ${PYSITELIB}/mezzanine/accounts/templatetags/accounts_tags.pyc
 ${PYSITELIB}/mezzanine/accounts/templatetags/accounts_tags.pyo
+${PYSITELIB}/mezzanine/accounts/tests.py
+${PYSITELIB}/mezzanine/accounts/tests.pyc
+${PYSITELIB}/mezzanine/accounts/tests.pyo
 ${PYSITELIB}/mezzanine/accounts/urls.py
 ${PYSITELIB}/mezzanine/accounts/urls.pyc
 ${PYSITELIB}/mezzanine/accounts/urls.pyo
@@ -58,9 +140,21 @@
 ${PYSITELIB}/mezzanine/bin/__init__.py
 ${PYSITELIB}/mezzanine/bin/__init__.pyc
 ${PYSITELIB}/mezzanine/bin/__init__.pyo
+${PYSITELIB}/mezzanine/bin/management/__init__.py
+${PYSITELIB}/mezzanine/bin/management/__init__.pyc
+${PYSITELIB}/mezzanine/bin/management/__init__.pyo
+${PYSITELIB}/mezzanine/bin/management/commands/__init__.py
+${PYSITELIB}/mezzanine/bin/management/commands/__init__.pyc
+${PYSITELIB}/mezzanine/bin/management/commands/__init__.pyo
+${PYSITELIB}/mezzanine/bin/management/commands/mezzanine_project.py
+${PYSITELIB}/mezzanine/bin/management/commands/mezzanine_project.pyc
+${PYSITELIB}/mezzanine/bin/management/commands/mezzanine_project.pyo
 ${PYSITELIB}/mezzanine/bin/mezzanine_project.py
 ${PYSITELIB}/mezzanine/bin/mezzanine_project.pyc
 ${PYSITELIB}/mezzanine/bin/mezzanine_project.pyo
+${PYSITELIB}/mezzanine/bin/runtests.py
+${PYSITELIB}/mezzanine/bin/runtests.pyc
+${PYSITELIB}/mezzanine/bin/runtests.pyo
 ${PYSITELIB}/mezzanine/blog/__init__.py
 ${PYSITELIB}/mezzanine/blog/__init__.pyc
 ${PYSITELIB}/mezzanine/blog/__init__.pyo
@@ -76,10 +170,16 @@
 ${PYSITELIB}/mezzanine/blog/forms.py
 ${PYSITELIB}/mezzanine/blog/forms.pyc
 ${PYSITELIB}/mezzanine/blog/forms.pyo
+${PYSITELIB}/mezzanine/blog/locale/ar/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/ar/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/bg/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/bg/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/ca/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/ca/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/cs/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/cs/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/da/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/da/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/de/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/de/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/en/LC_MESSAGES/django.mo
@@ -90,16 +190,36 @@
 ${PYSITELIB}/mezzanine/blog/locale/es/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/et/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/et/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/fa/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/fa/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/fa_IR/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/fa_IR/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/fi/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/fi/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/fr/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/fr/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/hr_HR/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/hr_HR/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/hu/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/hu/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/id_ID/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/id_ID/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/is_IS/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/is_IS/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/it/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/it/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/ja/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/ja/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/ko/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/ko/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/lv/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/lv/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/nb/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/nb/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/nl/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/nl/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/pap/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/pap/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/pl/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/pl/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/pt_BR/LC_MESSAGES/django.mo
@@ -110,8 +230,18 @@
 ${PYSITELIB}/mezzanine/blog/locale/ru/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/sk/LC_MESSAGES/django.mo
 ${PYSITELIB}/mezzanine/blog/locale/sk/LC_MESSAGES/django.po
-${PYSITELIB}/mezzanine/blog/locale/sr@latin/LC_MESSAGES/django.mo
-${PYSITELIB}/mezzanine/blog/locale/sr@latin/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/sr_Latn/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/sr_Latn/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/sv/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/sv/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/tr/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/tr/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/uk_UA/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/uk_UA/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/vi_VN/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/vi_VN/LC_MESSAGES/django.po
+${PYSITELIB}/mezzanine/blog/locale/zh/LC_MESSAGES/django.mo
+${PYSITELIB}/mezzanine/blog/locale/zh/LC_MESSAGES/django.po
 ${PYSITELIB}/mezzanine/blog/locale/zh_CN/LC_MESSAGES/django.mo



Home | Main Index | Thread Index | Old Index