├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── api ├── index.php ├── openapi.yaml └── v1 │ ├── .htaccess │ ├── api.php │ ├── config.php │ ├── index.php │ └── modules │ ├── agendaItem.php │ ├── autocomplete.php │ ├── conflict.php │ ├── document.php │ ├── electoralPeriod.php │ ├── entitySuggestion.php │ ├── media.php │ ├── organisation.php │ ├── person.php │ ├── searchIndex.php │ ├── session.php │ ├── statistics.php │ ├── status.php │ ├── term.php │ └── user.php ├── composer.json ├── composer.lock ├── config.sample.php ├── content ├── client │ ├── FrameTrail.css │ ├── FrameTrail.js │ ├── FrameTrail.min.css │ ├── FrameTrail.min.js │ ├── css │ │ ├── bootstrap-table.min.css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── frametrail-webfont.css │ │ └── style.css │ ├── fonts │ │ ├── FrameTrail_Web │ │ │ ├── LICENSE.txt │ │ │ ├── frametrail-webfont.eot │ │ │ ├── frametrail-webfont.svg │ │ │ ├── frametrail-webfont.ttf │ │ │ ├── frametrail-webfont.woff │ │ │ └── frametrail-webfont.woff2 │ │ ├── LICENSE.txt │ │ ├── OpenSans-Light.ttf │ │ ├── OpenSans-Regular.ttf │ │ ├── OpenSans-SemiBold.ttf │ │ ├── Titillium_Web │ │ │ ├── OFL.txt │ │ │ ├── TitilliumWeb-Bold.ttf │ │ │ ├── TitilliumWeb-Light.ttf │ │ │ └── TitilliumWeb-Regular.ttf │ │ ├── awfont.eot │ │ ├── awfont.svg │ │ ├── awfont.ttf │ │ └── awfont.woff │ ├── images │ │ ├── android-chrome-192x192.png │ │ ├── apple-touch-icon.png │ │ ├── arrow.png │ │ ├── aw_share_image_default.jpg │ │ ├── bg.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── logos │ │ │ ├── abgeordnetenwatch-sm.png │ │ │ ├── abgeordnetenwatch-sw.png │ │ │ ├── abgeordnetenwatch.png │ │ │ ├── bbc-news-labs.png │ │ │ ├── bbc-news-labs.svg │ │ │ ├── bmbf-de.svg │ │ │ ├── bmbf-en.svg │ │ │ ├── bmfsfj-dl.png │ │ │ ├── cct.png │ │ │ ├── correctiv.svg │ │ │ ├── demokratie-io.png │ │ │ ├── dsee.svg │ │ │ ├── mitwirken.png │ │ │ ├── miz-logo.png │ │ │ ├── okfde.svg │ │ │ ├── prototypefund.png │ │ │ ├── robert-bosch-stiftung.png │ │ │ ├── wikidata-sm.png │ │ │ ├── wikipedia.svg │ │ │ └── zeit-online.png │ │ ├── mstile-150x150.png │ │ ├── optv-logo.png │ │ ├── optv-logo_klein.png │ │ ├── press-kit │ │ │ ├── Open-Parliament-TV-Logo.png │ │ │ ├── Open-Parliament-TV-Logo_box.png │ │ │ ├── Open-Parliament-TV-Logo_small.png │ │ │ ├── Open-Parliament-TV-Screenshot-1.png │ │ │ ├── Open-Parliament-TV-Screenshot-2.png │ │ │ ├── Open-Parliament-TV-Screenshot-3.png │ │ │ ├── Open-Parliament-TV-Screenshot-4.png │ │ │ ├── Open-Parliament-TV-Screenshot-5.png │ │ │ └── Open-Parliament-TV-Screenshot-6.png │ │ ├── safari-pinned-tab.svg │ │ ├── share-image.php │ │ ├── site-image.php │ │ ├── site.webmanifest │ │ ├── team │ │ │ ├── alexa.jpg │ │ │ ├── joscha.jpg │ │ │ ├── michael.jpg │ │ │ ├── olivier.jpg │ │ │ └── philo.jpg │ │ └── thumbnail.png │ └── js │ │ ├── bootstrap-table-de-DE.js │ │ ├── bootstrap-table-en-US.js │ │ ├── bootstrap-table-export.min.js │ │ ├── bootstrap-table.min.js │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── d3.min.js │ │ ├── generic.js │ │ ├── jquery-3.4.1.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.form.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── searchResults.js │ │ ├── shim.min.js │ │ ├── tableExport.js │ │ ├── timeline.js │ │ └── xlsx.full.min.js ├── components │ ├── entity.data.php │ ├── entity.form.php │ ├── entity.links.php │ ├── entity.preview.ads.php │ ├── entity.preview.php │ ├── entity.preview.small.php │ ├── metadata.php │ ├── result.grid.item.php │ ├── result.grid.php │ ├── result.pagination.php │ ├── result.table.item.php │ ├── result.table.php │ ├── search.filter.parliaments.php │ └── search.filterbar.php ├── footer.php ├── head.php ├── header.php └── pages │ ├── 404 │ └── page.php │ ├── about │ ├── page_de.php │ ├── page_en.php │ ├── page_fr.php │ └── page_tr.php │ ├── agendaItem │ └── page.php │ ├── api │ ├── client │ │ ├── apiResult.js │ │ ├── atom-one-dark.min.css │ │ ├── atom-one-light.min.css │ │ ├── dark.min.css │ │ ├── default.min.css │ │ ├── highlight.min.js │ │ ├── jquery.json-view.min.css │ │ └── jquery.json-view.min.js │ ├── page_de.php │ └── page_en.php │ ├── datapolicy │ ├── page_de.php │ ├── page_en.php │ ├── page_fr.php │ └── page_tr.php │ ├── document │ └── page.php │ ├── electoralPeriod │ └── page.php │ ├── embed │ └── entity │ │ └── page.php │ ├── imprint │ ├── page_de.php │ ├── page_en.php │ ├── page_fr.php │ └── page_tr.php │ ├── login │ └── page.php │ ├── logout │ └── page.php │ ├── manage │ ├── conflicts │ │ ├── conflict-detail │ │ │ ├── client │ │ │ │ └── style.css │ │ │ ├── content.media.php │ │ │ └── page.php │ │ └── page.php │ ├── entities │ │ ├── document-detail │ │ │ └── page.php │ │ ├── organisation-detail │ │ │ └── page.php │ │ ├── page.php │ │ ├── person-detail │ │ │ └── page.php │ │ └── term-detail │ │ │ └── page.php │ ├── entitySuggestions │ │ └── page.php │ ├── import │ │ └── page.php │ ├── media │ │ ├── media-detail │ │ │ └── page.php │ │ └── page.php │ ├── notifications │ │ └── page.php │ ├── page.php │ ├── settings │ │ └── page.php │ ├── sidebar.php │ ├── structure │ │ ├── agendaItem-detail │ │ │ └── page.php │ │ ├── electoralPeriod-detail │ │ │ └── page.php │ │ ├── page.php │ │ └── session-detail │ │ │ └── page.php │ └── users │ │ ├── page.php │ │ └── user-detail │ │ └── page.php │ ├── media │ ├── client │ │ ├── player.css │ │ ├── player.js │ │ ├── share-this.js │ │ ├── shareQuote.css │ │ └── shareQuote.js │ ├── content.player.php │ ├── page.php │ └── panel.related.php │ ├── organisation │ └── page.php │ ├── passwordreset │ └── page.php │ ├── person │ └── page.php │ ├── press │ └── page.php │ ├── register │ └── page.php │ ├── registerconfirm │ ├── client │ │ └── registerconfirm.functions.js │ └── page.php │ ├── search │ ├── client │ │ └── search.js │ └── page.php │ ├── session │ └── page.php │ ├── statistics │ └── page.php │ └── term │ └── page.php ├── data ├── cronAdditionalDataService.php ├── cronUpdater.php ├── done │ └── .gitkeep ├── entity-dump │ ├── function.entityDump.php │ └── index.php ├── input │ └── .gitkeep ├── ner-matching.php ├── updateEntityFromService.php └── updateFilesFromGit.php ├── favicon.ico ├── i18n.class.php ├── index.php ├── lang ├── lang_de.json ├── lang_en.json ├── lang_fr.json └── lang_tr.json ├── langcache └── .gitkeep ├── modules ├── alignment │ ├── functions.php │ └── importAlignmentOutput.php ├── image-quote │ ├── OpenSans-Light.ttf │ ├── OpenSans-Regular.ttf │ ├── OpenSans-SemiBold.ttf │ ├── TitilliumWeb-Bold.ttf │ ├── TitilliumWeb-Light.ttf │ ├── TitilliumWeb-Regular.ttf │ ├── functions.php │ ├── gd-text.php │ └── optv-logo.png ├── media │ ├── functions.php │ └── include.media.php ├── pdf-viewer │ ├── LICENSE │ ├── build │ │ ├── pdf.js │ │ ├── pdf.js.map │ │ ├── pdf.sandbox.js │ │ ├── pdf.sandbox.js.map │ │ ├── pdf.worker.js │ │ └── pdf.worker.js.map │ └── web │ │ ├── cmaps │ │ ├── 78-EUC-H.bcmap │ │ ├── 78-EUC-V.bcmap │ │ ├── 78-H.bcmap │ │ ├── 78-RKSJ-H.bcmap │ │ ├── 78-RKSJ-V.bcmap │ │ ├── 78-V.bcmap │ │ ├── 78ms-RKSJ-H.bcmap │ │ ├── 78ms-RKSJ-V.bcmap │ │ ├── 83pv-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-H.bcmap │ │ ├── 90ms-RKSJ-V.bcmap │ │ ├── 90msp-RKSJ-H.bcmap │ │ ├── 90msp-RKSJ-V.bcmap │ │ ├── 90pv-RKSJ-H.bcmap │ │ ├── 90pv-RKSJ-V.bcmap │ │ ├── Add-H.bcmap │ │ ├── Add-RKSJ-H.bcmap │ │ ├── Add-RKSJ-V.bcmap │ │ ├── Add-V.bcmap │ │ ├── Adobe-CNS1-0.bcmap │ │ ├── Adobe-CNS1-1.bcmap │ │ ├── Adobe-CNS1-2.bcmap │ │ ├── Adobe-CNS1-3.bcmap │ │ ├── Adobe-CNS1-4.bcmap │ │ ├── Adobe-CNS1-5.bcmap │ │ ├── Adobe-CNS1-6.bcmap │ │ ├── Adobe-CNS1-UCS2.bcmap │ │ ├── Adobe-GB1-0.bcmap │ │ ├── Adobe-GB1-1.bcmap │ │ ├── Adobe-GB1-2.bcmap │ │ ├── Adobe-GB1-3.bcmap │ │ ├── Adobe-GB1-4.bcmap │ │ ├── Adobe-GB1-5.bcmap │ │ ├── Adobe-GB1-UCS2.bcmap │ │ ├── Adobe-Japan1-0.bcmap │ │ ├── Adobe-Japan1-1.bcmap │ │ ├── Adobe-Japan1-2.bcmap │ │ ├── Adobe-Japan1-3.bcmap │ │ ├── Adobe-Japan1-4.bcmap │ │ ├── Adobe-Japan1-5.bcmap │ │ ├── Adobe-Japan1-6.bcmap │ │ ├── Adobe-Japan1-UCS2.bcmap │ │ ├── Adobe-Korea1-0.bcmap │ │ ├── Adobe-Korea1-1.bcmap │ │ ├── Adobe-Korea1-2.bcmap │ │ ├── Adobe-Korea1-UCS2.bcmap │ │ ├── B5-H.bcmap │ │ ├── B5-V.bcmap │ │ ├── B5pc-H.bcmap │ │ ├── B5pc-V.bcmap │ │ ├── CNS-EUC-H.bcmap │ │ ├── CNS-EUC-V.bcmap │ │ ├── CNS1-H.bcmap │ │ ├── CNS1-V.bcmap │ │ ├── CNS2-H.bcmap │ │ ├── CNS2-V.bcmap │ │ ├── ETHK-B5-H.bcmap │ │ ├── ETHK-B5-V.bcmap │ │ ├── ETen-B5-H.bcmap │ │ ├── ETen-B5-V.bcmap │ │ ├── ETenms-B5-H.bcmap │ │ ├── ETenms-B5-V.bcmap │ │ ├── EUC-H.bcmap │ │ ├── EUC-V.bcmap │ │ ├── Ext-H.bcmap │ │ ├── Ext-RKSJ-H.bcmap │ │ ├── Ext-RKSJ-V.bcmap │ │ ├── Ext-V.bcmap │ │ ├── GB-EUC-H.bcmap │ │ ├── GB-EUC-V.bcmap │ │ ├── GB-H.bcmap │ │ ├── GB-V.bcmap │ │ ├── GBK-EUC-H.bcmap │ │ ├── GBK-EUC-V.bcmap │ │ ├── GBK2K-H.bcmap │ │ ├── GBK2K-V.bcmap │ │ ├── GBKp-EUC-H.bcmap │ │ ├── GBKp-EUC-V.bcmap │ │ ├── GBT-EUC-H.bcmap │ │ ├── GBT-EUC-V.bcmap │ │ ├── GBT-H.bcmap │ │ ├── GBT-V.bcmap │ │ ├── GBTpc-EUC-H.bcmap │ │ ├── GBTpc-EUC-V.bcmap │ │ ├── GBpc-EUC-H.bcmap │ │ ├── GBpc-EUC-V.bcmap │ │ ├── H.bcmap │ │ ├── HKdla-B5-H.bcmap │ │ ├── HKdla-B5-V.bcmap │ │ ├── HKdlb-B5-H.bcmap │ │ ├── HKdlb-B5-V.bcmap │ │ ├── HKgccs-B5-H.bcmap │ │ ├── HKgccs-B5-V.bcmap │ │ ├── HKm314-B5-H.bcmap │ │ ├── HKm314-B5-V.bcmap │ │ ├── HKm471-B5-H.bcmap │ │ ├── HKm471-B5-V.bcmap │ │ ├── HKscs-B5-H.bcmap │ │ ├── HKscs-B5-V.bcmap │ │ ├── Hankaku.bcmap │ │ ├── Hiragana.bcmap │ │ ├── KSC-EUC-H.bcmap │ │ ├── KSC-EUC-V.bcmap │ │ ├── KSC-H.bcmap │ │ ├── KSC-Johab-H.bcmap │ │ ├── KSC-Johab-V.bcmap │ │ ├── KSC-V.bcmap │ │ ├── KSCms-UHC-H.bcmap │ │ ├── KSCms-UHC-HW-H.bcmap │ │ ├── KSCms-UHC-HW-V.bcmap │ │ ├── KSCms-UHC-V.bcmap │ │ ├── KSCpc-EUC-H.bcmap │ │ ├── KSCpc-EUC-V.bcmap │ │ ├── Katakana.bcmap │ │ ├── LICENSE │ │ ├── NWP-H.bcmap │ │ ├── NWP-V.bcmap │ │ ├── RKSJ-H.bcmap │ │ ├── RKSJ-V.bcmap │ │ ├── Roman.bcmap │ │ ├── UniCNS-UCS2-H.bcmap │ │ ├── UniCNS-UCS2-V.bcmap │ │ ├── UniCNS-UTF16-H.bcmap │ │ ├── UniCNS-UTF16-V.bcmap │ │ ├── UniCNS-UTF32-H.bcmap │ │ ├── UniCNS-UTF32-V.bcmap │ │ ├── UniCNS-UTF8-H.bcmap │ │ ├── UniCNS-UTF8-V.bcmap │ │ ├── UniGB-UCS2-H.bcmap │ │ ├── UniGB-UCS2-V.bcmap │ │ ├── UniGB-UTF16-H.bcmap │ │ ├── UniGB-UTF16-V.bcmap │ │ ├── UniGB-UTF32-H.bcmap │ │ ├── UniGB-UTF32-V.bcmap │ │ ├── UniGB-UTF8-H.bcmap │ │ ├── UniGB-UTF8-V.bcmap │ │ ├── UniJIS-UCS2-H.bcmap │ │ ├── UniJIS-UCS2-HW-H.bcmap │ │ ├── UniJIS-UCS2-HW-V.bcmap │ │ ├── UniJIS-UCS2-V.bcmap │ │ ├── UniJIS-UTF16-H.bcmap │ │ ├── UniJIS-UTF16-V.bcmap │ │ ├── UniJIS-UTF32-H.bcmap │ │ ├── UniJIS-UTF32-V.bcmap │ │ ├── UniJIS-UTF8-H.bcmap │ │ ├── UniJIS-UTF8-V.bcmap │ │ ├── UniJIS2004-UTF16-H.bcmap │ │ ├── UniJIS2004-UTF16-V.bcmap │ │ ├── UniJIS2004-UTF32-H.bcmap │ │ ├── UniJIS2004-UTF32-V.bcmap │ │ ├── UniJIS2004-UTF8-H.bcmap │ │ ├── UniJIS2004-UTF8-V.bcmap │ │ ├── UniJISPro-UCS2-HW-V.bcmap │ │ ├── UniJISPro-UCS2-V.bcmap │ │ ├── UniJISPro-UTF8-V.bcmap │ │ ├── UniJISX0213-UTF32-H.bcmap │ │ ├── UniJISX0213-UTF32-V.bcmap │ │ ├── UniJISX02132004-UTF32-H.bcmap │ │ ├── UniJISX02132004-UTF32-V.bcmap │ │ ├── UniKS-UCS2-H.bcmap │ │ ├── UniKS-UCS2-V.bcmap │ │ ├── UniKS-UTF16-H.bcmap │ │ ├── UniKS-UTF16-V.bcmap │ │ ├── UniKS-UTF32-H.bcmap │ │ ├── UniKS-UTF32-V.bcmap │ │ ├── UniKS-UTF8-H.bcmap │ │ ├── UniKS-UTF8-V.bcmap │ │ ├── V.bcmap │ │ └── WP-Symbol.bcmap │ │ ├── compressed.tracemonkey-pldi-09.pdf │ │ ├── debugger.js │ │ ├── images │ │ ├── annotation-check.svg │ │ ├── annotation-comment.svg │ │ ├── annotation-help.svg │ │ ├── annotation-insert.svg │ │ ├── annotation-key.svg │ │ ├── annotation-newparagraph.svg │ │ ├── annotation-noicon.svg │ │ ├── annotation-note.svg │ │ ├── annotation-paragraph.svg │ │ ├── findbarButton-next.svg │ │ ├── findbarButton-previous.svg │ │ ├── grab.cur │ │ ├── grabbing.cur │ │ ├── loading-dark.svg │ │ ├── loading-icon.gif │ │ ├── loading.svg │ │ ├── secondaryToolbarButton-documentProperties.svg │ │ ├── secondaryToolbarButton-firstPage.svg │ │ ├── secondaryToolbarButton-handTool.svg │ │ ├── secondaryToolbarButton-lastPage.svg │ │ ├── secondaryToolbarButton-rotateCcw.svg │ │ ├── secondaryToolbarButton-rotateCw.svg │ │ ├── secondaryToolbarButton-scrollHorizontal.svg │ │ ├── secondaryToolbarButton-scrollVertical.svg │ │ ├── secondaryToolbarButton-scrollWrapped.svg │ │ ├── secondaryToolbarButton-selectTool.svg │ │ ├── secondaryToolbarButton-spreadEven.svg │ │ ├── secondaryToolbarButton-spreadNone.svg │ │ ├── secondaryToolbarButton-spreadOdd.svg │ │ ├── shadow.png │ │ ├── toolbarButton-bookmark.svg │ │ ├── toolbarButton-currentOutlineItem.svg │ │ ├── toolbarButton-download.svg │ │ ├── toolbarButton-menuArrow.svg │ │ ├── toolbarButton-openFile.svg │ │ ├── toolbarButton-pageDown.svg │ │ ├── toolbarButton-pageUp.svg │ │ ├── toolbarButton-presentationMode.svg │ │ ├── toolbarButton-print.svg │ │ ├── toolbarButton-search.svg │ │ ├── toolbarButton-secondaryToolbarToggle.svg │ │ ├── toolbarButton-sidebarToggle.svg │ │ ├── toolbarButton-viewAttachments.svg │ │ ├── toolbarButton-viewLayers.svg │ │ ├── toolbarButton-viewOutline.svg │ │ ├── toolbarButton-viewThumbnail.svg │ │ ├── toolbarButton-zoomIn.svg │ │ ├── toolbarButton-zoomOut.svg │ │ ├── treeitem-collapsed.svg │ │ └── treeitem-expanded.svg │ │ ├── locale │ │ ├── ach │ │ │ └── viewer.properties │ │ ├── af │ │ │ └── viewer.properties │ │ ├── an │ │ │ └── viewer.properties │ │ ├── ar │ │ │ └── viewer.properties │ │ ├── ast │ │ │ └── viewer.properties │ │ ├── az │ │ │ └── viewer.properties │ │ ├── be │ │ │ └── viewer.properties │ │ ├── bg │ │ │ └── viewer.properties │ │ ├── bn │ │ │ └── viewer.properties │ │ ├── bo │ │ │ └── viewer.properties │ │ ├── br │ │ │ └── viewer.properties │ │ ├── brx │ │ │ └── viewer.properties │ │ ├── bs │ │ │ └── viewer.properties │ │ ├── ca │ │ │ └── viewer.properties │ │ ├── cak │ │ │ └── viewer.properties │ │ ├── ckb │ │ │ └── viewer.properties │ │ ├── cs │ │ │ └── viewer.properties │ │ ├── cy │ │ │ └── viewer.properties │ │ ├── da │ │ │ └── viewer.properties │ │ ├── de │ │ │ └── viewer.properties │ │ ├── dsb │ │ │ └── viewer.properties │ │ ├── el │ │ │ └── viewer.properties │ │ ├── en-CA │ │ │ └── viewer.properties │ │ ├── en-GB │ │ │ └── viewer.properties │ │ ├── en-US │ │ │ └── viewer.properties │ │ ├── eo │ │ │ └── viewer.properties │ │ ├── es-AR │ │ │ └── viewer.properties │ │ ├── es-CL │ │ │ └── viewer.properties │ │ ├── es-ES │ │ │ └── viewer.properties │ │ ├── es-MX │ │ │ └── viewer.properties │ │ ├── et │ │ │ └── viewer.properties │ │ ├── eu │ │ │ └── viewer.properties │ │ ├── fa │ │ │ └── viewer.properties │ │ ├── ff │ │ │ └── viewer.properties │ │ ├── fi │ │ │ └── viewer.properties │ │ ├── fr │ │ │ └── viewer.properties │ │ ├── fy-NL │ │ │ └── viewer.properties │ │ ├── ga-IE │ │ │ └── viewer.properties │ │ ├── gd │ │ │ └── viewer.properties │ │ ├── gl │ │ │ └── viewer.properties │ │ ├── gn │ │ │ └── viewer.properties │ │ ├── gu-IN │ │ │ └── viewer.properties │ │ ├── he │ │ │ └── viewer.properties │ │ ├── hi-IN │ │ │ └── viewer.properties │ │ ├── hr │ │ │ └── viewer.properties │ │ ├── hsb │ │ │ └── viewer.properties │ │ ├── hu │ │ │ └── viewer.properties │ │ ├── hy-AM │ │ │ └── viewer.properties │ │ ├── hye │ │ │ └── viewer.properties │ │ ├── ia │ │ │ └── viewer.properties │ │ ├── id │ │ │ └── viewer.properties │ │ ├── is │ │ │ └── viewer.properties │ │ ├── it │ │ │ └── viewer.properties │ │ ├── ja │ │ │ └── viewer.properties │ │ ├── ka │ │ │ └── viewer.properties │ │ ├── kab │ │ │ └── viewer.properties │ │ ├── kk │ │ │ └── viewer.properties │ │ ├── km │ │ │ └── viewer.properties │ │ ├── kn │ │ │ └── viewer.properties │ │ ├── ko │ │ │ └── viewer.properties │ │ ├── lij │ │ │ └── viewer.properties │ │ ├── lo │ │ │ └── viewer.properties │ │ ├── locale.properties │ │ ├── lt │ │ │ └── viewer.properties │ │ ├── ltg │ │ │ └── viewer.properties │ │ ├── lv │ │ │ └── viewer.properties │ │ ├── meh │ │ │ └── viewer.properties │ │ ├── mk │ │ │ └── viewer.properties │ │ ├── mr │ │ │ └── viewer.properties │ │ ├── ms │ │ │ └── viewer.properties │ │ ├── my │ │ │ └── viewer.properties │ │ ├── nb-NO │ │ │ └── viewer.properties │ │ ├── ne-NP │ │ │ └── viewer.properties │ │ ├── nl │ │ │ └── viewer.properties │ │ ├── nn-NO │ │ │ └── viewer.properties │ │ ├── oc │ │ │ └── viewer.properties │ │ ├── pa-IN │ │ │ └── viewer.properties │ │ ├── pl │ │ │ └── viewer.properties │ │ ├── pt-BR │ │ │ └── viewer.properties │ │ ├── pt-PT │ │ │ └── viewer.properties │ │ ├── rm │ │ │ └── viewer.properties │ │ ├── ro │ │ │ └── viewer.properties │ │ ├── ru │ │ │ └── viewer.properties │ │ ├── scn │ │ │ └── viewer.properties │ │ ├── sco │ │ │ └── viewer.properties │ │ ├── si │ │ │ └── viewer.properties │ │ ├── sk │ │ │ └── viewer.properties │ │ ├── sl │ │ │ └── viewer.properties │ │ ├── son │ │ │ └── viewer.properties │ │ ├── sq │ │ │ └── viewer.properties │ │ ├── sr │ │ │ └── viewer.properties │ │ ├── sv-SE │ │ │ └── viewer.properties │ │ ├── szl │ │ │ └── viewer.properties │ │ ├── ta │ │ │ └── viewer.properties │ │ ├── te │ │ │ └── viewer.properties │ │ ├── tg │ │ │ └── viewer.properties │ │ ├── th │ │ │ └── viewer.properties │ │ ├── tl │ │ │ └── viewer.properties │ │ ├── tr │ │ │ └── viewer.properties │ │ ├── trs │ │ │ └── viewer.properties │ │ ├── uk │ │ │ └── viewer.properties │ │ ├── ur │ │ │ └── viewer.properties │ │ ├── uz │ │ │ └── viewer.properties │ │ ├── vi │ │ │ └── viewer.properties │ │ ├── wo │ │ │ └── viewer.properties │ │ ├── xh │ │ │ └── viewer.properties │ │ ├── zh-CN │ │ │ └── viewer.properties │ │ └── zh-TW │ │ │ └── viewer.properties │ │ ├── proxy.php │ │ ├── viewer.css │ │ ├── viewer.html │ │ ├── viewer.js │ │ └── viewer.js.map ├── search │ ├── functions.php │ └── include.search.php ├── statistics │ └── functions.php └── utilities │ ├── auth.php │ ├── functions.api.php │ ├── functions.entities.php │ ├── functions.php │ ├── functions.wikidata.php │ ├── language.php │ ├── safemysql.class.php │ ├── textArrayConverters.php │ └── uniqueFreeString.php └── server └── ajaxServer.php /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac OS X 2 | .DS_Store 3 | .AppleDouble 4 | .LSOverride 5 | 6 | # Linux 7 | .directory 8 | 9 | # Logs 10 | logs 11 | _logs/ 12 | *.log 13 | 14 | # Lock files 15 | *.lock 16 | 17 | # Runtime data 18 | pids 19 | *.pid 20 | *.seed 21 | .idea/ 22 | 23 | # Media files 24 | *.m4v 25 | *.mp4 26 | *.webm 27 | *.mov 28 | *.mpg 29 | *.mp3 30 | 31 | # Composer 32 | composer.phar 33 | /vendor/ 34 | temp 35 | 36 | # Language Cache 37 | langcache/*.php 38 | 39 | # Data 40 | data/import-error-log.txt 41 | data/input/*.json 42 | data/done/*.json 43 | data/repos/* 44 | modules/alignment/data/*.xml 45 | modules/alignment/output/*.json 46 | modules/import/input/*.json 47 | modules/import/done/*.json 48 | config.php 49 | 50 | # Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control 51 | # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file 52 | # composer.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Open Parliament TV - Platform 2 | 3 | ------------- 4 | 5 | **TODO: README** 6 | 7 | -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- 1 | getCurrentLang(); 11 | $langJSONString = LanguageManager::getInstance()->getLangJSONString(); 12 | 13 | $color_scheme = isset($_COOKIE["color_scheme"]) ? $_COOKIE["color_scheme"] : false; 14 | if ($color_scheme === false) $color_scheme = 'light'; 15 | 16 | $pageTitle = 'API '.L::documentation; 17 | $pageDescription = L::messageOpenData; 18 | $pageType = 'default'; 19 | $pageBreadcrumbs = [ 20 | [ 21 | 'label' => $pageTitle 22 | ] 23 | ]; 24 | 25 | require_once (__DIR__.'/v1/api.php'); 26 | ?> 27 | 28 | 29 | 30 | 31 | 40 | 41 | 42 |
43 |
44 |
45 | 46 | 47 | -------------------------------------------------------------------------------- /api/v1/.htaccess: -------------------------------------------------------------------------------- 1 | ######################################## 2 | # API Rewrite Rules 3 | ######################################## 4 | 5 | Options +FollowSymLinks 6 | ######################################## 7 | # Try to fix conflicting rewrite rules 8 | # set by Wordpress etc: 9 | ######################################## 10 | RewriteEngine Off 11 | RewriteEngine On 12 | ######################################## 13 | # Set Rewrite Base 14 | ######################################## 15 | #RewriteBase /api/v1 16 | ######################################## 17 | # Always remove trailing slash 18 | ######################################## 19 | RewriteCond %{REQUEST_FILENAME} !-d 20 | RewriteCond %{REQUEST_URI} (.+)/$ 21 | RewriteRule ^ %1 [L,R] 22 | ######################################## 23 | # Statistics Rewrites 24 | ######################################## 25 | RewriteCond %{REQUEST_FILENAME} !-f 26 | RewriteCond %{REQUEST_FILENAME} !-d 27 | RewriteRule ^(statistics)/(entity)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)? index.php?action=$1&itemType=$2&entityType=$3&entityID=$4 [QSA,L] 28 | RewriteCond %{REQUEST_FILENAME} !-f 29 | RewriteCond %{REQUEST_FILENAME} !-d 30 | RewriteRule ^(statistics)/(entity)/([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)? index.php?action=$1&itemType=$2&entityType=$3 [QSA,L] 31 | ######################################## 32 | # Generic URL Rewrites 33 | ######################################## 34 | RewriteCond %{REQUEST_FILENAME} !-f 35 | RewriteCond %{REQUEST_FILENAME} !-d 36 | RewriteRule ^(search|autocomplete|statistics|user|index|status|lang)/([a-zA-Z0-9_-]+)? index.php?action=$1&itemType=$2 [QSA,L] 37 | RewriteCond %{REQUEST_FILENAME} !-f 38 | RewriteCond %{REQUEST_FILENAME} !-d 39 | RewriteRule ^(status)/? index.php?action=$1&itemType=all [QSA,L] 40 | RewriteCond %{REQUEST_FILENAME} !-f 41 | RewriteCond %{REQUEST_FILENAME} !-d 42 | RewriteRule ^([a-zA-Z0-9_-]+)/([a-zA-Z0-9_-]+)? index.php?action=getItem&itemType=$1&id=$2 [QSA,L] 43 | RewriteCond %{REQUEST_FILENAME} !-f 44 | RewriteCond %{REQUEST_FILENAME} !-d 45 | RewriteRule ^([a-zA-Z0-9_-]+)? index.php?action=$1 [QSA] 46 | -------------------------------------------------------------------------------- /api/v1/config.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/v1/modules/autocomplete.php: -------------------------------------------------------------------------------- 1 | $e->getMessage()] 29 | ); 30 | } 31 | } 32 | ?> -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "require": { 3 | "elasticsearch/elasticsearch": "^7.4" 4 | } 5 | } -------------------------------------------------------------------------------- /content/client/fonts/FrameTrail_Web/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2016 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | 12 | 13 | ## Entypo 14 | 15 | Copyright (C) 2012 by Daniel Bruce 16 | 17 | Author: Daniel Bruce 18 | License: SIL (http://scripts.sil.org/OFL) 19 | Homepage: http://www.entypo.com 20 | 21 | 22 | ## Elusive 23 | 24 | Copyright (C) 2013 by Aristeides Stathopoulos 25 | 26 | Author: Aristeides Stathopoulos 27 | License: SIL (http://scripts.sil.org/OFL) 28 | Homepage: http://aristeides.com/ 29 | 30 | 31 | ## Typicons 32 | 33 | (c) Stephen Hutchings 2012 34 | 35 | Author: Stephen Hutchings 36 | License: SIL (http://scripts.sil.org/OFL) 37 | Homepage: http://typicons.com/ 38 | 39 | 40 | ## MFG Labs 41 | 42 | Copyright (C) 2012 by Daniel Bruce 43 | 44 | Author: MFG Labs 45 | License: SIL (http://scripts.sil.org/OFL) 46 | Homepage: http://www.mfglabs.com/ 47 | 48 | 49 | -------------------------------------------------------------------------------- /content/client/fonts/FrameTrail_Web/frametrail-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/FrameTrail_Web/frametrail-webfont.eot -------------------------------------------------------------------------------- /content/client/fonts/FrameTrail_Web/frametrail-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/FrameTrail_Web/frametrail-webfont.ttf -------------------------------------------------------------------------------- /content/client/fonts/FrameTrail_Web/frametrail-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/FrameTrail_Web/frametrail-webfont.woff -------------------------------------------------------------------------------- /content/client/fonts/FrameTrail_Web/frametrail-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/FrameTrail_Web/frametrail-webfont.woff2 -------------------------------------------------------------------------------- /content/client/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /content/client/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /content/client/fonts/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /content/client/fonts/Titillium_Web/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/Titillium_Web/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /content/client/fonts/Titillium_Web/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/Titillium_Web/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /content/client/fonts/Titillium_Web/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/Titillium_Web/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /content/client/fonts/awfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/awfont.eot -------------------------------------------------------------------------------- /content/client/fonts/awfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/awfont.ttf -------------------------------------------------------------------------------- /content/client/fonts/awfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/fonts/awfont.woff -------------------------------------------------------------------------------- /content/client/images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/android-chrome-192x192.png -------------------------------------------------------------------------------- /content/client/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/apple-touch-icon.png -------------------------------------------------------------------------------- /content/client/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/arrow.png -------------------------------------------------------------------------------- /content/client/images/aw_share_image_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/aw_share_image_default.jpg -------------------------------------------------------------------------------- /content/client/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/bg.png -------------------------------------------------------------------------------- /content/client/images/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | #00aba9 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /content/client/images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/favicon-16x16.png -------------------------------------------------------------------------------- /content/client/images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/favicon-32x32.png -------------------------------------------------------------------------------- /content/client/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/favicon.ico -------------------------------------------------------------------------------- /content/client/images/logos/abgeordnetenwatch-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/abgeordnetenwatch-sm.png -------------------------------------------------------------------------------- /content/client/images/logos/abgeordnetenwatch-sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/abgeordnetenwatch-sw.png -------------------------------------------------------------------------------- /content/client/images/logos/abgeordnetenwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/abgeordnetenwatch.png -------------------------------------------------------------------------------- /content/client/images/logos/bbc-news-labs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/bbc-news-labs.png -------------------------------------------------------------------------------- /content/client/images/logos/bmfsfj-dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/bmfsfj-dl.png -------------------------------------------------------------------------------- /content/client/images/logos/cct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/cct.png -------------------------------------------------------------------------------- /content/client/images/logos/demokratie-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/demokratie-io.png -------------------------------------------------------------------------------- /content/client/images/logos/mitwirken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/mitwirken.png -------------------------------------------------------------------------------- /content/client/images/logos/miz-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/miz-logo.png -------------------------------------------------------------------------------- /content/client/images/logos/prototypefund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/prototypefund.png -------------------------------------------------------------------------------- /content/client/images/logos/robert-bosch-stiftung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/robert-bosch-stiftung.png -------------------------------------------------------------------------------- /content/client/images/logos/wikidata-sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/wikidata-sm.png -------------------------------------------------------------------------------- /content/client/images/logos/zeit-online.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/logos/zeit-online.png -------------------------------------------------------------------------------- /content/client/images/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/mstile-150x150.png -------------------------------------------------------------------------------- /content/client/images/optv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/optv-logo.png -------------------------------------------------------------------------------- /content/client/images/optv-logo_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/optv-logo_klein.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Logo.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Logo_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Logo_box.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Logo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Logo_small.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Screenshot-1.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Screenshot-2.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Screenshot-3.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Screenshot-4.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Screenshot-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Screenshot-5.png -------------------------------------------------------------------------------- /content/client/images/press-kit/Open-Parliament-TV-Screenshot-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/press-kit/Open-Parliament-TV-Screenshot-6.png -------------------------------------------------------------------------------- /content/client/images/safari-pinned-tab.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 7 | 8 | Created by potrace 1.14, written by Peter Selinger 2001-2017 9 | 10 | 12 | 14 | 16 | 18 | 20 | 22 | 24 | 26 | 28 | 30 | 32 | 34 | 36 | 38 | 40 | 42 | 44 | 46 | 48 | 50 | 52 | 54 | 56 | 58 | 60 | 62 | 63 | 64 | -------------------------------------------------------------------------------- /content/client/images/share-image.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/client/images/site-image.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/client/images/site.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "short_name": "", 4 | "icons": [ 5 | { 6 | "src": "/content/client/images/android-chrome-192x192.png", 7 | "sizes": "192x192", 8 | "type": "image/png" 9 | } 10 | ], 11 | "theme_color": "#ffffff", 12 | "background_color": "#ffffff", 13 | "display": "standalone" 14 | } 15 | -------------------------------------------------------------------------------- /content/client/images/team/alexa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/team/alexa.jpg -------------------------------------------------------------------------------- /content/client/images/team/joscha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/team/joscha.jpg -------------------------------------------------------------------------------- /content/client/images/team/michael.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/team/michael.jpg -------------------------------------------------------------------------------- /content/client/images/team/olivier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/team/olivier.jpg -------------------------------------------------------------------------------- /content/client/images/team/philo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/team/philo.jpg -------------------------------------------------------------------------------- /content/client/images/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/content/client/images/thumbnail.png -------------------------------------------------------------------------------- /content/client/js/jquery.ui.touch-punch.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Touch Punch 0.2.3 3 | * 4 | * Copyright 2011–2014, Dave Furfero 5 | * Dual licensed under the MIT or GPL Version 2 licenses. 6 | * 7 | * Depends: 8 | * jquery.ui.widget.js 9 | * jquery.ui.mouse.js 10 | */ 11 | !function(a){function f(a,b){if(!(a.originalEvent.touches.length>1)){a.preventDefault();var c=a.originalEvent.changedTouches[0],d=document.createEvent("MouseEvents");d.initMouseEvent(b,!0,!0,window,1,c.screenX,c.screenY,c.clientX,c.clientY,!1,!1,!1,!1,0,null),a.target.dispatchEvent(d)}}if(a.support.touch="ontouchend"in document,a.support.touch){var e,b=a.ui.mouse.prototype,c=b._mouseInit,d=b._mouseDestroy;b._touchStart=function(a){var b=this;!e&&b._mouseCapture(a.originalEvent.changedTouches[0])&&(e=!0,b._touchMoved=!1,f(a,"mouseover"),f(a,"mousemove"),f(a,"mousedown"))},b._touchMove=function(a){e&&(this._touchMoved=!0,f(a,"mousemove"))},b._touchEnd=function(a){e&&(f(a,"mouseup"),f(a,"mouseout"),this._touchMoved||f(a,"click"),e=!1)},b._mouseInit=function(){var b=this;b.element.bind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),c.call(b)},b._mouseDestroy=function(){var b=this;b.element.unbind({touchstart:a.proxy(b,"_touchStart"),touchmove:a.proxy(b,"_touchMove"),touchend:a.proxy(b,"_touchEnd")}),d.call(b)}}}(jQuery); -------------------------------------------------------------------------------- /content/client/js/searchResults.js: -------------------------------------------------------------------------------- 1 | var currentQueries = {}; 2 | 3 | function updateMediaList(query, targetSelector) { 4 | if (!targetSelector) { 5 | var targetSelector = '#speechListContainer'; 6 | } 7 | 8 | if ($(targetSelector).length == 0) { 9 | return; 10 | } 11 | 12 | currentQueries[targetSelector] = query; 13 | 14 | $(targetSelector +' .loadingIndicator').show(); 15 | 16 | $.ajax({ 17 | method: "POST", 18 | url: config.dir.root+"/content/components/result.grid.php?a=search&"+query 19 | }).done(function(data) { 20 | $(targetSelector +' .resultWrapper').html($(data)); 21 | $(targetSelector +' .loadingIndicator').hide(); 22 | //console.log(targetSelector); 23 | $(targetSelector +' [name="sort"]').val((getQueryVariableFromString('sort', currentQueries[targetSelector])) ? getQueryVariableFromString('sort', currentQueries[targetSelector]) : 'relevance'); 24 | $(targetSelector +' .resultWrapper > nav a').each(function() { 25 | var thisPage = getQueryVariableFromString('page', $(this).attr('href')); 26 | if (!thisPage) { thisPage = 1; } 27 | $(this).attr('href', '#page='+ thisPage); 28 | }); 29 | updateListeners(targetSelector); 30 | }).fail(function(err) { 31 | console.log(err); 32 | }); 33 | } 34 | 35 | function updateListeners(targetSelector) { 36 | $(targetSelector +' .resultWrapper > nav a').click(function(evt) { 37 | evt.stopPropagation(); 38 | evt.preventDefault(); 39 | var page = 1; 40 | var pageParts = $(this).attr('href').split('#page='); 41 | if (pageParts.length > 1) { 42 | page = pageParts[1]; 43 | } 44 | currentQueries[targetSelector] = currentQueries[targetSelector].replace(/&page=[0-9]+/, ''); 45 | currentQueries[targetSelector] += '&page='+ page; 46 | updateMediaList(currentQueries[targetSelector], targetSelector); 47 | }); 48 | 49 | $(targetSelector +' [name="sort"]').on('change', function() { 50 | currentQueries[targetSelector] = currentQueries[targetSelector].replace(/&sort=[a-zA-Z|-]+/, ''); 51 | if ($(this).val() != 'relevance') { 52 | currentQueries[targetSelector] += '&sort=' + $(this).val(); 53 | } 54 | updateMediaList(currentQueries[targetSelector], targetSelector); 55 | }); 56 | $(targetSelector +' #play-submit').on('click',function() { 57 | var firstResult = $(targetSelector +' .resultList').find('.resultItem').first(); 58 | 59 | if (firstResult.length != 0) { 60 | location.href = firstResult.children('.resultContent').children('a').eq(0).attr("href") + '&playresults=1'; 61 | } 62 | }); 63 | } -------------------------------------------------------------------------------- /content/components/entity.data.php: -------------------------------------------------------------------------------- 1 | 5 |
6 | API URL 7 | "> 8 | " class="btn btn-sm input-group-text"> 9 |
10 |
11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | $value) { 22 | echo ''; 23 | } 24 | ?> 25 | 26 |
'.$key.''.$value.'
-------------------------------------------------------------------------------- /content/components/entity.links.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/components/entity.preview.php: -------------------------------------------------------------------------------- 1 | 9 | 10 |
11 |
12 | 55 |
56 |
-------------------------------------------------------------------------------- /content/components/metadata.php: -------------------------------------------------------------------------------- 1 | 44 | <?= $title ?> 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /content/components/result.grid.item.php: -------------------------------------------------------------------------------- 1 | 0) { 3 | $snippets = $result_item["_finds"]; 4 | } else { 5 | $snippets = null; 6 | } 7 | $paramStr = preg_replace('/(%5B)\d+(%5D=)/i', '$1$2', http_build_query($allowedParams)); 8 | 9 | ?> 10 |
" data-faction=""> 11 |
"> 12 | 13 |
14 |
15 |
16 |
17 | '.$mainFaction['attributes']['label'].''; 20 | } else { 21 | echo $highlightedName; 22 | } 23 | ?> 24 |
25 |
26 | 29 |
30 |
31 | 34 |
35 | '; 38 | } 39 | if ($snippets) { 40 | foreach($snippets as $snippet) { 41 | ?> 42 | ' title="▶ Ausschnitt direkt abspielen"> 43 | '; 49 | echo '
'; 50 | } 51 | 52 | if ($snippets && $result_item["attributes"]['duration'] !== 0) { 53 | ?> 54 | 55 | 0) { 58 | $leftPercent = 100 * ((float)$snippet["data-start"] / $result_item["attributes"]["duration"]); 59 | $widthPercent = 100 * (($snippet['data-end'] - $snippet['data-start']) / $result_item["attributes"]['duration']); 60 | ?> 61 |
62 | '; 69 | } 70 | ?> 71 |
72 |
-------------------------------------------------------------------------------- /content/components/result.pagination.php: -------------------------------------------------------------------------------- 1 | 0) { 5 | $pageSize = intval($_REQUEST["limit"]); 6 | } 7 | 8 | $numberOfPages = ceil($totalResults / $pageSize); 9 | $currentPage = (isset($_REQUEST["page"]) && $_REQUEST["page"] != "") ? $_REQUEST["page"] : 1; 10 | $prevDisabledClass = ($currentPage == 1) ? "disabled" : ""; 11 | $nextDisabledClass = ($currentPage == $numberOfPages) ? "disabled" : ""; 12 | if ($_REQUEST["a"] == "search" && count($_REQUEST) > 1) { 13 | $pagePrev = $allowedParams; 14 | $pagePrev["page"] = $currentPage-1; 15 | 16 | $pageNext = $allowedParams; 17 | $pageNext["page"] = $currentPage+1; 18 | ?> 19 | 64 | -------------------------------------------------------------------------------- /content/components/result.table.item.php: -------------------------------------------------------------------------------- 1 | 0) { 3 | $snippets = $result_item["_finds"]; 4 | } else { 5 | $snippets = null; 6 | } 7 | $paramStr = preg_replace('/(%5B)\d+(%5D=)/i', '$1$2', http_build_query($allowedParams)); 8 | 9 | ?> 10 | " data-faction=""> 11 | / 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | " data-speech-id="" disabled> 21 |
22 | 23 | 24 |
25 | " data-speech-id="" disabled> 26 |
27 | 28 | 29 | 30 |
31 | /media/" target="_blank"> 32 | 33 | /manage/media/"> 34 | 35 | /api/v1/media/" target="_blank"> 36 |
37 | 38 | -------------------------------------------------------------------------------- /content/components/search.filter.parliaments.php: -------------------------------------------------------------------------------- 1 | 17 |
18 |
19 | 37 |
38 | 41 |
42 | 52 |
53 | 57 |
58 | 70 |
71 | 74 |
75 | -------------------------------------------------------------------------------- /content/footer.php: -------------------------------------------------------------------------------- 1 | 41 | -------------------------------------------------------------------------------- /content/pages/404/page.php: -------------------------------------------------------------------------------- 1 | 4 |
5 |
6 |
7 |
8 |

