Skip to content

Commit 865e515

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 5bc34e4 commit 865e515

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Fixed:
66
- note about how to run roundup demo in Windows (sf bug 1082090)
77
- fix API for templating utils extensions - remove "utils" arg (sf bug 1081981)
88
- back_sqlite.py is missing "import time" (sf bug 1081959)
9+
- fix (list) popup (sf bug 1083570)
910

1011

1112
2004-12-08 0.8.0b1
@@ -60,6 +61,7 @@ Fixed:
6061
- apply IE caching "fix" to automatically serve up all pages expired
6162
- fix typo (sf patch 1076629)
6263
- fix hyperlinking of items (sf bug 1080251)
64+
- fix roundup-admin find command handling of Multilinks
6365

6466

6567
2004-10-26 0.7.9

doc/index.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ Terrel Shumway,
134134
Emil Sit,
135135
Alexander Smishlajev,
136136
Nathaniel Smith,
137+
Maciej Starzyk,
137138
Mitchell Surface,
138139
Mike Thompson,
139140
Martin Uzak,

templates/classic/html/_generic.help.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
<script language="Javascript" type="text/javascript"
1212
tal:content="structure string:
1313
// this is the name of the field in the original form that we're working on
14-
form = window.opener.document.${request/form/form/value};" >
14+
form = window.opener.document.${request/form/form/value};
15+
field = '${request/form/property/value}';">
1516
</script>
1617
<script src="@@file/help_controls.js" type="text/javascript"><!--
1718
//--></script>

templates/minimal/html/_generic.help.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
<script language="Javascript" type="text/javascript"
1212
tal:content="structure string:
1313
// this is the name of the field in the original form that we're working on
14-
form = window.opener.document.${request/form/form/value};" >
14+
form = window.opener.document.${request/form/form/value};
15+
field = '${request/form/property/value}';">
1516
</script>
1617
<script src="@@file/help_controls.js" type="text/javascript"><!--
1718
//--></script>

0 commit comments

Comments
 (0)