Fixed mercurial paths encoding.
authorŁukasz Rekucki <lrekucki@gmail.com>
Fri, 4 Sep 2009 14:47:48 +0000 (16:47 +0200)
committerŁukasz Rekucki <lrekucki@gmail.com>
Fri, 4 Sep 2009 14:47:48 +0000 (16:47 +0200)
apps/explorer/views.py
lib/hg.py

index cb6988a..7d18688 100644 (file)
@@ -71,7 +71,7 @@ def file_upload(request, repo):
 
                 def upload_action():
                     print 'Adding file: %s' % f.name
-                    repo._add_file(f.name, decoded)
+                    repo._add_file(f.name, decoded.encode('utf-8') )
                     repo._commit(
                         message="File %s uploaded from platform by %s" %\
                             (f.name, request.user.username), \
index 6dd6e0c..18a8d18 100644 (file)
--- a/lib/hg.py
+++ b/lib/hg.py
@@ -7,7 +7,8 @@ import mercurial.merge, mercurial.error
 encoding.encoding = 'utf-8'
 
 
-
+def clearpath(path):
+    return unicode(path).encode("utf-8")
 
 class Repository(object):
     """Abstrakcja repozytorium Mercurial. Działa z Mercurial w wersji 1.3.1."""
@@ -44,6 +45,8 @@ class Repository(object):
         return self.in_branch(lambda: self._get_file(path), branch)
 
     def _get_file(self, path):
+        path = clearpath(path)
+
         if not self._file_exists(path):
             raise RepositoryException("File not availble in this branch.")
         
@@ -53,18 +56,21 @@ class Repository(object):
         return self.in_branch(lambda: self._file_exists(path), branch)
 
     def _file_exists(self, path):
+        path = clearpath(path)
         return self.repo.dirstate[path] != "?"
 
     def write_file(self, path, value, branch):
         return self.in_branch(lambda: self._write_file(path, value), branch)
 
-    def _write_file(self, path, value):        
+    def _write_file(self, path, value):
+        path = clearpath(path)
         return self.repo.wwrite(path, value, [])
 
     def add_file(self, path, value, branch):
         return self.in_branch(lambda: self._add_file(path, value), branch)
 
     def _add_file(self, path, value):
+        path = clearpath(path)
         self._write_file(path, value)
         return self.repo.add( [path] )