Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
33a40e24
Commit
33a40e24
authored
Dec 31, 2009
by
Tres Seaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LP #143444: add labels to checkboxes / radio buttons on import / export form.
parent
31d4a7c2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
13 deletions
+21
-13
doc/CHANGES.rst
doc/CHANGES.rst
+4
-1
src/OFS/dtml/importExport.dtml
src/OFS/dtml/importExport.dtml
+17
-12
No files found.
doc/CHANGES.rst
View file @
33a40e24
...
@@ -57,7 +57,10 @@ Features Added
...
@@ -57,7 +57,10 @@ Features Added
Bugs Fixed
Bugs Fixed
++++++++++
++++++++++
- LP #496961: Remove all mention of ``standard_html_header`` and
- LP #143444: add labels to checkboxes / radio buttons on import /
export form.
- LP #496941: Remove all mention of ``standard_html_header`` and
``standard_html_footer`` from default DTML content.
``standard_html_footer`` from default DTML content.
- Fixed a regression in Products.PageTemplates that meant filesystem templates
- Fixed a regression in Products.PageTemplates that meant filesystem templates
...
...
src/OFS/dtml/importExport.dtml
View file @
33a40e24
...
@@ -42,11 +42,15 @@ at your own risk.
...
@@ -42,11 +42,15 @@ at your own risk.
</td>
</td>
<td align="left" valign="top">
<td align="left" valign="top">
<div class="form-text">
<div class="form-text">
<input type="radio" name="download:int" value="1" />
<label for="download_local">
<input type="radio" name="download:int" value="1" id="download_local" />
Download to local machine
Download to local machine
</label>
<br />
<br />
<input type="radio" name="download:int" value="0" checked />
<label for="download_server">
<input type="radio" name="download:int" value="0" id="download_server" checked />
Save to file on server
Save to file on server
</label>
</div>
</div>
</td>
</td>
</tr>
</tr>
...
@@ -57,7 +61,11 @@ at your own risk.
...
@@ -57,7 +61,11 @@ at your own risk.
</td>
</td>
<td align="left" valign="top">
<td align="left" valign="top">
<div class="form-text">
<div class="form-text">
<input type="checkbox" name="toxml" value="Y" /> XML format? (unsupported, see above)
<label for="toxml">
<input type="checkbox" id="toxml" name="toxml" value="Y" />
XML format?
</label>
<em>(unsupported, see above)</em>
</div>
</div>
</td>
</td>
</tr>
</tr>
...
@@ -115,11 +123,15 @@ ownership information".
...
@@ -115,11 +123,15 @@ ownership information".
</td>
</td>
<td align="left" valign="top">
<td align="left" valign="top">
<div class="form-text">
<div class="form-text">
<input type="radio" name="set_owner:int" value="1" checked />
<label for="owner_take">
<input type="radio" name="set_owner:int" value="1" id="owner_take" checked />
Take ownership of imported objects
Take ownership of imported objects
</label>
<br />
<br />
<input type="radio" name="set_owner:int" value="0" />
<label for="owner_retain">
<input type="radio" name="set_owner:int" value="0" id="owner_retain" />
Retain existing ownership information
Retain existing ownership information
</label>
</div>
</div>
</td>
</td>
</tr>
</tr>
...
@@ -136,10 +148,3 @@ ownership information".
...
@@ -136,10 +148,3 @@ ownership information".
<dtml-var manage_page_footer>
<dtml-var manage_page_footer>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment