- Timestamp:
- 3 Jan 2014, 08:26:28 (11 years ago)
- Location:
- main/kwarapoly.theme/trunk
- Files:
-
- 1 added
- 2 deleted
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kwarapoly.theme/trunk/MANIFEST.in
r10190 r10862 1 recursive-include ngren*1 recursive-include kwarapoly * 2 2 global-exclude *pyc -
main/kwarapoly.theme/trunk/README.rst
r10538 r10862 1 ngren.theme2 =========== 1 kwarapoly.theme 2 =============== 3 3 4 This is the NgRENtheme for Plone.4 This is the kwarapoly theme for Plone. 5 5 6 6 Short hints for developers … … 37 37 38 38 In the running instance (credentials admin/admin) add a Plone Site 39 with all Diazo-related packages, ngren.theme and other stuff activated39 with all Diazo-related packages, kwarapoly.theme and other stuff activated 40 40 (or activate this stuff after creation). 41 41 -
main/kwarapoly.theme/trunk/buildout.cfg
r10538 r10862 20 20 Pillow 21 21 diazotheme.bootstrap 22 ngren.theme22 kwarapoly.theme 23 23 Products.LinguaPlone 24 24 sc.social.like -
main/kwarapoly.theme/trunk/docs/INSTALL.txt
r10190 r10862 1 ngren.theme Installation2 ------------------------ 1 kwarapoly.theme Installation 2 ---------------------------- 3 3 4 To install ngren.theme into the global Python environment (or a workingenv),4 To install kwarapoly.theme into the global Python environment (or a workingenv), 5 5 using a traditional Zope 2 instance, you can do this: 6 6 7 7 * When you're reading this you have probably already run 8 ``easy_install ngren.theme``. Find out how to install setuptools8 ``easy_install kwarapoly.theme``. Find out how to install setuptools 9 9 (and EasyInstall) here: 10 10 http://peak.telecommunity.com/DevCenter/EasyInstall … … 17 17 into your Zope instance. 18 18 19 * Create a file called `` ngren.theme-configure.zcml`` in the19 * Create a file called ``kwarapoly.theme-configure.zcml`` in the 20 20 ``/path/to/instance/etc/package-includes`` directory. The file 21 21 should only contain this:: 22 22 23 <include package=" ngren.theme" />23 <include package="kwarapoly.theme" /> 24 24 25 25 .. _pythonproducts: http://plone.org/products/pythonproducts … … 29 29 recipe to manage your project, you can do this: 30 30 31 * Add `` ngren.theme`` to the list of eggs to install, e.g.:31 * Add ``kwarapoly.theme`` to the list of eggs to install, e.g.: 32 32 33 33 [buildout] … … 35 35 eggs = 36 36 ... 37 ngren.theme37 kwarapoly.theme 38 38 39 39 * Tell the plone.recipe.zope2instance recipe to install a ZCML slug: … … 43 43 ... 44 44 zcml = 45 ngren.theme45 kwarapoly.theme 46 46 47 47 * Re-run buildout, e.g. with: -
main/kwarapoly.theme/trunk/docs/LICENSE.txt
r10190 r10862 1 ngren.theme is copyright Jan Filip Tristan Hasecke1 kwarapoly.theme is copyright Jan Filip Tristan Hasecke 2 2 3 3 This program is free software; you can redistribute it and/or modify -
main/kwarapoly.theme/trunk/setup.py
r10190 r10862 4 4 version = '1.0' 5 5 6 setup(name=' ngren.theme',6 setup(name='kwarapoly.theme', 7 7 version=version, 8 description="Theme for NgREN",8 description="Theme for kwarapoly", 9 9 long_description=open("README.txt").read() + "\n" + 10 10 open(os.path.join("docs", "HISTORY.txt")).read(), … … 21 21 license='GPL', 22 22 packages=find_packages(exclude=['ez_setup']), 23 namespace_packages=[' ngren'],23 namespace_packages=['kwarapoly'], 24 24 include_package_data=True, 25 25 zip_safe=False,
Note: See TracChangeset for help on using the changeset viewer.