diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/xquery/diag-xqdoc.xq b/code/diag-xqdoc.xq old mode 100755 new mode 100644 similarity index 95% rename from xquery/diag-xqdoc.xq rename to code/diag-xqdoc.xq index 05e1155..4b51a81 --- a/xquery/diag-xqdoc.xq +++ b/code/diag-xqdoc.xq @@ -4,18 +4,14 @@ :) declare namespace doc="http://www.xqdoc.org/1.0"; declare namespace dotml="http://www.martin-loetzsch.de/DOTML"; -declare namespace hash="http://basex.org/modules/hash"; declare variable $ns-ignore:=("http://www.w3.org/2005/xpath-functions", "http://www.w3.org/2010/xslt-xquery-serialization", "http://www.w3.org/2001/XMLSchema", "http://www.w3.org/2005/xpath-functions/math" ); - -declare function local:sid($s as xs:string) -as xs:string{ +declare function local:sid($s as xs:string){ "A" || xs:hexBinary(hash:md5($s)) }; - declare function local:fid($uri as xs:string ,$name as xs:string,$arity as xs:string){ let $a:=fn:trace(($uri || "*" || $name || "*" || $arity),"fid: ") return "A" || xs:hexBinary(hash:md5($uri || $name ||$arity)) diff --git a/xquery/graphviz.xqm b/code/graphviz.xqm old mode 100755 new mode 100644 similarity index 100% rename from xquery/graphviz.xqm rename to code/graphviz.xqm diff --git a/html/app.css b/html/app.css deleted file mode 100755 index d2ac37a..0000000 --- a/html/app.css +++ /dev/null @@ -1,172 +0,0 @@ -/* app.css */ - -/* page scroll bar off */ -html { overflow-y: auto } - -pre { - white-space: pre-wrap; /* css-3 */ - white-space: -moz-pre-wrap; /* Mozilla, since 1999 */ - white-space: -pre-wrap; /* Opera 4-6 */ - white-space: -o-pre-wrap; /* Opera 7 */ - word-wrap: break-word; /* Internet Explorer 5.5+ */ -} -/* http://tobiasahlin.com/spinkit/ */ -.spinner { - margin: 100px auto; - width: 100px; - height: 80px; - text-align: center; - font-size: 16px; -} - -.spinner > div { - background-color: #0000a0; - height: 100%; - width: 16px; - display: inline-block; - - -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out; - animation: sk-stretchdelay 1.2s infinite ease-in-out; -} - -.spinner .rect2 { - -webkit-animation-delay: -1.1s; - animation-delay: -1.1s; -} - -.spinner .rect3 { - -webkit-animation-delay: -1.0s; - animation-delay: -1.0s; -} - -.spinner .rect4 { - -webkit-animation-delay: -0.9s; - animation-delay: -0.9s; -} - -.spinner .rect5 { - -webkit-animation-delay: -0.8s; - animation-delay: -0.8s; -} - -@-webkit-keyframes sk-stretchdelay { - 0%, 40%, 100% { -webkit-transform: scaleY(0.4) } - 20% { -webkit-transform: scaleY(1.0) } -} - -@keyframes sk-stretchdelay { - 0%, 40%, 100% { - transform: scaleY(0.4); - -webkit-transform: scaleY(0.4); - } 20% { - transform: scaleY(1.0); - -webkit-transform: scaleY(1.0); - } -} -.fade-enter-active, .fade-leave-active { - transition-property: opacity; - transition-duration: .25s; -} - -.fade-enter-active { - transition-delay: .25s; -} - -.fade-enter, .fade-leave-active { - opacity: 0 -} - -.child-view { - position: absolute; - transition: all .5s cubic-bezier(.55,0,.1,1); -} -.slide-left-enter, .slide-right-leave-active { - opacity: 0; - -webkit-transform: translate(30px, 0); - transform: translate(30px, 0); -} -.slide-left-leave-active, .slide-right-enter { - opacity: 0; - -webkit-transform: translate(-30px, 0); - transform: translate(-30px, 0); -} - -td.vtop { - vertical-align:top; -} -/* -.ace_editor { height: 200px; } -*/ - .acewrap{ - top:0px; - left:0px; - bottom:0px; - right:0px; - height:100%; - } - -.ace_gutter-cell.ace_breakpoint{ - border-radius: 20px 0px 0px 20px; - box-shadow: 0px 0px 1px 1px red inset; -} -.ace_editor_wrapper { - height: 100% -} - -.ace_editor { -height: 100%; -} - -.multiline-ellipsis { - display: block; - display: -webkit-box; - max-height: 110px; - margin: 0 auto; - line-height: 1.4; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - overflow: hidden; - text-overflow: ellipsis; -} -.qd-active { - background-color: green; -} -.selcard { - background-color: green; - border: thick double #32a1ce; -} - -.contain { - object-fit: contain; -} -.canvas { - overflow: hidden; -} -.canvas .wrapper.outer > .background { - fill: #000000; -} -.canvas .wrapper.inner > .background { - fill: #CCCCCC; - cursor: move; -} -.canvas .background { - fill: #F6F6F6; - stroke: #333333; - cursor: move; -} -.canvas .panCanvas { - cursor: move; -} - -.canvas .minimap .frame { - pointer-events: all; -} -.canvas .minimap .frame .background { - stroke: #111111; - stroke-width: 4px; - fill-opacity: 0.1; - fill: #000000; - fill: url(#minimapGradient_qwpyza); - filter: url(#minimapDropShadow_qwpyza); - cursor: move; -} \ No newline at end of file diff --git a/html/app.html b/html/app.html deleted file mode 100755 index 9cd3c20..0000000 --- a/html/app.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - Vue Router Test - - - - - - - - - - - - - - - -
-

vue-poc

- -
-
-
-
-
-
- Loading, please wait... -
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/html/state.js b/html/state.js deleted file mode 100755 index 2cfb52c..0000000 --- a/html/state.js +++ /dev/null @@ -1,64 +0,0 @@ -// -const store = new Vuex.Store({ - state: { - count: 92, - - edit:{ - currentId: "?", - query: "todo edit/query" - }, - "features":{ - "serviceworker": false - }, - "images": { - thumbtask :` - - - - Some Text here - - - - - - ` - }, - "settings": { - "ace": { - theme: "github", - themeDark: "chaos", - keybinding: "ace", - fontsize: 16, - enableSnippets:true, - enableBasicAutocompletion:true, - enableLiveAutocompletion:true - }, - "dark": false - }, - "markdown":{ - "toc": true - } - }, - - mutations: { - increment (state) { - state.count++ - }, - initialiseStore(state) { - // Check if the ID exists - var s=localStorage.getItem('store') - if(s) { - // Replace the state object with the stored item - this.replaceState( - Object.assign(state, JSON.parse(s)) - ); - } - //console.log("initialiseStore: ",s) - } - } -}) -store.subscribe((mutation, state) => { - // Store the state object as a JSON string - localStorage.setItem('store', JSON.stringify(state)); - //console.log("store subscribe") -}); \ No newline at end of file diff --git a/media/icon.png b/media/icon.png deleted file mode 100755 index 1dd5ba4..0000000 Binary files a/media/icon.png and /dev/null differ diff --git a/media/quodatum.gif b/media/quodatum.gif deleted file mode 100755 index 3ca03c9..0000000 Binary files a/media/quodatum.gif and /dev/null differ diff --git a/media/vue-poc.svg b/media/vue-poc.svg deleted file mode 100755 index e019f0b..0000000 --- a/media/vue-poc.svg +++ /dev/null @@ -1,200 +0,0 @@ - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/process.gv b/process.gv old mode 100755 new mode 100644 diff --git a/xml/dotpatch.xsl b/xml/dotpatch.xsl old mode 100755 new mode 100644 diff --git a/xml/full_mets.xml b/xml/full_mets.xml old mode 100755 new mode 100644 diff --git a/xml/lines7000.xml b/xml/lines7000.xml old mode 100755 new mode 100644 diff --git a/xslt-xpath-0.2.8.vsix b/xslt-xpath-0.2.8.vsix old mode 100755 new mode 100644