Metadata in PDF files can be stored in at least two places:
- the Info Dictionary, a limited set of key/value pairs
- XMP packets, which contain RDF statements expressed as XML
| <div class="uk-container"> | |
| <h1>Produkte</h1> | |
| <div x-data="productsData()"> | |
| <div> | |
| <div class="uk-button uk-button-secondary" @click.prevent="fetchProductsData(filterparams.cat = 1)">Kategorie 1</div> | |
| <div class="uk-button uk-button-secondary" @click.prevent="fetchProductsData(filterparams.cat = 2)">Kategorie 2</div> | |
| <div class="uk-button uk-button-secondary" @click.prevent="fetchProductsData(filterparams.cat = 3)">Kategorie 3</div> | |
| <div class="uk-button uk-button-secondary" @click.prevent="fetchProductsData(filterparams.cat = 4)">Kategorie 4</div> |
| <!-- Goes into viewer.html just before ending </body> --> | |
| <script> | |
| let pinchZoomEnabled = false; | |
| function enablePinchZoom(pdfViewer) { | |
| let startX = 0, startY = 0; | |
| let initialPinchDistance = 0; | |
| let pinchScale = 1; | |
| const viewer = document.getElementById("viewer"); | |
| const container = document.getElementById("viewerContainer"); | |
| const reset = () => { startX = startY = initialPinchDistance = 0; pinchScale = 1; }; |
| /* | |
| * Migrate Fontawesome 4 to Fontawesome 5 | |
| * @website https://www.litecart.net/ | |
| */ | |
| (function(){ | |
| var icons = { | |
| "fa-500px": "fab fa-500px", | |
| "fa-address-book-o": "far fa-address-book", | |
| "fa-address-card-o": "far fa-address-card", |
| RewriteRule ^/?media/(.*)$ /index.php?ycom_file=$1 [L] | |
| # RewriteRule ^/?media/(.*\.(pdf|doc|zip))$ /index.php?ycom_file=$1 [L] |
| -- This script enables the macOS Contact-Application to dial a phone-number | |
| -- via a SNOM hardware phone by clicking on the phone label. | |
| -- | |
| -- (C) 2008 David Kreitschmann, K3com Kommunikationstechnik http://www.k3com.de | |
| -- (C) 2017 Modification for SNOM 715 by Stefan Husch, https://qutic.com | |
| -- | |
| -- Copy this script to ~/Library/Application\ Scripts/com.apple.AddressBook | |
| -- on your macOS 10.11+ and change the phoneURL to your needs. | |
| -- | |
| -- A chmod 0600 ~/Library/Application\ Scripts/com.apple.AddressBook/Snom.scpt |
| <?php | |
| /* | |
| Example use: | |
| $video = new Video('https://www.youtube.com/watch?v=xfJvrH7iQ3c', 1); | |
| $video->render_embed(); | |
| Use responsively: http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php | |
| */ |