Commit: cb152975f72becfd94401eaafc6041ed906e5b58 Author: Christoph M. Becker <[email protected]> Tue, 24 Mar 2015 23:48:02 +0100 Parents: a9be3491fb66ca9b344364062906b5912e563f55 Branches: master
Link: http://git.php.net/?p=web/wiki.git;a=commitdiff;h=cb152975f72becfd94401eaafc6041ed906e5b58 Log: overhauled template to bring back missing standard functionality (editor buttons, media manager, search result highlighting etc.) Changed paths: M dokuwiki/lib/tpl/phpnet/main.php M dokuwiki/lib/tpl/phpnet/style.ini M dokuwiki/lib/tpl/phpnet/template.info.txt Diff: diff --git a/dokuwiki/lib/tpl/phpnet/main.php b/dokuwiki/lib/tpl/phpnet/main.php index 68c17cb..611b125 100644 --- a/dokuwiki/lib/tpl/phpnet/main.php +++ b/dokuwiki/lib/tpl/phpnet/main.php @@ -39,13 +39,8 @@ if (empty($_SERVER['REMOTE_USER'])) { } ob_start(); tpl_metaheaders(); -$HEAD_RAND = ob_get_contents(); -ob_end_clean(); +$HEAD_WIKI = ob_get_clean(); $CSS = array("/styles/wiki.css"); -$HEAD_RAND = <<< EXTRA -<script type="text/javascript" charset="utf-8" src="/lib/exe/js.php?tseed=5d2c1bdf8687c762731f425556438dd5"></script> - -EXTRA; include __DIR__ . "/../../../shared/templates/header.inc"; ?> @@ -139,5 +134,5 @@ include __DIR__ . "/../../../shared/templates/header.inc"; </section> <?php $SECONDSCREEN = tpl_toc(true); +$JS = false; include __DIR__ . "/../../../shared/templates/footer.inc"; - diff --git a/dokuwiki/lib/tpl/phpnet/style.ini b/dokuwiki/lib/tpl/phpnet/style.ini index cc23c16..a61d511 100644 --- a/dokuwiki/lib/tpl/phpnet/style.ini +++ b/dokuwiki/lib/tpl/phpnet/style.ini @@ -16,30 +16,23 @@ [stylesheets] -css/mixins.less = screen - -css/basic.less = screen css/_imgdetail.css = screen css/_media_popup.css = screen css/_media_fullscreen.css = screen css/_fileuploader.css = screen css/_tabs.css = screen css/_links.css = screen -css/_toc.css = screen +;css/_toc.css = screen css/_footnotes.css = screen css/_search.css = screen css/_recent.css = screen css/_diff.css = screen css/_edit.css = screen css/_modal.css = screen -css/_forms.css = screen +;css/_forms.css = screen css/_admin.css = screen -css/structure.less = screen -css/design.less = screen -css/pagetools.less = screen -css/content.less = screen -css/mobile.less = all +css/mobile.css = all css/print.css = print diff --git a/dokuwiki/lib/tpl/phpnet/template.info.txt b/dokuwiki/lib/tpl/phpnet/template.info.txt index 9d06265..f3fe603 100644 --- a/dokuwiki/lib/tpl/phpnet/template.info.txt +++ b/dokuwiki/lib/tpl/phpnet/template.info.txt @@ -1,7 +1,7 @@ -base dokuwiki -author Anika Henke -email [email protected] -date 2013-05-02 -name DokuWiki Template -desc DokuWiki's default template since 2012 -url http://www.dokuwiki.org/template:dokuwiki +base phpnet +author The PHP Group +email [email protected] +date 2015-03-24 +name php.net Template +desc Template of wiki.php.net +url http://git.php.net/?p=web/wiki.git;a=tree;f=dokuwiki/lib/tpl/phpnet -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
