From 084544e4f7c9269b1445a9e5109fa641a3e1aaac Mon Sep 17 00:00:00 2001 From: zuber Date: Mon, 30 Nov 2009 16:08:47 +0100 Subject: [PATCH] =?utf8?q?Widok=20do=20edycji=20dokument=C3=B3w=20w=20apli?= =?utf8?q?kacji=20wiki.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- apps/explorer/views.py | 17 ++- apps/wiki/forms.py | 27 ++++ apps/wiki/models.py | 19 ++- apps/wiki/views.py | 31 +++++ platforma/settings.py | 2 +- platforma/static/js/slugify.js | 124 ++++++++++++++++++ platforma/templates/base.html | 1 - platforma/templates/explorer/file_list.html | 59 ++------- .../templates/wiki/document_details.html | 27 ++++ platforma/urls.py | 24 ++-- 10 files changed, 256 insertions(+), 75 deletions(-) create mode 100644 apps/wiki/forms.py create mode 100644 apps/wiki/views.py create mode 100644 platforma/static/js/slugify.js create mode 100644 platforma/templates/wiki/document_details.html diff --git a/apps/explorer/views.py b/apps/explorer/views.py index 679d0065..150b03d1 100755 --- a/apps/explorer/views.py +++ b/apps/explorer/views.py @@ -16,7 +16,7 @@ from django.template import RequestContext from django.contrib.auth.decorators import login_required from explorer import forms -from api.models import PullRequest +# from api.models import PullRequest from bookthemes.models import Theme def ajax_login_required(view): @@ -47,18 +47,17 @@ def display_editor(request, path): # View all files # def file_list(request): - import api.forms - from api.resources import library_resource - - bookform = api.forms.DocumentUploadForm() + from wiki.views import document_list # short-circut the api document list - doctree = library_resource.handler.read(request) + # doctree = library_resource.handler.read(request) # print "DOCTREE:", doctree['documents'] - return direct_to_template(request, 'explorer/file_list.html', extra_context={ - 'filetree': doctree['documents'], 'bookform': bookform, - }) + return document_list(request, 'explorer/file_list.html') + + # return direct_to_template(request, 'explorer/file_list.html', extra_context={ + # 'files': files, 'bookform': bookform, + # }) @permission_required('api.document.can_add') def file_upload(request): diff --git a/apps/wiki/forms.py b/apps/wiki/forms.py new file mode 100644 index 00000000..e2474874 --- /dev/null +++ b/apps/wiki/forms.py @@ -0,0 +1,27 @@ +from django import forms +from wiki.models import Document, storage + + +class DocumentForm(forms.Form): + name = forms.CharField(widget=forms.HiddenInput) + text = forms.CharField(widget=forms.Textarea) + revision = forms.IntegerField(widget=forms.HiddenInput) + author = forms.CharField() + comment = forms.CharField() + + def __init__(self, *args, **kwargs): + document = kwargs.pop('instance', None) + super(DocumentForm, self).__init__(*args, **kwargs) + if document: + self.fields['name'].initial = document.name + self.fields['text'].initial = document.text + self.fields['revision'].initial = document.revision() + + def get_storage(self): + return storage + + def save(self): + document = Document(self.get_storage(), name=self.cleaned_data['name'], text=self.cleaned_data['text']) + storage.put(document, self.cleaned_data['author'], self.cleaned_data['comment'], + self.cleaned_data['revision']) + diff --git a/apps/wiki/models.py b/apps/wiki/models.py index a1281334..2809dbc5 100644 --- a/apps/wiki/models.py +++ b/apps/wiki/models.py @@ -1,4 +1,5 @@ import vstorage +from vstorage import DocumentNotFound from wiki import settings @@ -13,18 +14,30 @@ class DocumentStorage(object): text = self.vstorage.revision_text(name, revision) return Document(self, name=name, text=text) - def put(self, name, document, author, comment, parent): + def put(self, document, author, comment, parent): self.vstorage.save_text(document.name, document.text, author, comment, parent) - def delete(name, author, comment): + def delete(self, name, author, comment): self.vstorage.delete_page(name, author, comment) + def all(self): + return list(self.vstorage.all_pages()) + + def _info(self, name): + return self.vstorage.page_meta(name) + class Document(object): def __init__(self, storage, **kwargs): self.storage = storage - for attr, value in kwargs: + for attr, value in kwargs.iteritems(): setattr(self, attr, value) + + def revision(self): + try: + return self.storage._info(self.name)[0] + except DocumentNotFound: + return -1 storage = DocumentStorage(settings.REPOSITORY_PATH) diff --git a/apps/wiki/views.py b/apps/wiki/views.py new file mode 100644 index 00000000..339bde8c --- /dev/null +++ b/apps/wiki/views.py @@ -0,0 +1,31 @@ +from django.views.generic.simple import direct_to_template +from django.http import HttpResponseRedirect + +from wiki.models import storage, Document, DocumentNotFound +from wiki.forms import DocumentForm + + +def document_list(request, template_name='wiki/document_list.html'): + return direct_to_template(request, template_name, extra_context={ + 'document_list': storage.all(), + }) + + +def document_detail(request, name, template_name='wiki/document_details.html'): + try: + document = storage.get(name) + except DocumentNotFound: + document = Document(storage, name=name, text='') + + if request.method == 'POST': + form = DocumentForm(request.POST, instance=document) + if form.is_valid(): + form.save() + return HttpResponseRedirect('/') + else: + form = DocumentForm(instance=document) + + return direct_to_template(request, template_name, extra_context={ + 'document': document, + 'form': form, + }) diff --git a/platforma/settings.py b/platforma/settings.py index 58861bf4..19c53210 100755 --- a/platforma/settings.py +++ b/platforma/settings.py @@ -124,7 +124,7 @@ INSTALLED_APPS = ( 'explorer', 'toolbar', 'bookthemes', - 'api', + # 'api', ) diff --git a/platforma/static/js/slugify.js b/platforma/static/js/slugify.js new file mode 100644 index 00000000..b000b648 --- /dev/null +++ b/platforma/static/js/slugify.js @@ -0,0 +1,124 @@ +(function() { + var ALL_DOWNCODE_MAPS = new Array() + + ALL_DOWNCODE_MAPS[0] = { + // LATIN_MAP + 'À': 'A', 'Á': 'A', 'Â': 'A', 'Ã': 'A', 'Ä': 'A', 'Å': 'A', 'Æ': 'AE', 'Ç': + 'C', 'È': 'E', 'É': 'E', 'Ê': 'E', 'Ë': 'E', 'Ì': 'I', 'Í': 'I', 'Î': 'I', + 'Ï': 'I', 'Ð': 'D', 'Ñ': 'N', 'Ò': 'O', 'Ó': 'O', 'Ô': 'O', 'Õ': 'O', 'Ö': + 'O', 'Ő': 'O', 'Ø': 'O', 'Ù': 'U', 'Ú': 'U', 'Û': 'U', 'Ü': 'U', 'Ű': 'U', + 'Ý': 'Y', 'Þ': 'TH', 'ß': 'ss', 'à':'a', 'á':'a', 'â': 'a', 'ã': 'a', 'ä': + 'a', 'å': 'a', 'æ': 'ae', 'ç': 'c', 'è': 'e', 'é': 'e', 'ê': 'e', 'ë': 'e', + 'ì': 'i', 'í': 'i', 'î': 'i', 'ï': 'i', 'ð': 'd', 'ñ': 'n', 'ò': 'o', 'ó': + 'o', 'ô': 'o', 'õ': 'o', 'ö': 'o', 'ő': 'o', 'ø': 'o', 'ù': 'u', 'ú': 'u', + 'û': 'u', 'ü': 'u', 'ű': 'u', 'ý': 'y', 'þ': 'th', 'ÿ': 'y' + } + ALL_DOWNCODE_MAPS[1] = { + // LATIN_SYMBOLS_MAP + '©':'(c)' + } + ALL_DOWNCODE_MAPS[2] = { + // GREEK_MAP + 'α':'a', 'β':'b', 'γ':'g', 'δ':'d', 'ε':'e', 'ζ':'z', 'η':'h', 'θ':'8', + 'ι':'i', 'κ':'k', 'λ':'l', 'μ':'m', 'ν':'n', 'ξ':'3', 'ο':'o', 'π':'p', + 'ρ':'r', 'σ':'s', 'τ':'t', 'υ':'y', 'φ':'f', 'χ':'x', 'ψ':'ps', 'ω':'w', + 'ά':'a', 'έ':'e', 'ί':'i', 'ό':'o', 'ύ':'y', 'ή':'h', 'ώ':'w', 'ς':'s', + 'ϊ':'i', 'ΰ':'y', 'ϋ':'y', 'ΐ':'i', + 'Α':'A', 'Β':'B', 'Γ':'G', 'Δ':'D', 'Ε':'E', 'Ζ':'Z', 'Η':'H', 'Θ':'8', + 'Ι':'I', 'Κ':'K', 'Λ':'L', 'Μ':'M', 'Ν':'N', 'Ξ':'3', 'Ο':'O', 'Π':'P', + 'Ρ':'R', 'Σ':'S', 'Τ':'T', 'Υ':'Y', 'Φ':'F', 'Χ':'X', 'Ψ':'PS', 'Ω':'W', + 'Ά':'A', 'Έ':'E', 'Ί':'I', 'Ό':'O', 'Ύ':'Y', 'Ή':'H', 'Ώ':'W', 'Ϊ':'I', + 'Ϋ':'Y' + } + ALL_DOWNCODE_MAPS[3] = { + // TURKISH_MAP + 'ş':'s', 'Ş':'S', 'ı':'i', 'İ':'I', 'ç':'c', 'Ç':'C', 'ü':'u', 'Ü':'U', + 'ö':'o', 'Ö':'O', 'ğ':'g', 'Ğ':'G' + } + ALL_DOWNCODE_MAPS[4] = { + // RUSSIAN_MAP + 'а':'a', 'б':'b', 'в':'v', 'г':'g', 'д':'d', 'е':'e', 'ё':'yo', 'ж':'zh', + 'з':'z', 'и':'i', 'й':'j', 'к':'k', 'л':'l', 'м':'m', 'н':'n', 'о':'o', + 'п':'p', 'р':'r', 'с':'s', 'т':'t', 'у':'u', 'ф':'f', 'х':'h', 'ц':'c', + 'ч':'ch', 'ш':'sh', 'щ':'sh', 'ъ':'', 'ы':'y', 'ь':'', 'э':'e', 'ю':'yu', + 'я':'ya', + 'А':'A', 'Б':'B', 'В':'V', 'Г':'G', 'Д':'D', 'Е':'E', 'Ё':'Yo', 'Ж':'Zh', + 'З':'Z', 'И':'I', 'Й':'J', 'К':'K', 'Л':'L', 'М':'M', 'Н':'N', 'О':'O', + 'П':'P', 'Р':'R', 'С':'S', 'Т':'T', 'У':'U', 'Ф':'F', 'Х':'H', 'Ц':'C', + 'Ч':'Ch', 'Ш':'Sh', 'Щ':'Sh', 'Ъ':'', 'Ы':'Y', 'Ь':'', 'Э':'E', 'Ю':'Yu', + 'Я':'Ya' + } + ALL_DOWNCODE_MAPS[5] = { + // UKRAINIAN_MAP + 'Є':'Ye', 'І':'I', 'Ї':'Yi', 'Ґ':'G', 'є':'ye', 'і':'i', 'ї':'yi', 'ґ':'g' + } + ALL_DOWNCODE_MAPS[6] = { + // CZECH_MAP + 'č':'c', 'ď':'d', 'ě':'e', 'ň': 'n', 'ř':'r', 'š':'s', 'ť':'t', 'ů':'u', + 'ž':'z', 'Č':'C', 'Ď':'D', 'Ě':'E', 'Ň': 'N', 'Ř':'R', 'Š':'S', 'Ť':'T', + 'Ů':'U', 'Ž':'Z' + } + + ALL_DOWNCODE_MAPS[7] = { + // POLISH_MAP + 'ą':'a', 'ć':'c', 'ę':'e', 'ł':'l', 'ń':'n', 'ó':'o', 'ś':'s', 'ź':'z', + 'ż':'z', 'Ą':'A', 'Ć':'C', 'Ę':'e', 'Ł':'L', 'Ń':'N', 'Ó':'o', 'Ś':'S', + 'Ź':'Z', 'Ż':'Z' + } + + ALL_DOWNCODE_MAPS[8] = { + // LATVIAN_MAP + 'ā':'a', 'č':'c', 'ē':'e', 'ģ':'g', 'ī':'i', 'ķ':'k', 'ļ':'l', 'ņ':'n', + 'š':'s', 'ū':'u', 'ž':'z', 'Ā':'A', 'Č':'C', 'Ē':'E', 'Ģ':'G', 'Ī':'i', + 'Ķ':'k', 'Ļ':'L', 'Ņ':'N', 'Š':'S', 'Ū':'u', 'Ž':'Z' + } + + var Downcoder = new Object(); + + Downcoder.Initialize = function() { + if (Downcoder.map) // already made + return ; + Downcoder.map ={} + Downcoder.chars = ''; + for(var i in ALL_DOWNCODE_MAPS) { + var lookup = ALL_DOWNCODE_MAPS[i] + for (var c in lookup) { + Downcoder.map[c] = lookup[c]; + Downcoder.chars += c; + } + } + Downcoder.regex = new RegExp('[' + Downcoder.chars + ']|[^' + Downcoder.chars + ']+','g'); + } + + downcode = function(slug) { + Downcoder.Initialize(); + var downcoded ="" + var pieces = slug.match(Downcoder.regex); + if(pieces) { + for (var i = 0 ; i < pieces.length ; i++) { + if (pieces[i].length == 1) { + var mapped = Downcoder.map[pieces[i]]; + if (mapped != null) { + downcoded+=mapped; + continue; + } + } + downcoded+=pieces[i]; + } + } else { + downcoded = slug; + } + return downcoded; + } + + slugify = function(s) { + s = downcode(s); + // if downcode doesn't hit, the char will be stripped here + s = s.replace(/[^-\w\s]/g, ''); // remove unneeded chars + s = s.replace(/^\s+|\s+$/g, ''); // trim leading/trailing spaces + s = s.replace(/[-\s]+/g, '-'); // convert spaces to hyphens + s = s.toLowerCase(); // convert to lowercase + + return s; + } +})() diff --git a/platforma/templates/base.html b/platforma/templates/base.html index 597a4320..5abf44bc 100755 --- a/platforma/templates/base.html +++ b/platforma/templates/base.html @@ -24,6 +24,5 @@
{% block maincontent %} {% endblock %}
{% block extrabody %}{% endblock %} - http://192.168.56.2:8000/editor/mickiewicz__pan_tadeusz__ksi%C4%99ga_1/ diff --git a/platforma/templates/explorer/file_list.html b/platforma/templates/explorer/file_list.html index f44a105c..abd96129 100644 --- a/platforma/templates/explorer/file_list.html +++ b/platforma/templates/explorer/file_list.html @@ -2,54 +2,22 @@ {% block extrahead %} - - + {% endblock extrahead %} @@ -59,17 +27,16 @@ $(function() {
-

