gwu-libraries / inventory_old

A system for tracking location of digital items and progress in reformatting projects
MIT License
5 stars 1 forks source link

minter hard-coded into multiple url patterns #188

Open dchud opened 11 years ago

dchud commented 11 years ago

the id re for the item identifier is currently r'^item/(?P<id>\w{5}/\w{9,12})$' which assumes we will use one specific kind of identifier minter. this assumption should be relaxed.

same for project identifier: r'^project/(?P<id>\w{5}/\w{10,12})$'

same for collection identifier: r'^collection/(?P<id>\w{5}/\w{10,12})$'

dchud commented 11 years ago