- repo.add_file(path, form.cleaned_data['text'])
- # issues = _get_issues_for_file(path)
- # commit_message = _add_references(form.cleaned_data['commit_message'], issued)
- repo.commit(message=form.cleaned_data['commit_message'], user=form.cleaned_data['user'])
- return HttpResponseRedirect(request.get_full_path())
- else:
- form = forms.BookForm()
- form.fields['text'].initial = repo.get_file(path).data()
+ print 'Saving whole text.', request.user.username
+ def save_action():
+ print 'In branch: ' + repo.repo[None].branch()
+ repo._add_file(path, form.cleaned_data['content'])
+ repo._commit(message=(form.cleaned_data['commit_message'] or 'Lokalny zapis platformy.'),\
+ user=request.user.username)
+ try:
+ # wczytaj dokument z ciągu znaków -> weryfikacja
+ document = parser.WLDocument.from_string(form.cleaned_data['content'])
+
+ # save to user's branch
+ repo.in_branch(save_action, models.user_branch(request.user) );
+ except (ParseError, ValidationError), e:
+ errors = [e.message]
+
+ if not errors:
+ errors = dict( (field[0], field[1].as_text()) for field in form.errors.iteritems() )
+
+ return HttpResponse(json.dumps({'result': errors and 'error' or 'ok', 'errors': errors}));
+
+ form = forms.BookForm()
+ data = repo.get_file(path, models.user_branch(request.user))
+ form.fields['content'].initial = data
+ return HttpResponse( json.dumps({'result': 'ok', 'content': data}) )
+
+@ajax_login_required
+@with_repo
+def file_dc(request, path, repo):
+ errors = None
+
+ if request.method == 'POST':
+ form = forms.DublinCoreForm(request.POST)
+
+ if form.is_valid():
+ def save_action():
+ file_contents = repo._get_file(path)
+
+ # wczytaj dokument z repozytorium
+ document = parser.WLDocument.from_string(file_contents)
+ document.book_info.update(form.cleaned_data)
+
+ print "SAVING DC"
+
+ # zapisz
+ repo._add_file(path, document.serialize())
+ repo._commit( \
+ message=(form.cleaned_data['commit_message'] or 'Lokalny zapis platformy.'), \
+ user=request.user.username )
+
+ try:
+ repo.in_branch(save_action, models.user_branch(request.user) )
+ except (ParseError, ValidationError), e:
+ errors = [e.message]
+
+ if errors is None:
+ errors = ["Pole '%s': %s\n" % (field[0], field[1].as_text()) for field in form.errors.iteritems()]
+
+ return HttpResponse( json.dumps({'result': errors and 'error' or 'ok', 'errors': errors}) );
+
+ # this is unused currently, but may come in handy
+ content = []