|
|
|
Issue 19 of
Adaptable Persistence Engine
[Ape]
|
| Title: |
String attribute stored as <ComputedAttribute object at 0x018AC9C0>
|
| Status: |
Pending
|
Security |
related:
No
|
| Description: |
In Plone the title attribute of the Portal Properties Tool should contain a string with the title of the site. (The attribute is used to generate the ...
|
| From: |
stonor
|
on: |
Nov 23, 04 04:52
|
| |
stonor
|
Last update:
|
Nov 23, 04 04:52
|
| Topic/class: |
Filesystem/Bug
|
Importance:
|
normal
|
| Version info: |
Ape 1.0 |
|
Issue 19 Transcript
|
|
1 entry
|
= Request - Entry #1 by stonor on Nov 23, 2004 4:52 am
In Plone the title attribute of the Portal Properties Tool should contain a string with the title of the site. (The attribute is used to generate the <title> tag in the default Plone template as is quite visible to the end user).
However, when using Ape the attribute contains:
<ComputedAttribute object at 0x018AC9C0>
The attribute is defined here
CMFPlone.PropertiesTool.py
def title(self):
""" Return BaseTool title
"""
return BaseTool.title(self)
title = ComputedAttribute(title, 1)
|
|
|