text
stringlengths
3
8.33k
repo
stringclasses
52 values
path
stringlengths
6
141
language
stringclasses
35 values
sha
stringlengths
64
64
chunk_index
int32
0
273
n_tokens
int32
1
896
settings (opens a panel reflecting `.env`). - **Left panel (40% width)** — vertically scrolling stream of agent events: planning bullets, tool calls (collapsible JSON), reasoning paragraphs, per-question status pills (pending / in progress / answered / low-conf / failed). Auto-scroll with pause-on-hover. Search/filter ...
jku-assignments
VISION.md
Markdown
267bb068160fb290c5e3870407b5c07e97fc9880f3e8d4774a58253f62470bb7
6
896
short: "the new weights are calculated by: initial weight - learning rate * gradient example W[0,0]: 0.3753 - 0.1 * 0.2432 = 0.3510" Q4 — short essay observation: "the first couple layers do not nearly learn as much as the last ones. This is the vanishing gradients problem, sigmoid causes early layers in large models ...
jku-assignments
VISION.md
Markdown
07789ff6dca3f05ed3568ffdbea3b0df441b8a89129d13bb6b532f036e9975e2
7
896
: one SGD step", "Vanishing Gradients", "Optimization Challenge"); plans a tab-visit order minimizing context switches. 7. For Q1, the agent doesn't need the app — it computes `0.3753 - 0.1 * 0.2432` via `/exec` and writes the answer in the user's voice. 8. For Q4, the agent goes to the Vanishing Gradients tab, sets se...
jku-assignments
VISION.md
Markdown
bb36c917ea48b222b26c982e7e14b4eddcaff03e659aeb6fa3362e7960429739
8
896
Shibboleth flow is fragile.** It involves redirects to `idp.jku.at`. The persistent profile approach (user logs in once into the saved Chromium profile) sidesteps most of this. Detect expiry by checking for the `idp.jku.at` redirect URL and falling back to "ask user to log in" via the web UI. - **Plot downloading varie...
jku-assignments
VISION.md
Markdown
751bf533001df5dda53ec76fbbd60943d687f3cd52e435c4d98ae9103e6a54e3
9
646
import { defineConfig } from 'vitest/config'; export default defineConfig({ test: { projects: [ { test: { name: 'packages', include: ['packages/*/tests/**/*.test.ts'], }, }, { test: { name: 'apps', include: ['apps/*/tests/**/*.test...
jku-assignments
vitest.config.ts
TypeScript
9734ed1737e2030bcd5b28268bf3645b52aac1223436838db3a10d5decde8277
0
99
--- name: code-review-excellence description: Master effective code review practices to provide constructive feedback, catch bugs early, and foster knowledge sharing while maintaining team morale. Use when reviewing pull requests, establishing review standards, or mentoring developers. --- # Code Review Excellence Tr...
jku-assignments
.agents/skills/code-review-excellence/SKILL.md
Markdown
f8f7ea75db80681f3d74c38ea39e1d0818f0b58cb861d4c982794acb289cf139
0
896
🔄 Request Changes (must address) 4. Offer to pair if complex ``` ## Review Techniques ### Technique 1: The Checklist Method ```markdown ## Security Checklist - [ ] User input validated and sanitized - [ ] SQL queries use parameterization - [ ] Authentication/authorization checked - [ ] Secrets not hardcoded - [ ] ...
jku-assignments
.agents/skills/code-review-excellence/SKILL.md
Markdown
7d9adbae7f7d29a603d6ba4b372bd3f4329574b2bcd430e0a1a55ca30d770353
1
896
✅ Handle errors properly async function fetchUser(id: string): Promise<User> { try { const response = await fetch(`/api/users/${id}`); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } return await response.json(); } catch (error) { console.err...
jku-assignments
.agents/skills/code-review-excellence/SKILL.md
Markdown
3b4fe329367a93de209291022bc8755c5a7a64327e055ad43f8ce6dce7262f6e
2
896
This makes it harder to test and reuse. [Specific Issue] The calculateTotal() function mixes tax calculation, discount logic, and database queries, making it difficult to unit test and reason about. [Helpful Solution] Could we extract this into a PaymentService class? That would make it testable and reusable. I can p...
jku-assignments
.agents/skills/code-review-excellence/SKILL.md
Markdown
1e0db52f1403c791b4bcce8ac0c230d6c9e923c92b24a5e331a508f203a2eae0
3
565
© 2025 Anthropic, PBC. All rights reserved. LICENSE: Use of these materials (including all code, prompts, assets, files, and other components of this Skill) is governed by your agreement with Anthropic regarding use of Anthropic's services. If no separate agreement exists, use is governed by Anthropic's Consumer Terms...
jku-assignments
.agents/skills/docx/LICENSE.txt
Text
79f6d8f5b427252fa3b1c11ecdbdb6bf610b944f7530b4de78f770f38741cfaa
0
276
--- name: docx description: "Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or ...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
1c4de866c75c76f9bdbbd9d9ec39d6559bb2b4420d96013d8a7df7d179bc80e8
0
896
|-------|--------|---------------------------| | US Letter | 12,240 | 15,840 | 9,360 | | A4 (default) | 11,906 | 16,838 | 9,026 | **Landscape orientation:** docx-js swaps width/height internally, so pass portrait dimensions and let it handle the swap: ```javascript size: { width: 12240, // Pass SHORT edge as width...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
06439610153eae02ce1094d5e869097e5068b52f78c94d52998e79d43df2a5c8
1
896
: Always set table width for consistent rendering // CRITICAL: Use ShadingType.CLEAR (not SOLID) to prevent black backgrounds const border = { style: BorderStyle.SINGLE, size: 1, color: "CCCCCC" }; const borders = { top: border, bottom: border, left: border, right: border }; new Table({ width: { size: 9360, type: Wi...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
e146a5ee569b132ba12017184250f10d7595be7ebe46ccc6ac633685a5461023
2
896
[new Paragraph({ children: [ new TextRun("Revenue grew 15%"), new FootnoteReferenceRun(1), new TextRun(" using adjusted metrics"), new FootnoteReferenceRun(2), ], })] }] }); ``` ### Tab Stops ```javascript // Right-align text on same line (e.g., date opposite a title)...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
f249e18fbcce23bd6730452c2f8461ad488a426faa43befdf6d2b4ba0eeef3e8
3
896
**Use `ShadingType.CLEAR`** - never SOLID for table shading - **Never use tables as dividers/rules** - cells have minimum height and render as empty boxes (including in headers/footers); use `border: { bottom: { style: BorderStyle.SINGLE, size: 6, color: "2E75B6", space: 1 } }` on a Paragraph instead. For two-column fo...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
34eea046bb3fc883ee3843b2969138403bfada2e9758bbaf7c7c6835625fa50b
4
896
- **Preserve `<w:rPr>` formatting**: Copy the original run's `<w:rPr>` block into your tracked change runs to maintain bold, font size, etc. --- ## XML Reference ### Schema Compliance - **Element order in `<w:pPr>`**: `<w:pStyle>`, `<w:numPr>`, `<w:spacing>`, `<w:ind>`, `<w:jc>`, `<w:rPr>` last - **Whitespace**: Ad...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
c1e8af12c869cbb71dafcd5172b111767855a945d530823d150a93a867798f18
5
896
<w:rPr>`, accepting changes leaves an empty paragraph/list item. **Rejecting another author's insertion** - nest deletion inside their insertion: ```xml <w:ins w:author="Jane" w:id="5"> <w:del w:author="Claude" w:id="10"> <w:r><w:delText>their inserted text</w:delText></w:r> </w:del> </w:ins> ``` **Restoring ...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
a179391a9ce588cc5bb15acde73536a49e1ef0d1a0bbfeccc195d81b0bebba60
6
896
<wp:extent cx="914400" cy="914400"/> <!-- EMUs: 914400 = 1 inch --> <a:graphic> <a:graphicData uri=".../picture"> <pic:pic> <pic:blipFill><a:blip r:embed="rId5"/></pic:blipFill> </pic:pic> </a:graphicData> </a:graphic> </wp:inline> </w:drawing> ``` --- ## Dependencies ...
jku-assignments
.agents/skills/docx/SKILL.md
Markdown
1943c0bf05f0f8bfaf04abcf848238ce5e4a673a6022ddbad4f74f52b99db6c0
7
182
"""Accept all tracked changes in a DOCX file using LibreOffice. Requires LibreOffice (soffice) to be installed. """ import argparse import logging import shutil import subprocess from pathlib import Path from office.soffice import get_soffice_env logger = logging.getLogger(__name__) LIBREOFFICE_PROFILE = "/tmp/lib...
jku-assignments
.agents/skills/docx/scripts/accept_changes.py
Python
0c991d2bc7304a1248e9f3bf9b1498f0b6e76641fc457e7cbd73c99b4eef3a74
0
836
"""Add comments to DOCX documents. Usage: python comment.py unpacked/ 0 "Comment text" python comment.py unpacked/ 1 "Reply text" --parent 0 Text should be pre-escaped XML (e.g., &amp; for &, &#x2019; for smart quotes). After running, add markers to document.xml: <w:commentRangeStart w:id="0"/> ... comme...
jku-assignments
.agents/skills/docx/scripts/comment.py
Python
d25ac5b5b585403a50b72d8ae58d3f5e25ea468057d5c370e752c4fd34022427
0
896
:commentReference w:id="{cid}"/></w:r>""" def _generate_hex_id() -> str: return f"{random.randint(0, 0x7FFFFFFE):08X}" SMART_QUOTE_ENTITIES = { "\u201c": "&#x201C;", "\u201d": "&#x201D;", "\u2018": "&#x2018;", "\u2019": "&#x2019;", } def _encode_smart_quotes(text: str) -> str: for ...
jku-assignments
.agents/skills/docx/scripts/comment.py
Python
221c9828a1744f9727412db38b6964080f944090c7e434de0a7d38cda33ab706
1
896
/08/relationships/commentsExtensible", "commentsExtensible.xml", ), ] for rel_type, target in rels: rel = dom.createElement("Relationship") rel.setAttribute("Id", f"rId{next_rid}") rel.setAttribute("Type", rel_type) rel.setAttribute("Target", target) ...
jku-assignments
.agents/skills/docx/scripts/comment.py
Python
533ff003c2608a5e205063e829824c30a60e7fc2dfad30eb69c67f035b01a372
2
896
durable_id}" w16cex:dateUtc="{ts}"/>', ) action = "reply" if parent_id is not None else "comment" return para_id, f"Added {action} {comment_id} (para_id={para_id})" if __name__ == "__main__": p = argparse.ArgumentParser(description="Add comments to DOCX documents") p.add_argument("unpacked_dir", ...
jku-assignments
.agents/skills/docx/scripts/comment.py
Python
eaf70a2db1d680dbc18f55015145b8ac5f9c2c55fa3daf356ac117affc1d5ab4
3
300
"""Pack a directory into a DOCX, PPTX, or XLSX file. Validates with auto-repair, condenses XML formatting, and creates the Office file. Usage: python pack.py <input_directory> <output_file> [--original <file>] [--validate true|false] Examples: python pack.py unpacked/ output.docx --original input.docx py...
jku-assignments
.agents/skills/docx/scripts/office/pack.py
Python
46251cd2cbbf87712838e4d813c4642dfd4b787d0418b5516b9ea4c14961d7f9
0
896
__name__ == "__main__": parser = argparse.ArgumentParser( description="Pack a directory into a DOCX, PPTX, or XLSX file" ) parser.add_argument("input_directory", help="Unpacked Office document directory") parser.add_argument("output_file", help="Output Office file (.docx/.pptx/.xlsx)") parse...
jku-assignments
.agents/skills/docx/scripts/office/pack.py
Python
f8f14723193224432891b31ee98489acab3bdd57f295eb9a67b25a072b344e17
1
200
""" Helper for running LibreOffice (soffice) in environments where AF_UNIX sockets may be blocked (e.g., sandboxed VMs). Detects the restriction at runtime and applies an LD_PRELOAD shim if needed. Usage: from office.soffice import run_soffice, get_soffice_env # Option 1 – run soffice directly result = r...
jku-assignments
.agents/skills/docx/scripts/office/soffice.py
Python
79cb51df12e8aa15c1c5fc73998ada7dfd61b03bbd15c5794cf3c821b1d49379
0
896
; if (fd >= 0) return fd; /* socket(AF_UNIX) blocked – fall back to socketpair(). */ int sv[2]; if (real_socketpair(domain, type, protocol, sv) == 0) { if (sv[0] >= 0 && sv[0] < 1024) { is_shimmed[sv[0]] = 1; peer_of[sv[0]] = sv[1]; ...
jku-assignments
.agents/skills/docx/scripts/office/soffice.py
Python
6b3fb02c8ad7cac63949e9deed019be8fe78edeb47ccc0eb7000587a8031989c
1
722
"""Unpack Office files (DOCX, PPTX, XLSX) for editing. Extracts the ZIP archive, pretty-prints XML files, and optionally: - Merges adjacent runs with identical formatting (DOCX only) - Simplifies adjacent tracked changes from same author (DOCX only) Usage: python unpack.py <office_file> <output_dir> [options] Ex...
jku-assignments
.agents/skills/docx/scripts/office/unpack.py
Python
83f69cecc87910183654c06345837244402e8a99edbf3bdddc1cf72f11304b62
0
879
""" Command line tool to validate Office document XML files against XSD schemas and tracked changes. Usage: python validate.py <path> [--original <original_file>] [--auto-repair] [--author NAME] The first argument can be either: - An unpacked directory containing the Office document XML files - A packed Office fi...
jku-assignments
.agents/skills/docx/scripts/office/validate.py
Python
1aef24f8e316965a0584c30859776bd2c82a9fb69f72d79cfed041119cf95514
0
806
"""Merge adjacent runs with identical formatting in DOCX. Merges adjacent <w:r> elements that have identical <w:rPr> properties. Works on runs in paragraphs and inside tracked changes (<w:ins>, <w:del>). Also: - Removes rsid attributes from runs (revision metadata that doesn't affect rendering) - Removes proofErr ele...
jku-assignments
.agents/skills/docx/scripts/office/helpers/merge_runs.py
Python
7dbf371196f8a3badcbdb829741a0b572ce3e9cbf1249133eca53a124e626a0a
0
896
"r" or name.endswith(":r") def _can_merge(run1, run2) -> bool: rpr1 = _get_child(run1, "rPr") rpr2 = _get_child(run2, "rPr") if (rpr1 is None) != (rpr2 is None): return False if rpr1 is None: return True return rpr1.toxml() == rpr2.toxml() def _merge_run_content(target, source...
jku-assignments
.agents/skills/docx/scripts/office/helpers/merge_runs.py
Python
ddc4e5d24584320d2d7cddbb7df1e5e2aa8bca55fa74eea7cd3bea0e512b4fe1
1
318
"""Simplify tracked changes by merging adjacent w:ins or w:del elements. Merges adjacent <w:ins> elements from the same author into a single element. Same for <w:del> elements. This makes heavily-redlined documents easier to work with by reducing the number of tracked change wrappers. Rules: - Only merges w:ins with ...
jku-assignments
.agents/skills/docx/scripts/office/helpers/simplify_redlines.py
Python
9ded8a7cf8ccf1bc431cccf0c1dd0015d79d7b025212d486f222f5eb80df1147
0
896
", "del"]: for elem in root.findall(f".//w:{tag}", namespaces): author = elem.get(author_attr) if author: authors[author] = authors.get(author, 0) + 1 return authors def _get_authors_from_docx(docx_path: Path) -> dict[str, int]: try: with zipfile.ZipFil...
jku-assignments
.agents/skills/docx/scripts/office/helpers/simplify_redlines.py
Python
2814773867928d041fa7c453aa1c95d1334f2f18a940a036c2d8790871708308
1
400
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <xs:schema xmlns="http://schemas.openxmlformats.org/package/2006/content-types" xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.openxmlformats.org/package/2006/content-types" elementFormDefault="qualified" attributeFormDefault="un...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd
XML Schema
9e0b7209fc69ab11987900404540969976000c5ebe4d4f58c43dc3842886bf3a
0
821
<?xml version="1.0" encoding="UTF-8"?> <xs:schema targetNamespace="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd
XML Schema
451958454e8588dfc7cd945981ada142ca06ff3307937f5700df059c2b307fa8
0
833
<?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/digital-signature" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.openxmlformats.org/package/2006/digital-signature" elementFormDefault="qualified" attributeFormDefault="unqualifi...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd
XML Schema
6732d21ca79e352014a08d85ad061c7fce122a3bf6201d8190e86980f8ae5983
0
896
|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])))|Z))|(([0-9][0-9][0-9][0-9])-((0[1-9])|(1(0|1|2)))-((0[1-9])|(1[0-9])|(2[0-9])|(3(0|1)))T((0[0-9])|(1[0-9])|(2(0|1|2|3))):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9])):((0[0-9])|(1[0-9])|(2[0-9])|(3[0-9])|(4[0-9])|(5[0-9]))(((\+|-)((0[0-9])|(1[0-9]...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd
XML Schema
6350ea2fba807b0590033c9884c026a25da616c744ab909292dc74a9bc02d45b
1
756
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <xsd:schema xmlns="http://schemas.openxmlformats.org/package/2006/relationships" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://schemas.openxmlformats.org/package/2006/relationships" elementFormDefault="qualified" attributeFormDefault="...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd
XML Schema
f565adfef5a502044abc3a9153e157edc25af78304d335994afb958874b15e26
0
378
<?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns="http://schemas.openxmlformats.org/drawingml/2006/chart" xmlns:cdr="...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
447ca8d652d77f0a8bf6a0356a719b4efa1b27a3d2e10bccf456716f28dfcf20
0
896
element name="f" type="xsd:string" minOccurs="1" maxOccurs="1"/> <xsd:element name="numCache" type="CT_NumData" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_NumDataSource"> ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
96fc6a28d7be59cc2f56a1f8249ac4f50b95c21bcff4948424cd04a8317551ec
1
896
"CT_MultiLvlStrData" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_AxDataSource"> <xsd:sequence> <xsd:choice minOccurs="1" maxOccurs="1"> <xsd:element name="multi...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
fcb4fedda64fa9b7d2055e05fc9b864ebe31496ae48c06fa93cdac770333077b
2
896
"CT_ManualLayout" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_Title"> <xsd:sequence> <xsd:element name="tx" type="CT_Tx" minOccurs="0" maxOccurs="1"/> <xsd:elemen...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
ce45e4aaca1e16fea8ac538259975bada2c6ec346c2e468bd8744dab602ab853
3
896
<xsd:attribute name="val" type="ST_DepthPercent" default="100%"/> </xsd:complexType> <xsd:simpleType name="ST_Perspective"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value="240"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_P...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
cb96fdf5bcaa8f5c70529e8f88debc79428a3b699ca0c62b4b714a5f70f91b0a
4
896
"> <xsd:restriction base="xsd:string"> <xsd:pattern value="0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_GapAmountUShort"> <xsd:restriction base="xsd:unsignedShort"> <xsd:minInclusive value="0"/> <xsd:maxInclusive value...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
d6e5b16aa2b51ca029f632dc17f9b5a69e74d31e08d7701aee8f70da7f2822da
5
896
-9]|([1-8][0-9])|90)%"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_HoleSizeUByte"> <xsd:restriction base="xsd:unsignedByte"> <xsd:minInclusive value="1"/> <xsd:maxInclusive value="90"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_HoleSize"> <xsd...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
62e69bd0a40ad4ed600e423b53250464e0436cf136cde97ecf216857e4bfdbda
6
896
" use="required"/> </xsd:complexType> <xsd:group name="EG_DLblShared"> <xsd:sequence> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOc...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
50f06ea393220bd0012598ea5454a887f9dbab1e35eb9343e159920d07d52017
7
896
enumeration value="circle"/> <xsd:enumeration value="dash"/> <xsd:enumeration value="diamond"/> <xsd:enumeration value="dot"/> <xsd:enumeration value="none"/> <xsd:enumeration value="picture"/> <xsd:enumeration value="plus"/> <xsd:enumeration value="square"/> <xsd:enumera...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
72d96423a114c8868a41f2c05f5ec4e52a855baed07435a01afdf967cacc33e6
8
896
simpleType> <xsd:complexType name="CT_Order"> <xsd:attribute name="val" type="ST_Order" default="2"/> </xsd:complexType> <xsd:simpleType name="ST_Period"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="2"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Per...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
be6d9cbc8e369b5ccbb0c9badfccc3f2fdbbdeab3dd26a216bbce0f183d2c8c2
9
896
"ST_ErrBarType" default="both"/> </xsd:complexType> <xsd:simpleType name="ST_ErrValType"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="cust"/> <xsd:enumeration value="fixedVal"/> <xsd:enumeration value="percentage"/> <xsd:enumeration value="stdDev"/> <xsd:enumeration...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
16e4744e15328f913ed82c351e5809d7cbba105e889e75d55475181321c1c80e
10
896
="1"/> <xsd:element name="trendline" type="CT_Trendline" minOccurs="0" maxOccurs="unbounded"/> <xsd:element name="errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
abfc8be6a96733f60b695d0589f64702137191e4fc09f492eff15f8c6e57e57e
11
896
"errBars" type="CT_ErrBars" minOccurs="0" maxOccurs="1"/> <xsd:element name="cat" type="CT_AxDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="val" type="CT_NumDataSource" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:elemen...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
221f018a6996f756bb304b2ffa74b1a7159660b2a87d5fa229b1395e0b3a5b1b
12
896
" maxOccurs="1"/> <xsd:element name="bubble3D" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_SurfaceSer"> <xsd:sequence> <xsd:group ref="EG_SerSha...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
50d98a8c8e0d4b876d874e2e7b0cc2807f3801976db941bc44d9ffd4a3c35ece
13
896
</xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_StockChart"> <xsd:sequence> <xsd:element name="ser" type="CT_LineSer" minOccurs="3" maxOccurs="4"/> <xsd:element name="dLbls" type="CT_DLbls" minOccurs="0" maxOccurs="1"/> <xsd:element name="dropLines" type="CT_ChartLines" minOccurs=...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
4ecddf9cf682dcaab308f78fbd823724b55cb2d1dc208c08f1507fd8761a0d38
14
896
name="ST_BarGrouping"> <xsd:restriction base="xsd:string"> <xsd:enumeration value="percentStacked"/> <xsd:enumeration value="clustered"/> <xsd:enumeration value="standard"/> <xsd:enumeration value="stacked"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_BarGrouping"...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
189132107747cd5b8a9ad8bef6481dfa3dd81a6b9a7fdbe15ff0ce721a0d27ef
15
896
"0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:group name="EG_AreaChartShared"> <xsd:sequence> <xsd:element name="grouping" type="CT_Grouping" minOccurs="0" maxOccurs="1"/> <xsd:element name="varyColors" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="ser" t...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
ed4757b15abde864682ce430757a66bc65ed21ba42adcc34a797903c3908e79f
16
896
<xsd:enumeration value="pie"/> <xsd:enumeration value="bar"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OfPieType"> <xsd:attribute name="val" type="ST_OfPieType" default="pie"/> </xsd:complexType> <xsd:complexType name="CT_OfPieChart"> <xsd:sequence> <xsd:element nam...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
5c9a995ee24dccb236329da45fa328ad51fc73e798c109e36fabe9a98de2d748
17
896
="CT_SurfaceChart"> <xsd:sequence> <xsd:group ref="EG_SurfaceChartShared" minOccurs="1" maxOccurs="1"/> <xsd:element name="axId" type="CT_UnsignedInt" minOccurs="2" maxOccurs="3"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexT...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
6fb5534a75da2ec897ee57f199600d6b271b3215abb149e34bb1fab4e27ec3e6
18
896
restriction base="xsd:string"> <xsd:enumeration value="days"/> <xsd:enumeration value="months"/> <xsd:enumeration value="years"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_TimeUnit"> <xsd:attribute name="val" type="ST_TimeUnit" default="days"/> </xsd:complexType> <...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
91f6b89d0152bf0d3334870a59be8eae2caf30a0071312f40dbcddb79fdf1041
19
896
xsd:sequence> <xsd:choice> <xsd:element name="custUnit" type="CT_Double" minOccurs="1" maxOccurs="1"/> <xsd:element name="builtInUnit" type="CT_BuiltInUnit" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="dispUnitsLbl" type="CT_DispUnitsLbl" minOccurs="0" maxOccurs="1"/>...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
fa78ad81d268d8445782a82302550d17ae8fd3ccc50bc466c07413622abaf0ef
20
896
:element name="minorGridlines" type="CT_ChartLines" minOccurs="0" maxOccurs="1"/> <xsd:element name="title" type="CT_Title" minOccurs="0" maxOccurs="1"/> <xsd:element name="numFmt" type="CT_NumFmt" minOccurs="0" maxOccurs="1"/> <xsd:element name="majorTickMark" type="CT_TickMark" minOccurs="0" maxOccu...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
2d64471b0b230730b464782ebfca8fc916a2b63805284e47dca3831be20a0473
21
896
="1" maxOccurs="1"/> <xsd:element name="tickLblSkip" type="CT_Skip" minOccurs="0" maxOccurs="1"/> <xsd:element name="tickMarkSkip" type="CT_Skip" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <x...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
d9ac1957f7ba112ec9c91de616d682dbf8f2d6bfc66d273ccfef532cdf98f6b6
22
896
" type="CT_DateAx" minOccurs="1" maxOccurs="1"/> <xsd:element name="serAx" type="CT_SerAx" minOccurs="1" maxOccurs="1"/> </xsd:choice> <xsd:element name="dTable" type="CT_DTable" minOccurs="0" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
de80194289c97037995818c2b15700505857b864e9eca9955a1bd78d53049644
23
896
:CT_ShapeProperties" minOccurs="0" maxOccurs="1"/> <xsd:element name="txPr" type="a:CT_TextBody" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:simpleType name="ST_DispBlanksAs"> <xsd:restrict...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
9710d791fde5e713872652235ca24417e98dae1dbc3d56755a9add38e3300caf
24
896
="0" maxOccurs="1"/> <xsd:element name="selection" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> <xsd:element name="userInterface" type="CT_Boolean" minOccurs="0" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_HeaderFooter"> <xsd:sequence> <xsd:element name=...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
28292ef3ca050d12f03e6151fd2e4aac651d2bad84eafb8923ad5bed24637c61
25
896
useFirstPageNumber" type="xsd:boolean" use="optional" default="false"/> <xsd:attribute name="horizontalDpi" type="xsd:int" use="optional" default="600"/> <xsd:attribute name="verticalDpi" type="xsd:int" use="optional" default="600"/> <xsd:attribute name="copies" type="xsd:unsignedInt" use="optional" default...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd
XML Schema
d914423b63ea37efbb42aeaf9edde258bfbfea2ac795cd6f9f003c0c7414e311
26
695
<?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" targetNamespace="http://schemas.openxmlformats.org/drawingml/2006/chartDrawing" el...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd
XML Schema
202f810aad05f02f36ce7049b323c20810371040c26070dec164d7aa1ba8eb5f
0
896
name="blipFill" type="a:CT_BlipFillProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="spPr" type="a:CT_ShapeProperties" minOccurs="1" maxOccurs="1"/> <xsd:element name="style" type="a:CT_ShapeStyle" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="macro" type="xsd:string"...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd
XML Schema
c09ef37989d1c54de66c685a504275111de009e6a7b64465d5509443cdacde40
1
896
simpleType> <xsd:complexType name="CT_Marker"> <xsd:sequence> <xsd:element name="x" type="ST_MarkerCoordinate" minOccurs="1" maxOccurs="1"/> <xsd:element name="y" type="ST_MarkerCoordinate" minOccurs="1" maxOccurs="1"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_RelSizeAnchor...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd
XML Schema
315456f2d5f1b463ff4606acc6aa5422ecc65354370531ee60b950a75ad719ea
2
336
<?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/drawingml/2006/diagram" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:s="...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
b523815b1d620ffc4792073ab5643104b0baf728aa59b90864f1f7b4c5614fcf
0
896
element name="txLinClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="txFillClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="txEffectClrLst" type="CT_Colors" minOccurs="0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minO...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
0e40cc0df09fb71843123b6e11a50d98069f345fd2d8a7823654ecb310681a7e
1
896
"0" maxOccurs="1"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="modelId" type="ST_ModelId" use="required"/> <xsd:attribute name="type" type="ST_PtType" use="optional" default="node"/> <xsd:attribute name="cxnId" t...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
db4dc6b20a5db98411a6e683e341c15dd8b396029dcd08a2d2f879c6f790a79a
2
896
type="ST_Ints" use="optional" default="1"/> <xsd:attribute name="cnt" type="ST_UnsignedInts" use="optional" default="0"/> <xsd:attribute name="step" type="ST_Ints" use="optional" default="1"/> </xsd:attributeGroup> <xsd:attributeGroup name="AG_ConstraintAttributes"> <xsd:attribute name="type" type="ST_C...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
5390062b5f99c1cc17b5c251ae206c130d3b12b6e3294e957b623c07b0ddd7d2
3
896
name="ST_Index1"> <xsd:restriction base="xsd:unsignedInt"> <xsd:minInclusive value="1"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_Adj"> <xsd:attribute name="idx" type="ST_Index1" use="required"/> <xsd:attribute name="val" type="xsd:double" use="required"/> </xsd:complex...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
728d6866fafff97a5af84a63b25cf7413734076c3388ced44a763d5b7863ad1c
4
896
CT_Choose"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:choice> <xsd:attribute name="name" type="xsd:string" use="optional" default=""/> <xsd:attribute name="styleLbl" type="xsd:string" use="optional" default=""/> <xsd:attribute name="chOrder"...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
f5decddb260fdebc1735ce99ff77c2aaea15383b0e0dd9aeef57a65bb7b41162
5
896
complexType name="CT_Otherwise"> <xsd:choice minOccurs="0" maxOccurs="unbounded"> <xsd:element name="alg" type="CT_Algorithm" minOccurs="0" maxOccurs="1"/> <xsd:element name="shape" type="CT_Shape" minOccurs="0" maxOccurs="1"/> <xsd:element name="presOf" type="CT_PresentationOf" minOccurs="0" maxO...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
4ba0d079571b1209f01f90307cfa99346e45419724690383c6a4bee83f819c81
6
896
"0"/> <xsd:element name="layoutNode" type="CT_LayoutNode"/> <xsd:element name="extLst" type="a:CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attribute name="uniqueId" type="xsd:string" use="optional" default=""/> <xsd:attribute name="minVer" type="xsd:string" use=...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
1cf9886a100e2f359329a52cf54542928634d5d08183b24dbd0b9225f5c471d4
7
896
presStyleLbl" type="xsd:string" use="optional"/> <xsd:attribute name="presStyleIdx" type="xsd:int" use="optional"/> <xsd:attribute name="presStyleCnt" type="xsd:int" use="optional"/> <xsd:attribute name="loTypeId" type="xsd:string" use="optional"/> <xsd:attribute name="loCatId" type="xsd:string" use="op...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
2d112c866661149f58faa18aca52511e8ffd254b405d65191619e71c1720927e
8
896
token"> <xsd:enumeration value="none"/> <xsd:enumeration value="lvl"/> <xsd:enumeration value="ctr"/> </xsd:restriction> </xsd:simpleType> <xsd:complexType name="CT_OrgChart"> <xsd:attribute name="val" type="xsd:boolean" default="false" use="optional"/> </xsd:complexType> <xsd:simpleTy...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
8531d58cb3aec9b83dea9ac9f217a58624234a8aa179f18ad46ab0eb6af91577
9
896
=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType name="CT_SDDescription"> <xsd:attribute name="lang" type="xsd:string" use="optional" default=""/> <xsd:attribute name="val" type="xsd:string" use="required"/> </xsd:complexType> <xsd:complexType na...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
c14fb9107a112d2a5c48cb0d11ca22e53f0e841d50652195027e09234f20ac30
10
896
> <xsd:attribute name="uniqueId" type="xsd:string" use="required"/> <xsd:attribute name="minVer" type="xsd:string" use="optional"/> <xsd:attribute name="resId" type="xsd:int" use="optional" default="0"/> </xsd:complexType> <xsd:element name="styleDefHdr" type="CT_StyleDefinitionHeader"/> <xsd:complexT...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
ca8bb10e03152923a9fd37a42987fb352348e20e3f6c6d80a92f3da995cc8015
11
896
="connDist"/> <xsd:enumeration value="diam"/> <xsd:enumeration value="endMarg"/> <xsd:enumeration value="endPad"/> <xsd:enumeration value="h"/> <xsd:enumeration value="hArH"/> <xsd:enumeration value="hOff"/> <xsd:enumeration value="l"/> <xsd:enumeration value="lMarg"/> ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
15bc15d9ce2901b38a86078500e99bbe2f436f78b445d81e0dcb9c5bb8a05f61
12
896
="ST_ParameterId" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="horzAlign"/> <xsd:enumeration value="vertAlign"/> <xsd:enumeration value="chDir"/> <xsd:enumeration value="chAlign"/> <xsd:enumeration value="secChAlign"/> <xsd:enumeration value="li...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
5510d3e5d3982bfce435540087030f739f9f403af74c82f22bcd5bd9e4b8afd5
13
896
:enumeration value="maxDepth"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_FunctionOperator" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="equ"/> <xsd:enumeration value="neq"/> <xsd:enumeration value="gt"/> <xsd:enumeration value="...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
afb67f5810780344eda80ee19f1fec7188d2862309a4f596731dd9047dda95db
14
896
simpleType name="ST_CenterShapeMapping" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="none"/> <xsd:enumeration value="fNode"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_BendPoint" final="restriction"> <xsd:restriction base="xsd:token"> ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
1c79595e89301e26c41f579a7bb6e9645b5a8fedd4b15e0b867bffcc017547ab
15
896
aft"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_PyramidAccentTextMargin" final="restriction"> <xsd:restriction base="xsd:token"> <xsd:enumeration value="step"/> <xsd:enumeration value="stack"/> </xsd:restriction> </xsd:simpleType> <xsd:simpleType name="ST_TextBlockDi...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
27734f02d97b8da7629ec0dd9985af85a5c637ef7c151a2ec6f802bd778f2b0c
16
896
"/> <xsd:enumeration value="bR"/> <xsd:enumeration value="bCtrCh"/> <xsd:enumeration value="bCtrDes"/> <xsd:enumeration value="lT"/> <xsd:enumeration value="lB"/> <xsd:enumeration value="lCtrCh"/> <xsd:enumeration value="lCtrDes"/> <xsd:enumeration value="rT"/> <xsd...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd
XML Schema
a65c78ddca8c2304a6d9e782d2be841df6c7556a0914eaceaebfbae23219c990
17
426
<?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.openxmlformats.org/drawingml/2006/lockedCanvas" xmlns:a="http://schemas.openxmlformats.org/drawingml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" elem...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd
XML Schema
5cb76dabd8b97d1e9308a1700b90c20139be4d50792d21a7f09789f5cccd6026
0
184
<?xml version="1.0" encoding="utf-8"?> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships" xmlns:s="http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes" xmlns="http://schemas.openxmlformats.org/drawingml/2006/main" ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
878986ab77c8a6caa363abef4b02965570de0e5d6086091e8c3c03214b50b8b9
0
896
" type="CT_VideoFile"/> <xsd:element name="quickTimeFile" type="CT_QuickTimeFile"/> </xsd:choice> </xsd:group> <xsd:element name="videoFile" type="CT_VideoFile"/> <xsd:simpleType name="ST_StyleMatrixColumnIndex"> <xsd:restriction base="xsd:unsignedInt"/> </xsd:simpleType> <xsd:simpleType name="S...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
8ee21fa359c5533f77179315435784c8690cb5e27bcb6946f8404b2822657bac
1
896
/xsd:complexType> <xsd:complexType name="CT_CustomColorList"> <xsd:sequence> <xsd:element name="custClr" type="CT_CustomColor" minOccurs="0" maxOccurs="unbounded"/> </xsd:sequence> </xsd:complexType> <xsd:complexType name="CT_FontCollection"> <xsd:sequence> <xsd:element name="latin" type="...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
f636bd0e0e988f825303bbc37eecf3c0079f5b3bbb00975a7e4d9240ce7b227a
2
896
minOccurs="1" maxOccurs="1"/> <xsd:element name="fontScheme" type="CT_FontScheme" minOccurs="1" maxOccurs="1"/> <xsd:element name="fmtScheme" type="CT_StyleMatrix" minOccurs="1" maxOccurs="1"/> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
05b8f3585010432daf3cb24f3605fd79a10b902befc75c83a08485c117536204
3
896
xsd:complexType> <xsd:simpleType name="ST_FixedPercentage"> <xsd:union memberTypes="ST_FixedPercentageDecimal s:ST_FixedPercentage"/> </xsd:simpleType> <xsd:simpleType name="ST_FixedPercentageDecimal"> <xsd:restriction base="ST_PercentageDecimal"> <xsd:minInclusive value="-100000"/> <xsd:maxIn...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
037de417e6a6d685ec7caedc00431aa2cada9f04ca76e9b96f9fab9cfb05620b
4
896
> <xsd:element name="satMod" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="lum" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="lumOff" type="CT_Percentage" minOccurs="1" maxOccurs="1"/> <xsd:element name="lumMod" type="CT_Percentage" minOccurs="1" m...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
6ebddba3af98c7089dba24849f6020825cb92ee9a129681b2726607412e27c71
5
896
value="activeBorder"/> <xsd:enumeration value="inactiveBorder"/> <xsd:enumeration value="appWorkspace"/> <xsd:enumeration value="highlight"/> <xsd:enumeration value="highlightText"/> <xsd:enumeration value="btnFace"/> <xsd:enumeration value="btnShadow"/> <xsd:enumeration value=...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
c4c825b5a762478c54873fb0a761c56c2a91f2aa380b8aa9322831db812b80e8
6
896
<xsd:enumeration value="cornsilk"/> <xsd:enumeration value="crimson"/> <xsd:enumeration value="cyan"/> <xsd:enumeration value="darkBlue"/> <xsd:enumeration value="darkCyan"/> <xsd:enumeration value="darkGoldenrod"/> <xsd:enumeration value="darkGray"/> <xsd:enumeration value="da...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
f32bc01996878fcc84d4ea414d90539900d657ad206cbd836e8b5d269fb59142
7
896
lightPink"/> <xsd:enumeration value="lightSalmon"/> <xsd:enumeration value="lightSeaGreen"/> <xsd:enumeration value="lightSkyBlue"/> <xsd:enumeration value="lightSlateGray"/> <xsd:enumeration value="lightSlateGrey"/> <xsd:enumeration value="lightSteelBlue"/> <xsd:enumeration va...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
d31644b80674c1b8afd02d25f61d79da205a81889708dfebeed9df3131ca59f8
8
896
enumeration value="seaShell"/> <xsd:enumeration value="sienna"/> <xsd:enumeration value="silver"/> <xsd:enumeration value="skyBlue"/> <xsd:enumeration value="slateBlue"/> <xsd:enumeration value="slateGray"/> <xsd:enumeration value="slateGrey"/> <xsd:enumeration value="snow"/> ...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
c6902b9d9b9204eecb9e2304a5f655bfd315a05ab840130f61c6fe0b7168e323
9
896
attribute name="flipV" type="xsd:boolean" use="optional" default="false"/> </xsd:complexType> <xsd:complexType name="CT_Point3D"> <xsd:attribute name="x" type="ST_Coordinate" use="required"/> <xsd:attribute name="y" type="ST_Coordinate" use="required"/> <xsd:attribute name="z" type="ST_Coordinate" use="...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
1a80ad76958514586ba109fcdd7d888df19bcd56dee63d787c27ed6e07444314
10
896
="auto"/> <xsd:enumeration value="gray"/> <xsd:enumeration value="ltGray"/> <xsd:enumeration value="invGray"/> <xsd:enumeration value="grayWhite"/> <xsd:enumeration value="blackGray"/> <xsd:enumeration value="blackWhite"/> <xsd:enumeration value="black"/> <xsd:enumeration...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
78bb99f438035aae396a539b41bc9f87431cf102527e5a928a44f170020e4199
11
896
boolean" use="optional" default="false"/> </xsd:attributeGroup> <xsd:complexType name="CT_ConnectorLocking"> <xsd:sequence> <xsd:element name="extLst" type="CT_OfficeArtExtensionList" minOccurs="0" maxOccurs="1"/> </xsd:sequence> <xsd:attributeGroup ref="AG_Locking"/> </xsd:complexType> <xsd:c...
jku-assignments
.agents/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd
XML Schema
9488a6a215eb74e5fa2fc58860cad261a134aeeaaa29ef902d585695a980382f
12
896