Changeset 51404 for Zope2/CalCMF

Show
Ignore:
Timestamp:
03/22/07 15:25:38 (1 year ago)
Author:
lregebro
Message:

Deleted users cause an attribute error.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Zope2/CalCMF/trunk/CHANGES

    r50912 r51404  
    77Bug fixes 
    88~~~~~~~~~ 
    9 - 
     9- Deleted users caused an attribute Error. 
    1010New internal features 
    1111~~~~~~~~~~~~~~~~~~~~~ 
  • Zope2/CalCMF/trunk/INSTALL.txt

    r45270 r51404  
    22============ 
    33This software uses several innovative development paradigms. As a result it  
    4 has rather overwhelming installation instructions. Sorry about that. 
     4has rather overwhelming installation requirements. Sorry about that. 
    55 
    66You will need: 
    77 
    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
    99 
    1010* CMF 1.5.6 or Plone 2.5. 
     
    1313is recorded here for documentation purposes: 
    1414 
    15 * CalCore 2.0.1. 
     15* CalCore 2.2.1. 
    1616 
    17 * CalZope 2.3.0
     17* CalZope 2.8.5
    1818 
    19 * iCalendar 0.11.  
    20    http://codespeak.net/icalendar/iCalendar-0.10.tgz 
     19* iCalendar 1.0. 
    2120 
    2221* CMFonFive 1.3.2 
     
    2625=========== 
    2726You 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 with  
     27the CalCMF bundle, called CalCMF-bundle-x.x.x-x.tgz. Extract it with  
    2928 
    30   tar zvfx CalCMF-bundle-0.9.0-1.tgz 
     29  tar zvfx CalCMF-bundle-x.x.x-x.tgz 
    3130 
    3231Move the files into your Zope instances Products directory: 
    3332 
    34   mv CalCMF-bundle-0.9.0/* <zope-instace-home>/Products 
     33  mv CalCMF-bundle-x.x.x/* <zope-instace-home>/Products 
    3534 
    3635Restart Zope. 
    3736 
    3837You can either install CalCMF with CMFQuickInstaller (included with Plone)  
    39 or by createing an External Method, with the parameters: 
     38or by creating an External Method, with the parameters: 
    4039 
    4140  Module Name: CalZope.install 
     
    4443You then install the product by clicking on the Test-tab of the External Method. 
    4544 
    46  
  • Zope2/CalCMF/trunk/calendartool.py

    r49954 r51404  
    7070            try: 
    7171                member = members.getMemberById(id) 
     72                if member is None: 
     73                    raise KeyError 
    7274                # Use a get since the directory may be misconfigured: 
    7375                title = member.getProperty('fullname', None)