Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
cubicweb
cubes
postgis
Commits
a6deecaff6a1
Commit
b0c496fd
authored
Dec 22, 2020
by
Nicola Spanti
Browse files
Fix OWL schema and test it
parent
d5dcec7830e5
Pipeline
#27931
passed with stage
in 2 minutes and 20 seconds
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
cubicweb_postgis/views.py
View file @
a6deecaf
# -*- coding: utf-8 -*-
# copyright 2012 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr -- mailto:contact@logilab.fr
# copyright 2012
-2020
LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http
s
://www.logilab.fr -- mailto:contact@logilab.fr
#
# This program 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
...
...
@@ -13,14 +13,14 @@
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
# with this program. If not, see <http
s
://www.gnu.org/licenses/>.
"""cubicweb-postgis views/forms/actions/components for web ui"""
from
cubicweb
import
tags
,
uilib
from
cubicweb.utils
import
UStringIO
from
cubicweb.web
import
formfields
from
cubicweb.web
import
formwidgets
from
cubicweb.web
import
formfields
,
formwidgets
from
cubicweb.web
.views.owl
import
OWL_TYPE_MAP
from
cubicweb.view
import
EntityView
from
cubicweb.predicates
import
match_kwargs
...
...
@@ -37,6 +37,10 @@ formfields.FIELDS['Geography'] = formfields.StringField
uilib
.
PRINTERS
[
'Geography'
]
=
uilib
.
print_string
OWL_TYPE_MAP
[
'Geography'
]
=
'xsd:string'
OWL_TYPE_MAP
[
'Geometry'
]
=
'xsd:string'
class
RefpointAttributeView
(
EntityView
):
__regid__
=
'refpointattr'
__select__
=
EntityView
.
__select__
&
match_kwargs
(
'rtype'
)
...
...
test/test_schema_owl.py
0 → 100644
View file @
a6deecaf
# copyright 2020 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact https://www.logilab.fr -- mailto:contact@logilab.fr
#
# This program 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.
#
# This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
from
xml.dom.minidom
import
parseString
as
parseXmlString
from
cubicweb.devtools.testlib
import
CubicWebTC
class
OWLViewTC
(
CubicWebTC
):
def
test_owl_schema_valid_xml
(
self
):
with
self
.
new_access
(
'admin'
).
web_request
()
as
req
:
pageinfo
=
self
.
view
(
'owl'
,
req
=
req
)
self
.
assertIn
(
'owl'
,
pageinfo
.
source
.
decode
(
'utf-8'
))
self
.
assertTrue
(
parseXmlString
(
pageinfo
.
source
))
if
__name__
==
"__main__"
:
import
unittest
unittest
.
main
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment