1aa8b849eSwikidesign<?php 2aa8b849eSwikidesign/** 3aa8b849eSwikidesign * Options for the Include Plugin 4aa8b849eSwikidesign */ 5aa8b849eSwikidesign$conf['firstseconly'] = 0; // limit entries on main blog page to first section 6aa8b849eSwikidesign$conf['showtaglogos'] = 0; // display image for first tag 7f1a28746Swikidesign$conf['showfooter'] = 1; // display meta line below blog entries 8b68e5bd3SMichael Klier$conf['showlink'] = 0; // link headlines of blog entries 9b68e5bd3SMichael Klier$conf['showpermalink'] = 0; // show permalink below blog entries 10f9f65fc3Swikidesign$conf['showdate'] = 1; // show date below blog entries 11*3fca97c9Sboukeversteegh$conf['showmdate'] = 0; // show modification date below blog entries 12f9f65fc3Swikidesign$conf['showuser'] = 1; // show username below blog entries 13f9f65fc3Swikidesign$conf['showcomments'] = 1; // show number of comments below blog entries 14564e71f6Sraymond.scholz$conf['showlinkbacks'] = 1; // show number of linkbacks below blog entries 15f9f65fc3Swikidesign$conf['showtags'] = 1; // show tags below blog entries 163c01153cSwikidesign$conf['showeditbtn'] = 1; // show the edit button 17c44026dcSMichael Hamann$conf['doredirect'] = 1; // redirect back to original page after an edit 18f9f65fc3Swikidesign$conf['usernamespace'] = 'user'; // namespace for user pages 19d65c10b4SMichael Klier$conf['doindent'] = 1; // indent included pages relative to the page they get included 2012092bceSMichael Hamann$conf['linkonly'] = 0; // link only to the included pages instead of including the content 211403dce0SJerry G Geiger$conf['title'] = 0; // use first header of page in link 221403dce0SJerry G Geiger$conf['pageexists'] = 0; // no link if page does not exist 231403dce0SJerry G Geiger$conf['parlink'] = 1; // paragraph around link 24b5295d80SMichael Hamann$conf['safeindex'] = 1; // prevent indexing of protected metadata 25df062bd2SMichael Hamann$conf['order'] = 'id'; // order in which the pages are included in the case of multiple pages 26df062bd2SMichael Hamann$conf['rsort'] = 0; // reverse sort order 27ff4c1966SMichael Hamann$conf['depth'] = 1; // maximum depth of namespace includes, 0 for unlimited depth 282524d407SMichael Hamann//Setup VIM: ex: et ts=2 : 29