On Thu, 23 Jun 2011, Peter J. Halliday wrote: > I'm trying to get a full list of URLs that are available to Invenio. > I'm generating a list of arXiv URLs and what they might map to in > Invenio. The purpose is to see areas that there's no mapping.
There is no ready-to-be-used complete list of URLs served by Invenio, since we dispatch `everything' (meaning /) to Invenio WSGI application at the end of Apache rules. But you should be able to look at webinterface_layout.py to see the basic set of URL roots (such as `/youraccount') and then look in the corresponding WebInterfaceYourAccountPages() classes to see which sub-URLs they export (say '/youraccount/edit', `/youraccount/lost', etc but not `/youraccount/xyzzy' since you don't find it there). (Can be scriptable via `_exports'.) Best regards -- Tibor Simko