From: richard Date: Thu, 6 Mar 2003 07:02:18 +0000 (+0000) Subject: nicer page titles (sf feature 65197) X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c739325d164f561ba62c68acb9414c20ace75f74;p=roundup.git nicer page titles (sf feature 65197) git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1572 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/CHANGES.txt b/CHANGES.txt index c4407b6..c4c3d4a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -39,6 +39,8 @@ Feature: - added support for last-modified and if-modified-since headers for static file serving - added Node.get() method +- nicer page titles (sf feature 65197) + Fixed: - applied unicode patch. All data is stored in utf-8. Incoming messages diff --git a/roundup/templates/classic/html/file.index b/roundup/templates/classic/html/file.index index 23cfda8..34dd0cf 100644 --- a/roundup/templates/classic/html/file.index +++ b/roundup/templates/classic/html/file.index @@ -1,6 +1,8 @@ -List of files + + <span tal:replace="config/TRACKER_NAME" />: List of files +

List of files

diff --git a/roundup/templates/classic/html/issue.index b/roundup/templates/classic/html/issue.index index 4f3e7b8..9fcf2a7 100644 --- a/roundup/templates/classic/html/issue.index +++ b/roundup/templates/classic/html/issue.index @@ -1,6 +1,8 @@ -List of issues + + <span tal:replace="config/TRACKER_NAME" />: List of issues +

List of issues

diff --git a/roundup/templates/classic/html/issue.item b/roundup/templates/classic/html/issue.item index 0fcc722..18bb623 100644 --- a/roundup/templates/classic/html/issue.item +++ b/roundup/templates/classic/html/issue.item @@ -1,8 +1,11 @@ - - Issue<span tal:replace="context/id" /> editing - + +<span tal:replace="config/TRACKER_NAME" />: +<span tal:condition="context/id" + tal:replace="string:Issue ${context/id}: ${context/title}" /> +<tal:x tal:condition="not:context/id">New Issue</tal:x> +

Issue diff --git a/roundup/templates/classic/html/msg.index b/roundup/templates/classic/html/msg.index index 44c025b..666344b 100644 --- a/roundup/templates/classic/html/msg.index +++ b/roundup/templates/classic/html/msg.index @@ -1,5 +1,7 @@ -Message listing + + <span tal:replace="config/TRACKER_NAME" />: List of messages +

Message listing

diff --git a/roundup/templates/classic/html/msg.item b/roundup/templates/classic/html/msg.item index 5351ef3..49e203a 100644 --- a/roundup/templates/classic/html/msg.item +++ b/roundup/templates/classic/html/msg.item @@ -1,8 +1,15 @@ -Message editing + +<span tal:replace="config/TRACKER_NAME" />: +<span tal:condition="context/id" tal:replace="string:Message ${context/id}" /> +<tal:x tal:condition="not:context/id">New Message</tal:x> + -

Message editing

+

+ Message + Editing +

diff --git a/roundup/templates/classic/html/user.item b/roundup/templates/classic/html/user.item index 5f6374c..422d933 100644 --- a/roundup/templates/classic/html/user.item +++ b/roundup/templates/classic/html/user.item @@ -1,9 +1,18 @@ -User editing + +<span tal:replace="config/TRACKER_NAME" />: +<span tal:condition="context/id" + tal:replace="string:User ${context/id}: ${context/username}" /> +<tal:x tal:condition="not:context/id">New User</tal:x> + +
-

User editing

+

+ User + Editing +

You are not allowed to view this page.