OSDN Git Service

pukiwiki/pukiwiki.git
8 years agoBugTrack2/374 Record fullname of edit user(author)
umorigu [Mon, 1 Feb 2016 16:15:39 +0000 (01:15 +0900)]
BugTrack2/374 Record fullname of edit user(author)

8 years agoBugTrack2/374 Add auth provider user prefix
umorigu [Mon, 1 Feb 2016 16:03:16 +0000 (01:03 +0900)]
BugTrack2/374 Add auth provider user prefix

* AUTH_PROVIDER_USER_PREFIX_DEFAULT(default:)
  * for users defined in pukiwiki.ini.php
* AUTH_PROVIDER_USER_PREFIX_LDAP(ldap:)
  * for users from LDAP
* AUTH_PROVIDER_USER_PREFIX_EXTERNAL(external:)
  * for users provided by external auth systems

8 years agoBugTrack2/374 Record timestamp and edit user as author info
umorigu [Mon, 1 Feb 2016 14:14:31 +0000 (23:14 +0900)]
BugTrack2/374 Record timestamp and edit user as author info

author plugin (plugin/author.inc.php) outputs empty string
for HTML text.

8 years agoBugTrack2/264 Call getimagesize() only for image named files
umorigu [Wed, 27 Jan 2016 16:03:17 +0000 (01:03 +0900)]
BugTrack2/264 Call getimagesize() only for image named files

8 years agoBugTrack2/363 sourceforge.jp to osdn.jp for default contents
umorigu [Tue, 26 Jan 2016 17:12:14 +0000 (02:12 +0900)]
BugTrack2/363 sourceforge.jp to osdn.jp for default contents

8 years agoBugTrack2/363 Domain name change: sourceforge.jp to osdn.jp
umorigu [Tue, 26 Jan 2016 16:56:39 +0000 (01:56 +0900)]
BugTrack2/363 Domain name change: sourceforge.jp to osdn.jp

8 years agoChange Attach-file menu label: 'Upload' to 'Attach'
umorigu [Tue, 26 Jan 2016 16:33:46 +0000 (01:33 +0900)]
Change Attach-file menu label: 'Upload' to 'Attach'

8 years agoBugTrack2/345 Rename log and backup files on renaming attached file
umorigu [Tue, 26 Jan 2016 15:56:40 +0000 (00:56 +0900)]
BugTrack2/345 Rename log and backup files on renaming attached file

8 years agoBugTrack2/376 Keep download counts of archived attached files
umorigu [Tue, 26 Jan 2016 15:05:42 +0000 (00:05 +0900)]
BugTrack2/376 Keep download counts of archived attached files

8 years agoBugTrack2/373 AUTH_TYPE_EXTERNAL - Add Log-in and Log-out menu
umorigu [Fri, 22 Jan 2016 16:28:53 +0000 (01:28 +0900)]
BugTrack2/373 AUTH_TYPE_EXTERNAL - Add Log-in and Log-out menu

8 years agoBugTrack2/373 AUTH_TYPE_EXTERNAL - Use external sign-in mechanism
umorigu [Thu, 21 Jan 2016 19:24:14 +0000 (04:24 +0900)]
BugTrack2/373 AUTH_TYPE_EXTERNAL - Use external sign-in mechanism

In pukiwiki.ini.php, you can define $auth_external_login_url URL.
It is a external sign in URL.

For example,

```
$auth_type = AUTH_TYPE_EXTERNAL;
$auth_external_login_url = './exlogin.php';
```

If you meet a private page that requires access permission,
a system redirect you to './exlogin.php' with 'url_after_login'
parameter.

In this case, 'exlogin.php' is your custom PHP script.
After you sign in your SSO system,
please redirect back to 'url_after_login' page.

8 years agoBugTrack2/356 Fix spell miss of COUNTER_DIR
umorigu [Thu, 21 Jan 2016 12:58:30 +0000 (21:58 +0900)]
BugTrack2/356 Fix spell miss of COUNTER_DIR

8 years agoMerge branch 'ldap' into branch_r1_5
umorigu [Wed, 20 Jan 2016 20:56:45 +0000 (05:56 +0900)]
Merge branch 'ldap' into branch_r1_5

8 years agoBugTrack2/375 Use secure session options to prevent session hijacking
umorigu [Wed, 20 Jan 2016 20:55:03 +0000 (05:55 +0900)]
BugTrack2/375 Use secure session options to prevent session hijacking

8 years agoBugTrack2/375 Layout login form with table, and i18n messages
umorigu [Fri, 24 Jul 2015 20:13:32 +0000 (05:13 +0900)]
BugTrack2/375 Layout login form with table, and i18n messages

8 years agoBugTrack2/362 Implement LDAP account sign in
umorigu [Fri, 24 Jul 2015 19:50:06 +0000 (04:50 +0900)]
BugTrack2/362 Implement LDAP account sign in

8 years agoBugTrack2/362 Add LDAP settings
umorigu [Thu, 16 Jul 2015 18:42:23 +0000 (03:42 +0900)]
BugTrack2/362 Add LDAP settings

8 years agoBugTrack2/375 AUTH_TYPE_FORM auth_type - save auth info on session
umorigu [Sun, 12 Jul 2015 20:17:27 +0000 (05:17 +0900)]
BugTrack2/375 AUTH_TYPE_FORM auth_type - save auth info on session

Implement Log in and Log out for Form auth

8 years agoBugTrack2/372 Add auth group - set of multi users on page permission
umorigu [Sun, 12 Jul 2015 16:55:16 +0000 (01:55 +0900)]
BugTrack2/372 Add auth group - set of multi users on page permission

Reserved 'valid-group' that contains all authenticated users.
Implicit group that has same name as authenticated user name --
for example,
 User 'usera' is one and only member of Group 'usera'.

8 years agoBugTrack2/375 Decide to authenticated user only once on the beginning
umorigu [Sun, 12 Jul 2015 15:54:05 +0000 (00:54 +0900)]
BugTrack2/375 Decide to authenticated user only once on the beginning

If username are fixed and he don't have page reading permission,
the message 'Pagename is not readable' will be shown instead of
returning 401 Unauthorized.

8 years agoSupport simple page name expression with '&'-params as query string
umorigu [Sun, 12 Jul 2015 14:43:45 +0000 (23:43 +0900)]
Support simple page name expression with '&'-params as query string

For example, a URL "/?FrontPage&a=b&c=d" is recognized as "FrontPage"
page with a=b and c=d parammeteers.

8 years agoAdd Basic-Auth logout plugin to log out explicitly
umorigu [Mon, 6 Jul 2015 18:11:29 +0000 (03:11 +0900)]
Add Basic-Auth logout plugin to log out explicitly

8 years agoBugTrack2/364 New development team name: "PukiWiki Development Team"
umorigu [Mon, 18 Jan 2016 15:43:04 +0000 (00:43 +0900)]
BugTrack2/364 New development team name: "PukiWiki Development Team"

8 years agoBugTrack2/354 Fix: invalid char encoding of attached filename
umorigu [Mon, 18 Jan 2016 04:46:51 +0000 (13:46 +0900)]
BugTrack2/354 Fix: invalid char encoding of attached filename

8 years agoBugTrack2/370 Set same pcomment default target page for en/ja
umorigu [Sun, 17 Jan 2016 16:49:12 +0000 (01:49 +0900)]
BugTrack2/370 Set same pcomment default target page for en/ja

* Default page: Comments/%s
* Compatible default page: コメント/%s

If only compatible page exist, use compatible page as a default comment
target.

8 years agoBugTrack2/365 Simplify copyright string on page footer
umorigu [Sun, 17 Jan 2016 15:26:12 +0000 (00:26 +0900)]
BugTrack2/365 Simplify copyright string on page footer

8 years agoBugTrack2/141 Fix: counter plugin fails for yesterday on PHP5.1+
umorigu [Sun, 17 Jan 2016 13:33:30 +0000 (22:33 +0900)]
BugTrack2/141 Fix: counter plugin fails for yesterday on PHP5.1+

8 years agoBugTrack2/120 Fix: new plugin doesn't show "New!" indicator on PHP5+
umorigu [Sun, 17 Jan 2016 12:26:07 +0000 (21:26 +0900)]
BugTrack2/120 Fix: new plugin doesn't show "New!" indicator on PHP5+

strtotime function requests specific date time format.
So use ISO 8601 (YYYY-MM-DD) as input string.
http://php.net/manual/en/function.strtotime.php

8 years agoIgnore NetBeans project files
umorigu [Sun, 10 Jan 2016 16:22:46 +0000 (01:22 +0900)]
Ignore NetBeans project files

8 years agoMerge branch 'php7' into branch_r1_5
umorigu [Fri, 8 Jan 2016 15:30:00 +0000 (00:30 +0900)]
Merge branch 'php7' into branch_r1_5

BugTrack2/369 PHP7 Support

8 years agoBugTrack2/369 PHP7: Replace ereg regex functions with preg_xxx
umorigu [Fri, 8 Jan 2016 15:20:02 +0000 (00:20 +0900)]
BugTrack2/369 PHP7: Replace ereg regex functions with preg_xxx

Removed Extensions - ereg
http://php.net/manual/en/migration70.removed-exts-sapis.php

Remove ereg() and ereg_replace()

8 years agoBugTrack2/369 Follow PHP7 changes of internal array pointer
umorigu [Thu, 7 Jan 2016 18:47:44 +0000 (03:47 +0900)]
BugTrack2/369 Follow PHP7 changes of internal array pointer

Backward incompatible change of PHP7:
 foreach no longer changes the internal array pointer

We already don't use current() function for array to calculate prev/next.

http://php.net/manual/en/migration70.incompatible.php#migration70.incompatible.foreach.array-pointer
http://wiki.php.net/rfc/php7_foreach

8 years agoBugTrack2/369 PHP7 - Remove /e (PREG_REPLACE_EVAL) in preg_replace
umorigu [Tue, 5 Jan 2016 19:23:03 +0000 (04:23 +0900)]
BugTrack2/369 PHP7 - Remove /e (PREG_REPLACE_EVAL) in preg_replace

Backward incompatible change of PHP7:

preg_replace() function no longer supports "\e" (PREG_REPLACE_EVAL).

http://php.net/manual/en/migration70.changed-functions.php#migration70.changed-functions.core

Solution:

Simply remove "/e" option of preg_replace() because we doen't use EVAL
behaviors.

8 years agoFix invalid reference operator of array for usort
umorigu [Tue, 5 Jan 2016 19:18:30 +0000 (04:18 +0900)]
Fix invalid reference operator of array for usort

8 years agoBugTrack2/369 Support PHP7 - Remove '& new Class' notation
umorigu [Mon, 4 Jan 2016 03:19:26 +0000 (12:19 +0900)]
BugTrack2/369 Support PHP7 - Remove '& new Class' notation

Backward incompatible change of PHP7:

New objects cannot be assigned by reference
 The result of the new statement can no longer be assigned to a variable

http://php.net/manual/en/migration70.incompatible.php#migration70.incompatible.other.new-by-ref

Deprecated code:

```
class C {}
$c =& new C;
```

Solution:

```
class C {}
$c = new C;
```

These code changes will cause PHP4 imconpatibility in some cases.

9 years agoBugTrack2/358 Improve note regex for better PHP compatibility
umorigu [Tue, 24 Mar 2015 17:15:59 +0000 (02:15 +0900)]
BugTrack2/358 Improve note regex for better PHP compatibility

PHP5.3 (and others) sometimes crash with long note body.
So we reduce regex computational complexity by using '(('
Positive assertion and Once-only subpattern '(?='.

9 years agoBugTrack2/240 Implement more stable extracting items for tracker
umorigu [Mon, 19 Jan 2015 17:24:30 +0000 (02:24 +0900)]
BugTrack2/240 Implement more stable extracting items for tracker

9 years agoBugTrack2/361 Simplify URL. Keep slash / and colon : in page name URL
umorigu [Mon, 12 Jan 2015 20:54:10 +0000 (05:54 +0900)]
BugTrack2/361 Simplify URL. Keep slash / and colon : in page name URL

See: RFC 3986 http://www.ietf.org/rfc/rfc3986.txt - Section 3.4 Query

We don't need to percent encode for slash and colon.

9 years agoBugTrack/359, BugTrack/360 Fix Tracker list sort
umorigu [Sun, 11 Jan 2015 17:56:06 +0000 (02:56 +0900)]
BugTrack/359, BugTrack/360 Fix Tracker list sort

* BugTrack/359 Use 'usort' to sort track items instead of 'array_multisort'
* BugTrack/360 Use natucal sort via 'strnatcmp' function

9 years agoSupport UTF-8 only functions
umorigu [Wed, 3 Dec 2014 18:18:16 +0000 (03:18 +0900)]
Support UTF-8 only functions

