Commit 52eb2c26 authored by Andreas Jung's avatar Andreas Jung

objects locked through webdav are now marked with the davlocked icon

inside the ZMI
parent e299a8a0
...@@ -36,6 +36,9 @@ Zope Changes ...@@ -36,6 +36,9 @@ Zope Changes
- Integration of reStructuredText (reST) and the ZReST product - Integration of reStructuredText (reST) and the ZReST product
by Richard Jones. See doc/RESTRUCTUREDTEXT.txt for details. by Richard Jones. See doc/RESTRUCTUREDTEXT.txt for details.
- Objects locked through WebDAV are now marked with a lock icon
inside the ZMI.
Bugs Fixed Bugs Fixed
- Collector #771: ZCatalog failed to index DTML Document if the name - Collector #771: ZCatalog failed to index DTML Document if the name
......
...@@ -126,7 +126,9 @@ function toggleSelect() { ...@@ -126,7 +126,9 @@ function toggleSelect() {
</dtml-if> </dtml-if>
</td> </td>
<td align="left" valign="top"> <td align="left" valign="top">
<div class="list-item"> <div class="list-item">
<a href="&dtml.url_quote-sequence-key;/manage_workspace"> <a href="&dtml.url_quote-sequence-key;/manage_workspace">
...@@ -142,6 +144,12 @@ function toggleSelect() { ...@@ -142,6 +144,12 @@ function toggleSelect() {
(<em>&dtml-locked_in_version;</em>) (<em>&dtml-locked_in_version;</em>)
</dtml-if> </dtml-if>
</dtml-if> </dtml-if>
<dtml-try>
<dtml-if "wl_isLocked()==1">
<img src="/p_/davlocked">
</dtml-if>
<dtml-except>
</dtml-try>
</div> </div>
</td> </td>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment