Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
hdoc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Stephane Crozat
hdoc
Commits
200a4aaf
Commit
200a4aaf
authored
Jan 04, 2016
by
Jean Vintache
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove local schemas and docx file
parent
b1b3d9c2
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
1 addition
and
475 deletions
+1
-475
etherpad_to_hdoc/DocumentationEtherpadToOpale.docx
etherpad_to_hdoc/DocumentationEtherpadToOpale.docx
+0
-0
etherpad_to_hdoc/etherpad_to_hdoc.properties
etherpad_to_hdoc/etherpad_to_hdoc.properties
+1
-1
etherpad_to_hdoc/schema/container/hdoc1-container.rng
etherpad_to_hdoc/schema/container/hdoc1-container.rng
+0
-32
etherpad_to_hdoc/schema/xhtml/hdoc1-xhtml.rng
etherpad_to_hdoc/schema/xhtml/hdoc1-xhtml.rng
+0
-357
etherpad_to_hdoc/schema/xhtml/type.rng
etherpad_to_hdoc/schema/xhtml/type.rng
+0
-85
No files found.
etherpad_to_hdoc/DocumentationEtherpadToOpale.docx
deleted
100644 → 0
View file @
b1b3d9c2
File deleted
etherpad_to_hdoc/etherpad_to_hdoc.properties
View file @
200a4aaf
...
...
@@ -4,6 +4,6 @@ tmp = ${basedir}/tmp
xsl
=
${basedir}/xsl
lib
=
${basedir}/lib
log
=
${basedir}/log
schema
=
${basedir}/schema
schema
=
../schemas
rootfilename
=
content.xml
\ No newline at end of file
etherpad_to_hdoc/schema/container/hdoc1-container.rng
deleted
100644 → 0
View file @
b1b3d9c2
<?xml version="1.0" encoding="UTF-8"?>
<grammar
xmlns=
"http://relaxng.org/ns/structure/1.0"
xmlns:a=
"http://relaxng.org/ns/compatibility/annotations/1.0"
datatypeLibrary=
"http://www.w3.org/2001/XMLSchema-datatypes"
ns=
"urn:utc.fr:ics:hdoc:container"
>
<a:documentation>
This schema describes the META-INF/container.xml file for hdoc format
</a:documentation>
<a:documentation>
This schema is a derivation of http://www.idpf.org/epub/30/schema/ocf-container-30.rnc
from EPUB Open Container Format (http://www.idpf.org/epub/30/spec/epub30-ocf.html)
</a:documentation>
<start>
<element
name=
"container"
>
<attribute
name=
"version"
>
<value>
1.0
</value>
</attribute>
<element
name=
"rootfiles"
>
<element
name=
"rootfile"
>
<attribute
name=
"full-path"
>
<data
type=
"anyURI"
/>
</attribute>
<attribute
name=
"media-type"
>
<value>
text/xml
</value>
</attribute>
</element>
</element>
</element>
</start>
</grammar>
etherpad_to_hdoc/schema/xhtml/hdoc1-xhtml.rng
deleted
100644 → 0
View file @
b1b3d9c2
This diff is collapsed.
Click to expand it.
etherpad_to_hdoc/schema/xhtml/type.rng
deleted
100644 → 0
View file @
b1b3d9c2
<?xml version="1.0" encoding="UTF-8"?>
<grammar
xmlns=
"http://relaxng.org/ns/structure/1.0"
xmlns:a=
"http://relaxng.org/ns/compatibility/annotations/1.0"
datatypeLibrary=
"http://www.w3.org/2001/XMLSchema-datatypes"
ns=
"http://www.utc.fr/ics/hdoc/xhtml"
>
<a:documentation>
Last update : 2014-12-04
</a:documentation>
<a:documentation>
Changes since last update :
In order to manage quiz :
- Adding multiple-choice-question and fill-in-the-blank to section
- Adding question, choice-correct, choice-uncorrect and explanation to div
- Adding blank to span
- Externalizing ObjectType and VideoType from main schema
</a:documentation>
<!-- Type Microdata -->
<define
name=
"SectionType"
>
<optional>
<attribute
name=
"data-hdoc-type"
>
<choice>
<value>
introduction
</value>
<value>
conclusion
</value>
<value>
unit-of-content
</value>
<value>
multiple-choice-question
</value>
<value>
fill-in-the-blank
</value>
</choice>
</attribute>
</optional>
</define>
<define
name=
"DivType"
>
<optional>
<attribute
name=
"data-hdoc-type"
>
<choice>
<!-- block management -->
<value>
emphasis
</value>
<value>
complement
</value>
<value>
definition
</value>
<value>
example
</value>
<value>
remark
</value>
<value>
warning
</value>
<value>
advice
</value>
<!-- quiz management -->
<value>
question
</value>
<value>
choice-correct
</value>
<value>
choice-incorrect
</value>
<value>
explanation
</value>
</choice>
</attribute>
</optional>
</define>
<define
name=
"SpanType"
>
<optional>
<attribute
name=
"data-hdoc-type"
>
<choice>
<value>
syntax
</value>
<value>
latex
</value>
<!-- quiz management -->
<value>
blank
</value>
</choice>
</attribute>
</optional>
</define>
<define
name=
"ObjectType"
>
<attribute
name=
"type"
>
<choice>
<value>
application/vnd.oasis.opendocument.graphics
</value>
<value>
application/vnd.oasis.opendocument.spreadsheet
</value>
<value>
application/pdf
</value>
</choice>
</attribute>
</define>
<define
name=
"VideoType"
>
<attribute
name=
"type"
>
<choice>
<value>
video/mp4
</value>
<value>
video/ogg
</value>
<value>
video/webm
</value>
</choice>
</attribute>
</define>
</grammar>
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