+

-
- {% load explorer_tags %} - +
diff --git a/platforma/templates/wiki/document_details.html b/platforma/templates/wiki/document_details.html new file mode 100644 index 00000000..7a2aa4bb --- /dev/null +++ b/platforma/templates/wiki/document_details.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} + +{% block extrahead %} + + +{% endblock %} + +{% block maincontent %} +
+ {{ form.as_p }} +

+
+{% endblock %} \ No newline at end of file diff --git a/platforma/urls.py b/platforma/urls.py index ccb9fcf7..495c7357 100755 --- a/platforma/urls.py +++ b/platforma/urls.py @@ -30,7 +30,15 @@ urlpatterns = patterns('', url(r'themes/', include('bookthemes.urls')), # Our über-restful api - url(r'^api/', include('api.urls')), + # url(r'^api/', include('api.urls')), + + # Static files (should be served by Apache) + url(r'^%s(?P.+)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', + {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), + url(r'^%s(?P.+)$' % settings.STATIC_URL[1:], 'django.views.static.serve', + {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), + + url(r'^(?P(.*))$', 'wiki.views.document_detail'), ) @@ -46,17 +54,3 @@ else: url(r'^accounts/login/$', 'django.contrib.auth.views.login', {'redirect_field_name': 'next'}, name='login'), url(r'^accounts/logout/$', 'django.contrib.auth.views.logout', {'next_page': '/'}, name='logout'), ) - -# Static files -if settings.DEBUG: - urlpatterns += patterns('', - url(r'^renderer$', 'explorer.views.renderer_test'), - ) - - if not hasattr(settings, 'DONT_SERVE_STATIC'): - urlpatterns += patterns('', - url(r'^%s(?P.+)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', - {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), - url(r'^%s(?P.+)$' % settings.STATIC_URL[1:], 'django.views.static.serve', - {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), - ) \ No newline at end of file -- 2.20.1