[facet js] fix reordering of facet check boxes. Closes #2732947
Before this patch, when one select an element, it's moved to the top of
the select content. Fine. But when it's later deselected, it stays there
instead of moving back to its original location.
This patch fixes that by introducing a facetCheckBoxReorder function which
properly reorder the whole facet, instead of buggy attempt to locally reorder.
# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved.# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr## This file is part of CubicWeb.## CubicWeb is free software: you can redistribute it and/or modify it under the# terms of the GNU Lesser General Public License as published by the Free# Software Foundation, either version 2.1 of the License, or (at your option)# any later version.## CubicWeb is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more# details.## You should have received a copy of the GNU Lesser General Public License along# with CubicWeb. If not, see <http://www.gnu.org/licenses/>."""produces some Ontology Web Language schema and views"""__docformat__="restructuredtext en"_=unicodefromlogilab.mtconverterimportTransformError,xml_escapefromcubicweb.viewimportStartupView,EntityViewfromcubicweb.predicatesimportnone_rset,match_viewfromcubicweb.web.actionimportActionfromcubicweb.web.viewsimportschemaOWL_CARD_MAP={'1':'<rdf:type rdf:resource="&owl;FunctionalProperty"/>','?':'<owl:maxCardinality rdf:datatype="&xsd;int">1</owl:maxCardinality>','+':'<owl:minCardinality rdf:datatype="&xsd;int">1</owl:minCardinality>','*':''}OWL_TYPE_MAP={'String':'xsd:string','Bytes':'xsd:byte','Password':'xsd:byte','Boolean':'xsd:boolean','Int':'xsd:int','BigInt':'xsd:int','Float':'xsd:float','Decimal':'xsd:decimal','Date':'xsd:date','Datetime':'xsd:dateTime','TZDatetime':'xsd:dateTime','Time':'xsd:time','TZTime':'xsd:time','Interval':'xsd:duration'}OWL_OPENING_ROOT=u'''<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE rdf:RDF [ <!ENTITY owl "http://www.w3.org/2002/07/owl#" > <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >]><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns="http://logilab.org/owl/ontologies/%(appid)s#" xmlns:%(appid)s="http://logilab.org/owl/ontologies/%(appid)s#" xmlns:base="http://logilab.org/owl/ontologies/%(appid)s"> <owl:Ontology rdf:about=""> <rdfs:comment>%(appid)s Cubicweb OWL Ontology </rdfs:comment> </owl:Ontology>'''OWL_CLOSING_ROOT=u'</rdf:RDF>'classOWLView(StartupView):"""This view export in owl format schema database. It is the TBOX"""__regid__='owl'title=_('owl')templatable=Falsecontent_type='application/xml'# 'text/xml'defcall(self,writeprefix=True):skipmeta=int(self._cw.form.get('skipmeta',True))ifwriteprefix:self.w(OWL_OPENING_ROOT%{'appid':self._cw.vreg.schema.name})self.visit_schema(skiptypes=skipmetaandschema.SKIP_TYPESor())ifwriteprefix:self.w(OWL_CLOSING_ROOT)defshould_display_rschema(self,eschema,rschema,role):returnnotrschemainself.skiptypesand(rschema.may_have_permission('read',self._cw,eschema,role))defvisit_schema(self,skiptypes):"""get a layout for a whole schema"""self.skiptypes=skiptypesentities=sorted(eschemaforeschemainself._cw.vreg.schema.entities()ifnoteschema.finaloreschemainskiptypes)self.w(u'<!-- classes definition -->')foreschemainentities:self.visit_entityschema(eschema)self.w(u'<!-- property definition -->')self.visit_property_schema(eschema)self.w(u'<!-- datatype property -->')self.visit_property_object_schema(eschema)defvisit_entityschema(self,eschema):"""get a layout for an entity OWL schema"""self.w(u'<owl:Class rdf:ID="%s">'%eschema)self.w(u'<!-- relations -->')forrschema,targetschemas,roleineschema.relation_definitions():ifnotself.should_display_rschema(eschema,rschema,role):continueforoeschemaintargetschemas:card=rschema.role_rdef(eschema,oeschema,role).role_cardinality(role)cardtag=OWL_CARD_MAP[card]ifcardtag:self.w(u'''<rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#%s"/>%s </owl:Restriction></rdfs:subClassOf>'''%(rschema,cardtag))self.w(u'<!-- attributes -->')forrschema,aschemaineschema.attribute_definitions():ifnotself.should_display_rschema(eschema,rschema,'subject'):continueself.w(u'''<rdfs:subClassOf> <owl:Restriction> <owl:onProperty rdf:resource="#%s"/> <rdf:type rdf:resource="&owl;FunctionalProperty"/> </owl:Restriction></rdfs:subClassOf>'''%rschema)self.w(u'</owl:Class>')defvisit_property_schema(self,eschema):"""get a layout for property entity OWL schema"""forrschema,targetschemas,roleineschema.relation_definitions():ifnotself.should_display_rschema(eschema,rschema,role):continueforoeschemaintargetschemas:self.w(u'''<owl:ObjectProperty rdf:ID="%s"> <rdfs:domain rdf:resource="#%s"/> <rdfs:range rdf:resource="#%s"/></owl:ObjectProperty>'''%(rschema,eschema,oeschema.type))defvisit_property_object_schema(self,eschema):forrschema,aschemaineschema.attribute_definitions():ifnotself.should_display_rschema(eschema,rschema,'subject'):continueself.w(u'''<owl:DatatypeProperty rdf:ID="%s"> <rdfs:domain rdf:resource="#%s"/> <rdfs:range rdf:resource="%s"/></owl:DatatypeProperty>'''%(rschema,eschema,OWL_TYPE_MAP[aschema.type]))classOWLABOXView(EntityView):'''This view represents a part of the ABOX for a given entity.'''__regid__='owlabox'title=_('owlabox')templatable=Falsecontent_type='application/xml'# 'text/xml'defcall(self):self.w(OWL_OPENING_ROOT%{'appid':self._cw.vreg.schema.name})foriinxrange(self.cw_rset.rowcount):self.cell_call(i,0)self.w(OWL_CLOSING_ROOT)defcell_call(self,row,col):self.wview('owlaboxitem',self.cw_rset,row=row,col=col)classOWLABOXItemView(EntityView):'''This view represents a part of the ABOX for a given entity.'''__regid__='owlaboxitem'templatable=Falsecontent_type='application/xml'# 'text/xml'defcell_call(self,row,col):entity=self.cw_rset.complete_entity(row,col)eschema=entity.e_schemaself.w(u'<%s rdf:ID="%s">'%(eschema,entity.eid))self.w(u'<!--attributes-->')forrschema,aschemaineschema.attribute_definitions():ifrschema.meta:continuerdef=rschema.rdef(eschema,aschema)ifnotrdef.may_have_permission('read',self._cw):continueaname=rschema.typeifaname=='eid':continuetry:attr=entity.printable_value(aname,format='text/plain')ifattr:self.w(u'<%s>%s</%s>'%(aname,xml_escape(attr),aname))exceptTransformError:passself.w(u'<!--relations -->')forrschema,targetschemas,roleineschema.relation_definitions():ifrschema.meta:continuefortschemaintargetschemas:rdef=rschema.role_rdef(eschema,tschema,role)ifrdef.may_have_permission('read',self._cw):breakelse:# no read perms to any relation of this type. Skip.continueifrole=='object':attr='reverse_%s'%rschema.typeelse:attr=rschema.typeforxingetattr(entity,attr):self.w(u'<%s>%s%s</%s>'%(attr,x.__regid__,x.eid,attr))self.w(u'</%s>'%eschema)classDownloadOWLSchemaAction(Action):__regid__='download_as_owl'__select__=none_rset()&match_view('schema')category='mainactions'title=_('download schema as owl')defurl(self):returnself._cw.build_url('view',vid='owl')