• R/O
  • HTTP
  • SSH
  • HTTPS

コミット一覧

タグ
未設定

よく使われているワード(クリックで追加)

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

bugtrack_2434_search_result_cache2
RSS
Rev. 日時 作者
7a110e3 bugtrack_2434_search_result_cache2 2017-10-21 05:42:22 umorigu

BugTrack/2176 showrss: Fix character encoding issues etc.

de48817 2017-10-21 01:27:13 umorigu

BugTrack/2442 showrss plugin - Support HTTPS RSS feeds

0181bd0 2017-10-19 01:05:07 umorigu

BugTrack/2435 Improve search result messages

1309e51 2017-10-01 05:52:20 umorigu

BugTrack/2434 Search result cache and offset paging

7e5e27a bugtrack_692_search_result6 2017-09-30 15:34:42 umorigu

BugTrack/2433 Search Progress and Cancel with search2 plugin

15e6dda 2017-09-30 15:31:10 umorigu

BugTrack/692 Show page contents in search result - search2 plugin

* Show page contents by client-side JavaScript
* Add new "search2" plugin with "skin/search2.js" JavaScript
* Toggle switch to show details or not
* Supoort both UTF-8 and EUC-JP encodings
* OR Search with "OR"-combined keywords (ex: "A OR B")
* Always show passage
* Color search texts in details view
* Color search texts in each text-found page
* Web browser requirement: HTML5 Fetch API (You can use Polyfill library)
* Server requirement: PHP5.4+ (can handle JSON)

b173cf0 2017-09-23 00:22:59 umorigu

BugTrack/2420 AutoTicketLink: Move defs after body start tag

d170828 bugtrack_2292_do_search 2017-09-13 00:08:01 umorigu

BugTrack/2292 Remove redundant text search in do_search()

b7804ac 2017-09-13 00:07:19 umorigu

BugTrack/2432 Ignore page readable or not on AutoLink processing

Simplify page name search by links_do_search_page() added

4105374 2017-09-12 01:16:33 umorigu

BugTrack/2213 Improve Canonical URL and reload links

e90ad60 2017-09-11 21:39:47 umorigu

BugTrack/2239 Show page canonical URL after commenting

20becf2 2017-09-10 10:30:13 umorigu

BugTrack/2265 Enable edit_auth for bugtrack and tracker plugin

2039572 2017-09-09 22:52:42 umorigu

BugTrack/407 Show attached file list on editing page

93795e6 2017-09-09 22:22:55 umorigu

BugTrack/2430 Remove author line from text-search target

8754850 2017-09-09 21:34:47 umorigu

BugTrack/2385 Remote author info from editing text on unfreezing

c169a5a 2017-09-09 21:03:07 umorigu

BugTrack/184 Save user's "name" for commenting

* Target plugin: comment, pcomment, article and bugtrack
* Save user's name in localStorage of Web browser

6e13275 2017-09-08 23:57:20 umorigu

BugTrack/2424 bugtrack: Define bugtrack list style by CSS

e149f4a 2017-09-08 06:18:04 umorigu

BugTrack/2426 topicpath plugin - Use CSS layout in tdiary skin

5b060dc 2017-09-08 06:00:32 umorigu

BugTrack/2428 bugtrack: Enable WikiName link on $nowikiname = 1

a784fa9 bugtrack_2213_relative_script_uri3 2017-09-06 07:58:31 umorigu

BugTrack/2348 Remove limitation of Search box count

71a40c7 2017-09-04 23:57:14 umorigu

BugTrack/615 Remove $script shortening logic for Keitai profile

42880ef 2017-09-04 23:07:03 umorigu

BugTrack/2213 Use Absolute URI as Canonical URL

87416fb 2017-09-04 02:26:28 umorigu

BugTrack/341 Support Port 443 of non-https sites

1c21a00 2017-09-04 01:46:01 umorigu

BugTrack/2213 Support Absolute/Relative URI type context

We can create URI-type context to call pkwk_base_uri_type_stack_push()
and can stop the context to call pkwk_base_uri_type_stack_pop().

```
$relative_uri = get_base_uri();
pkwk_base_uri_type_stack_push(PKWK_URI_ABSOLUTE);
$absolute_uri = get_base_uri();
pkwk_base_uri_type_stack_pop();
```

d4fd351 2017-09-03 11:51:11 umorigu

BugTrack/2260 Use get_base_uri() instead of $script

2019096 2017-09-03 21:22:17 umorigu

BugTrack/2213 Use get_base_uri() instead of get_script_uri()

82ae296 2017-09-02 18:25:49 umorigu

BugTrack/2213 Set Absolute URI or Root relative path

* Absolute URI: URI for Offline USE
* Root relative URI: Location header in HTTP redirection

7bad7de 2017-09-02 12:50:22 umorigu

BugTrack/2213 Use relative path for internal link - get_base_uri()

Add URI type enum.

* PKWK_URI_RELATIVE : relative path (ex: ./, index.php )
* PKWK_URI_ROOT : Root relative path (ex: /wiki/)
* PKWK_URI_ABSOLUTE : Absolute URI (ex: http://example.com/wiki/)

We will use get_base_uri() to make internal link.

get_base_uri(): returns simple URL that indicates this script(PukiWiki)

For example for 'http://example.com/wiki/' site,

* `get_base_uri()` returns './'
* `get_base_uri(PKWK_URI_ROOT)` returns '/wiki/'
* `get_base_uri(PKWK_URI_ABSOLUTE)` returns 'http://example.com/wiki/'

get_page_uri($page) returns simple URL that indicates specific page.

For example,

* `get_page_uri('News')` returns './?News'
* `get_page_uri('News', PKWK_URI_ROOT)` returns '/wiki/?News'
* `get_page_uri('News', PKWK_URI_ABSOLUTE)` returns
'https://example.com/wiki/?News'

6785d8b 2017-09-02 10:38:45 umorigu

BugTrack/2299 Detect https access by REQUEST_SCHEME server variable

* Detect https access by REQUEST_SCHEME or HTTPS vars
* Get URI pathname from REQUEST_URI server variable instead of SCRIPT_NAME

cf24849 bugtrack_2256_edit_preview_with_template 2017-08-27 11:16:10 umorigu

BugTrack/2256 edit: Handle template loading button