Changeset 51404 for Zope2/CalCMF
- Timestamp:
- 03/22/07 15:25:38 (1 year ago)
- Files:
-
- Zope2/CalCMF/trunk/CHANGES (modified) (1 diff)
- Zope2/CalCMF/trunk/INSTALL.txt (modified) (4 diffs)
- Zope2/CalCMF/trunk/calendartool.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Zope2/CalCMF/trunk/CHANGES
r50912 r51404 7 7 Bug fixes 8 8 ~~~~~~~~~ 9 - 9 - Deleted users caused an attribute Error. 10 10 New internal features 11 11 ~~~~~~~~~~~~~~~~~~~~~ Zope2/CalCMF/trunk/INSTALL.txt
r45270 r51404 2 2 ============ 3 3 This software uses several innovative development paradigms. As a result it 4 has rather overwhelming installation instructions. Sorry about that.4 has rather overwhelming installation requirements. Sorry about that. 5 5 6 6 You will need: 7 7 8 * Zope 2.9.x. The last version as of this release is 2.9. 2.8 * Zope 2.9.x. The last version as of this release is 2.9.4. 9 9 10 10 * CMF 1.5.6 or Plone 2.5. … … 13 13 is recorded here for documentation purposes: 14 14 15 * CalCore 2. 0.1.15 * CalCore 2.2.1. 16 16 17 * CalZope 2. 3.0.17 * CalZope 2.8.5. 18 18 19 * iCalendar 0.11. 20 http://codespeak.net/icalendar/iCalendar-0.10.tgz 19 * iCalendar 1.0. 21 20 22 21 * CMFonFive 1.3.2 … … 26 25 =========== 27 26 You must first install Zope and CMF or Plone. Then you download and install 28 the CalCMF bundle, called CalCMF-bundle- 0.9.0-1.tgz. Extract it with27 the CalCMF bundle, called CalCMF-bundle-x.x.x-x.tgz. Extract it with 29 28 30 tar zvfx CalCMF-bundle- 0.9.0-1.tgz29 tar zvfx CalCMF-bundle-x.x.x-x.tgz 31 30 32 31 Move the files into your Zope instances Products directory: 33 32 34 mv CalCMF-bundle- 0.9.0/* <zope-instace-home>/Products33 mv CalCMF-bundle-x.x.x/* <zope-instace-home>/Products 35 34 36 35 Restart Zope. 37 36 38 37 You can either install CalCMF with CMFQuickInstaller (included with Plone) 39 or by creat eing an External Method, with the parameters:38 or by creating an External Method, with the parameters: 40 39 41 40 Module Name: CalZope.install … … 44 43 You then install the product by clicking on the Test-tab of the External Method. 45 44 46 Zope2/CalCMF/trunk/calendartool.py
r49954 r51404 70 70 try: 71 71 member = members.getMemberById(id) 72 if member is None: 73 raise KeyError 72 74 # Use a get since the directory may be misconfigured: 73 75 title = member.getProperty('fullname', None)