The UTF-8 only function lines has '//UTF-8 only' trailing comment.
PukiWiki release deploy script would comment out these lines
for EUC-JP dist packages.

9 years agoRemove .cvsignore
umorigu [Mon, 22 Dec 2014 16:29:59 +0000 (01:29 +0900)]
Remove .cvsignore

9 years agoRe-create recent cache file 'cache/recent.dat' if it doesn't exit
umorigu [Mon, 22 Dec 2014 15:55:51 +0000 (00:55 +0900)]
Re-create recent cache file 'cache/recent.dat' if it doesn't exit

* cache/_recent.dat : default recent cache file for distribution
* wiki/_526563656E744368616E676573.txt : default 'RecentChanges' wiki text
* wiki.en/526563656E744368616E676573.txt : 'RecentChanges' of en

9 years agoConvert character code of the source code to UTF-8 from EUC-JP r1_5_start-utf8
umorigu [Tue, 2 Dec 2014 17:24:21 +0000 (02:24 +0900)]
Convert character code of the source code to UTF-8 from EUC-JP

9 years agoBugTrack2/320: Failure with page "0" (reverted before ../init.php r1.81) r1_5_end-eucjp
henoheno [Sat, 18 Apr 2009 00:56:33 +0000 (09:56 +0900)]
BugTrack2/320: Failure with page "0" (reverted before ../init.php r1.81)

9 years agoBugTrack2/236: If you compare two numerical strings, they are compared as integers
henoheno [Sat, 18 Apr 2009 00:42:07 +0000 (09:42 +0900)]
BugTrack2/236: If you compare two numerical strings, they are compared as integers

9 years agoBugTrack2/260: grobal $script => $script = get_script_uri()
henoheno [Sun, 11 Nov 2007 12:14:09 +0000 (21:14 +0900)]
BugTrack2/260: grobal $script => $script = get_script_uri()

9 years agoBugTrack2/236: Care for readdir() returns FALSE
henoheno [Sat, 3 Nov 2007 15:26:19 +0000 (00:26 +0900)]
BugTrack2/236: Care for readdir() returns FALSE

9 years agoBugTrack2/236: Care for readdir() returns FALSE
henoheno [Sat, 3 Nov 2007 15:17:52 +0000 (00:17 +0900)]
BugTrack2/236: Care for readdir() returns FALSE

9 years agoBugTrack2/158: A wrong comment was deleted.
teanan [Wed, 17 Oct 2007 17:49:29 +0000 (02:49 +0900)]
BugTrack2/158: A wrong comment was deleted.

9 years agoBugTrack2/236: Correct maintaince date
henoheno [Sun, 7 Oct 2007 13:08:50 +0000 (22:08 +0900)]
BugTrack2/236: Correct maintaince date

9 years agoBugTrack2/236: If you compare two numerical strings, they are compared as integers
henoheno [Sat, 6 Oct 2007 13:20:59 +0000 (22:20 +0900)]
BugTrack2/236: If you compare two numerical strings, they are compared as integers

9 years agoBugTrack2/269: YTable(): Cleanup
henoheno [Mon, 10 Sep 2007 14:18:50 +0000 (23:18 +0900)]
BugTrack2/269: YTable(): Cleanup

9 years agoWarning: fread() [function.fread]: Length parameter must be greater than 0
henoheno [Sun, 2 Sep 2007 14:24:40 +0000 (23:24 +0900)]
Warning: fread() [function.fread]: Length parameter must be greater than 0

9 years agoBugTrack2/55: Added two functions.
henoheno [Sun, 2 Sep 2007 12:35:00 +0000 (21:35 +0900)]
BugTrack2/55: Added two functions.
pkwk_chown(): Try to correct UID of the file
pkwk_touch_file(): touch() with pkwk_chown()

9 years agoBugTrack2/236: If you compare two numerical strings, they are compared as integers
henoheno [Sun, 19 Aug 2007 14:20:58 +0000 (23:20 +0900)]
BugTrack2/236: If you compare two numerical strings, they are compared as integers

9 years agoget_source(): Returns FALSE if error occurerd. Cleanup. Remove redundant is_page()
henoheno [Sun, 19 Aug 2007 14:10:15 +0000 (23:10 +0900)]
get_source(): Returns FALSE if error occurerd. Cleanup. Remove redundant is_page()

