Podpisywanie, kto wykonał daną zmianę. Usunięcie print, które zapodziały się w kodzie.
authorzuber <marek@stepniowski.com>
Wed, 10 Feb 2010 22:48:13 +0000 (23:48 +0100)
committerzuber <marek@stepniowski.com>
Wed, 10 Feb 2010 22:48:13 +0000 (23:48 +0100)
apps/wiki/views.py
lib/vstorage.py
platforma/static/js/main.js
platforma/templates/wiki/document_details.html

index ec43dee..d64a529 100644 (file)
@@ -41,7 +41,6 @@ def document_detail(request, name, template_name='wiki/document_details.html'):
 def document_gallery(request, directory):
     try:
         base_dir = os.path.join(settings.MEDIA_ROOT, settings.FILEBROWSER_DIRECTORY, directory)
-        print base_dir
         images = ['%s%s%s/%s' % (settings.MEDIA_URL, settings.FILEBROWSER_DIRECTORY, directory, f) for f in os.listdir(base_dir) if os.path.splitext(f)[1].lower() in ('.jpg', '.jpeg', '.png')]
         return HttpResponse(json.dumps(images))
     except (IndexError, OSError), e:
index 9710c7b..00f844a 100644 (file)
@@ -265,7 +265,6 @@ class VersionedStorage(object):
 
     def open_page(self, title):
         if title not in self:
-            print 'whatever', list(self.all_pages())
             raise DocumentNotFound()
         
         try:
index 22ec733..56160ee 100644 (file)
@@ -674,7 +674,7 @@ $(function() {
                         name: $('#document-name').html(),
                         text: metaComment + editor.getCode(),
                         revision: $('#document-revision').html(),
-                        author: 'annonymous',
+                        author: $('#username').html() || 'annonymous',
                         comment: $('#komentarz').val()
                     };
 
index 496f1f0..ead1382 100644 (file)
@@ -29,7 +29,7 @@
         <div id="header">
             <div id="tools" style="float: right;">
                 {% if user.is_authenticated %}
-                    Zalogowany jako {{ user }} | <a href="{% url logout %}">Wyloguj</a> |
+                    Zalogowany jako <span id="username">{{ user }}</span> | <a href="{% url logout %}">Wyloguj</a> |
                 {% else %}
                     <a href="{% url login %}?next={{ request.path }}">Zaloguj się</a> |
                 {% endif %}