Author: pburba
Date: Wed Dec 5 15:35:12 2012
New Revision: 1417483
URL: http://svn.apache.org/viewvc?rev=1417483&view=rev
Log:
* site/publish/docs/release-notes/1.8.html
Add notes about new svnlook (pl|pg) --show-inherited-props option
and changes to svnlook pl [-v] output from 1.7. Adjust svn pg
--show-inherited-props examples to reflect current behavior on
trunk.
Modified:
subversion/site/publish/docs/release-notes/1.8.html
Modified: subversion/site/publish/docs/release-notes/1.8.html
URL: http://svn.apache.org/viewvc/subversion/site/publish/docs/release-notes/1.8.html?rev=1417483&r1=1417482&r2=1417483&view=diff
==============================================================================
--- subversion/site/publish/docs/release-notes/1.8.html (original)
+++ subversion/site/publish/docs/release-notes/1.8.html Wed Dec 5 15:35:12 2012
@@ -223,6 +223,26 @@ for more information.</p>
</div>
+<div class="h4" id="svnlook-proplist-propget">
+<h4>Improved output and new options for <tt>svnlook proplist</tt> and <tt>
+ svnlook propget</tt>
+ <a class="sectionlink" href="#svnlook-proplist-propget"
+ title="Link to this section">¶</a>
+</h4>
+
+<p>The output of <tt>svnlook proplist</tt> and
+<tt>svnlook proplist --verbose</tt> has changed and now mimics the output
+of <tt>svn proplist</tt> and <tt>svn proplist --verbose</tt> respectively.
+<tt>svnlook propget</tt> now supports the <tt>--verbose</tt> option,
which
+produces output similar to <tt>svn propget --verbose</tt>.</p>
+
+<p>Both <tt>svnlook proplist</tt> and <tt>svnlook propget</tt>
now support the
+new option <tt>--show-inherited-props</tt> which may produce output changes
+from 1.7.x. See <a href="#iprops">inheritable properties</a>
+for more information.</p>
+
+</div>
+
</div> <!-- output-changes -->
<div class="h3" id="neon-deleted">
@@ -517,17 +537,18 @@ cannot inherit properties from that pare
<p>Other than the changes detailed <a href="#repos-dictated-config"
>below</a>, the only user visible changes resulting from inheritable
-properties is to the <tt>svn proplist</tt> and <tt>svn propget</tt>
-subcommands when used with the new <tt>--show-inherited-props</tt>
-option.</p>
+properties are to the <tt>svn proplist</tt>, <tt>svn propget</tt>,
+<tt>svnlook proplist</tt>, and <tt>svnlook propget</tt> subcommands
+when used with the new <tt>--show-inherited-props</tt> option.</p>
<p>This new option finds the explicit properties set on a given path's
parent(s) lists them prior to the explicit properties on the target path
itself. For example:</p>
<pre>
- > svn pg -vR --show-inherited-props tsvn:logwidthmarker ^/subversion/trunk/subversion/po
- <b>Properties inherited from</b> 'https://svn.apache.org/repos/asf/subversion/trunk':
+ > svn propget -vR --show-inherited-props tsvn:logwidthmarker ^/subversion/trunk/subversion/po
+ <b>Inherited properties</b> on 'https://svn.apache.org/repos/asf/subversion/trunk/subversion/po',
+ from 'https://svn.apache.org/repos/asf/subversion/trunk':
tsvn:logwidthmarker
78
Properties on 'https://svn.apache.org/repos/asf/subversion/trunk/subversion/po':
@@ -541,11 +562,13 @@ paths not present in the working copy.
from a URL:</p>
<pre>
- > svn pg -vR --show-inherited-props tsvn:logwidthmarker po-wc\de.po
- <b>Properties inherited from</b> 'https://svn.apache.org/repos/asf/subversion/trunk':
+ > svn propget -vR --show-inherited-props tsvn:logwidthmarker po-wc\de.po
+ <b>Inherited properties</b> on 'po-wc\de.po',
+ from 'https://svn.apache.org/repos/asf/subversion/trunk':
tsvn:logwidthmarker
78
- <b>Properties inherited from</b> 'po-wc':
+ <b>Inherited properties</b> on 'po-wc\de.po',
+ from 'po-wc':
tsvn:logwidthmarker
80
</pre>
@@ -555,7 +578,7 @@ properties, wrapping them in <tt>inherit
<tt>property</tt> tags:</p>
<pre>
- > svn pg --show-inherited-props --xml tsvn:logwidthmarker ^/subversion/trunk/subversion/po
+ > svn propget --show-inherited-props --xml tsvn:logwidthmarker ^/subversion/trunk/subversion/po
<?xml version="1.0" encoding="UTF-8"?>
<properties>
<target
@@ -571,6 +594,23 @@ properties, wrapping them in <tt>inherit
</properties>
</pre>
+<p>The <tt>svnlook proplist</tt> and <tt>svnlook propget</tt>
subcommands
+also support the new <tt>--show-inherited-props</tt> option. The output
+is similar to <tt>svn proplist --show-inherited-props</tt> and
+<tt>svn propget --show-inherited-props</tt> except that the paths are not
+working copy paths or URLs, but absolute repository paths:</p>
+
+<pre>
+ > svnlook propget asf-repos-mirrow tsvn:logwidthmarker /subversion/trunk/subversion/po
--show-inherited-props -v
+ <b>Inherited properties</b> on '/subversion/trunk/subversion/po',
+ from '/subversion/trunk':
+ tsvn:logwidthmarker
+ 78
+ Properties on '/subversion/trunk/subversion/po':
+ tsvn:logwidthmarker
+ 80
+</pre>
+
<p>Subversion working copies maintain a cache of the properties that the
root of the working copy inherits from its parent(s) in the repository.
This cache is updated each time you checkout, update, or switch a working
|