Changeset 13167 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 13 Jul 2015, 08:37:27 (10 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/interfaces.py
r13166 r13167 291 291 292 292 def writeLogMessage(view, comment): 293 """Add an INFO message to ``applicants.log``.293 """Add an INFO message to applicants.log. 294 294 """ 295 295 … … 449 449 450 450 def writeLogMessage(view, comment): 451 """Add an INFO message to ``applicants.log``.451 """Add an INFO message to applicants.log. 452 452 """ 453 453 -
main/waeup.kofa/trunk/src/waeup/kofa/documents/interfaces.py
r13166 r13167 63 63 64 64 def writeLogMessage(view, message): 65 """Add an INFO message to ``main.log``.65 """Add an INFO message to main.log. 66 66 """ 67 67 -
main/waeup.kofa/trunk/src/waeup/kofa/hostels/interfaces.py
r13166 r13167 30 30 31 31 class IHostelsContainer(IKofaObject): 32 """A container for all kind ofhostel objects.32 """A container for hostel objects. 33 33 """ 34 34 … … 72 72 73 73 def writeLogMessage(view, message): 74 """Add an INFO message to ``hostels.log``.74 """Add an INFO message to hostels.log. 75 75 """ 76 76 77 77 class IHostel(IKofaObject): 78 """ A base representation of hostels.78 """Representation of a hostel. 79 79 """ 80 80 … … 208 208 209 209 def writeLogMessage(view, message): 210 """Add an INFO message to ``hostels.log``.210 """Add an INFO message to hostels.log. 211 211 """ 212 212 213 213 class IBed(IKofaObject): 214 """ A base representation of beds.214 """Representation of a bed. 215 215 """ 216 216 … … 270 270 271 271 def writeLogMessage(view, message): 272 """Add an INFO message to ``hostels.log``.273 """ 272 """Add an INFO message to hostels.log. 273 """ -
main/waeup.kofa/trunk/src/waeup/kofa/students/interfaces.py
r13166 r13167 154 154 155 155 def writeLogMessage(view, message): 156 """Add an INFO message to ``students.log``.156 """Add an INFO message to students.log. 157 157 """ 158 158
Note: See TracChangeset for help on using the changeset viewer.