- Timestamp:
- 08/07/09 13:14:32 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
enpraxis.educommons/trunk/enpraxis/educommons/browser/__init__.py
r506 r544 308 308 return copyright, holder, license_name, license_url, license_button 309 309 310 311 312 310 def getCitationInfo(self): 313 311 """ Gets the citation information """ … … 327 325 if parent.instructorAsCreator == True: 328 326 instr_name = parent.instructorName 329 names = [instr_name.strip()] 327 if instr_name != u'': 328 names = [instr_name.strip()] 330 329 names += [name.strip() for name in parent.Creators()] 331 330 if len(self.context.Creators()) > 1: … … 334 333 if self.context.instructorAsCreator == True: 335 334 instr_name = self.context.instructorName 336 names = [instr_name.strip()] 335 if instr_name != u'': 336 names = [instr_name.strip()] 337 337 names += [name.strip() for name in self.context.Creators()] 338 338 else: … … 344 344 345 345 crs = cr.split(' ') 346 347 346 348 347 for part in crs[:-1]:
