Update to 2009-12-25 "Lemming":

* This release needs PHP5.1.2!
 * many Editor improvements
    o automatic list indention
    o better headline system
    o link wizard template authors need to provide CSS
  * compatibility fixes for IE8 and Chrome
  * PHP 5.3 compatibility fixes
  * row span support in tables
  * downloadable code blocks
  * fulltext search improvements
  * added filename search in media manager
  * new dformat function plugin and template authors should replace
    strftime calls with this function
  * one click revert button for managers template authors need to
    add this button
  * nicer admin screen template authors need to provide CSS
  * XMLRPC improvements
  * many smaller feature enhancements
  * more plugin events
  * some performance optimizations
  * minor security enhancements
  * many, many, many bug fixes

While I'm there, grab maintainership.
This commit is contained in:
Xin LI 2010-01-03 01:38:01 +00:00
parent e230bb6ae3
commit 5f71aa102f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=247036
4 changed files with 833 additions and 536 deletions

View File

@ -7,17 +7,16 @@
PORTNAME= dokuwiki
PORTVERSION= ${DIST_VER:S/${PORTNAME}//:S/-//g}
PORTREVISION= 2
CATEGORIES= www
MASTER_SITES= http://www.splitbrain.org/_media/projects/dokuwiki/ \
LOCAL/chinsan/${PORTNAME}
DISTNAME= ${DIST_VER}
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
MAINTAINER= delphij@FreeBSD.org
COMMENT= A simple and easy to use wiki, no database required
DIST_VER= ${PORTNAME}-2009-02-14
DIST_VER= ${PORTNAME}-2009-12-25
USE_PHP= gd mbstring pcre session xml zlib
NO_BUILD= YES
WANT_PHP_WEB= YES

View File

@ -1,3 +1,3 @@
MD5 (dokuwiki-2009-02-14.tgz) = b2b7094db0d74ffa4971186118039c60
SHA256 (dokuwiki-2009-02-14.tgz) = a3a84549fc7853e3d3e826d2acce005f44fa7b49f255d4487ed70bd2fc65ec18
SIZE (dokuwiki-2009-02-14.tgz) = 1770454
MD5 (dokuwiki-2009-12-25.tgz) = 1428c896de83bd2a754efd18919d0594
SHA256 (dokuwiki-2009-12-25.tgz) = 317f978e1055469f0405b32f69ecde6afab67fc8a46cf86e6e0b758191d9612a
SIZE (dokuwiki-2009-12-25.tgz) = 2545036

View File

@ -1,33 +0,0 @@
--- VERSION 2009-02-14 04:13:26.000000000 -0800
+++ VERSION 2009-05-26 07:56:56.000000000 -0700
@@ -1 +1 @@
-2009-02-14
+2009-02-14b
--- conf/msg 2009-02-14 04:13:24.000000000 -0800
+++ conf/msg 2009-05-26 07:56:29.000000000 -0700
@@ -1,4 +1,4 @@
-17
+18
The first line of this file contains a number, indicating
which notification messages should not be displayed. This
is the only information sent to dokuwiki.org when the
--- inc/init.php 2009-02-14 04:13:24.000000000 -0800
+++ inc/init.php 2009-05-26 07:54:37.000000000 -0700
@@ -10,6 +10,9 @@
}
define('DOKU_START_TIME', delta_time());
+ global $config_cascade;
+ $config_cascade = '';
+
// if available load a preload config file
$preload = fullpath(dirname(__FILE__)).'/preload.php';
if (@file_exists($preload)) include($preload);
@@ -42,7 +45,6 @@
global $cache_metadata; $cache_metadata = array();
//set the configuration cascade - but only if its not already been set in preload.php
- global $config_cascade;
if (empty($config_cascade)) {
$config_cascade = array(
'main' => array(

File diff suppressed because it is too large Load Diff