Changes in / [95ce89e4:994ebb4]
- Files:
-
- 6 added
- 1 edited
-
.bzrignore (added)
-
telemeta/htdocs/timeside/js/controller.js (added)
-
telemeta/htdocs/timeside/js/core.js (added)
-
telemeta/htdocs/timeside/js/markerlist.js (added)
-
telemeta/htdocs/timeside/js/soundprovider.js (added)
-
telemeta/htdocs/timeside/js/util.js (added)
-
telemeta/models/media.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
telemeta/models/media.py
r86d17e9 r86d17e9 74 74 75 75 76 collection_published_code_regex = ' [A-Za-z0-9._-]*'77 collection_unpublished_code_regex = ' [A-Za-z0-9._-]*'76 collection_published_code_regex = 'CNRSMH_E_[0-9]{4}(?:_[0-9]{3}){2}' 77 collection_unpublished_code_regex = 'CNRSMH_I_[0-9]{4}_[0-9]{3}' 78 78 collection_code_regex = '(?:%s|%s)' % (collection_published_code_regex, 79 79 collection_unpublished_code_regex) … … 218 218 219 219 220 item_published_code_regex = '[A-Za-z0-9._-]*'221 item_unpublished_code_regex = '[A-Za-z0-9._-]*'220 item_published_code_regex = collection_published_code_regex + '(?:_[0-9]{2,3}){1,2}' 221 item_unpublished_code_regex = collection_unpublished_code_regex + '_[0-9]{2,3}(?:_[0-9]{2,3}){0,2}' 222 222 item_code_regex = '(?:%s|%s)' % (item_published_code_regex, item_unpublished_code_regex) 223 223
Note: See TracChangeset
for help on using the changeset viewer.
