web/views/owl.py
changeset 552 e5a83e84bc75
parent 551 44ec4836cc1a
child 585 23c2f934b669
equal deleted inserted replaced
551:44ec4836cc1a 552:e5a83e84bc75
    51 OWL_CLOSING_ROOT = u'</rdf:RDF>'
    51 OWL_CLOSING_ROOT = u'</rdf:RDF>'
    52 
    52 
    53 class OWLView(StartupView):
    53 class OWLView(StartupView):
    54     """This view export in owl format the whole cubicweb ontologie. First part is the TBOX, second part is an ABOX ligth version."""
    54     """This view export in owl format the whole cubicweb ontologie. First part is the TBOX, second part is an ABOX ligth version."""
    55     id = 'owl'
    55     id = 'owl'
    56     title = _('owl')
    56     title = _('owl (tbox+abox)')
    57     templatable =False
    57     templatable =False
    58     content_type = 'application/xml' # 'text/xml'
    58     content_type = 'application/xml' # 'text/xml'
    59 
    59 
    60     def call(self):
    60     def call(self):
    61         
    61