# HG changeset patch
# User Steve Losh <steve@stevelosh.com>
# Date 1269706272 14400
# Node ID ac324e064f827619fe06683926916648a0372013
# Parent  6df093d9f2384d17881461b9bfba5d3cb50bf759
Don't give away the repo filesystem path in the web UI footer.

Now that we have a read-only mode people might want to expose the web UI to
the world.  We shouldn't display sensitive data on the pages any more.

diff -r 6df093d9f238 -r ac324e064f82 review/web_media/style.css
--- a/review/web_media/style.css	Sat Mar 27 12:04:57 2010 -0400
+++ b/review/web_media/style.css	Sat Mar 27 12:11:12 2010 -0400
@@ -41,6 +41,12 @@
     font-style: italic;
     padding-top: 1.5em;
 }
+div#footer a {
+    color: #fff;
+}
+div#footer a:hover {
+    text-decoration: underline;
+}
 
 /* Links. */
 a {
diff -r 6df093d9f238 -r ac324e064f82 review/web_templates/base.html
--- a/review/web_templates/base.html	Sat Mar 27 12:04:57 2010 -0400
+++ b/review/web_templates/base.html	Sat Mar 27 12:11:12 2010 -0400
@@ -52,7 +52,7 @@
             </div>
         </div>
         <div id="footer">
-            <p>reviewing: {{ datastore.target.root }}</p>
+            <p>reviewing {{ utils["basename"](datastore.target.root) }} with <a href="http://bitbucket.org/sjl/hg-review/">hg-review</a></p>
         </div>
     </body>
 </html>
\ No newline at end of file