9 years agoget_source(): Returns FALSE if error occurerd. Cleanup. Remove redundant is_page()
henoheno [Sun, 19 Aug 2007 14:08:47 +0000 (23:08 +0900)]
get_source(): Returns FALSE if error occurerd. Cleanup. Remove redundant is_page()

9 years agoBugTrack2/264: Compute MD5 if needed, not everytime! (patched by ioio & ryu1)
henoheno [Mon, 30 Jul 2007 14:30:14 +0000 (23:30 +0900)]
BugTrack2/264: Compute MD5 if needed, not everytime! (patched by ioio & ryu1)

9 years agoget_source(,,$join=TRUE): Care for 0 byte files
henoheno [Sun, 29 Jul 2007 12:18:08 +0000 (21:18 +0900)]
get_source(,,$join=TRUE): Care for 0 byte files

9 years agoBugTrack2/262: Convert MenuBar before deciding $pkwk_dtd (patched by Ilfa)
henoheno [Thu, 26 Jul 2007 00:57:00 +0000 (09:57 +0900)]
BugTrack2/262: Convert MenuBar before deciding $pkwk_dtd (patched by Ilfa)

9 years agoBugTrack2/262: Convert MenuBar before deciding $pkwk_dtd (patched by Ilfa)
henoheno [Mon, 23 Jul 2007 14:26:06 +0000 (23:26 +0900)]
BugTrack2/262: Convert MenuBar before deciding $pkwk_dtd (patched by Ilfa)

9 years agoBugTrack2/192, BugTrack2/229: Comment out: 1.3.x-compat replacement keywords
henoheno [Thu, 19 Jul 2007 14:07:31 +0000 (23:07 +0900)]
BugTrack2/192, BugTrack2/229: Comment out: 1.3.x-compat replacement keywords

9 years agoBugTrack2/251: Show more decent 'HTML convert time' (base patched by ioio)
henoheno [Sun, 24 Jun 2007 13:59:50 +0000 (22:59 +0900)]
BugTrack2/251: Show more decent 'HTML convert time' (base patched by ioio)

9 years agodo_update_diff(): Simplify. Beautify XHTML
henoheno [Sat, 23 Jun 2007 16:19:40 +0000 (01:19 +0900)]
do_update_diff(): Simplify. Beautify XHTML

9 years agoBugTrack2/246: do_plugin_init(): KISS. $checked what => init $done
henoheno [Mon, 18 Jun 2007 14:32:49 +0000 (23:32 +0900)]
BugTrack2/246: do_plugin_init(): KISS. $checked what => init $done

9 years agoBugTrack2/246: do_plugin_init(): KISS.
henoheno [Sun, 17 Jun 2007 14:33:44 +0000 (23:33 +0900)]
BugTrack2/246: do_plugin_init(): KISS.
* This API do one thing: "FALSE or not". Forget meanless rule about NULL.
* htmlspecialchars() everywhere.

9 years ago* BugTrack2/246: Should use array_key_exists($maybe, $null) here (patched by sonots).
henoheno [Fri, 15 Jun 2007 13:48:19 +0000 (22:48 +0900)]
* BugTrack2/246: Should use array_key_exists($maybe, $null) here (patched by sonots).
* Please don't memorize the $result itself.

9 years agoBugTrack2/192, BugTrack2/229: Comment out: 1.3.x-compat replacement keywords
henoheno [Sun, 10 Jun 2007 02:08:40 +0000 (11:08 +0900)]
BugTrack2/192, BugTrack2/229: Comment out: 1.3.x-compat replacement keywords

9 years agoBugTrack2/236: "===" for two numerical strings. Can't rename "1" to "01".
henoheno [Sun, 20 May 2007 14:14:44 +0000 (23:14 +0900)]
BugTrack2/236: "===" for two numerical strings. Can't rename "1" to "01".

9 years agoBugTrack2/236: All your int are string two num
henoheno [Thu, 17 May 2007 13:35:49 +0000 (22:35 +0900)]
BugTrack2/236: All your int are string two num

9 years agoBugTrack2/235: Clear the sort_flag
henoheno [Sat, 12 May 2007 09:17:14 +0000 (18:17 +0900)]
BugTrack2/235: Clear the sort_flag

