├── .github └── workflows │ └── rust.yml ├── .gitignore ├── CDM.md ├── CDM.png ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── cli ├── Cargo.toml └── src │ └── main.rs ├── lib ├── Cargo.toml ├── fonts │ ├── DejaVuSansMono-Bold.ttf │ ├── DejaVuSansMono.ttf │ ├── FiraMath-Regular.otf │ ├── IBMPlexSerif-Regular.ttf │ ├── InriaSerif-BoldItalic.ttf │ ├── InriaSerif-Regular.ttf │ ├── LinLibertine_R.ttf │ ├── LinLibertine_RB.ttf │ ├── LinLibertine_RBI.ttf │ ├── LinLibertine_RI.ttf │ ├── Nerd.ttf │ ├── NewCM10-Bold.otf │ ├── NewCM10-Regular.otf │ ├── NewCMMath-Book.otf │ ├── NewCMMath-Regular.otf │ ├── NotoColorEmoji.ttf │ ├── NotoSansArabic-Regular.ttf │ ├── NotoSansSymbols2-Regular.ttf │ ├── NotoSerifCJKsc-Regular.otf │ ├── NotoSerifHebrew-Bold.ttf │ ├── NotoSerifHebrew-Regular.ttf │ ├── PTSans-Regular.ttf │ ├── Roboto-Regular.ttf │ ├── TwitterColorEmoji.ttf │ └── Ubuntu-Regular.ttf ├── src │ ├── core.rs │ ├── csv.rs │ ├── docx.rs │ ├── html.rs │ ├── json.rs │ ├── lib.rs │ ├── markdown.rs │ ├── ods.rs │ ├── pdf.rs │ ├── rtf.rs │ ├── text.rs │ ├── typst.rs │ ├── xls.rs │ ├── xlsx.rs │ └── xml.rs └── test │ └── data │ ├── big_image1.png │ ├── document.docx │ ├── document.json │ ├── document.kdl │ ├── document.md │ ├── document.ods │ ├── document.pdf │ ├── document.rtf │ ├── document.xls │ ├── document.xlsx │ ├── document.xml │ ├── document_docx.xml │ ├── document_from_md.docx │ ├── document_from_md.typ │ ├── document_from_rtf.pdf │ ├── document_from_xml.docx │ ├── document_from_xml.typ │ ├── document_numbered.pdf │ ├── document_xml.xml │ ├── image0.png │ ├── image1.png │ ├── image2.png │ ├── issue_104.html │ ├── picture.png │ ├── small.png │ ├── test.pdf │ ├── test.txt │ └── typst.pdf ├── logo.png ├── logo_big.png ├── server ├── Cargo.toml ├── src │ ├── error.rs │ ├── main.rs │ └── web │ │ ├── mod.rs │ │ ├── routes_files.rs │ │ └── routes_login.rs └── test.zip ├── shiva-wasm ├── Cargo.toml ├── README.md └── src │ ├── lib.rs │ └── utils.rs ├── test ├── Cargo.toml ├── data │ ├── document.docx │ ├── document.md │ ├── document.pdf │ ├── document_xml.xml │ ├── generated.pdf │ ├── generated_hyperlink.pdf │ ├── generated_list.pdf │ ├── image0.png │ ├── image1.png │ └── picture.png ├── image0.png └── src │ ├── html.rs │ └── main.rs └── third_party ├── color-rs ├── .travis.yml ├── AUTHORS ├── Cargo.toml ├── LICENSE ├── README.md └── src │ ├── alpha.rs │ ├── channel.rs │ ├── color_space.rs │ ├── hsl.rs │ ├── hsv.rs │ ├── kmeans.rs │ ├── lab.rs │ ├── lib.rs │ ├── luma.rs │ ├── oklab.rs │ ├── rgb.rs │ ├── xyz.rs │ ├── ycbcr.rs │ └── yxy.rs └── spreadsheet-ods ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── TODO.md ├── benches └── bench.rs ├── changes.md ├── crate.md ├── examples ├── data.ods ├── data2.ods ├── doc_sample.rs ├── formatting.rs ├── negative_number_red.rs ├── read_data.rs └── sheet_features.rs ├── icon.svg ├── src ├── attr_checklist.txt ├── attrmap2.rs ├── cell_.rs ├── condition.rs ├── config.rs ├── defaultstyles.rs ├── draw.rs ├── ds │ ├── detach.rs │ └── mod.rs ├── error.rs ├── format │ ├── builder.rs │ ├── create.rs │ ├── mod.rs │ ├── stylemap.rs │ └── valueformat_checklist.txt ├── formula.rs ├── io │ ├── format.rs │ ├── mod.rs │ ├── parse.rs │ ├── read.rs │ ├── write.rs │ ├── write │ │ └── tests.rs │ └── xmlwriter.rs ├── lib.rs ├── locale │ ├── de_at.rs │ ├── default.rs │ ├── en_us.rs │ └── mod.rs ├── macro_attr_draw.rs ├── macro_attr_fo.rs ├── macro_attr_number.rs ├── macro_attr_style.rs ├── macro_attr_svg.rs ├── macro_attr_table.rs ├── macro_attr_text.rs ├── macro_attr_xlink.rs ├── macro_format.rs ├── macro_style.rs ├── macro_text.rs ├── macro_units.rs ├── manifest.rs ├── metadata.rs ├── refs.rs ├── refs │ ├── format.rs │ ├── parser.rs │ └── tokens │ │ └── nomtokens.rs ├── refs_impl │ └── parser.rs ├── sheet_.rs ├── sheet_ │ └── tests.rs ├── style │ ├── cellstyle.rs │ ├── colstyle.rs │ ├── fontface.rs │ ├── graphicstyle.rs │ ├── masterpage.rs │ ├── mod.rs │ ├── pagestyle.rs │ ├── paragraphstyle.rs │ ├── rowstyle.rs │ ├── ruby.rs │ ├── style_checklist.txt │ ├── stylemap.rs │ ├── tablestyle.rs │ ├── tabstop.rs │ ├── textstyle.rs │ ├── units.rs │ └── units_checklist.txt ├── text.rs ├── text_checklist.txt ├── validation.rs ├── value_.rs ├── workbook_.rs ├── xlink.rs └── xmltree.rs └── tests ├── bench_attrmap.rs ├── bench_fast.md ├── bench_fast.ods ├── bench_fast.rs ├── bench_sample.rs ├── bench_xparse.rs ├── issue1.rs ├── issue6.rs ├── lib_test.rs ├── sizes.rs ├── test_annotation.rs ├── test_config.ods ├── test_config.rs ├── test_core_writing_loop.rs ├── test_default.rs ├── test_defaultstyle.rs ├── test_draw.ods ├── test_draw.rs ├── test_fods.fods ├── test_fods.ods ├── test_fods.rs ├── test_format.rs ├── test_formula.rs ├── test_grouped.rs ├── test_header.rs ├── test_locale.rs ├── test_metadata.rs ├── test_pagelayout.ods ├── test_pagelayout.rs ├── test_read_google.ods ├── test_read_libreoffice.ods ├── test_read_office365.ods ├── test_read_variants.rs ├── test_refs.rs ├── test_sheet.rs ├── test_split_hidden.rs ├── test_style_attr.rs ├── test_text.rs ├── test_validation.rs ├── test_workbook.rs ├── test_write_read.rs ├── test_write_read_1.ods ├── test_write_read_2.ods ├── test_write_read_3.ods └── test_xmltree.rs /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/.gitignore -------------------------------------------------------------------------------- /CDM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/CDM.md -------------------------------------------------------------------------------- /CDM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/CDM.png -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/README.md -------------------------------------------------------------------------------- /cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/cli/Cargo.toml -------------------------------------------------------------------------------- /cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/cli/src/main.rs -------------------------------------------------------------------------------- /lib/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/Cargo.toml -------------------------------------------------------------------------------- /lib/fonts/DejaVuSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/DejaVuSansMono-Bold.ttf -------------------------------------------------------------------------------- /lib/fonts/DejaVuSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/DejaVuSansMono.ttf -------------------------------------------------------------------------------- /lib/fonts/FiraMath-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/FiraMath-Regular.otf -------------------------------------------------------------------------------- /lib/fonts/IBMPlexSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/IBMPlexSerif-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/InriaSerif-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/InriaSerif-BoldItalic.ttf -------------------------------------------------------------------------------- /lib/fonts/InriaSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/InriaSerif-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/LinLibertine_R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/LinLibertine_R.ttf -------------------------------------------------------------------------------- /lib/fonts/LinLibertine_RB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/LinLibertine_RB.ttf -------------------------------------------------------------------------------- /lib/fonts/LinLibertine_RBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/LinLibertine_RBI.ttf -------------------------------------------------------------------------------- /lib/fonts/LinLibertine_RI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/LinLibertine_RI.ttf -------------------------------------------------------------------------------- /lib/fonts/Nerd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/Nerd.ttf -------------------------------------------------------------------------------- /lib/fonts/NewCM10-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NewCM10-Bold.otf -------------------------------------------------------------------------------- /lib/fonts/NewCM10-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NewCM10-Regular.otf -------------------------------------------------------------------------------- /lib/fonts/NewCMMath-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NewCMMath-Book.otf -------------------------------------------------------------------------------- /lib/fonts/NewCMMath-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NewCMMath-Regular.otf -------------------------------------------------------------------------------- /lib/fonts/NotoColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NotoColorEmoji.ttf -------------------------------------------------------------------------------- /lib/fonts/NotoSansArabic-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NotoSansArabic-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/NotoSansSymbols2-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NotoSansSymbols2-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/NotoSerifCJKsc-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NotoSerifCJKsc-Regular.otf -------------------------------------------------------------------------------- /lib/fonts/NotoSerifHebrew-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NotoSerifHebrew-Bold.ttf -------------------------------------------------------------------------------- /lib/fonts/NotoSerifHebrew-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/NotoSerifHebrew-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/PTSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/PTSans-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /lib/fonts/TwitterColorEmoji.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/TwitterColorEmoji.ttf -------------------------------------------------------------------------------- /lib/fonts/Ubuntu-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/fonts/Ubuntu-Regular.ttf -------------------------------------------------------------------------------- /lib/src/core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/core.rs -------------------------------------------------------------------------------- /lib/src/csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/csv.rs -------------------------------------------------------------------------------- /lib/src/docx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/docx.rs -------------------------------------------------------------------------------- /lib/src/html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/html.rs -------------------------------------------------------------------------------- /lib/src/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/json.rs -------------------------------------------------------------------------------- /lib/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/lib.rs -------------------------------------------------------------------------------- /lib/src/markdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/markdown.rs -------------------------------------------------------------------------------- /lib/src/ods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/ods.rs -------------------------------------------------------------------------------- /lib/src/pdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/pdf.rs -------------------------------------------------------------------------------- /lib/src/rtf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/rtf.rs -------------------------------------------------------------------------------- /lib/src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/text.rs -------------------------------------------------------------------------------- /lib/src/typst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/typst.rs -------------------------------------------------------------------------------- /lib/src/xls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/xls.rs -------------------------------------------------------------------------------- /lib/src/xlsx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/xlsx.rs -------------------------------------------------------------------------------- /lib/src/xml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/src/xml.rs -------------------------------------------------------------------------------- /lib/test/data/big_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/big_image1.png -------------------------------------------------------------------------------- /lib/test/data/document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.docx -------------------------------------------------------------------------------- /lib/test/data/document.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.json -------------------------------------------------------------------------------- /lib/test/data/document.kdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.kdl -------------------------------------------------------------------------------- /lib/test/data/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.md -------------------------------------------------------------------------------- /lib/test/data/document.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.ods -------------------------------------------------------------------------------- /lib/test/data/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.pdf -------------------------------------------------------------------------------- /lib/test/data/document.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.rtf -------------------------------------------------------------------------------- /lib/test/data/document.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.xls -------------------------------------------------------------------------------- /lib/test/data/document.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.xlsx -------------------------------------------------------------------------------- /lib/test/data/document.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document.xml -------------------------------------------------------------------------------- /lib/test/data/document_docx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_docx.xml -------------------------------------------------------------------------------- /lib/test/data/document_from_md.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_from_md.docx -------------------------------------------------------------------------------- /lib/test/data/document_from_md.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_from_md.typ -------------------------------------------------------------------------------- /lib/test/data/document_from_rtf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_from_rtf.pdf -------------------------------------------------------------------------------- /lib/test/data/document_from_xml.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_from_xml.docx -------------------------------------------------------------------------------- /lib/test/data/document_from_xml.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_from_xml.typ -------------------------------------------------------------------------------- /lib/test/data/document_numbered.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_numbered.pdf -------------------------------------------------------------------------------- /lib/test/data/document_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/document_xml.xml -------------------------------------------------------------------------------- /lib/test/data/image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/image0.png -------------------------------------------------------------------------------- /lib/test/data/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/image1.png -------------------------------------------------------------------------------- /lib/test/data/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/image2.png -------------------------------------------------------------------------------- /lib/test/data/issue_104.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/issue_104.html -------------------------------------------------------------------------------- /lib/test/data/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/picture.png -------------------------------------------------------------------------------- /lib/test/data/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/small.png -------------------------------------------------------------------------------- /lib/test/data/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/test.pdf -------------------------------------------------------------------------------- /lib/test/data/test.txt: -------------------------------------------------------------------------------- 1 | This is just a simple text file -------------------------------------------------------------------------------- /lib/test/data/typst.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/lib/test/data/typst.pdf -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/logo.png -------------------------------------------------------------------------------- /logo_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/logo_big.png -------------------------------------------------------------------------------- /server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/server/Cargo.toml -------------------------------------------------------------------------------- /server/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/server/src/error.rs -------------------------------------------------------------------------------- /server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/server/src/main.rs -------------------------------------------------------------------------------- /server/src/web/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/server/src/web/mod.rs -------------------------------------------------------------------------------- /server/src/web/routes_files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/server/src/web/routes_files.rs -------------------------------------------------------------------------------- /server/src/web/routes_login.rs: -------------------------------------------------------------------------------- 1 | //TODO: auth logic 2 | -------------------------------------------------------------------------------- /server/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/server/test.zip -------------------------------------------------------------------------------- /shiva-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/shiva-wasm/Cargo.toml -------------------------------------------------------------------------------- /shiva-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/shiva-wasm/README.md -------------------------------------------------------------------------------- /shiva-wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/shiva-wasm/src/lib.rs -------------------------------------------------------------------------------- /shiva-wasm/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/shiva-wasm/src/utils.rs -------------------------------------------------------------------------------- /test/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/Cargo.toml -------------------------------------------------------------------------------- /test/data/document.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/document.docx -------------------------------------------------------------------------------- /test/data/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/document.md -------------------------------------------------------------------------------- /test/data/document.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/document.pdf -------------------------------------------------------------------------------- /test/data/document_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/document_xml.xml -------------------------------------------------------------------------------- /test/data/generated.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/generated.pdf -------------------------------------------------------------------------------- /test/data/generated_hyperlink.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/generated_hyperlink.pdf -------------------------------------------------------------------------------- /test/data/generated_list.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/generated_list.pdf -------------------------------------------------------------------------------- /test/data/image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/image0.png -------------------------------------------------------------------------------- /test/data/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/image1.png -------------------------------------------------------------------------------- /test/data/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/data/picture.png -------------------------------------------------------------------------------- /test/image0.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/src/html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/test/src/html.rs -------------------------------------------------------------------------------- /test/src/main.rs: -------------------------------------------------------------------------------- 1 | mod html; 2 | fn main() -> Result<(), ()> { 3 | Ok(()) 4 | } 5 | -------------------------------------------------------------------------------- /third_party/color-rs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/.travis.yml -------------------------------------------------------------------------------- /third_party/color-rs/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/AUTHORS -------------------------------------------------------------------------------- /third_party/color-rs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/Cargo.toml -------------------------------------------------------------------------------- /third_party/color-rs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/LICENSE -------------------------------------------------------------------------------- /third_party/color-rs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/README.md -------------------------------------------------------------------------------- /third_party/color-rs/src/alpha.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/alpha.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/channel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/channel.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/color_space.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/color_space.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/hsl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/hsl.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/hsv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/hsv.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/kmeans.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/kmeans.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/lab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/lab.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/lib.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/luma.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/luma.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/oklab.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/oklab.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/rgb.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/rgb.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/xyz.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/xyz.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/ycbcr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/ycbcr.rs -------------------------------------------------------------------------------- /third_party/color-rs/src/yxy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/color-rs/src/yxy.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/Cargo.toml -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/LICENSE-APACHE -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/LICENSE-MIT -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/README.md -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/TODO.md -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/benches/bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/benches/bench.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/changes.md -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/crate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/crate.md -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/data.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/data.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/data2.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/data2.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/doc_sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/doc_sample.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/formatting.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/formatting.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/negative_number_red.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/negative_number_red.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/read_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/read_data.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/examples/sheet_features.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/examples/sheet_features.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/icon.svg -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/attr_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/attr_checklist.txt -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/attrmap2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/attrmap2.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/cell_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/cell_.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/condition.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/condition.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/config.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/defaultstyles.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/defaultstyles.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/draw.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/ds/detach.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/ds/detach.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/ds/mod.rs: -------------------------------------------------------------------------------- 1 | pub(crate) mod detach; 2 | -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/error.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/format/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/format/builder.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/format/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/format/create.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/format/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/format/mod.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/format/stylemap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/format/stylemap.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/format/valueformat_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/format/valueformat_checklist.txt -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/formula.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/formula.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/format.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/mod.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/parse.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/read.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/write.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/write/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/write/tests.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/io/xmlwriter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/io/xmlwriter.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/lib.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/locale/de_at.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/locale/de_at.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/locale/default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/locale/default.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/locale/en_us.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/locale/en_us.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/locale/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/locale/mod.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_draw.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_fo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_fo.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_number.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_style.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_svg.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_table.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_text.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_attr_xlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_attr_xlink.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_format.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_style.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_style.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_text.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/macro_units.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/macro_units.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/manifest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/manifest.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/metadata.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/refs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/refs.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/refs/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/refs/format.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/refs/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/refs/parser.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/refs/tokens/nomtokens.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/refs/tokens/nomtokens.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/refs_impl/parser.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/sheet_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/sheet_.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/sheet_/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/sheet_/tests.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/cellstyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/cellstyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/colstyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/colstyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/fontface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/fontface.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/graphicstyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/graphicstyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/masterpage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/masterpage.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/mod.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/pagestyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/pagestyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/paragraphstyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/paragraphstyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/rowstyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/rowstyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/ruby.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/ruby.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/style_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/style_checklist.txt -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/stylemap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/stylemap.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/tablestyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/tablestyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/tabstop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/tabstop.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/textstyle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/textstyle.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/units.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/units.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/style/units_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/style/units_checklist.txt -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/text.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/text_checklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/text_checklist.txt -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/validation.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/value_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/value_.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/workbook_.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/workbook_.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/xlink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/xlink.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/src/xmltree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/src/xmltree.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/bench_attrmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/bench_attrmap.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/bench_fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/bench_fast.md -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/bench_fast.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/bench_fast.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/bench_fast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/bench_fast.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/bench_sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/bench_sample.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/bench_xparse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/bench_xparse.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/issue1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/issue1.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/issue6.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/issue6.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/lib_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/lib_test.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/sizes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/sizes.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_annotation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_annotation.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_config.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_config.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_config.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_core_writing_loop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_core_writing_loop.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_default.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_default.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_defaultstyle.rs: -------------------------------------------------------------------------------- 1 | // ? what to test here 2 | -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_draw.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_draw.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_draw.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_fods.fods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_fods.fods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_fods.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_fods.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_fods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_fods.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_format.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_formula.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_grouped.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_grouped.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_header.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_header.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_locale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_locale.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_metadata.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_metadata.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_pagelayout.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_pagelayout.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_pagelayout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_pagelayout.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_read_google.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_read_google.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_read_libreoffice.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_read_libreoffice.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_read_office365.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_read_office365.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_read_variants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_read_variants.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_refs.rs: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_sheet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_sheet.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_split_hidden.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_split_hidden.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_style_attr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_style_attr.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_text.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_validation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_validation.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_workbook.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_workbook.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_write_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_write_read.rs -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_write_read_1.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_write_read_1.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_write_read_2.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_write_read_2.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_write_read_3.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_write_read_3.ods -------------------------------------------------------------------------------- /third_party/spreadsheet-ods/tests/test_xmltree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igumnoff/shiva/HEAD/third_party/spreadsheet-ods/tests/test_xmltree.rs --------------------------------------------------------------------------------