This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| +4.10 Fixed (4.06) markup and sets (4.06 listentries) to be optional (selectbox default) due to errors | |
| + Added some css | |
| + Fixed some minor markup errors | |
| + Fixed backend_templates/default_staticpage_backend.tpl smarty markup (escape and cke-wysiwyg) | |
| + Changed Template names | |
| + Added 'publishstatus' and removed 'pass','is_startpage','is_404_page' in plugins config options, | |
| + since the latter were unused there and are too specific to be set global in plugin config. | |
| + Now 'publishstatus' will respect a global show as option rule (Draft is default) | |
| + Outsourced some heavy markup functions | |
| + Smartified the backend as much as possible (get ready to run smarty-only in future?) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -@define('STATICPAGE_PAGEADD_DESC', 'Wählen Sie die Plugins aus, die in der staticpage sidebar als Link zur Verfügung stehen sollen.'); | |
| +@define('STATICPAGE_PAGEADD_DESC', 'Wählen Sie die Plugins aus, die in der Frontend Seitenleiste als zusätzlicher "Staticpage"-Link zur Verfügung stehen sollen.'); | |
| -?> | |
| -<br /> | |
| +<!-- DEFAULT_STATICPAGE_BACKEND.TPL start --> | |
| - <label class="sp_label" title="{staticpage_input item="headline" what="desc"|escape:js}">{staticpage_input item="headline" what="name"|escape:js}</label><br /> | |
| + <label class="sp_label" title="{staticpage_input item="headline" what="desc"}">{staticpage_input item="headline" what="name"}</label> | |
| - <label class="sp_label" title="{staticpage_input item="articleformattitle" what="desc"|escape:js}">{staticpage_input item="articleformattitle" what="name"|escape:js}</label><br /> | |
| + <label class="sp_label" title="{staticpage_input item="articleformattitle" what="de |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $myself = 'garvin'; | |
| $compare = 'andih'; | |
| # Usage: | |
| # - wget a URL like this: | |
| # http://www.imdb.com/list/export?list_id=ratings&author_id=ur0555872 (garvin) | |
| # - save it as imdb_ratings_XXX.csv (see below when it gets called) | |
| # - do the same with the CSV of the second user you want to compare with | |
| # - enter the proper user names/file names at the bottom of this file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE serendipity_spamblocklog ( | |
| timestamp int(10) default null, | |
| type varchar(255), | |
| reason text, | |
| entry_id int(10) not null default '0', | |
| author varchar(80), | |
| email varchar(200), | |
| url varchar(200), | |
| useragent varchar(255), | |
| ip varchar(15), |
NewerOlder