[Checkins] SVN: z3c.widgets.flashupload/trunk/ First round of cleanup

Hanno Schlichting hannosch at hannosch.eu
Wed Oct 21 11:44:25 EDT 2009


Log message for revision 105197:
  First round of cleanup
  

Changed:
  U   z3c.widgets.flashupload/trunk/CHANGES.txt
  D   z3c.widgets.flashupload/trunk/LICENCES.txt
  U   z3c.widgets.flashupload/trunk/buildout.cfg
  D   z3c.widgets.flashupload/trunk/flash/src/z3c/widget/
  A   z3c.widgets.flashupload/trunk/flash/src/z3c/widgets/
  U   z3c.widgets.flashupload/trunk/setup.py
  D   z3c.widgets.flashupload/trunk/src/z3c/widget/
  A   z3c.widgets.flashupload/trunk/src/z3c/widgets/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/autocomplete/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/country/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/dateselect/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/dropdowndatewidget/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/image/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/namespace/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/optdropdown/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/sequence/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/ssn/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/tiny/
  D   z3c.widgets.flashupload/trunk/src/z3c/widgets/usphone/

-=-
Modified: z3c.widgets.flashupload/trunk/CHANGES.txt
===================================================================
--- z3c.widgets.flashupload/trunk/CHANGES.txt	2009-10-21 15:36:13 UTC (rev 105196)
+++ z3c.widgets.flashupload/trunk/CHANGES.txt	2009-10-21 15:44:25 UTC (rev 105197)
@@ -1,77 +1,7 @@
-======================
-Changes for z3c.widget
-======================
+Changelog
+=========
 
-unreleased 0.2.2dev
-===================
- 
- - added translation for french
+1.0 - unreleased
+----------------
 
-2008/01/29 0.2.1
-================
- 
- - add translation for hungarian and romanian languages
-
-2007/09/21 0.2.0
-================
-
- - feature: Added a date-selection widget.
- - feature: Added a social security number widget.
- - feature: Added a US phone number widget.
-
-2007/09/19 0.1.7
-================
-
- - added translation for english to get i18n working in some browsers
-
-
-2007/09/19 0.1.6
-================
-
- - added cheesehop classification, registered there
- - fixed typos
-
-2007/09/05 0.1.5
-================
-
- - bugfix: browse butten will now be enabled after cancel was clicked in
-   the open file dialog
- - do not set the progessbar to 100% before the upload was started
- - bugfix: files will not be uploaded if no limit was set
-
-
-2007/09/05 0.1.4
-================
-
- - dealing file size during upload. If one or more files are bigger than
-   the passed size each one of them will be ignored during upload but listed
-   below the progress bar after the upload of the working files is done.
- - displaying the maximal allowed file size (if it's contained in the config
-   file)
-
-
-2007/09/03 0.1.3
-================
-
- - bugfix: too much quoting.
-
-
-2007/09/03 0.1.2
-================
-
- - using passed config url instead of hard coded flashuploadvars.xml
-
-
-2007/08/06 0.1.1
-================
-
- - flashupload: better skinnability for upload.swf. cleanup folder
-   structure for flash stuff.
-
-
-2007/06/14 0.1.0:
-=================
-
- - z3c.widget.image: added translations for es
-
- - update to newest bootstrap.py version
+- Split off from the z3c.widget package.

Deleted: z3c.widgets.flashupload/trunk/LICENCES.txt
===================================================================
--- z3c.widgets.flashupload/trunk/LICENCES.txt	2009-10-21 15:36:13 UTC (rev 105196)
+++ z3c.widgets.flashupload/trunk/LICENCES.txt	2009-10-21 15:44:25 UTC (rev 105197)
@@ -1,13 +0,0 @@
-========
-LICENSES
-========
-
-TinyMCE
-=======
-
-The TinyMCE javascript library is releaased under the "GNU LIBRARY
-GENERAL PUBLIC LICENSE". See:
-``./src/z3c/widget/tiny/timy_mce/license.txt``. It is included in this
-package in unmodified form.
-
-

Modified: z3c.widgets.flashupload/trunk/buildout.cfg
===================================================================
--- z3c.widgets.flashupload/trunk/buildout.cfg	2009-10-21 15:36:13 UTC (rev 105196)
+++ z3c.widgets.flashupload/trunk/buildout.cfg	2009-10-21 15:44:25 UTC (rev 105197)
@@ -6,6 +6,3 @@
 recipe = zc.recipe.testrunner
 defaults = ['--tests-pattern', '^f?tests$']
 eggs = z3c.widget [test]
-
-
-

Modified: z3c.widgets.flashupload/trunk/setup.py
===================================================================
--- z3c.widgets.flashupload/trunk/setup.py	2009-10-21 15:36:13 UTC (rev 105196)
+++ z3c.widgets.flashupload/trunk/setup.py	2009-10-21 15:44:25 UTC (rev 105197)
@@ -1,19 +1,18 @@
-#!python
 from setuptools import setup, find_packages
 
-setup(name='z3c.widget',
-      version='0.1.7',
+setup(name='z3c.widgets.flashupload',
+      version='1.0',
       author = "Zope Community",
-      author_email = "zope3-dev at zope.org",
-      description = "Additional Zope3 Widgets",
+      author_email = "zope-dev at zope.org",
+      description = "Zope Flash Upload Widget",
       license = "ZPL 2.1",
-      keywords = "zope zope3",
-      url='http://svn.zope.org/z3c.widget',
+      keywords = "zope",
+      url='http://svn.zope.org/z3c.widgets.flashupload',
       zip_safe=False,
       packages=find_packages('src'),
       include_package_data=True,
       package_dir = {'':'src'},
-      namespace_packages=['z3c',],
+      namespace_packages=['z3c', 'z3c.widgets', ],
       extras_require = dict(test=['zope.app.testing',
                                   'zope.testing',
                                   'zope.app.securitypolicy',
@@ -52,7 +51,5 @@
                      'License :: OSI Approved :: Zope Public License',
                      'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
                      'Programming Language :: Python',
-                     'Topic :: Software Development :: Libraries :: Python Modules',
                      ],
       )
-



More information about the checkins mailing list