debian/0000755000000000000000000000000011414707045007171 5ustar debian/watch0000644000000000000000000000037111414706114010217 0ustar version=3 opts=\ downloadurlmangle=s|.*[?]name=(.*?)&.*|http://django-tinymce.googlecode.com/files/$1|,\ filenamemangle=s|[^/]+[?]name=(.*?)&.*|$1| \ http://code.google.com/p/django-tinymce/downloads/detail[?]name=django-tinymce-([0-9.]+).tar.gz&.* debian/compat0000644000000000000000000000000211202543210010352 0ustar 7 debian/README.source0000644000000000000000000000052711202543217011346 0ustar tinymce/templates/tinymce/tiny_mce_gzip.js is not part of TinyMCE itself, it is used to compress TinyMCE when sending it to the client. However, this script does seem to be in Debian in a few other places, so should potentially end up in the TinyMCE package. -- Daniel Watkins Tue, 24 Feb 2009 18:15:15 +0000 debian/source/0000755000000000000000000000000011414706741010473 5ustar debian/source/format0000644000000000000000000000001411414706114011673 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000301011202543217011110 0ustar Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat Upstream-Name: django-tinymce Upstream-Maintainer: Joost Cassee Upstream-Source: http://code.google.com/p/django-tinymce/ Files: * Copyright: Copyright © 2008 Joost Cassee License: MIT Files: tinymce/templates/tinymce/tiny_mce_gzip.js Copyright: Copyright © 2008 Jason Davies License: MIT Files: debian/* Copyright: Copyright © 2009 Daniel Watkins License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. debian/rules0000755000000000000000000000003611202543210010233 0ustar #!/usr/bin/make -f %: dh $@ debian/patches/0000755000000000000000000000000011414706741010622 5ustar debian/patches/series0000644000000000000000000000003211414706114012024 0ustar smart_unicode-import.diff debian/patches/smart_unicode-import.diff0000644000000000000000000000135511414706114015616 0ustar Description: Fix import error with Django 1.2. Bug: http://code.google.com/p/django-tinymce/issues/detail?id=63 Bug-Debian: http://bugs.debian.org/587073 Origin: upstream, http://code.google.com/p/django-tinymce/source/detail?r=96 --- a/tinymce/widgets.py +++ b/tinymce/widgets.py @@ -11,7 +11,10 @@ from django.contrib.admin import widgets as admin_widgets from django.core.urlresolvers import reverse from django.forms.widgets import flatatt -from django.forms.util import smart_unicode +try: + from django.utils.encoding import smart_unicode +except ImportError: + from django.forms.util import smart_unicode from django.utils.html import escape from django.utils import simplejson from django.utils.datastructures import SortedDict debian/changelog0000644000000000000000000000200611414706733011044 0ustar python-django-tinymce (1.5-3) unstable; urgency=low [ Jakub Wilk ] * Switch to source format 3.0 (quilt). * Fix watch file. * Add patch to fix import error with Django 1.2 (closes: #587073). Thanks to Ionut Ciocirlan for the bug report. * Bump standards version to 3.9.0 (no changes needed). -- Debian Python Modules Team Tue, 06 Jul 2010 22:11:05 +0200 python-django-tinymce (1.5-2) unstable; urgency=low * Change priority from 'optional' to 'extra', as the package conflicts with python-tinymce which is 'optional', violating Policy Section 2.5. * Add Debian Python Modules Team to Uploaders and update Vcs-* fields to reflect the move to DPMT version control. * Bumped Standards-Version. -- Daniel Watkins Wed, 13 May 2009 14:17:32 +0100 python-django-tinymce (1.5-1) unstable; urgency=low * Initial release. (Closes: #516310) -- Daniel Watkins Tue, 24 Feb 2009 18:15:15 +0000 debian/control0000644000000000000000000000233711414706421010576 0ustar Source: python-django-tinymce Section: python Priority: extra Maintainer: Daniel Watkins Uploaders: Debian Python Modules Team Build-Depends: debhelper (>= 7), python-support Standards-Version: 3.9.0 Homepage: http://code.google.com/p/django-tinymce/ Vcs-Svn: svn://svn.debian.org/python-modules/packages/python-django-tinymce/trunk/ Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/python-django-tinymce/trunk/ Package: python-django-tinymce Architecture: all Depends: ${misc:Depends}, ${python:Depends}, python-django (>= 1.0), tinymce Conflicts: python-tinymce Description: replacement text widget for Django web framework TinyMCE is a pure JavaScript rich text editor, allowing non-technical users to easily enter formatted text. This package allows TinyMCE to be used as an alternative widget for text areas, a drop-in replacement, within both the Django admin interface and user-facing views. . Features: * Enhanced support for content languages. * Integration with the TinyMCE spellchecker. * Enables predefined link and image lists for dialogs. * Can compress the TinyMCE Javascript code. * Integration with django-filebrowser. debian/docs0000644000000000000000000000000711202543210010024 0ustar docs/*