• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

RSS
Rev. Time Author
c66c5ef 2016-01-18 13:46:51 umorigu

BugTrack2/354 Fix: invalid char encoding of attached filename

5270f6c 2016-01-18 01:49:12 umorigu

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.

233d516 2016-01-18 00:26:12 umorigu

BugTrack2/365 Simplify copyright string on page footer

06b71b2 2016-01-17 22:49:25 umorigu

BugTrack2/141 Fix: counter plugin fails for yesterday on PHP5.1+

30594c9 2016-01-17 22:08:15 umorigu

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

5144ce2 2016-01-11 01:22:46 umorigu

Ignore NetBeans project files

1746320 2016-01-09 00:30:00 umorigu

Merge branch 'php7' into branch_r1_5

BugTrack2/369 PHP7 Support

df0569a 2016-01-09 00:20:02 umorigu

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()

6ac4ecf 2016-01-08 03:47:44 umorigu

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

51ce191 2016-01-06 04:23:03 umorigu

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.

59f8641 2016-01-06 04:18:30 umorigu

Fix invalid reference operator of array for usort

b1489f4 2016-01-04 12:19:26 umorigu

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.

4752aff 2015-03-25 02:15:59 umorigu

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 '(?='.

c623f26 2015-01-20 02:24:30 umorigu

BugTrack2/240 Implement more stable extracting items for tracker

15af7ee 2015-01-13 05:54:10 umorigu

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.

bc27e47 2015-01-12 02:56:06 umorigu

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

86a06ff 2015-01-16 03:24:19 umorigu

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.

e8f5d20 2014-12-23 01:43:35 umorigu

Remove .cvsignore

a244734 2014-12-23 01:42:41 umorigu

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

8352664 2014-12-03 02:24:21 umorigu

Convert character code of the source code to UTF-8 from EUC-JP

3fad7a8 2014-11-30 20:27:59 henoheno

BugTrack2/320: Failure with page "0" (reverted before ../init.php r1.81)

1d8f67a 2014-11-30 20:25:42 henoheno

BugTrack2/236: If you compare two numerical strings, they are compared as integers

da1c5a7 2014-11-30 20:09:53 henoheno

BugTrack2/260: grobal $script => $script = get_script_uri()

7601442 2014-11-30 13:00:19 henoheno

BugTrack2/236: Care for readdir() returns FALSE

4dfc61d 2014-11-30 12:56:52 henoheno

BugTrack2/236: Care for readdir() returns FALSE

041d59e 2014-11-30 12:51:08 teanan

BugTrack2/158: A wrong comment was deleted.

92cd927 2014-11-30 11:27:13 henoheno

BugTrack2/236: Correct maintaince date

3bd4409 2014-11-30 11:20:42 henoheno

BugTrack2/236: If you compare two numerical strings, they are compared as integers

c269397 2014-11-30 10:24:01 henoheno

BugTrack2/269: YTable(): Cleanup

4d49c47 2014-11-30 10:12:08 henoheno

Warning: fread() [function.fread]: Length parameter must be greater than 0