aboutsummaryrefslogtreecommitdiffhomepage
path: root/index.php
Commit message (Collapse)AuthorAgeFilesLines
* Plugin: add render_feed hook and call it while generating ATOM and RSS feed.ArthurHoaro2016-03-181-0/+6
| | | | Create an example of the new hook in the demo plugin.
* Refactor showRSS, and make it use the RSS templateArthurHoaro2016-03-181-53/+67
|
* Refactor showAtom, and make it use the ATOM templateArthurHoaro2016-03-181-66/+59
| | | | | | | | Minor changes: * Fix the date which was in a invalid format. * Avoid empty categories (tags). * Use the locale to set the language
* Add method assignAll() to pageBuilder to assign an array of dataArthurHoaro2016-03-181-0/+23
|
* Bump version to v0.6.5ArthurHoaro2016-03-021-2/+2
| | | | Signed-off-by: ArthurHoaro <arthur@hoa.ro>
* Fixes #503: check that HTTP_ACCEPT_LANGUAGE is set before calling autoLocale()ArthurHoaro2016-02-281-1/+4
|
* Bump version to v0.6.4ArthurHoaro2016-02-281-2/+2
| | | | Signed-off-by: ArthurHoaro <arthur@hoa.ro>
* Merge pull request #496 from ArthurHoaro/cross-searchArthur2016-02-281-41/+79
|\ | | | | Allow crossed search between terms and tags
| * Allow crossed search between terms and tagsArthurHoaro2016-02-281-41/+79
| | | | | | | | | | | | | | * Partial fix of #449 * Current use case: search term + click on tag. * LinkFilter now returns all links if no filter is given. * Unit tests.
* | Merge pull request #492 from ArthurHoaro/locale-sort-fixArthur2016-02-241-25/+6
|\ \ | |/ |/| Fixes #481: tag cloud fatal error
| * Fixes #481: tag cloud fatal errorArthurHoaro2016-02-191-4/+5
| | | | | | | | Only send LC_COLLATE to Collator and check that no error occured.
| * Apply the locale to all categories and move autolocale to Utils.phpArthurHoaro2016-02-191-21/+1
| |
* | Merge pull request #486 from virtualtam/refactor/datetimeArthur2016-02-181-41/+24
|\ \ | | | | | | cleanup: use DateTime to format dates
| * | cleanup: use DateTime to format datesVirtualTam2016-02-171-41/+24
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Closes #270 Modifications: - replace custom date parsing by DateTime calls - use proper date formatting for RSS feeds Deletions: - linkdate2timestamp() - linkdate2rfc822 - linkdate2iso8601 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* / Fixes #468: don't trim descriptionArthurHoaro2016-02-181-1/+1
|/ | | | | | Spaces at the start of shaares can be intended. Eg: markdown plugin. #468
* Merge pull request #461 from ArthurHoaro/tagcloud-sortArthur2016-02-151-3/+17
|\ | | | | Fixes #456: Tag cloud does not sort tags (fully) alphabetically
| * Fixes #456: Tag cloud does not sort tags (fully) alphabeticallyArthurHoaro2016-02-051-3/+17
| | | | | | | | | | | | | | * Use Collator class to sort tags using the locale (in PECL intl, included in most PHP installation). * Use strcasecmp if Collator is not found. Both sorts are case insensitive.
* | Remove first '-' char when saving tagsArthurHoaro2016-02-151-0/+2
| |
* | Merge pull request #479 from ArthurHoaro/pluginsadmin-error-urlArthur2016-02-151-1/+1
|\ \ | | | | | | Fixes typo in plugin admin redirection URL
| * | Fixes typo in plugin admin redirection URLArthurHoaro2016-02-151-1/+1
| | |
* | | Merge pull request #460 from ArthurHoaro/440-editlink-404Arthur2016-02-151-13/+34
|\ \ \ | | | | | | | | Fixes #440 - 404 error after editing a link
| * | | Fixes #440 - 404 error after editing a linkArthurHoaro2016-02-041-1/+1
| | | | | | | | | | | | | | | | Remove unnecessary escape().
| * | | Code cleanup: index.php - save_editArthurHoaro2016-02-041-12/+33
| | |/ | |/|
* | | Merge pull request #442 from ArthurHoaro/updaterArthur2016-02-151-10/+23
|\ \ \ | |_|/ |/| | Introduce the Updater class which
| * | Introduce the Updater class whichArthurHoaro2016-02-151-10/+23
| |/ | | | | | | | | | | | | * contains methods designed to be run once. * is able to upgrade the datastore or the configuration. * is based on methods names, stored in a text file with ';' separator (updates.txt). * begins with existing function 'mergeDeprecatedConfigFile()' (options.php).
* | Common hooks: process includes before header/footerArthurHoaro2016-02-101-1/+1
| |
* | Merge pull request #458 from ArthurHoaro/plugins-init-parametersArthur2016-02-041-1/+2
|\ \ | | | | | | Initialize plugin parameters array to avoid unnecessary warning.
| * | Initialize plugin parameters array to avoid unnecessary warning.ArthurHoaro2016-02-021-1/+2
| |/
* / Add a default value to ENABLE_UPDATECHECK to avoid unnecessary warning.ArthurHoaro2016-02-021-0/+3
|/
* Bump version to v0.6.3ArthurHoaro2016-01-311-2/+2
|
* Fixes #378 - Plugin administration UI.ArthurHoaro2016-01-311-0/+48
|
* Create 404 templateDimtion2016-01-201-5/+14
| | | | Solve #430 for links
* Logging: move logm() from index.php to application/Utils.phpVirtualTam2016-01-161-13/+5
| | | | | | | | | | | Relates to #436 Modifications: - inject dependencies to global variables ($_SERVER, $GLOBALS) - apply coding conventions - add test coverage Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Fixes #410 - Retrieve title fails in multiple casesArthurHoaro2016-01-111-50/+37
| | | | | | | | | * `get_http_url()` renamed to `get_http_response()`. * Use the same HTTP context to retrieve response headers and content. * Follow HTTP 301 and 302 redirections to retrieve the title (default max 3 redirections). * Add `LinkUtils` to extract titles and charset. * Try to retrieve charset from HTTP headers first (new), then HTML content. * Use mb_string to re-encode title if necessary.
* Merge pull request #424 from ArthurHoaro/searchArthur2016-01-061-93/+117
|\ | | | | Link filter refactoring
| * Fixes #426 - Do not filter with blank tags.ArthurHoaro2016-01-061-4/+6
| |
| * Link filter refactoringArthurHoaro2016-01-061-89/+111
| | | | | | | | | | | | | | | | | | | | * introduce class LinkFilter to handle link filter operation (and lighten LinkDB). * handle 'private only' in filtering. * update template to prefill search fields with current search terms. * coding style. * unit test (mostly move from LinkDB to LinkFilter). PS: preparation for #358 #315 and 'AND' search.
* | Fixes #428: validate buttons presence instead of valueArthurHoaro2016-01-031-9/+9
|/ | | | | Also adds a validation where renaming with 'fromtag' specified and empty 'totag'. It was causing a 404, now it just re-render the form.
* Bump version to v0.6.2v0.6.2VirtualTam2015-12-231-2/+2
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Merge pull request #407 from ArthurHoaro/daily-routerVirtualTam2015-12-081-6/+14
|\ | | | | Fixes #402: build the daily page through renderPage()
| * Fixes #403: build the daily page through renderPage()ArthurHoaro2015-12-081-6/+14
| | | | | | | | | | * new entry in the Router for daily page. * add an always displayed button in demo_plugin
* | Reset permissions on index.php (changed in ↵ArthurHoaro2015-12-081-0/+0
| | | | | | | | 18cca483b0b51f190bd875fc4273a0fff3fedebd ).
* | Temporary fix for head titlesArthurHoaro2015-12-071-1/+4
|/ | | | only set the title on permalink.
* Fixes #399 - show single link title as page titleArthurHoaro2015-12-051-0/+1
|
* fix: assign template variables to empty values so they can be evaluatedVirtualTam2015-12-031-0/+2
| | | | | | Regression introduced in #394 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Bump version to v0.6.1v0.6.1VirtualTam2015-12-011-2/+2
| | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* application: default to the "stable" branch for update checksVirtualTam2015-11-271-13/+19
| | | | | | | Relates to #372 Relates to #390 Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* application: refactor version checks, move to ApplicationUtilsVirtualTam2015-11-261-27/+12
| | | | | | | | | | | | | | | Relates to #372 Modifications: - move checkUpdate() to ApplicationUtils - reduce file I/O operations during version checks - apply coding conventions - add test coverage Tools: - create a sandbox directory for tests Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* Merge pull request #355 from ArthurHoaro/redirector-urlVirtualTam2015-11-261-27/+21
|\ | | | | URL encode links when a redirector is set
| * URL encode links when a redirector is set.ArthurHoaro2015-11-261-27/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes #328 - URL encode links when a redirector is set * WARNING - template edit - new variable available : "real_url" Contains the final real url (redirected or any other change on original URL) * Don't redirect shaares link in RSS/Atom. * Affects links shaared in description. * Move text2clickable and keepMultipleSpaces to Utils.php + unit test UPDATE: * keepMultipleSpaces renamed to space2nbsp * space2nbsp improved to handle single space at line beginning * links in text description aren't 'nofollow' anymore