Easy way to embed svn revision number in page in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T21:59:24Zhttp://stackoverflow.com/feeds/question/145449http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php5Easy way to embed svn revision number in page in PHP?UltimateBrent2008-09-28T08:04:06Z2008-09-28T08:22:39Z
<p>Notice in the bottom right hand corner of this page it has the SVN revision id? I'm assuming that's dynamic.</p>
<p>I'd love to add that to some of my sites, just as a comment in the source to make sure code pushes are going through.</p>
<p>NOTE: You can also assume that the working directory of the site in question is an svn checkout of the repo in question.</p>
<p><b>Edit:</b> I'm looking for the global revision number, not the revision number of the file I'm looking at.</p>
http://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php/145452#1454522Answer by JeffFoster for Easy way to embed svn revision number in page in PHP?JeffFoster2008-09-28T08:05:34Z2008-09-28T08:05:34Z<p>Read up on Keyword substitution. See</p>
<p><a href="http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html" rel="nofollow">http://svnbook.red-bean.com/en/1.4/svn.advanced.props.special.keywords.html</a></p>
http://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php/145461#14546110Answer by Sören Kuklau for Easy way to embed svn revision number in page in PHP?Sören Kuklau2008-09-28T08:10:20Z2008-09-28T08:10:20Z<p><em>Similar questions:</em></p>
<ul>
<li><a href="http://stackoverflow.com/questions/163/how-do-i-sync-the-svn-revision-number-with-my-aspnet-web-site">How do I sync the SVN revision number with my ASP.NET web site?</a></li>
<li><a href="http://stackoverflow.com/questions/16248/getting-the-subversion-repository-number-into-code">Getting the subversion repository number into code…</a></li>
<li><a href="http://stackoverflow.com/questions/111436/how-can-i-get-the-svn-revision-number-in-php">How can I get the svn revision number in PHP?</a></li>
<li><a href="http://stackoverflow.com/questions/39770/what-do-you-call-the-tags-in-subversion-and-cvs-that-add-automatic-content">What do you call the tags in Subversion and CVS that add automatic content?</a></li>
</ul>
http://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php/145468#1454681Answer by Thomaschaaf for Easy way to embed svn revision number in page in PHP?Thomaschaaf2008-09-28T08:14:37Z2008-09-28T08:14:37Z<p>Duplicate: <a href="http://stackoverflow.com/questions/111436/how-can-i-get-the-svn-revision-number-in-php">http://stackoverflow.com/questions/111436/how-can-i-get-the-svn-revision-number-in-php</a></p>
http://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php/145470#1454707Answer by Sören Kuklau for Easy way to embed svn revision number in page in PHP?Sören Kuklau2008-09-28T08:18:09Z2008-09-28T08:18:09Z<p>You can use the <a href="http://svnbook.red-bean.com/en/1.5/svn-book.html#svn.ref.svnversion" rel="nofollow"><code>svnversion</code></a> CLI utility to get a more specific look at the revision, including the highest number. You could then use regular expressions to parse this.</p>
<p>Subversion has no concept of a global revision; rather, you'd have to recursively look through the working copy to find the highest revision number. <code>svnversion</code> does that for you.</p>
http://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php/145475#1454753Answer by Brian Sadler for Easy way to embed svn revision number in page in PHP?Brian Sadler2008-09-28T08:22:39Z2008-09-28T08:22:39Z<p>The keyword subsitution method isn't reliable because it will provide the revision of the file rather than the whole codebase that you're deploying, which I presume is what you're after.</p>
<p>Typically I use ANT to deploy from subversion, and in the build script I'd use the replace task to substitue a revision token in a layout template or common header file with the revision number of the codebase that I'm deploying - see below. Although if anyone has a better method I'd love to hear it!</p>
<pre><code> <svn username="${svn.username}" password="${svn.password}" javaHL="${svn.javahl}">
<status path="${dir.build}" revisionProperty="svn.status.revision" />
</svn>
<replace dir="${dir.build}" token="%revision%" value="${svn.status.revision}">
<include name="**/*.php" />
</replace>
</code></pre>