This gist repository contains attachments for my issue tracker.
Just add files to this repository and then link them in the issue.
| <?php | |
| /* | |
| Target: | |
| ******* | |
| Perfect solution for a simple WP event manager | |
| Needs: | |
| ****** |
| the scribus-core code is currently structured as foolows: | |
| + impagina-core/ | |
| - impagina-core.pro | |
| - main.cpp | |
| - scribus.cpp | |
| - scribus.h | |
| + document/ | |
| - document.cpp |
| <VirtualHost *:80> | |
| # Indexes + Directory Root. | |
| #DirectoryIndex index.html index.php | |
| DocumentRoot /home/ale/docs/htdocs/graphicslab/htdocs/ | |
| <Directory /home/ale/docs/htdocs/graphicslab/htdocs/ > | |
| # Options FollowSymLinks | |
| # AllowOverride FileInfo Options | |
| Options Indexes FollowSymLinks | |
| AllowOverride AuthConfig FileInfo |
| <?php | |
| /** | |
| * Show the history of the latest selected tables. Cookies based. | |
| * Set the js variable history_length to define the history length. | |
| * Works only with current browsers. | |
| * @link http://www.adminer.org/plugins/#use | |
| * @author Ale Rimoldi, http://www.ideale.ch/ | |
| * @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0 | |
| * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License, version 2 (one or other) |
This gist repository contains attachments for my issue tracker.
Just add files to this repository and then link them in the issue.
| $ python3 test.py | |
| QQmlApplicationEngine failed to load component | |
| file:///home/ale/docs/src/scribus-script-repository/script-download/test/main.qml:4 AppplicationWindow is not a type |
| 1 | Sortir du nucléaire | accueil | |
|---|---|---|---|
| 2 | Journal | actualite/journal | |
| 3 | Agenda | association/agenda | |
| 4 | Presse | accueil | |
| 5 | Sortons du nucléaire | accueil | |
| 6 | Association | accueil | |
| 7 | Contact | association/contact | |
| 8 | Buts | association/buts | |
| 9 | Statuts | association/statuts | |
| 14 | Communiqués de presse | actualite/communiques |
| import html2text | |
| import csv | |
| import unicodedata | |
| #from unidecode import unidecode | |
| #print unidecode(u"\u5317\u4EB0") | |
| import sys | |
| reload(sys) | |
| sys.setdefaultencoding('utf-8') | |
| h = html2text.HTML2Text() | |
| # Ignore converting links from HTML |
| import glob | |
| import re | |
| import csv | |
| toc = [] | |
| p_id = re.compile('index.php\?id=(\d+)') | |
| p_title = re.compile('<title>(.*) \| (.*)</title>') | |
| for filename in glob.glob('index.php?id*'): | |
| print(filename) | |
| m = p_id.match(filename) | |
| print(m.group(1)) |
| import os | |
| from sh import git | |
| def subDirPath (d): | |
| return filter(os.path.isdir, [os.path.join(d,f) for f in os.listdir(d)]) | |
| curDir = os.getcwd() | |
| curDir = "/home/ale/docs/src/" | |
| for d in subDirPath(curDir) : | |
| if os.path.isdir(os.path.join(d, ".git")) : |