9 years agoBugTrack2/235: Clear the sort_flag: ksort()
henoheno [Sat, 12 May 2007 08:37:38 +0000 (17:37 +0900)]
BugTrack2/235: Clear the sort_flag: ksort()

9 years agoBugTrack2/235: Sort as string
henoheno [Sat, 12 May 2007 08:00:50 +0000 (17:00 +0900)]
BugTrack2/235: Sort as string

9 years agoBugTrack2/235: bin2hex() wants string, not int
henoheno [Sat, 12 May 2007 07:44:39 +0000 (16:44 +0900)]
BugTrack2/235: bin2hex() wants string, not int

9 years agoBugTrack2/225: POST => post (patched by g@kko)
henoheno [Sun, 8 Apr 2007 10:29:24 +0000 (19:29 +0900)]
BugTrack2/225: POST => post (patched by g@kko)

9 years agoBugTrack2/225: <br> => <br /> (patched by g@kko)
henoheno [Sun, 8 Apr 2007 10:22:18 +0000 (19:22 +0900)]
BugTrack2/225: <br> => <br /> (patched by g@kko)

9 years agoBugTrack2/226 unused $matches (pointed out by anonymous)
henoheno [Sun, 1 Apr 2007 10:59:05 +0000 (19:59 +0900)]
BugTrack2/226 unused $matches (pointed out by anonymous)

9 years agoBugTrack2/225: Forgotten </p> (patched by g@kko)
henoheno [Thu, 29 Mar 2007 15:05:52 +0000 (00:05 +0900)]
BugTrack2/225: Forgotten </p> (patched by g@kko)

9 years agoBugTrack2/62:
henoheno [Sun, 11 Feb 2007 05:53:32 +0000 (14:53 +0900)]
BugTrack2/62:
TrackBack implimentation had been removed entirely
due to extremely strong suspicion of violating copyright.
'referer' function (using this implementation), also
removed.

9 years agoBugTrack2/62:
henoheno [Sun, 11 Feb 2007 05:53:31 +0000 (14:53 +0900)]
BugTrack2/62:
TrackBack implimentation had been removed entirely
due to extremely strong suspicion of violating copyright.
'referer' function (that use the implimentation), also
removed.

9 years agopkwk_touch_file() also corrects the ownership
henoheno [Sat, 10 Feb 2007 06:20:44 +0000 (15:20 +0900)]
pkwk_touch_file() also corrects the ownership

9 years agopkwk_touch_file() also corrects the ownership
henoheno [Sun, 4 Feb 2007 11:42:36 +0000 (20:42 +0900)]
pkwk_touch_file() also corrects the ownership

9 years agoBugTrack/191: counter plugin still reset the count to zero (Notified by someone)
henoheno [Sun, 4 Feb 2007 11:14:44 +0000 (20:14 +0900)]
BugTrack/191: counter plugin still reset the count to zero (Notified by someone)

9 years ago$HTTP_SERVER_VARS for suppressing notices
henoheno [Sun, 19 Nov 2006 05:41:45 +0000 (14:41 +0900)]
$HTTP_SERVER_VARS for suppressing notices

9 years agoBugTrack2/62: Removed trackback.js and related setting $trackback_javascript.
henoheno [Sun, 8 Oct 2006 11:27:06 +0000 (20:27 +0900)]
BugTrack2/62: Removed trackback.js and related setting $trackback_javascript.
This JavaScript function OpenTrackback() MUST BE A COPY of MovableType's function OpenTrackback().
There must be a wrong precedure of creating, So 'written by upk' must not be true, so this code seems not GPL-licensed.
You can check this by searching 'OpenTrackback' at http://www.google.com/codesearch .

9 years agoBugTrack2/62: Removed trackback.js and related setting $trackback_javascript.
henoheno [Sun, 8 Oct 2006 11:24:30 +0000 (20:24 +0900)]
BugTrack2/62: Removed trackback.js and related setting $trackback_javascript.
This JavaScript function OpenTrackBack() MUST BE A COPY of MovableType's function OpenTrackback().
There must be a wrong precedure of creating, So 'written by upk' must not be true, so this code seems not GPL-licensed.
You can check this by searching 'OpenTrackBack' at http://www.google.com/codesearch .

9 years agoResurrect trackback.js. This function was called in skin files
henoheno [Sun, 8 Oct 2006 10:55:00 +0000 (19:55 +0900)]
Resurrect trackback.js. This function was called in skin files

