├── .gitignore ├── .ruby-version ├── CHANGELOG.md ├── Gemfile ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── _config.yml ├── _includes └── toc.html ├── _layouts └── default.html ├── assets ├── css │ ├── bo-ghp.css │ ├── side-menu.css │ └── style.css ├── img │ ├── info-box-icon.png │ └── info-box-icon_small.png └── js │ └── ui.js ├── bin ├── include_markdown.rb └── pdf2png.workflow │ └── Contents │ ├── Info.plist │ ├── QuickLook │ └── Preview.png │ └── document.wflow ├── handreichung_opendata.md ├── handreichung_opendata.pdf ├── images ├── B_RBm_Skzl_Logo_DE_V_PW_RGB.png ├── datenrubrik-01.png ├── datenrubrik-dokument-erzeugen.png ├── datenrubrik-hochladen.png ├── datenrubrik-startseite.png ├── datenrubrik-verlinkung.png ├── datensaetze_vornamen.png ├── eu_efre_zusatz_unten.png ├── format-example-tree.pdf ├── format-example-tree.png ├── format-example-tree_lor2021.graffle │ ├── data.plist │ └── image1.pdf ├── format-example-tree_lor2021.pdf ├── format-example-tree_lor2021.png ├── hvd_category_eingabe.png ├── metadaten_daten.pdf ├── metadaten_daten.png ├── musterdatensatz_beispiel.png ├── musterdatensatz_datenportal.png ├── musterdatensatz_eingabe.png ├── offene_daten_uebersicht.pdf ├── offene_daten_uebersicht.png ├── opendata-sise-imperia.png ├── output_datenrubrik.pdf ├── output_datenrubrik.png ├── output_simplesearch.pdf ├── output_simplesearch.png ├── personenbezug_eingabe.png ├── schritt-für-schritt.pdf ├── schritt-für-schritt.png ├── screenshot_dashboard.png ├── screenshot_einloggen.png ├── screenshot_follow_category.png ├── screenshot_menue.png ├── screenshot_neuer_datensatz.png ├── screenshot_pw_zuruecksetzen.png ├── screenshot_pw_zuruecksetzen_anfordern.png ├── screenshot_ressource_hinzufügen.png ├── screenshot_user_profile.png ├── senod-logo.png ├── title.png ├── vera_musterer_avatar.png ├── veroeffentlichungsweg_waehlen.pdf ├── veroeffentlichungsweg_waehlen.png ├── veroeffentlichungsweg_waehlen_90.png └── xkcd_iso_8601.png ├── index.md ├── parts ├── bildverzeichnis.gfm ├── bildverzeichnis.pandoc ├── box_prefix.gfm ├── box_prefix.pandoc ├── box_suffix.gfm ├── box_suffix.pandoc ├── example_tabular_data.gfm ├── example_tabular_data.pandoc ├── grafik_veroeffentlichungsweg.gfm ├── grafik_veroeffentlichungsweg.pandoc ├── grusswort.md ├── latex_impressum.template.md ├── latex_preamble.md ├── pages_impressum.template.md ├── pages_title.md └── simplesearch-api.md ├── simplesearch-api └── index.md └── template ├── default.latex ├── listings-setup.tex └── metadata_yml.template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.3.6 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/RELEASE.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/_includes/toc.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /assets/css/bo-ghp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/assets/css/bo-ghp.css -------------------------------------------------------------------------------- /assets/css/side-menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/assets/css/side-menu.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/img/info-box-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/assets/img/info-box-icon.png -------------------------------------------------------------------------------- /assets/img/info-box-icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/assets/img/info-box-icon_small.png -------------------------------------------------------------------------------- /assets/js/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/assets/js/ui.js -------------------------------------------------------------------------------- /bin/include_markdown.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/bin/include_markdown.rb -------------------------------------------------------------------------------- /bin/pdf2png.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/bin/pdf2png.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /bin/pdf2png.workflow/Contents/QuickLook/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/bin/pdf2png.workflow/Contents/QuickLook/Preview.png -------------------------------------------------------------------------------- /bin/pdf2png.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/bin/pdf2png.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /handreichung_opendata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/handreichung_opendata.md -------------------------------------------------------------------------------- /handreichung_opendata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/handreichung_opendata.pdf -------------------------------------------------------------------------------- /images/B_RBm_Skzl_Logo_DE_V_PW_RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/B_RBm_Skzl_Logo_DE_V_PW_RGB.png -------------------------------------------------------------------------------- /images/datenrubrik-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/datenrubrik-01.png -------------------------------------------------------------------------------- /images/datenrubrik-dokument-erzeugen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/datenrubrik-dokument-erzeugen.png -------------------------------------------------------------------------------- /images/datenrubrik-hochladen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/datenrubrik-hochladen.png -------------------------------------------------------------------------------- /images/datenrubrik-startseite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/datenrubrik-startseite.png -------------------------------------------------------------------------------- /images/datenrubrik-verlinkung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/datenrubrik-verlinkung.png -------------------------------------------------------------------------------- /images/datensaetze_vornamen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/datensaetze_vornamen.png -------------------------------------------------------------------------------- /images/eu_efre_zusatz_unten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/eu_efre_zusatz_unten.png -------------------------------------------------------------------------------- /images/format-example-tree.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/format-example-tree.pdf -------------------------------------------------------------------------------- /images/format-example-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/format-example-tree.png -------------------------------------------------------------------------------- /images/format-example-tree_lor2021.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/format-example-tree_lor2021.graffle/data.plist -------------------------------------------------------------------------------- /images/format-example-tree_lor2021.graffle/image1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/format-example-tree_lor2021.graffle/image1.pdf -------------------------------------------------------------------------------- /images/format-example-tree_lor2021.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/format-example-tree_lor2021.pdf -------------------------------------------------------------------------------- /images/format-example-tree_lor2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/format-example-tree_lor2021.png -------------------------------------------------------------------------------- /images/hvd_category_eingabe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/hvd_category_eingabe.png -------------------------------------------------------------------------------- /images/metadaten_daten.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/metadaten_daten.pdf -------------------------------------------------------------------------------- /images/metadaten_daten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/metadaten_daten.png -------------------------------------------------------------------------------- /images/musterdatensatz_beispiel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/musterdatensatz_beispiel.png -------------------------------------------------------------------------------- /images/musterdatensatz_datenportal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/musterdatensatz_datenportal.png -------------------------------------------------------------------------------- /images/musterdatensatz_eingabe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/musterdatensatz_eingabe.png -------------------------------------------------------------------------------- /images/offene_daten_uebersicht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/offene_daten_uebersicht.pdf -------------------------------------------------------------------------------- /images/offene_daten_uebersicht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/offene_daten_uebersicht.png -------------------------------------------------------------------------------- /images/opendata-sise-imperia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/opendata-sise-imperia.png -------------------------------------------------------------------------------- /images/output_datenrubrik.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/output_datenrubrik.pdf -------------------------------------------------------------------------------- /images/output_datenrubrik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/output_datenrubrik.png -------------------------------------------------------------------------------- /images/output_simplesearch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/output_simplesearch.pdf -------------------------------------------------------------------------------- /images/output_simplesearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/output_simplesearch.png -------------------------------------------------------------------------------- /images/personenbezug_eingabe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/personenbezug_eingabe.png -------------------------------------------------------------------------------- /images/schritt-für-schritt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/schritt-für-schritt.pdf -------------------------------------------------------------------------------- /images/schritt-für-schritt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/schritt-für-schritt.png -------------------------------------------------------------------------------- /images/screenshot_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_dashboard.png -------------------------------------------------------------------------------- /images/screenshot_einloggen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_einloggen.png -------------------------------------------------------------------------------- /images/screenshot_follow_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_follow_category.png -------------------------------------------------------------------------------- /images/screenshot_menue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_menue.png -------------------------------------------------------------------------------- /images/screenshot_neuer_datensatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_neuer_datensatz.png -------------------------------------------------------------------------------- /images/screenshot_pw_zuruecksetzen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_pw_zuruecksetzen.png -------------------------------------------------------------------------------- /images/screenshot_pw_zuruecksetzen_anfordern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_pw_zuruecksetzen_anfordern.png -------------------------------------------------------------------------------- /images/screenshot_ressource_hinzufügen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_ressource_hinzufügen.png -------------------------------------------------------------------------------- /images/screenshot_user_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/screenshot_user_profile.png -------------------------------------------------------------------------------- /images/senod-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/senod-logo.png -------------------------------------------------------------------------------- /images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/title.png -------------------------------------------------------------------------------- /images/vera_musterer_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/vera_musterer_avatar.png -------------------------------------------------------------------------------- /images/veroeffentlichungsweg_waehlen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/veroeffentlichungsweg_waehlen.pdf -------------------------------------------------------------------------------- /images/veroeffentlichungsweg_waehlen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/veroeffentlichungsweg_waehlen.png -------------------------------------------------------------------------------- /images/veroeffentlichungsweg_waehlen_90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/veroeffentlichungsweg_waehlen_90.png -------------------------------------------------------------------------------- /images/xkcd_iso_8601.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/images/xkcd_iso_8601.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/index.md -------------------------------------------------------------------------------- /parts/bildverzeichnis.gfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/bildverzeichnis.gfm -------------------------------------------------------------------------------- /parts/bildverzeichnis.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/bildverzeichnis.pandoc -------------------------------------------------------------------------------- /parts/box_prefix.gfm: -------------------------------------------------------------------------------- 1 | {::options parse_block_html="true" /} 2 |
-------------------------------------------------------------------------------- /parts/box_prefix.pandoc: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | -------------------------------------------------------------------------------- /parts/box_suffix.gfm: -------------------------------------------------------------------------------- 1 |
2 | {::options parse_block_html="false" /} -------------------------------------------------------------------------------- /parts/box_suffix.pandoc: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | 4 | -------------------------------------------------------------------------------- /parts/example_tabular_data.gfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/example_tabular_data.gfm -------------------------------------------------------------------------------- /parts/example_tabular_data.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/example_tabular_data.pandoc -------------------------------------------------------------------------------- /parts/grafik_veroeffentlichungsweg.gfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/grafik_veroeffentlichungsweg.gfm -------------------------------------------------------------------------------- /parts/grafik_veroeffentlichungsweg.pandoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/grafik_veroeffentlichungsweg.pandoc -------------------------------------------------------------------------------- /parts/grusswort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/grusswort.md -------------------------------------------------------------------------------- /parts/latex_impressum.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/latex_impressum.template.md -------------------------------------------------------------------------------- /parts/latex_preamble.md: -------------------------------------------------------------------------------- 1 | \pagenumbering{arabic} 2 | \setcounter{page}{1} 3 | 4 | -------------------------------------------------------------------------------- /parts/pages_impressum.template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/pages_impressum.template.md -------------------------------------------------------------------------------- /parts/pages_title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/pages_title.md -------------------------------------------------------------------------------- /parts/simplesearch-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/parts/simplesearch-api.md -------------------------------------------------------------------------------- /simplesearch-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/simplesearch-api/index.md -------------------------------------------------------------------------------- /template/default.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/template/default.latex -------------------------------------------------------------------------------- /template/listings-setup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/template/listings-setup.tex -------------------------------------------------------------------------------- /template/metadata_yml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/berlinonline/open-data-handbuch/HEAD/template/metadata_yml.template --------------------------------------------------------------------------------