Skip to content

Commit

Permalink
Merge branch 'main' into ODATA-1547
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoTheissen authored Jan 31, 2024
2 parents 1483462 + 6723b20 commit a56e714
Show file tree
Hide file tree
Showing 10 changed files with 1,819 additions and 203 deletions.
305 changes: 154 additions & 151 deletions docs/odata-csdl-xml/odata-csdl-xml.html

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions docs/odata-csdl-xml/odata-csdl-xml.md
Original file line number Diff line number Diff line change
Expand Up @@ -884,6 +884,7 @@ OData service.
::: {.varxml .example}
Example 7:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
Version="4.01">
<edmx:DataServices>
Expand Down Expand Up @@ -5431,6 +5432,7 @@ CSDL. These examples demonstrate many of the topics covered above.
::: {.varxml .example}
Example 90:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
xmlns="http://docs.oasis-open.org/odata/ns/edm" Version="4.0">
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
Expand Down Expand Up @@ -5549,6 +5551,7 @@ Example 90:
::: {.varxml .example}
Example 91:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
Version="4.01">
<edmx:Reference Uri="http://host/service/$metadata">
Expand Down
91 changes: 46 additions & 45 deletions docs/odata-data-aggregation-ext/odata-data-aggregation-ext.html

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2487,6 +2487,7 @@ The hierarchy terms can be applied to the [Example Data Model](#ExampleDataModel
::: example
⚠ Example 53: leveled hierarchies for products and time, and a recursive hierarchy for the sales organizations:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
Version="4.0">
<edmx:Reference Uri="https://docs.oasis-open.org/odata/odata-data-
Expand Down
807 changes: 804 additions & 3 deletions docs/odata-temporal-ext/odata-temporal-ext.html

Large diffs are not rendered by default.

804 changes: 801 additions & 3 deletions docs/odata-temporal-ext/odata-temporal-ext.md

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion lib/number.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,12 @@ class Number {
lineno++;
if (this.skip(line)) return;
try {
var m1 = line.match(/^\$\$\$(.*?isec)\$\$\$$/);
var m1 = line.match(/^\$\$\$include\s+(.*?)\$\$\$\s*$/);
if (m1) {
out.write(fs.readFileSync(this.dir + "/" + m1[1]));
return;
}
m1 = line.match(/^\$\$\$(.*?isec)\$\$\$$/);
if (m1)
this.tableofcontents(this.toc[m1[1]]?.sub || [], out, "");
else {
Expand Down
2 changes: 2 additions & 0 deletions odata-csdl/15 Identifier and Path Values.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,7 @@ Example ##ex:
::: {.varxml .example}
Example ##ex:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
xmlns="http://docs.oasis-open.org/odata/ns/edm" Version="4.0">
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
Expand Down Expand Up @@ -487,6 +488,7 @@ Example ##ex:
::: {.varxml .example}
Example ##ex:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
Version="4.01">
<edmx:Reference Uri="http://host/service/$metadata">
Expand Down
1 change: 1 addition & 0 deletions odata-csdl/4 CSDL Document.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ OData service.
::: {.varxml .example}
Example ##ex:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
Version="4.01">
<edmx:DataServices>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ The hierarchy terms can be applied to the [Example Data Model](#ExampleDataModel
::: example
⚠ Example ##ex: leveled hierarchies for products and time, and a recursive hierarchy for the sales organizations:
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx"
Version="4.0">
<edmx:Reference Uri="https://docs.oasis-open.org/odata/odata-data-
Expand Down

0 comments on commit a56e714

Please sign in to comment.