Skip to content

Commit e70c2bb

Browse files
author
Richard Jones
committed
tracker name at end of page title (rfe [SF#926840])
1 parent 571593e commit e70c2bb

File tree

8 files changed

+14
-10
lines changed

8 files changed

+14
-10
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Feature:
77
- added url_quote and html_quote methods to the utils object
88
- added isset method to HTMLProperty
99
- database export now exports full journals too
10+
- tracker name at end of page title (sf rfe 926840)
1011

1112
Fixed:
1213
- web CSV export was busted (as was any action returning a result)

templates/classic/html/file.index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- dollarId: file.index,v 1.4 2002/01/23 05:10:27 richard Exp dollar-->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title">
4-
<span tal:replace="config/TRACKER_NAME" />: List of files
4+
List of files - <span tal:replace="config/TRACKER_NAME" />
55
</title>
66
<span metal:fill-slot="body_title" tal:omit-tag="python:1">List of files</span>
77
<td class="content" metal:fill-slot="content">

templates/classic/html/issue.index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- dollarId: issue.index,v 1.2 2001/07/29 04:07:37 richard Exp dollar-->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title">
4-
<span tal:replace="config/TRACKER_NAME" />: List of issues
4+
List of issues - <span tal:replace="config/TRACKER_NAME" />
55
</title>
66
<span metal:fill-slot="body_title" tal:omit-tag="python:1">List of issues</span>
77
<td class="content" metal:fill-slot="content">

templates/classic/html/issue.item.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 richard Exp dollar-->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title">
4-
<span tal:replace="config/TRACKER_NAME" />:
5-
<span tal:condition="context/id"
6-
tal:replace="string:Issue ${context/id}: ${context/title}" />
4+
<tal:x condition="context/id"
5+
replace="string:Issue ${context/id}: ${context/title}" />
6+
<tal:x condition="not:context/id">New Issue</tal:x>
7+
- <tal:x replace="config/TRACKER_NAME" />
78
</title>
89
<span metal:fill-slot="body_title" tal:omit-tag="python:1">
910
<tal:x tal:condition="not:context/id">New</tal:x>
10-
Issue<span tal:replace="context/id" />
11+
Issue<tal:x replace="context/id" />
1112
<tal:x tal:condition="context/is_edit_ok">Editing</tal:x>
1213
</span>
1314

templates/classic/html/msg.index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<tal:block metal:use-macro="templates/page/macros/icing">
22
<title metal:fill-slot="head_title">
3-
<span tal:replace="config/TRACKER_NAME" />: List of messages
3+
List of messages -
4+
<span tal:replace="config/TRACKER_NAME" />
45
</title>
56
<span metal:fill-slot="body_title" tal:omit-tag="python:1">Message listing</span>
67
<td class="content" metal:fill-slot="content">

templates/classic/html/msg.item.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- dollarId: msg.item,v 1.3 2002/05/22 00:32:34 richard Exp dollar-->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title">
4-
<span tal:replace="config/TRACKER_NAME" />:
54
<span tal:condition="context/id" tal:replace="string:Message ${context/id}" />
65
<tal:x tal:condition="not:context/id">New Message</tal:x>
6+
- <span tal:replace="config/TRACKER_NAME" />
77
</title>
88
<span metal:fill-slot="body_title" tal:omit-tag="python:1">
99
Message<span tal:replace="context/id" />

templates/classic/html/query.edit.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<!-- dollarId: user.item,v 1.7 2002/08/16 04:29:04 richard Exp dollar-->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title">
4-
<span tal:replace="config/TRACKER_NAME" />: "Your Queries" Editing
4+
"Your Queries" Editing
5+
- <span tal:replace="config/TRACKER_NAME" />
56
</title>
67
<span metal:fill-slot="body_title" tal:omit-tag="python:1">
78
"Your Queries" Editing

templates/classic/html/user.item.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!-- dollarId: user.item,v 1.7 2002/08/16 04:29:04 richard Exp dollar-->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title">
4-
<span tal:replace="config/TRACKER_NAME" />:
54
<span tal:condition="context/id"
65
tal:replace="string:User ${context/id}: ${context/username}" />
76
<tal:x tal:condition="not:context/id">New User</tal:x>
7+
- <span tal:replace="config/TRACKER_NAME" />
88
</title>
99
<span metal:fill-slot="body_title" tal:omit-tag="python:1">
1010
User<span tal:replace="context/id" />

0 commit comments

Comments
 (0)