export OBS_USERNAME=M0ses
| #!/usr/bin/env python | |
| # svglinkify.py - Add hyperlinks to PDFs generated by Inkscape | |
| # Copyright (C) 2015 Mansour Behabadi <[email protected]> | |
| # | |
| # This script comes with no warranty whatsoever. Use at your own risk. | |
| # If you decide to distribute verbatim or modified versions of this | |
| # code, you must retain this copyright notice. | |
| # | |
| # Usage: svglinkify.py <svg-file> <inkscape-gen-pdf> <linkified-pdf> | |
| # Requires: |
| function getQueryVariable(variable) { | |
| var query = window.location.search.substring(1); | |
| var vars = query.split('&'); | |
| for (var i = 0; i < vars.length; i++) { | |
| var pair = vars[i].split('='); | |
| if (decodeURIComponent(pair[0]) == variable) { | |
| return decodeURIComponent(pair[1].replace(/\+/g, '%20')); | |
| } | |
| } | |