From 8a32e053a8872151794cc7d3ff4adc2aeef27b8a Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Sun, 6 Feb 2011 04:15:54 -0400 Subject: [PATCH] Minor typo, updated TODO --- apps/documents/__init__.py | 2 +- docs/TODO | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/documents/__init__.py b/apps/documents/__init__.py index 2ec14c9b37..2998e33b7f 100644 --- a/apps/documents/__init__.py +++ b/apps/documents/__init__.py @@ -7,7 +7,7 @@ from staging import StagingFile document_list = {'text':_(u'documents list'), 'view':'document_list', 'famfam':'page'} document_create = {'text':_('upload a document'), 'view':'document_create', 'famfam':'page_add'} -document_create_multiple = {'text':_('upload multiple document'), 'view':'document_create_multiple', 'famfam':'page_add'} +document_create_multiple = {'text':_('upload multiple documents'), 'view':'document_create_multiple', 'famfam':'page_add'} document_view = {'text':_('details'), 'view':'document_view', 'args':'object.id', 'famfam':'page'} document_delete = {'text':_('delete'), 'view':'document_delete', 'args':'object.id', 'famfam':'page_delete'} document_edit = {'text':_('edit'), 'view':'document_edit', 'args':'object.id', 'famfam':'page_edit'} diff --git a/docs/TODO b/docs/TODO index 7f5ded9150..0442b37d91 100644 --- a/docs/TODO +++ b/docs/TODO @@ -5,17 +5,17 @@ * Add file checksums (hashlib) - DONE * Delete symlinks when document is deleted - DONE * Handle NULL mimetypes during model save - DONE +* Raise exception instead of returning error msg - DONE +* Option to delete source staging file after upload - DONE +* Jquery upload document upload form with ajax widget - NOT NEEDED (commit: b0f31f2a8f82ff0daca081005f2fcae3f5573df5) * Document list filtering by metadata -* Jquery upload document upload form with ajax widget * Filterform date filtering widget * Validate GET data before saving file * Integrate with http://code.google.com/p/pytesser/ -* Update symlinks when document or metadata changed +* Update symlinks when document or metadata changed - ALMOST * Check duplicated files using checksum * If theres only one document type on db skip step 1 of wizard -* Option to delete source staging file after upload * Show last 5 recent metadata setups for easy switch * Change to model signal -* Raise exception instead of returning error msg * Allow document type to be changed in document edit view * Implement single sign on or LDAP for intranets