Comment 3 for bug 6405

Revision history for this message
Curtis Hovey (sinzui) wrote :

The text of the page (templates/rdf-index.pt) should be revised to say that the over view page of projects, series, and teams has a link to download the RDF description. The file and ZCML regisrtation belongs in lp/registry.

The OWL link is a 404, <browser:resourceDirectory name="rdf" directory="rdfspec" /> is obsolete. We need to do something like

class RDFFolder(ExportedImageFolder):
    """Export the Launchpad RDF schemas."""
    folder = os.path.join(
        os.path.dirname(os.path.realpath(__file__)), '../rdfspec/')
...
<browser:page
  for="canonical.launchpad.webapp.interfaces.ILaunchpadApplication"
  name="rdf"
  class="lp.registry.browser.rdf.RDFFolder"
  attribute="__call__"
  permission="zope.Public"
  />