• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

Tags
No Tags

Frequently used words (click to add to your profile)

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

PukiWiki


RSS
Rev. Hora Autor
7556fdb 2016-01-27 00:09:32 umorigu

BugTrack2/376 Keep download counts of archived attached files

103b575 2016-01-23 01:28:53 umorigu

BugTrack2/373 AUTH_TYPE_EXTERNAL - Add Log-in and Log-out menu

b5db2e9 2016-01-23 01:26:19 umorigu

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.

ffd2530 2016-01-21 21:58:30 umorigu

BugTrack2/356 Fix spell miss of COUNTER_DIR

ca44682 2016-01-21 05:56:45 umorigu

Merge branch 'ldap' into branch_r1_5

4008b5e 2016-01-21 05:55:03 umorigu

BugTrack2/375 Use secure session options to prevent session hijacking

34bff8e 2016-01-21 05:31:37 umorigu

BugTrack2/375 Layout login form with table, and i18n messages

f18af24 2016-01-21 05:31:35 umorigu

BugTrack2/362 Implement LDAP account sign in

ac4cd5f 2016-01-21 05:31:32 umorigu

BugTrack2/362 Add LDAP settings

0bd51fe 2016-01-21 05:31:12 umorigu

BugTrack2/375 AUTH_TYPE_FORM auth_type - save auth info on session

Implement Log in and Log out for Form auth

0b74c71 2016-01-21 05:29:12 umorigu

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'.

82ba8d3 2016-01-21 02:35:54 umorigu

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.

49b6687 2016-01-21 02:31:11 umorigu

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.

ef5eebe 2016-01-21 02:30:24 umorigu

Add Basic-Auth logout plugin to log out explicitly

6ee7490 2016-01-19 00:43:04 umorigu

BugTrack2/364 New development team name: "PukiWiki Development Team"

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.