-@permission_required('explorer.can_add_files')
-@with_repo
-def file_upload(request, repo):
- other_errors = []
- if request.method == 'POST':
- form = forms.BookUploadForm(request.POST, request.FILES)
- if form.is_valid():
- try:
- # prepare the data
- f = request.FILES['file']
- decoded = f.read().decode('utf-8')
-
- def upload_action():
- print 'Adding file: %s' % f.name
- repo._add_file(f.name, decoded.encode('utf-8') )
- repo._commit(
- message="File %s uploaded from platform by %s" %\
- (f.name, request.user.username), \
- user=request.user.username \
- )
-
- # end of upload
-
- repo.in_branch(upload_action, 'default')
-
- # if everything is ok, redirect to the editor
- return HttpResponseRedirect( reverse('editor_view',
- kwargs={'path': f.name}) )
-
- except hg.RepositoryException, e:
- other_errors.append(u'Błąd repozytorium: ' + unicode(e) )
- except UnicodeDecodeError, e:
- other_errors.append(u'Niepoprawne kodowanie pliku: ' + e.reason \
- + u'. Żądane kodowanie: ' + e.encoding)
- # invalid form
-
- # get
- form = forms.BookUploadForm()
- return direct_to_template(request, 'explorer/file_upload.html',
- extra_context = {'form' : form, 'other_errors': other_errors})
-
-#
-# Edit the file
-#
-
-@ajax_login_required
-@with_repo
-def file_xml(request, repo, path):
- if request.method == 'POST':
- errors = None
- warnings = None
- form = forms.BookForm(request.POST)
- if form.is_valid():
- print 'Saving whole text.', request.user.username
- try:
- # encode it back to UTF-8, so we can put it into repo
- encoded_data = form.cleaned_data['content'].encode('utf-8')
-
- def save_action():
- repo._add_file(path, encoded_data)
- 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'])
- except (ParseError, ValidationError), e:
- warnings = [u'Niepoprawny dokument XML: ' + unicode(e.message)]
-
- # save to user's branch
- repo.in_branch(save_action, models.user_branch(request.user) );
- except UnicodeDecodeError, e:
- errors = [u'Błąd kodowania danych przed zapisem: ' + unicode(e.message)]
- except RepositoryException, e:
- errors = [u'Błąd repozytorium: ' + unicode(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, 'warnings': warnings}) );