Merge lp:~zorba-coders/zorba/doc-fixes-3.0 into lp:zorba

Proposed by Chris Hillery
Status: Merged
Merged at revision: 11673
Proposed branch: lp:~zorba-coders/zorba/doc-fixes-3.0
Merge into: lp:zorba
Diff against target: 57 lines (+4/-5)
4 files modified
doc/zorba/xqdoc/src/xqdoc-html.xq (+1/-2)
modules/functx/functx.xq (+1/-1)
modules/sctx/sctx.jq (+1/-1)
modules/store/documents.xq (+1/-1)
To merge this branch: bzr merge lp:~zorba-coders/zorba/doc-fixes-3.0
Reviewer Review Type Date Requested Status
Matthias Brantner Approve
Chris Hillery Approve
Review via email: mp+193314@code.launchpad.net

Commit message

More @project fixes; skip test schemas when generating doc.

To post a comment you must log in.
Revision history for this message
Chris Hillery (ceejatec) :
review: Approve
Revision history for this message
Matthias Brantner (matthias-brantner) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/doc-fixes-3.0/+merge/193314

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue result for https://code.launchpad.net/~zorba-coders/zorba/doc-fixes-3.0/+merge/193314

Stage "TestZorbaUbuntu" failed.
1 tests failed (8576 total tests run).

Check test results at http://jenkins.lambda.nu/job/TestZorbaUbuntu/401/testReport/ to view the results.

lp:~zorba-coders/zorba/doc-fixes-3.0 updated
11671. By Chris Hillery

Don't output invalid .xsd files that will trip up later "make doc" runs.

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue starting for the following merge proposals:
https://code.launchpad.net/~zorba-coders/zorba/doc-fixes-3.0/+merge/193314

Progress dashboard at http://jenkins.lambda.nu/view/ValidationQueue

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue succeeded - proposal merged!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'doc/zorba/xqdoc/src/xqdoc-html.xq'
--- doc/zorba/xqdoc/src/xqdoc-html.xq 2013-10-16 21:47:22 +0000
+++ doc/zorba/xqdoc/src/xqdoc-html.xq 2013-11-08 19:40:15 +0000
@@ -59,14 +59,13 @@
59where not(ends-with($schema, ".ent.xsd"))59where not(ends-with($schema, ".ent.xsd"))
60 and not(ends-with($schema, ".dtd.xsd"))60 and not(ends-with($schema, ".dtd.xsd"))
61 and not(contains($schema, "URI_PATH"))61 and not(contains($schema, "URI_PATH"))
62 and not(contains($schema, "QueryResults"))
62let $schema-doc := doc($base || $slash || trace($schema, "schema"))63let $schema-doc := doc($base || $slash || trace($schema, "schema"))
63let $target-uri := $schema-doc/xs:schema/@targetNamespace/string()64let $target-uri := $schema-doc/xs:schema/@targetNamespace/string()
64let $name := replace(replace($target-uri, "http://", ""), "/", "_")65let $name := replace(replace($target-uri, "http://", ""), "/", "_")
65return {66return {
66 (file:write-text($xqdocBuildPath || $slash || "schemas" || $slash || $name || ".xsd", $schema-doc),
67 file:write-text($dest || $slash || replace(replace($target-uri, "http://", ""), "/", "_") || "-schema.xml",67 file:write-text($dest || $slash || replace(replace($target-uri, "http://", ""), "/", "_") || "-schema.xml",
68 local:write-Doxygen($schema-doc, $name, $target-uri, "schema"))68 local:write-Doxygen($schema-doc, $name, $target-uri, "schema"))
69 )
70};69};
7170
72file:create-directory($xqdocBuildPath || $slash || "examples");71file:create-directory($xqdocBuildPath || $slash || "examples");
7372
=== modified file 'modules/functx/functx.xq'
--- modules/functx/functx.xq 2013-08-09 07:33:21 +0000
+++ modules/functx/functx.xq 2013-11-08 19:40:15 +0000
@@ -25,7 +25,7 @@
2525
26 : @version 1.026 : @version 1.0
27 : @see http://www.xqueryfunctions.com27 : @see http://www.xqueryfunctions.com
28 : @project FunctX28 : @project FunctX/FunctX
29 :) 29 :)
30module namespace functx = "http://www.functx.com" ;30module namespace functx = "http://www.functx.com" ;
3131
3232
=== modified file 'modules/sctx/sctx.jq'
--- modules/sctx/sctx.jq 2013-10-30 15:22:48 +0000
+++ modules/sctx/sctx.jq 2013-11-08 19:40:15 +0000
@@ -23,7 +23,7 @@
23 :23 :
24 : @see http://www.w3.org/TR/xquery/#id-xq-static-context-components24 : @see http://www.w3.org/TR/xquery/#id-xq-static-context-components
25 : @author Nicolae Brinza25 : @author Nicolae Brinza
26 : @project Zorba/Introspection/Static Context/Static Context26 : @project Zorba/Introspection/Static Context
27 :)27 :)
28module namespace sctx = "http://zorba.io/modules/sctx";28module namespace sctx = "http://zorba.io/modules/sctx";
2929
3030
=== modified file 'modules/store/documents.xq'
--- modules/store/documents.xq 2013-10-10 00:05:44 +0000
+++ modules/store/documents.xq 2013-11-08 19:40:15 +0000
@@ -28,7 +28,7 @@
28 : @see <a href="../zorba/data_lifecycle.html">Data Lifecycle</a>28 : @see <a href="../zorba/data_lifecycle.html">Data Lifecycle</a>
29 : @see http://zorba.io/errors29 : @see http://zorba.io/errors
30 : @author Matthias Brantner, David Graf, Till Westmann, Markos Zaharioudakis30 : @author Matthias Brantner, David Graf, Till Westmann, Markos Zaharioudakis
31 : @project Zorba/Data Store/Documents31 : @project Zorba/Data Store/Documents/Documents
32 :)32 :)
33module namespace doc = "http://zorba.io/modules/store/documents";33module namespace doc = "http://zorba.io/modules/store/documents";
3434

Subscribers

People subscribed via source and target branches