diff options
author | Philip Thiem <ptthiem@gmail.com> | 2013-07-06 06:24:30 -0500 |
---|---|---|
committer | Philip Thiem <ptthiem@gmail.com> | 2013-07-06 06:24:30 -0500 |
commit | 411379b73db3bc4955e369affc448cd10ac025e6 (patch) | |
tree | 4a038894ff884860717110e222b8935d3db43b09 /setuptools/svn_utils.py | |
parent | 16088e1dd88bbe5497c4e6e1f5239eacec583bef (diff) | |
download | external_python_setuptools-411379b73db3bc4955e369affc448cd10ac025e6.tar.gz external_python_setuptools-411379b73db3bc4955e369affc448cd10ac025e6.tar.bz2 external_python_setuptools-411379b73db3bc4955e369affc448cd10ac025e6.zip |
some notes on things that needs to be fixed after all
--HG--
extra : rebase_source : 5777bafbb7069238b8aa485cfbc23c13b019080f
Diffstat (limited to 'setuptools/svn_utils.py')
-rw-r--r-- | setuptools/svn_utils.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/setuptools/svn_utils.py b/setuptools/svn_utils.py index 19352821..a4c53f15 100644 --- a/setuptools/svn_utils.py +++ b/setuptools/svn_utils.py @@ -82,7 +82,7 @@ def parse_revision(path): pass
return 0
-
+#TODO: Need to do this with the -R because only root has .svn in 1.7.x
def parse_dir_entries(path):
code, data = _run_command(['svn', 'info',
'--depth', 'immediates', '--xml', path])
@@ -110,7 +110,16 @@ def parse_dir_entries(path): return []
-#--xml wasn't supported until 1.5.x
+#--xml wasn't supported until 1.5.x need to do -R
+#TODO: -R looks like directories are seperated by blank lines
+# with dir - prepened to first directory
+# what about directories with spaces?
+# put quotes around them
+# what about the URL's?
+# same
+# convert to UTF-8 and use csv
+# delimiter = space
+#
#-R without --xml parses a bit funny
def parse_externals(path):
try:
|