summaryrefslogtreecommitdiffstats
path: root/articleenhancer/xpatharticleenhancer.php
AgeCommit message (Expand)Author
2014-11-07another round of trying to fix the heise.de encoding issuesBernhard Posselt
2014-11-07try to fix encodingBernhard Posselt
2014-11-05fix xpath article enhancer encoding bugsBernhard Posselt
2014-10-22fix encodingBernhard Posselt
2014-10-22get rid of simplepieBernhard Posselt
2014-10-21first try to set indention limit at 80 characters in phpBernhard Posselt
2014-10-21convert tabs indention to indention with 4 spaces because of mixing of both v...Bernhard Posselt
2014-10-21move config class into config folderBernhard Posselt
2014-10-08get rid of simplepie absolute url function and use Net url2Bernhard Posselt
2014-10-08more cleanupBernhard Posselt
2014-10-04cleanupBernhard Posselt
2014-10-04further cleanupBernhard Posselt
2014-10-04More cleanupBernhard Posselt
2014-10-04first round of xpatharticleenhancer cleanupBernhard Posselt
2014-10-04fix php-fpm issuesBernhard Posselt
2014-10-04ignore zendxml resultBernhard Posselt
2014-10-04create files for next gen parserBernhard Posselt
2014-09-29Disable XML entity parsingLukas Reschke
2014-09-18correctly destroy element when route is being changedBernhard Posselt
2014-06-26style fixesBernhard Posselt
2014-06-26style fixesBernhard Posselt
2014-06-26style fixesBernhard Posselt
2014-06-25style fixesBernhard Posselt
2014-05-14convert array() to []Bernhard Posselt
2014-05-13docs for enhancersBernhard Posselt
2014-05-12more style fixesBernhard Posselt
2014-04-19update headers to be compatible with phpdoc, slim down license text to make c...Bernhard Posselt
2014-04-10add proxy support based on simplepie pr, fix #491Bernhard Posselt
2014-04-09port to internal controller, some routes are still brokenBernhard Posselt
2014-04-09fix article enhancers by providing the correct useragentBernhard Posselt
2014-04-08migrated database, utility, bootstrap from appframeworkBernhard Posselt
2014-02-11fix XSS when importing articles, speed up update and adding of feeds by only ...Bernhard Posselt
2013-10-20If the xpath enchancer fails, fallback to the original bodyRobin Appelman
2013-09-30set the useragent when getting the full body for the xpath enhancerRobin Appelman
2013-09-27use seperate direcotires for article enhancers and fetchersBernhard Posselt
span class="kt">void EnvScreen_scan(InfoScreen* this) { Panel* panel = this->display; int idx = MAX(Panel_getSelectedIndex(panel), 0); Panel_prune(panel); CRT_dropPrivileges(); char* env = Platform_getProcessEnv(this->process->pid); CRT_restorePrivileges(); if (env) { for (char *p = env; *p; p = strrchr(p, 0)+1) InfoScreen_addLine(this, p); free(env); } else { InfoScreen_addLine(this, "Could not read process environment."); } Vector_insertionSort(this->lines); Vector_insertionSort(panel->items); Panel_setSelected(panel, idx); }