From 99c211b6e82c3fe57aa7d884acae98729509470f Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Thu, 28 Jan 2010 15:33:50 +0000 Subject: [PATCH] Prepare plone.app.discussion 1.0b3. svn path=/plone.app.discussion/trunk/; revision=33553 --- docs/HISTORY.txt => CHANGES.txt | 2 +- docs/INSTALL.txt | 40 --------------------------------- docs/LICENSE.txt | 26 ++++++++++----------- setup.py | 5 ++--- 4 files changed, 16 insertions(+), 57 deletions(-) rename docs/HISTORY.txt => CHANGES.txt (99%) delete mode 100644 docs/INSTALL.txt diff --git a/docs/HISTORY.txt b/CHANGES.txt similarity index 99% rename from docs/HISTORY.txt rename to CHANGES.txt index 33568ff..a442e86 100644 --- a/docs/HISTORY.txt +++ b/CHANGES.txt @@ -1,7 +1,7 @@ Changelog ========= -1.0b3 (XXXX-XX-XX) +1.0b3 (2010-01-28) ------------------ * Added an i18n directory for messages in the plone domain and updated scripts diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt deleted file mode 100644 index 9e02599..0000000 --- a/docs/INSTALL.txt +++ /dev/null @@ -1,40 +0,0 @@ -plone.app.discussion Installation -======================= - - * When you're reading this you have probably already run - ``easy_install plone.app.discussion``. Find out how to install setuptools - (and EasyInstall) here: - http://peak.telecommunity.com/DevCenter/EasyInstall - - * Create a file called ``plone.app.discussion-configure.zcml`` in the - ``/path/to/instance/etc/package-includes`` directory. The file - should only contain this:: - - - - -Alternatively, if you are using zc.buildout and the plone.recipe.zope2instance -recipe to manage your project, you can do this: - - * Add ``plone.app.discussion`` to the list of eggs to install, e.g.: - - [buildout] - ... - eggs = - ... - plone.app.discussion - - * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: - - [instance] - recipe = plone.recipe.zope2instance - ... - zcml = - plone.app.discussion - - * Re-run buildout, e.g. with: - - $ ./bin/buildout - -You can skip the ZCML slug if you are going to explicitly include the package -from another package's configure.zcml file. diff --git a/docs/LICENSE.txt b/docs/LICENSE.txt index 1fd9be2..cc644ed 100644 --- a/docs/LICENSE.txt +++ b/docs/LICENSE.txt @@ -1,16 +1,16 @@ - plone.app.discussion is copyright Timo Stollenwerk +plone.app.discussion is copyright Plone Foundation - This program 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 2 of the License, or - (at your option) any later version. +This program 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 2 of the License, or +(at your option) any later version. - This program 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. +This program 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 this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, - MA 02111-1307 USA. +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, +MA 02111-1307 USA. diff --git a/setup.py b/setup.py index 2c12bc9..0c08952 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,12 @@ from setuptools import setup, find_packages -import os -version = '1.0b3dev' +version = '1.0b3' setup(name='plone.app.discussion', version=version, description="Enhanced discussion support for Plone", long_description=open("README.txt").read() + "\n" + - open(os.path.join("docs", "HISTORY.txt")).read(), + open("CHANGES.txt").read(), classifiers=[ "Framework :: Plone", "Programming Language :: Python",