Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Unified Diff: tools/svn.py

Issue 24274003: Create HTTP-based GM results viewer. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: linewrap Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gm/rebaseline_server/static/view.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/svn.py
===================================================================
--- tools/svn.py (revision 11476)
+++ tools/svn.py (working copy)
@@ -85,6 +85,15 @@
"""
return self._RunCommand([SVN, 'checkout', url, path])
+ def Update(self, path):
+ """Update the working copy.
+ Returns stdout as a single string.
+
+ @param path path (within self._directory) within which to run
+ "svn update"
+ """
+ return self._RunCommand([SVN, 'update', path])
+
def ListSubdirs(self, url):
"""Returns a list of all subdirectories (not files) within a given SVN
url.
« no previous file with comments | « gm/rebaseline_server/static/view.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698