404

9 |

10 |
Jakob Maria Mierscheid, SPD
11 |
12 |
13 |
14 |
15 | -------------------------------------------------------------------------------- /content/pages/api/client/apiResult.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | hljs.highlightAll(); 3 | 4 | $('.apiRequestButton').click(function() { 5 | var apiURI = $(this).parents('.apiExampleContainer').find('.apiURI').val(), 6 | exampleCodeElem = $(this).parents('.apiExampleContainer').find('.apiResultContainer'); 7 | 8 | $.ajax({ 9 | method: "POST", 10 | url: apiURI 11 | }).done(function(data) { 12 | exampleCodeElem.empty(); 13 | exampleCodeElem.jsonView(data); 14 | }).fail(function(err) { 15 | //console.log(err); 16 | }); 17 | }); 18 | }); -------------------------------------------------------------------------------- /content/pages/api/client/atom-one-dark.min.css: -------------------------------------------------------------------------------- 1 | pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#abb2bf;background:#282c34}.hljs-comment,.hljs-quote{color:#5c6370;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#c678dd}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e06c75}.hljs-literal{color:#56b6c2}.hljs-addition,.hljs-attribute,.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#98c379}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#d19a66}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#61aeee}.hljs-built_in,.hljs-class .hljs-title,.hljs-title.class_{color:#e6c07b}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline} -------------------------------------------------------------------------------- /content/pages/api/client/atom-one-light.min.css: -------------------------------------------------------------------------------- 1 | pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#383a42;background:#fafafa}.hljs-comment,.hljs-quote{color:#a0a1a7;font-style:italic}.hljs-doctag,.hljs-formula,.hljs-keyword{color:#a626a4}.hljs-deletion,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-subst{color:#e45649}.hljs-literal{color:#0184bb}.hljs-addition,.hljs-attribute,.hljs-meta .hljs-string,.hljs-regexp,.hljs-string{color:#50a14f}.hljs-attr,.hljs-number,.hljs-selector-attr,.hljs-selector-class,.hljs-selector-pseudo,.hljs-template-variable,.hljs-type,.hljs-variable{color:#986801}.hljs-bullet,.hljs-link,.hljs-meta,.hljs-selector-id,.hljs-symbol,.hljs-title{color:#4078f2}.hljs-built_in,.hljs-class .hljs-title,.hljs-title.class_{color:#c18401}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700}.hljs-link{text-decoration:underline} -------------------------------------------------------------------------------- /content/pages/api/client/dark.min.css: -------------------------------------------------------------------------------- 1 | pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#ddd;background:#444}.hljs-keyword,.hljs-link,.hljs-literal,.hljs-section,.hljs-selector-tag{color:#fff}.hljs-addition,.hljs-attribute,.hljs-built_in,.hljs-bullet,.hljs-name,.hljs-string,.hljs-symbol,.hljs-template-tag,.hljs-template-variable,.hljs-title,.hljs-type,.hljs-variable{color:#d88}.hljs-comment,.hljs-deletion,.hljs-meta,.hljs-quote{color:#777}.hljs-doctag,.hljs-keyword,.hljs-literal,.hljs-name,.hljs-section,.hljs-selector-tag,.hljs-strong,.hljs-title,.hljs-type{font-weight:700}.hljs-emphasis{font-style:italic} -------------------------------------------------------------------------------- /content/pages/api/client/default.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | Theme: Default 3 | Description: Original highlight.js style 4 | Author: (c) Ivan Sagalaev 5 | Maintainer: @highlightjs/core-team 6 | Website: https://highlightjs.org/ 7 | License: see project LICENSE 8 | Touched: 2021 9 | */pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{background:#f0f0f0;color:#444}.hljs-comment{color:#888}.hljs-punctuation,.hljs-tag{color:#444a}.hljs-tag .hljs-attr,.hljs-tag .hljs-name{color:#444}.hljs-attribute,.hljs-doctag,.hljs-keyword,.hljs-meta .hljs-keyword,.hljs-name,.hljs-selector-tag{font-weight:700}.hljs-deletion,.hljs-number,.hljs-quote,.hljs-selector-class,.hljs-selector-id,.hljs-string,.hljs-template-tag,.hljs-type{color:#800}.hljs-section,.hljs-title{color:#800;font-weight:700}.hljs-link,.hljs-operator,.hljs-regexp,.hljs-selector-attr,.hljs-selector-pseudo,.hljs-symbol,.hljs-template-variable,.hljs-variable{color:#bc6060}.hljs-literal{color:#78a960}.hljs-addition,.hljs-built_in,.hljs-bullet,.hljs-code{color:#397300}.hljs-meta{color:#1f7199}.hljs-meta .hljs-string{color:#4d99bf}.hljs-emphasis{font-style:italic}.hljs-strong{font-weight:700} -------------------------------------------------------------------------------- /content/pages/api/client/jquery.json-view.min.css: -------------------------------------------------------------------------------- 1 | .json-view{position:relative} 2 | .json-view .collapser{width:20px;height:18px;display:block;position:absolute;left:-1.7em;top:-.2em;z-index:5;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAD1JREFUeNpiYGBgOADE%2F3Hgw0DM4IRHgSsDFOzFInmMAQnY49ONzZRjDFiADT7dMLALiE8y4AGW6LoBAgwAuIkf%2F%2FB7O9sAAAAASUVORK5CYII%3D);background-repeat:no-repeat;background-position:center center;opacity:.5;cursor:pointer} 3 | .json-view .collapsed{-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-khtml-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg)} 4 | .json-view .bl{display:block;padding-left:20px;margin-left:-20px;position:relative} 5 | .json-view{font-family:monospace} 6 | .json-view ul{list-style-type:none;padding-left:2em;border-left:1px dotted;margin:.3em} 7 | .json-view ul li{position:relative} 8 | .json-view .comments,.json-view .dots{display:none;-moz-user-select:none;-ms-user-select:none;-khtml-user-select:none;-webkit-user-select:none;-o-user-select:none;user-select:none} 9 | .json-view .comments{padding-left:.8em;font-style:italic;color:#888} 10 | .json-view .bool,.json-view .null,.json-view .num,.json-view .undef{font-weight:700;color:#1A01CC} 11 | .json-view .str{color:#800} -------------------------------------------------------------------------------- /content/pages/api/client/jquery.json-view.min.js: -------------------------------------------------------------------------------- 1 | /** 2 | * json-view - jQuery collapsible JSON plugin 3 | * @version v1.0.0 4 | * @link http://github.com/bazh/jquery.json-view 5 | * @license MIT 6 | */ 7 | !function(e){"use strict";var n=function(n){var a=e("",{"class":"collapser",on:{click:function(){var n=e(this);n.toggleClass("collapsed");var a=n.parent().children(".block"),p=a.children("ul");n.hasClass("collapsed")?(p.hide(),a.children(".dots, .comments").show()):(p.show(),a.children(".dots, .comments").hide())}}});return n&&a.addClass("collapsed"),a},a=function(a,p){var t=e.extend({},{nl2br:!0},p),r=function(e){return e.toString()?e.toString().replace(/&/g,"&").replace(/"/g,""").replace(//g,">"):""},s=function(n,a){return e("",{"class":a,html:r(n)})},l=function(a,p){switch(e.type(a)){case"object":p||(p=0);var c=e("",{"class":"block"}),d=Object.keys(a).length;if(!d)return c.append(s("{","b")).append(" ").append(s("}","b"));c.append(s("{","b"));var i=e("
    ",{"class":"obj collapsible level"+p});return e.each(a,function(a,t){d--;var r=e("
  • ").append(s('"',"q")).append(a).append(s('"',"q")).append(": ").append(l(t,p+1));-1===["object","array"].indexOf(e.type(t))||e.isEmptyObject(t)||r.prepend(n()),d>0&&r.append(","),i.append(r)}),c.append(i),c.append(s("...","dots")),c.append(s("}","b")),c.append(1===Object.keys(a).length?s("// 1 item","comments"):s("// "+Object.keys(a).length+" items","comments")),c;case"array":p||(p=0);var d=a.length,c=e("",{"class":"block"});if(!d)return c.append(s("[","b")).append(" ").append(s("]","b"));c.append(s("[","b"));var i=e("
      ",{"class":"obj collapsible level"+p});return e.each(a,function(a,t){d--;var r=e("
    • ").append(l(t,p+1));-1===["object","array"].indexOf(e.type(t))||e.isEmptyObject(t)||r.prepend(n()),d>0&&r.append(","),i.append(r)}),c.append(i),c.append(s("...","dots")),c.append(s("]","b")),c.append(1===a.length?s("// 1 item","comments"):s("// "+a.length+" items","comments")),c;case"string":if(a=r(a),/^(http|https|file):\/\/[^\s]+$/i.test(a))return e("").append(s('"',"q")).append(e("",{href:a,text:a})).append(s('"',"q"));if(t.nl2br){var o=/\n/g;o.test(a)&&(a=(a+"").replace(o,"
      "))}var u=e("",{"class":"str"}).html(a);return e("").append(s('"',"q")).append(u).append(s('"',"q"));case"number":return s(a.toString(),"num");case"undefined":return s("undefined","undef");case"null":return s("null","null");case"boolean":return s(a?"true":"false","bool")}};return l(a)};return e.fn.jsonView=function(n,p){var t=e(this);if(p=e.extend({},{nl2br:!0},p),"string"==typeof n)try{n=JSON.parse(n)}catch(r){}return t.append(e("
      ",{"class":"json-view"}).append(a(n,p))),t}}(jQuery); -------------------------------------------------------------------------------- /content/pages/embed/entity/page.php: -------------------------------------------------------------------------------- 1 | 6 |
      7 | 33 | //" role="button" style="position: absolute; bottom: 20px; left: 20px; width: calc(100% - 40px);">Open Entity in New Tab 34 |
      35 | -------------------------------------------------------------------------------- /content/pages/imprint/page_de.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 |

      6 |

      Open Parliament TV
      7 | c/o Center for the Cultivation of Technology gemeinnützige GmbH
      8 | Aufgang 4
      9 | Gottschedstraße 4
      10 | 13357 Berlin
      11 | info [AT] openparliament.tv
      12 | +49-177-7896559 (nur für rechtliche Anfragen)
      13 | https://openparliament.tv 14 |

      15 |

      Inhaltlich verantwortlich gemäß § 5 TMG, § 55 RStV: Joscha Jäger

      16 |

      17 |

      Joscha Jäger, : joscha.jaeger [AT] openparliament.tv

      18 |
      19 |

      Haftungsausschluss

      20 |

      Haftung für Inhalte

      21 |

      Die Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr übernehmen. Als Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach § 8 bis 10 TMG sind wir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen oder nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder Sperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. Bei Bekanntwerden von entsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfernen.

      22 |

      Haftung für Links

      23 |

      Unser Angebot enthält Links zu externen Webseiten Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen.

      24 |

      Urheberrecht

      25 |

      Die durch die Seitenbetreiber erstellten Inhalte und Werke auf diesen Seiten unterliegen dem deutschen Urheberrecht. Sie sind mit einer Creative Commons Lizenz urheberrechtlich geschützt. Sofern nicht anders angegeben, stehen die Inhalte dieser Seite unter der Creative Commons Namensnennung 3.0 DE Lizenz. Soweit die Inhalte auf dieser Seite nicht vom Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. Insbesondere werden Inhalte Dritter als solche gekennzeichnet. Sollten Sie trotzdem auf eine Urheberrechtsverletzung aufmerksam werden, bitten wir um einen entsprechenden Hinweis. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Inhalte umgehend entfernen.

      26 |
      27 |
      28 |
      29 | -------------------------------------------------------------------------------- /content/pages/imprint/page_en.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 |

      6 |

      Open Parliament TV
      7 | c/o Center for the Cultivation of Technology gemeinnützige GmbH
      8 | Aufgang 4
      9 | Gottschedstraße 4
      10 | 13357 Berlin
      11 | info [AT] openparliament.tv
      12 | +49-177-7896559 (only for legal requests)
      13 | https://openparliament.tv 14 |

      15 |

      Inhaltlich verantwortlich gemäß § 5 TMG, § 55 RStV: Joscha Jäger

      16 |

      17 |

      Joscha Jäger, : joscha.jaeger [AT] openparliament.tv

      18 |
      19 |

      Haftungsausschluss

      20 |

      Haftung für Inhalte

      21 |

      Die Inhalte unserer Seiten wurden mit größter Sorgfalt erstellt. Für die Richtigkeit, Vollständigkeit und Aktualität der Inhalte können wir jedoch keine Gewähr übernehmen. Als Diensteanbieter sind wir gemäß § 7 Abs.1 TMG für eigene Inhalte auf diesen Seiten nach den allgemeinen Gesetzen verantwortlich. Nach § 8 bis 10 TMG sind wir als Diensteanbieter jedoch nicht verpflichtet, übermittelte oder gespeicherte fremde Informationen zu überwachen oder nach Umständen zu forschen, die auf eine rechtswidrige Tätigkeit hinweisen. Verpflichtungen zur Entfernung oder Sperrung der Nutzung von Informationen nach den allgemeinen Gesetzen bleiben hiervon unberührt. Eine diesbezügliche Haftung ist jedoch erst ab dem Zeitpunkt der Kenntnis einer konkreten Rechtsverletzung möglich. Bei Bekanntwerden von entsprechenden Rechtsverletzungen werden wir diese Inhalte umgehend entfernen.

      22 |

      Haftung für Links

      23 |

      Unser Angebot enthält Links zu externen Webseiten Dritter, auf deren Inhalte wir keinen Einfluss haben. Deshalb können wir für diese fremden Inhalte auch keine Gewähr übernehmen. Für die Inhalte der verlinkten Seiten ist stets der jeweilige Anbieter oder Betreiber der Seiten verantwortlich. Die verlinkten Seiten wurden zum Zeitpunkt der Verlinkung auf mögliche Rechtsverstöße überprüft. Rechtswidrige Inhalte waren zum Zeitpunkt der Verlinkung nicht erkennbar. Eine permanente inhaltliche Kontrolle der verlinkten Seiten ist jedoch ohne konkrete Anhaltspunkte einer Rechtsverletzung nicht zumutbar. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Links umgehend entfernen.

      24 |

      Urheberrecht

      25 |

      Die durch die Seitenbetreiber erstellten Inhalte und Werke auf diesen Seiten unterliegen dem deutschen Urheberrecht. Sie sind mit einer Creative Commons Lizenz urheberrechtlich geschützt. Sofern nicht anders angegeben, stehen die Inhalte dieser Seite unter der Creative Commons Namensnennung 3.0 DE Lizenz. Soweit die Inhalte auf dieser Seite nicht vom Betreiber erstellt wurden, werden die Urheberrechte Dritter beachtet. Insbesondere werden Inhalte Dritter als solche gekennzeichnet. Sollten Sie trotzdem auf eine Urheberrechtsverletzung aufmerksam werden, bitten wir um einen entsprechenden Hinweis. Bei Bekanntwerden von Rechtsverletzungen werden wir derartige Inhalte umgehend entfernen.

      26 |
      27 |
      28 |
      29 | -------------------------------------------------------------------------------- /content/pages/imprint/page_fr.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 |

      6 |

      Open Parliament TV
      7 | c/o Center for the Cultivation of Technology gemeinnützige GmbH
      8 | Aufgang 4
      9 | Gottschedstraße 4
      10 | 13357 Berlin
      11 | info [AT] openparliament.tv
      12 | +49-177-7896559 (uniquement pour les demandes légales)
      13 | https://openparliament.tv 14 |

      15 |

      Responsable du contenu selon § 5 TMG, § 55 RStV : Joscha Jäger

      16 |

      17 |

      Joscha Jäger, : joscha.jaeger [AT] openparliament.tv

      18 |
      19 |

      Avis de non-responsabilité

      20 |

      Responsabilité pour le contenu

      21 |

      Le contenu de nos pages a été créé avec le plus grand soin. Cependant, nous ne pouvons garantir l'exactitude, l'exhaustivité et l'actualité du contenu. En tant que fournisseur de services, nous sommes responsables du contenu propre sur ces pages conformément aux lois générales selon § 7 par. 1 TMG. Cependant, selon §§ 8 à 10 TMG, nous ne sommes pas obligés en tant que fournisseur de services de surveiller les informations tierces transmises ou stockées ou de rechercher des circonstances indiquant une activité illégale. Les obligations de suppression ou de blocage de l'utilisation d'informations conformément aux lois générales restent inchangées. Cependant, une responsabilité à cet égard n'est possible qu'à partir du moment où nous avons connaissance d'une violation concrète du droit. Lorsque nous prenons connaissance de violations correspondantes, nous supprimerons immédiatement ce contenu.

      22 |

      Responsabilité pour les liens

      23 |

      Notre offre contient des liens vers des sites web externes de tiers, sur le contenu desquels nous n'avons aucune influence. C'est pourquoi nous ne pouvons pas non plus garantir ce contenu tiers. Le fournisseur ou l'exploitant des pages liées est toujours responsable du contenu des pages liées. Les pages liées ont été vérifiées pour d'éventuelles violations du droit au moment de la création du lien. Aucun contenu illégal n'était reconnaissable au moment de la création du lien. Cependant, une surveillance permanente du contenu des pages liées n'est pas raisonnable sans indice concret d'une violation du droit. Lorsque nous prenons connaissance de violations du droit, nous supprimerons immédiatement ces liens.

      24 |

      Droit d'auteur

      25 |

      Le contenu et les œuvres créés par les exploitants des pages sur ces pages sont soumis au droit d'auteur allemand. Ils sont protégés par le droit d'auteur avec une licence Creative Commons. Sauf indication contraire, le contenu de cette page est sous licence Creative Commons Attribution 3.0 DE. Dans la mesure où le contenu de cette page n'a pas été créé par l'exploitant, les droits d'auteur des tiers sont respectés. En particulier, le contenu des tiers est marqué comme tel. Si vous remarquez néanmoins une violation du droit d'auteur, nous vous prions de nous en informer. Lorsque nous prenons connaissance de violations du droit, nous supprimerons immédiatement ce contenu.

      26 |
      27 |
      28 |
      29 | -------------------------------------------------------------------------------- /content/pages/imprint/page_tr.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 |

      6 |

      Open Parliament TV
      7 | c/o Center for the Cultivation of Technology gemeinnützige GmbH
      8 | Aufgang 4
      9 | Gottschedstraße 4
      10 | 13357 Berlin
      11 | info [AT] openparliament.tv
      12 | +49-177-7896559 (sadece yasal talepler için)
      13 | https://openparliament.tv 14 |

      15 |

      TMG § 5, RStV § 55'e göre içerik sorumlusu: Joscha Jäger

      16 |

      17 |

      Joscha Jäger, : joscha.jaeger [AT] openparliament.tv

      18 |
      19 |

      Sorumluluk Reddi

      20 |

      İçerik Sorumluluğu

      21 |

      Sayfalarımızdaki içerik en büyük özenle oluşturulmuştur. Ancak içeriğin doğruluğu, eksiksizliği ve güncelliği konusunda garanti veremeyiz. Hizmet sağlayıcı olarak, genel yasalara göre § 7 par. 1 TMG uyarınca bu sayfalardaki kendi içeriğimizden sorumluyuz. Ancak, §§ 8-10 TMG uyarınca, hizmet sağlayıcı olarak iletilen veya saklanan üçüncü taraf bilgilerini izlemek veya yasadışı bir faaliyeti gösteren durumları araştırmakla yükümlü değiliz. Genel yasalara göre bilgilerin kullanımının engellenmesi veya silinmesi yükümlülükleri aynen kalır. Ancak, bu konuda sorumluluk ancak somut bir hukuk ihlalinden haberdar olduğumuz andan itibaren mümkündür. İlgili ihlalleri öğrendiğimizde, bu içeriği derhal kaldıracağız.

      22 |

      Bağlantılar için Sorumluluk

      23 |

      Teklifimiz, içeriği üzerinde hiçbir etkimiz olmayan üçüncü tarafların harici web sitelerine bağlantılar içerir. Bu nedenle üçüncü taraf içeriği için de garanti veremeyiz. Bağlantılı sayfaların içeriğinden her zaman bağlantılı sayfaların sağlayıcısı veya operatörü sorumludur. Bağlantı oluşturulduğunda bağlantılı sayfalar olası hukuk ihlalleri açısından kontrol edilmiştir. Bağlantı oluşturulduğunda yasadışı içerik tanınabilir değildi. Ancak, somut bir hukuk ihlali şüphesi olmadan bağlantılı sayfaların içeriğinin sürekli izlenmesi makul değildir. Hukuk ihlallerinden haberdar olduğumuzda, bu bağlantıları derhal kaldıracağız.

      24 |

      Telif Hakkı

      25 |

      Sayfa operatörleri tarafından bu sayfalarda oluşturulan içerik ve eserler Alman telif hakkı yasasına tabidir. Bunlar Creative Commons lisansı ile telif hakkı ile korunmaktadır. Aksi belirtilmediği sürece, bu sayfanın içeriği Creative Commons Attribution 3.0 DE lisansı altındadır. Bu sayfanın içeriği operatör tarafından oluşturulmadığı ölçüde, üçüncü tarafların telif haklarına saygı gösterilmiştir. Özellikle üçüncü taraf içeriği bu şekilde işaretlenmiştir. Yine de bir telif hakkı ihlali fark ederseniz, lütfen bizi bilgilendirin. Hukuk ihlallerinden haberdar olduğumuzda, bu içeriği derhal kaldıracağız.

      26 |
      27 |
      28 |
      29 | -------------------------------------------------------------------------------- /content/pages/logout/page.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 |

      6 |

      7 |
      8 |
      9 |
      10 | -------------------------------------------------------------------------------- /content/pages/manage/conflicts/conflict-detail/client/style.css: -------------------------------------------------------------------------------- 1 | .conflictDifference { 2 | background-color: rgba(200,200,200,.3); 3 | } -------------------------------------------------------------------------------- /content/pages/manage/conflicts/conflict-detail/content.media.php: -------------------------------------------------------------------------------- 1 | 2 | $field) { 14 | 15 | if (!is_array($field)) { 16 | 17 | $different_class = (($media2[$key] == $field)) ? "conflictSame" : "conflictDifference"; 18 | 19 | echo ' 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | '; 33 | 34 | 35 | } 36 | 37 | 38 | } 39 | 40 | ?> 41 | 42 | 43 |

      '.$key.'

      '.((strlen($field) > 100) ? '' : $field).''.((strlen($media2[$key]) > 100) ? '' : $media2[$key]).'

      -------------------------------------------------------------------------------- /content/pages/manage/entities/document-detail/page.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/manage/entities/organisation-detail/page.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/manage/entities/person-detail/page.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/manage/entities/term-detail/page.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/manage/media/media-detail/page.php: -------------------------------------------------------------------------------- 1 | 14 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/manage/media/page.php: -------------------------------------------------------------------------------- 1 | 15 |
      16 |
      17 | 18 | 51 |
      52 |
      53 | 54 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /content/pages/manage/notifications/page.php: -------------------------------------------------------------------------------- 1 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/manage/settings/page.php: -------------------------------------------------------------------------------- 1 | 15 |
      16 |
      17 | 18 | 40 |
      41 |
      42 | -------------------------------------------------------------------------------- /content/pages/media/page.php: -------------------------------------------------------------------------------- 1 | 23 |
      24 | 25 |
      26 | 27 | 28 | 29 | 30 | 31 | 35 | 36 | -------------------------------------------------------------------------------- /content/pages/press/page.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 |

      6 |
      Unsere "Presse" Seite ist jetzt unter https://openparliament.tv/press zu finden
      7 |
      8 |
      9 |
      10 | -------------------------------------------------------------------------------- /content/pages/registerconfirm/client/registerconfirm.functions.js: -------------------------------------------------------------------------------- 1 | $(function() { 2 | 3 | 4 | 5 | }); -------------------------------------------------------------------------------- /content/pages/registerconfirm/page.php: -------------------------------------------------------------------------------- 1 | 2 |
      3 |
      4 |
      5 | 6 | 7 | "user", 11 | "itemType" => "confirm-registration", 12 | "UserID" => $_REQUEST["id"], 13 | "ConfirmationCode" => $_REQUEST["c"] 14 | ]); 15 | 16 | if ($apiResult["meta"]["requestStatus"] === "success") { 17 | echo ''; 18 | } else { 19 | echo ''; 20 | } 21 | ?> 22 | 23 |
      24 |
      25 |
      26 | 27 | -------------------------------------------------------------------------------- /content/pages/search/page.php: -------------------------------------------------------------------------------- 1 | 15 |
      16 | 27 |
      28 |
      29 |
      30 | 31 |
      32 |
      33 |
      34 |
      35 |
      36 |
      37 |
      38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /content/pages/statistics/page.php: -------------------------------------------------------------------------------- 1 | 16 |
      17 |
      18 |
      19 |

      Statistics

      20 |
      21 |
      22 |
      23 | 24 | -------------------------------------------------------------------------------- /data/done/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/data/done/.gitkeep -------------------------------------------------------------------------------- /data/entity-dump/index.php: -------------------------------------------------------------------------------- 1 | 9 | To get all types but you want to exclude a specific type, add 'exclude_document', 'exclude_organisation', 'exclude_term' or 'exclude_person' additionaly to the 'type=all' parameter

      10 | To just get items, having a wikidata-id as id, use the parameter 'wiki'=true. in this case you can also add 'wikikeys'=true to get an object with wikidata ids as keys.

      "; 11 | } else { 12 | header('Content-Type: application/json; charset=utf-8'); 13 | echo json_encode(getEntityDump($_REQUEST),JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES); 14 | } 15 | 16 | 17 | 18 | ?> -------------------------------------------------------------------------------- /data/input/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/data/input/.gitkeep -------------------------------------------------------------------------------- /data/updateFilesFromGit.php: -------------------------------------------------------------------------------- 1 | $file,"date"=>filemtime($dir."/".$file)); 11 | } 12 | } 13 | 14 | return $return; 15 | 16 | } 17 | 18 | 19 | /** 20 | * @param string $parliament 21 | * @return bool if there are any new files in input 22 | * 23 | * Will not do anything at the first pull/clone 24 | * 25 | */ 26 | 27 | function updateFilesFromGit($parliament = "DE") { 28 | 29 | $return = false; 30 | 31 | require_once(__DIR__ . "/../config.php"); 32 | require_once(__DIR__ . "/../modules/utilities/safemysql.class.php"); 33 | require_once(__DIR__ . "/../modules/utilities/functions.api.php"); 34 | require_once(__DIR__ . "/../api/v1/api.php"); 35 | require_once(__DIR__ . "/../api/v1/modules/media.php"); 36 | global $config; 37 | 38 | 39 | if (!is_dir(__DIR__."/repos/")) { 40 | mkdir(__DIR__."/repos/"); 41 | } 42 | 43 | 44 | 45 | if (!is_dir(__DIR__."/repos/".$parliament)) { 46 | mkdir(__DIR__."/repos/".$parliament); 47 | } 48 | 49 | $realpath = realpath(__DIR__."/repos/".$parliament."/"); 50 | 51 | if (!is_dir(__DIR__."/repos/".$parliament."/.git")) { 52 | 53 | if (chdir($realpath)) { 54 | shell_exec($config["bin"]["git"] . ' -C "' . $realpath . '" clone ' . $config["parliament"][$parliament]["git"]["repository"] . ' .'); 55 | } 56 | 57 | } 58 | 59 | shell_exec($config["bin"]["git"]." config --global --add safe.directory ".$realpath); 60 | 61 | 62 | if (!chdir($realpath)) { 63 | 64 | throw new Exception('Could not change directory'); 65 | 66 | 67 | } 68 | 69 | //If files were deleted locally restore them first 70 | 71 | shell_exec($config["bin"]["git"].' -C "'.$realpath.'" checkout -f HEAD'); 72 | 73 | //get all current files 74 | $currentFiles = getFilesWithDates($realpath."/processed/"); 75 | 76 | 77 | //get all changes from git 78 | shell_exec($config["bin"]["git"].' -C "'.$realpath.'" pull'); 79 | 80 | //get all current files again 81 | $newCurrentFiles = getFilesWithDates($realpath."/processed/"); 82 | //print_r($currentFiles); 83 | //print_r($newCurrentFiles); 84 | 85 | //compare the new fileslist with the old fileslist 86 | foreach ($newCurrentFiles as $fileName=>$file) { 87 | 88 | if (!array_key_exists($fileName,$currentFiles) || ($currentFiles[$fileName]["date"] != $file["date"])) { 89 | copy($realpath."/processed/".$fileName, __DIR__."/input/".$fileName); 90 | $return = true; 91 | } 92 | 93 | } 94 | 95 | return $return; 96 | 97 | } 98 | 99 | ?> 100 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/favicon.ico -------------------------------------------------------------------------------- /langcache/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/langcache/.gitkeep -------------------------------------------------------------------------------- /modules/alignment/functions.php: -------------------------------------------------------------------------------- 1 | "getItem", 19 | "itemType"=>"media", 20 | "id"=>$mediaID 21 | ]); 22 | 23 | //TODO: Choose correct textContents, not just first index 24 | if (isset($data["data"]["attributes"]["textContents"]) && count($data["data"]["attributes"]["textContents"]) != 0) { 25 | 26 | $mediaFileURI = ($data["data"]["attributes"]["audioFileURI"]) ? $data["data"]["attributes"]["audioFileURI"] : $data["data"]["attributes"]["videoFileURI"]; 27 | 28 | $textObject = json_encode($data["data"]["attributes"]["textContents"][0], true); 29 | 30 | saveAlignmentInputToFile($textObject, $data["data"]["attributes"]["textContents"][0]["type"], $mediaFileURI, $data["data"]["id"]); 31 | 32 | } 33 | 34 | } else { 35 | 36 | 37 | $parliament = "DE"; 38 | 39 | $opts = array( 40 | 'host' => $config["parliament"][$parliament]["sql"]["access"]["host"], 41 | 'user' => $config["parliament"][$parliament]["sql"]["access"]["user"], 42 | 'pass' => $config["parliament"][$parliament]["sql"]["access"]["passwd"], 43 | 'db' => $config["parliament"][$parliament]["sql"]["db"] 44 | ); 45 | 46 | try { 47 | 48 | $dbp = new SafeMySQL($opts); 49 | 50 | } catch (exception $e) { 51 | 52 | $return["meta"]["requestStatus"] = "error"; 53 | $return["errors"] = array(); 54 | $errorarray["status"] = "503"; 55 | $errorarray["code"] = "1"; 56 | $errorarray["title"] = "Database connection error"; 57 | $errorarray["detail"] = "Connecting to parliament database failed"; 58 | array_push($return["errors"], $errorarray); 59 | return $return; 60 | 61 | } 62 | 63 | $allMediaIDs = $dbp->getAll("SELECT MediaID FROM media"); 64 | 65 | 66 | foreach ($allMediaIDs as $id) { 67 | 68 | $data = apiV1([ 69 | "action"=>"getItem", 70 | "itemType"=>"media", 71 | "id"=>$id["MediaID"] 72 | ]); 73 | 74 | //TODO: Choose correct textContents, not just first index 75 | if (isset($data["data"]["attributes"]["textContents"]) && count($data["data"]["attributes"]["textContents"]) != 0) { 76 | 77 | $mediaFileURI = ($data["data"]["attributes"]["audioFileURI"]) ? $data["data"]["attributes"]["audioFileURI"] : $data["data"]["attributes"]["videoFileURI"]; 78 | 79 | $textObject = json_encode($data["data"]["attributes"]["textContents"][0], true); 80 | saveAlignmentInputToFile($textObject, $data["data"]["attributes"]["textContents"][0]["type"], $mediaFileURI, $data["data"]["id"]); 81 | 82 | } 83 | 84 | } 85 | } 86 | } 87 | 88 | function saveAlignmentInputToFile($textObject, $textType, $mediaFileURI, $mediaID) { 89 | 90 | $alignmentInputXML = textObjectToAlignmentInput($textObject, $mediaFileURI, $mediaID); 91 | file_put_contents("data/".$mediaID."_".$textType.".xml", $alignmentInputXML); 92 | 93 | } 94 | 95 | ?> -------------------------------------------------------------------------------- /modules/image-quote/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/OpenSans-Light.ttf -------------------------------------------------------------------------------- /modules/image-quote/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /modules/image-quote/OpenSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/OpenSans-SemiBold.ttf -------------------------------------------------------------------------------- /modules/image-quote/TitilliumWeb-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/TitilliumWeb-Bold.ttf -------------------------------------------------------------------------------- /modules/image-quote/TitilliumWeb-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/TitilliumWeb-Light.ttf -------------------------------------------------------------------------------- /modules/image-quote/TitilliumWeb-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/TitilliumWeb-Regular.ttf -------------------------------------------------------------------------------- /modules/image-quote/optv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/image-quote/optv-logo.png -------------------------------------------------------------------------------- /modules/media/include.media.php: -------------------------------------------------------------------------------- 1 | ' . $formattedDate . ' | ' . $speech["relationships"]["electoralPeriod"]['data']['attributes']['number'] . '. Electoral Period | Session ' . $speech["relationships"]["session"]['data']['attributes']['number'] . ' | ' . $speech["relationships"]["agendaItem"]["data"]['attributes']["officialTitle"] . '
      ' . $mainSpeaker['attributes']['label'] . ' ' . $mainFaction['attributes']['label'] . '
      ' . $speech["relationships"]["agendaItem"]["data"]['attributes']["title"] . '
      '; 48 | } 49 | 50 | ?> -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/78ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/78ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/83pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/83pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/90ms-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/90ms-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/90ms-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/90ms-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/90msp-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/90msp-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/90msp-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/90msp-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/90pv-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/90pv-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/90pv-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/90pv-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Add-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Add-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Add-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Add-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Add-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Add-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Add-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Add-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-0.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-1.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-3.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-4.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-5.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-6.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-CNS1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-CNS1-UCS2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-0.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-1.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-3.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-4.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-5.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-GB1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-GB1-UCS2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-0.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-1.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-3.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-3.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-4.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-4.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-5.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-5.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-6.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-6.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Japan1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Japan1-UCS2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Korea1-0.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Korea1-0.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Korea1-1.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Korea1-1.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Korea1-2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Korea1-2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Adobe-Korea1-UCS2.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Adobe-Korea1-UCS2.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/B5pc-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/B5pc-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/B5pc-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/B5pc-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/CNS-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/CNS-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/CNS-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/CNS-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/CNS1-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/CNS1-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/CNS1-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/CNS1-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/CNS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/CNS2-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/CNS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/CNS2-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/ETHK-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/ETHK-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/ETHK-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/ETHK-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/ETen-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/ETen-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/ETen-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/ETen-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/ETenms-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/ETenms-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/ETenms-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/ETenms-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Ext-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Ext-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Ext-RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Ext-RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Ext-RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Ext-RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Ext-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Ext-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GB-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GB-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GB-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GB-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GB-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GB-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GB-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GB-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBK-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBK-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBK-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBK-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBK2K-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBK2K-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBK2K-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBK2K-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBKp-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBKp-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBKp-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBKp-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBT-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBT-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBT-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBT-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBT-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBT-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBT-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBT-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBTpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBTpc-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBTpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBTpc-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBpc-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/GBpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/GBpc-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKdla-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKdla-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKdla-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKdla-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKdlb-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKdlb-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKdlb-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKdlb-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKgccs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKgccs-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKgccs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKgccs-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKm314-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKm314-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKm314-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKm314-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKm471-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKm471-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKm471-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKm471-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKscs-B5-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKscs-B5-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/HKscs-B5-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/HKscs-B5-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Hankaku.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Hankaku.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Hiragana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Hiragana.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSC-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSC-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSC-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSC-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSC-Johab-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSC-Johab-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSC-Johab-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSC-Johab-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSCms-UHC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSCms-UHC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSCms-UHC-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSCms-UHC-HW-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSCms-UHC-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSCms-UHC-HW-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSCms-UHC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSCms-UHC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSCpc-EUC-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSCpc-EUC-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/KSCpc-EUC-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/KSCpc-EUC-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Katakana.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Katakana.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/LICENSE: -------------------------------------------------------------------------------- 1 | %%Copyright: ----------------------------------------------------------- 2 | %%Copyright: Copyright 1990-2009 Adobe Systems Incorporated. 3 | %%Copyright: All rights reserved. 4 | %%Copyright: 5 | %%Copyright: Redistribution and use in source and binary forms, with or 6 | %%Copyright: without modification, are permitted provided that the 7 | %%Copyright: following conditions are met: 8 | %%Copyright: 9 | %%Copyright: Redistributions of source code must retain the above 10 | %%Copyright: copyright notice, this list of conditions and the following 11 | %%Copyright: disclaimer. 12 | %%Copyright: 13 | %%Copyright: Redistributions in binary form must reproduce the above 14 | %%Copyright: copyright notice, this list of conditions and the following 15 | %%Copyright: disclaimer in the documentation and/or other materials 16 | %%Copyright: provided with the distribution. 17 | %%Copyright: 18 | %%Copyright: Neither the name of Adobe Systems Incorporated nor the names 19 | %%Copyright: of its contributors may be used to endorse or promote 20 | %%Copyright: products derived from this software without specific prior 21 | %%Copyright: written permission. 22 | %%Copyright: 23 | %%Copyright: THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 24 | %%Copyright: CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 25 | %%Copyright: INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 26 | %%Copyright: MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 27 | %%Copyright: DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR 28 | %%Copyright: CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 29 | %%Copyright: SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 30 | %%Copyright: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 31 | %%Copyright: LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 | %%Copyright: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 33 | %%Copyright: CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 34 | %%Copyright: OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 35 | %%Copyright: SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 36 | %%Copyright: ----------------------------------------------------------- 37 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/NWP-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/NWP-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/NWP-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/NWP-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/RKSJ-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/RKSJ-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/RKSJ-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/RKSJ-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/Roman.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/Roman.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UCS2-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UCS2-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UTF16-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UTF16-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UTF8-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniCNS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniCNS-UTF8-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UCS2-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UCS2-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UTF16-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UTF16-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UTF8-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniGB-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniGB-UTF8-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UCS2-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UCS2-HW-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UCS2-HW-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UCS2-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UTF16-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UTF16-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UTF8-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS-UTF8-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS2004-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS2004-UTF16-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS2004-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS2004-UTF16-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS2004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS2004-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS2004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS2004-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS2004-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS2004-UTF8-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJIS2004-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJIS2004-UTF8-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISPro-UCS2-HW-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISPro-UCS2-HW-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISPro-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISPro-UCS2-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISPro-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISPro-UTF8-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISX0213-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISX0213-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISX0213-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISX0213-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISX02132004-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISX02132004-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniJISX02132004-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniJISX02132004-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UCS2-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UCS2-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UCS2-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UCS2-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UTF16-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UTF16-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UTF16-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UTF16-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UTF32-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UTF32-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UTF32-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UTF32-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UTF8-H.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UTF8-H.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/UniKS-UTF8-V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/UniKS-UTF8-V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/V.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/V.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/cmaps/WP-Symbol.bcmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/cmaps/WP-Symbol.bcmap -------------------------------------------------------------------------------- /modules/pdf-viewer/web/compressed.tracemonkey-pldi-09.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/compressed.tracemonkey-pldi-09.pdf -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-comment.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-help.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 16 | 18 | 21 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-insert.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-key.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-newparagraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 12 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-noicon.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-note.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 21 | 28 | 35 | 42 | 43 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/annotation-paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 7 | 13 | 16 | 17 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/findbarButton-next.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/findbarButton-previous.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/grab.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/images/grab.cur -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/grabbing.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/images/grabbing.cur -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/loading-dark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/loading-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/images/loading-icon.gif -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/loading.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-documentProperties.svg: -------------------------------------------------------------------------------- 1 | 4 | 6 | 8 | 9 | 11 | 12 | 14 | 15 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-firstPage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-handTool.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-lastPage.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-rotateCcw.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-rotateCw.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-scrollHorizontal.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-scrollVertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-scrollWrapped.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-selectTool.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-spreadEven.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-spreadNone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/secondaryToolbarButton-spreadOdd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenParliamentTV/OpenParliamentTV-Platform/72273eb12a032234025bb9e1bdab68c5c54f7ad3/modules/pdf-viewer/web/images/shadow.png -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-currentOutlineItem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-download.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-menuArrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-openFile.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-pageDown.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-pageUp.svg: -------------------------------------------------------------------------------- 1 | 4 | 6 | 11 | 12 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-presentationMode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-print.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-search.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-secondaryToolbarToggle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-sidebarToggle.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-viewAttachments.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-viewLayers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-viewOutline.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-viewThumbnail.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-zoomIn.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/toolbarButton-zoomOut.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/treeitem-collapsed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/pdf-viewer/web/images/treeitem-expanded.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/search/include.search.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utilities/functions.entities.php: -------------------------------------------------------------------------------- 1 | $value) { 13 | 14 | if ($key == 'type' || 15 | $key == 'relationships' || 16 | $key == 'gender' || 17 | $key == 'socialMediaIDs') { 18 | continue; 19 | } 20 | 21 | //$_key = ltrim($prefix.$sep.$key, "."); 22 | $_key = $key; 23 | 24 | if (is_array($value) || is_object($value)) { 25 | // Iterate this one too 26 | $flat = array_merge($flat, flattenEntityJSON($value, $_key)); 27 | } else { 28 | $flat[$_key] = $value; 29 | } 30 | } 31 | 32 | return $flat; 33 | } 34 | 35 | function getMainSpeakerFromPeopleArray($annotationsArray, $peopleArray) { 36 | 37 | foreach ($annotationsArray as $annotation) { 38 | if ($annotation["attributes"]["context"] == "main-speaker") { 39 | foreach ($peopleArray as $person) { 40 | if ($person["id"] == $annotation["id"]) { 41 | $mainSpeaker = $person; 42 | } 43 | } 44 | } 45 | } 46 | 47 | if (!isset($mainSpeaker)) { 48 | //TODO 49 | //$mainSpeaker = $peopleArray[0]; 50 | foreach ($annotationsArray as $annotation) { 51 | if (preg_match("~president~",$annotation["attributes"]["context"])) { 52 | foreach ($peopleArray as $person) { 53 | if ($person["id"] == $annotation["id"]) { 54 | $mainSpeaker = $person; 55 | } 56 | } 57 | } 58 | } 59 | } 60 | if (!isset($mainSpeaker)) { 61 | $mainSpeaker = array("PersonLabel"=>"TODO"); 62 | } 63 | 64 | return $mainSpeaker; 65 | } 66 | 67 | function getMainFactionFromOrganisationsArray($annotationsArray, $organisationsArray) { 68 | 69 | foreach ($annotationsArray as $annotation) { 70 | if ($annotation["attributes"]["context"] == "main-speaker-faction") { 71 | foreach ($organisationsArray as $organisation) { 72 | if ($organisation["id"] == $annotation["id"]) { 73 | $mainFaction = $organisation; 74 | } 75 | } 76 | } 77 | } 78 | 79 | if (!isset($mainFaction)) { 80 | //$mainFaction = $organisationsArray[0]; 81 | $mainFaction = null; 82 | } 83 | 84 | return $mainFaction; 85 | } 86 | 87 | ?> -------------------------------------------------------------------------------- /modules/utilities/functions.wikidata.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /modules/utilities/uniqueFreeString.php: -------------------------------------------------------------------------------- 1 | $config["sql"]["access"]["host"], 26 | 'user' => $config["sql"]["access"]["user"], 27 | 'pass' => $config["sql"]["access"]["passwd"], 28 | 'db' => $config["sql"]["db"] 29 | ); 30 | $db = new SafeMySQL($opts); 31 | } 32 | 33 | $randString = bin2hex(random_bytes($length)); 34 | 35 | $count = $db->getOne("SELECT COUNT(*) as cnt FROM ?n WHERE ?n = ?s",$tbl,$column,$randString); 36 | if ($count > 0) { 37 | $randString = getUniqueFreeString($tbl, $column, $length, $db); 38 | } 39 | return $randString; 40 | 41 | } 42 | 43 | /** 44 | * 45 | * This function generates a CRC Hash of a String and checks in Database if the hash is already reserved. 46 | * If so, the string will be added again to itself until an unique Hash has been generated. 47 | * 48 | * @param string $tbl - Table where we are looking for a unique string 49 | * @param string $column - the affected column 50 | * @param int $length - the string 51 | * @param SafeMySQLObject $db 52 | * @return string - unique hash for the given string 53 | */ 54 | function getUniqueCRC($tbl = false, $column = false, $string = false, $prefix = "", $db = false) { 55 | global $config; 56 | 57 | if (!$tbl || !$column || !$string || !$db) { 58 | 59 | return false; 60 | 61 | } 62 | 63 | $hash = hash("crc32b", $string); 64 | 65 | $count = $db->getOne("SELECT COUNT(*) as cnt FROM ?n WHERE ".$column." = ?s",$tbl,$prefix.$hash); 66 | if ($count > 0) { 67 | $string = $string.$string; 68 | $hash = getUniqueCRC($tbl, $column, $string, $prefix, $db); 69 | } 70 | return $prefix.$hash; 71 | 72 | } 73 | 74 | 75 | 76 | ?> --------------------------------------------------------------------------------