Easy way to embed svn revision number in page in PHP? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:59:24Z http://stackoverflow.com/feeds/question/145449 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/145449/easy-way-to-embed-svn-revision-number-in-page-in-php 5 Easy way to embed svn revision number in page in PHP? UltimateBrent 2008-09-28T08:04:06Z 2008-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#145452 2 Answer by JeffFoster for Easy way to embed svn revision number in page in PHP? JeffFoster 2008-09-28T08:05:34Z 2008-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#145461 10 Answer by Sören Kuklau for Easy way to embed svn revision number in page in PHP? Sören Kuklau 2008-09-28T08:10:20Z 2008-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#145468 1 Answer by Thomaschaaf for Easy way to embed svn revision number in page in PHP? Thomaschaaf 2008-09-28T08:14:37Z 2008-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#145470 7 Answer by Sören Kuklau for Easy way to embed svn revision number in page in PHP? Sören Kuklau 2008-09-28T08:18:09Z 2008-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#145475 3 Answer by Brian Sadler for Easy way to embed svn revision number in page in PHP? Brian Sadler 2008-09-28T08:22:39Z 2008-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> &lt;svn username="${svn.username}" password="${svn.password}" javaHL="${svn.javahl}"&gt; &lt;status path="${dir.build}" revisionProperty="svn.status.revision" /&gt; &lt;/svn&gt; &lt;replace dir="${dir.build}" token="%revision%" value="${svn.status.revision}"&gt; &lt;include name="**/*.php" /&gt; &lt;/replace&gt; </code></pre>