9 years agoRemove unused trackback.js
henoheno [Sun, 6 Aug 2006 12:44:55 +0000 (21:44 +0900)]
Remove unused trackback.js

9 years agoBugTrack/691: 'skin/' replaces with 'SKIN_DIR'.
henoheno [Sun, 6 Aug 2006 12:41:17 +0000 (21:41 +0900)]
BugTrack/691: 'skin/' replaces with 'SKIN_DIR'.

9 years agoBugTrack/691: 'skin/' replaces with 'SKIN_DIR'.
teanan [Wed, 19 Jul 2006 17:43:27 +0000 (02:43 +0900)]
BugTrack/691: 'skin/' replaces with 'SKIN_DIR'.

9 years agoRename 'recent.dat' and 'RecentChanges' page to clarify logic changes
umorigu [Wed, 29 Oct 2014 13:11:44 +0000 (22:11 +0900)]
Rename 'recent.dat' and 'RecentChanges' page to clarify logic changes

9 years agoAdd .gitignore for user contents
umorigu [Wed, 29 Oct 2014 10:09:20 +0000 (19:09 +0900)]
Add .gitignore for user contents

9 years agoMerge tag 'r1_5_0' from branch_r1_5 r1_5_0
umorigu [Sat, 19 Jul 2014 02:07:36 +0000 (11:07 +0900)]
Merge tag 'r1_5_0' from branch_r1_5

PukiWiki 1.5.0

9 years agoBugTrack2/354: Implement RFC 6266 to support non-ASCII filename of Attach r1_5_0_rc1
umorigu [Mon, 7 Jul 2014 16:05:23 +0000 (01:05 +0900)]
BugTrack2/354: Implement RFC 6266 to support non-ASCII filename of Attach

* RFC 6266: Use of the Content-Disposition Header Field in the Hypertext Transfer Protocol
  - http://www.ietf.org/rfc/rfc6266.txt
* RFC2231: MIME Parameter Value and Encoded Word Extensions: Character Sets, Languages, and Continuations
  - http://www.ietf.org/rfc/rfc2231.txt
* RFC 5987: Character Set and Language Encoding for Hypertext Transfer Protocol (HTTP) Header Field Parameters
  - http://www.ietf.org/rfc/rfc5987.txt

9 years agoSet PukiWiki version to "1.5.0"
umorigu [Mon, 9 Jun 2014 17:26:12 +0000 (02:26 +0900)]
Set PukiWiki version to "1.5.0"

9 years agoWarning: Call-time pass-by-reference has been deprecated
henoheno [Sat, 10 Feb 2007 06:21:53 +0000 (15:21 +0900)]
Warning: Call-time pass-by-reference has been deprecated

9 years agoA little cleanup:
henoheno [Tue, 3 Oct 2006 14:16:31 +0000 (23:16 +0900)]
A little cleanup:
* Remove unused variable
* Use intval() to say why it's safe without htmlspecialchars() clearly
* BugTrack2/182: With php.ini: allow_call_time_pass_reference = Off
 'Warning: Call-time pass-by-reference has been deprecated'
 with array_walk (Patched by Ratbeta)

9 years agoBugTrack2/182: With php.ini: allow_call_time_pass_reference = Off
henoheno [Tue, 3 Oct 2006 13:33:36 +0000 (22:33 +0900)]
BugTrack2/182: With php.ini: allow_call_time_pass_reference = Off
 'Warning: Call-time pass-by-reference has been deprecated'
 with array_walk (Patched by Ratbeta)

9 years agoBugTrack2/182: With php.ini: allow_call_time_pass_reference = Off
henoheno [Sun, 6 Aug 2006 13:17:31 +0000 (22:17 +0900)]
BugTrack2/182: With php.ini: allow_call_time_pass_reference = Off
 'Warning: Call-time pass-by-reference has been deprecated'
 with array_walk (Patched by Ratbeta)

9 years agoBugTrack2/343: Use ENT_COMPAT at htmlspecialchars
umorigu [Sun, 1 Jun 2014 21:04:09 +0000 (06:04 +0900)]
BugTrack2/343: Use ENT_COMPAT at htmlspecialchars

Use ENT_COMPAT for 2nd- $flags parameter at 'htmlspecialchars' instead of
ENT_QUOTES because of the compatibility of PukiWiki 1.4.7