Author: dsahlberg Date: Thu Jul 31 18:12:44 2025 New Revision: 1927555 Log: In site/staging
Follow up r1927514, changing the main example to let search-svnlog.pl run `svn log` itself (simplifying the example) and having the "pipe with -f -" variation as an extended example: * docs/community-guide/conventions.part.html (#crediting): As above Suggested by: hartmannathan Modified: subversion/site/staging/docs/community-guide/conventions.part.html Modified: subversion/site/staging/docs/community-guide/conventions.part.html ============================================================================== --- subversion/site/staging/docs/community-guide/conventions.part.html Thu Jul 31 13:00:00 2025 (r1927554) +++ subversion/site/staging/docs/community-guide/conventions.part.html Thu Jul 31 18:12:44 2025 (r1927555) @@ -1252,7 +1252,16 @@ these fields in practice. This command working copy will help:</p> <pre> -svn log | contrib/client-side/search-svnlog.pl -f - "(Patch|Review|Suggested) by: " +$ contrib/client-side/search-svnlog.pl "(Patch|Review|Suggested) by: " +</pre> + +<p>The script runs 'svn log' internally. You can customize the invocation +of 'svn log' by piping its output to the script; the '-f -' arguments +are required for this. For example, to search only the last 100 log +messages:</p> + +<pre> +$ svn log -l 100 | contrib/client-side/search-svnlog.pl -f - "(Patch|Review|Suggested) by: " </pre> <p><b>Note:</b> The "Approved by: " field seen in some
