Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
marcus-lodspeakr
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
uib-ub
Spesialsamlingene
marcus-lodspeakr
Commits
4e65667d
Commit
4e65667d
authored
13 years ago
by
Alvaro Graves
Browse files
Options
Downloads
Patches
Plain Diff
Missed default.mode.html
parent
882b5f04
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
models/default.model.html
+9
-0
9 additions, 0 deletions
models/default.model.html
views/default.view.html~
+45
-0
45 additions, 0 deletions
views/default.view.html~
with
54 additions
and
0 deletions
models/default.model.html
0 → 100644
+
9
−
0
View file @
4e65667d
SELECT ?s1 ?p1 ?s2 ?p2 WHERE {
{
%u ?s1 ?p1
}UNION{
?s2 ?p2 %u
}
}
This diff is collapsed.
Click to expand it.
views/default.view.html~
0 → 100644
+
45
−
0
View file @
4e65667d
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html
{%
for
i
,
ns
in
base.ns
%}
xmlns:
{{
i
}}="{{
ns
}}"
{%
endfor
%}
version=
"XHTML+RDFa 1.0"
xml:lang=
"en"
>
<head>
<title>
Page about {{base.value.this}}
</title>
<link
href=
"{{base.baseUrl}}css/basic.css"
rel=
"stylesheet"
type=
"text/css"
media=
"screen"
/>
</head>
<body>
<h1>
Page about
<a
href=
'{{base.value.this}}'
>
{{base.curie.this}}
</a></h1>
<br/>
<br/>
<div>
<h2>
Information from {{base.curie.this}}
</h2>
<table
about=
"{{base.value.this}}"
>
{% for row in r %}
{% if row.value.s1 != null %}
<tr>
<td><a
href=
'{{row.value.s1}}'
>
{{row.curie.s1}}
</a></td>
{% if row.uri.p1 == 1 %}
<td><a
rel=
'{{row.curie.s1}}'
href=
'{{row.value.p1}}'
>
{{row.curie.p1}}
</a></td>
{% else %}
<td><span
property=
'{{row.curie.s1}}'
>
{{row.value.p1}}
</span></td>
{% endif %}
</tr>
{% endif %}
{% endfor %}
</table>
<br/><br/>
<h2>
Information pointing to {{base.curie.this}}
</h2>
<table
about=
"{{base.value.this}}"
>
{% for row in r %}
{% if row.value.s2 != null %}
<tr>
<td><a
rev=
'{{row.curie.p2}}'
href=
'{{row.value.s2}}'
>
{{row.curie.s2}}
</a></td>
<td><a
href=
'{{row.value.p2}}'
>
{{row.curie.p2}}
</a></td>
</tr>
{%endif %}
{% endfor %}
</table>
</div>
</body>
</html>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment