aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAgeFilesLines
* typoArthurHoaro2016-05-053-5/+5
|
* Merge pull request #551 from ArthurHoaro/hotfix/timezoneArthur2016-05-053-13/+13
|\ | | | | Use correct 'UTC' timezone
| * Use correct 'UTC' timezoneArthurHoaro2016-05-033-13/+13
| |
* | Merge pull request #532 from ArthurHoaro/hotfix/title-retrieve-the-returnArthur2016-05-036-16/+142
|\ \ | | | | | | Fixes #531 - Title retrieving is failing with multiple use case
| * | Fixes #531 - Title retrieving is failing with multiple use caseArthurHoaro2016-05-036-16/+142
| | | | | | | | | | | | see https://github.com/shaarli/Shaarli/issues/531 for details
* | | Merge pull request #550 from kalvn/masterArthur2016-05-031-2/+2
|\ \ \ | | | | | | | | Renames Awesomeplete dollar variable to avoid conflicts with jQuery
| * | | Renames Awesomeplete dollar variable to avoid conflicts with jQuerykalvn2016-05-031-2/+2
|/ / /
* | | Merge pull request #539 from daniellowtw/bugfix/array_filter-messes-with-keysArthur2016-04-141-1/+1
|\ \ \ | | | | | | | | Fix error when filtering search tags
| * | | Fix error when filtering search tagsD Low2016-04-141-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Arrays are key-value maps. We should reindex the array after a filter since we are using the key and count to do array access in filterTags. An example would be searching for "foo, bar", after the array filter, our array is actually (0 -> foo, 2 -> bar) which will cause an error when trying to access $searchtags[1].
* | | | Merge pull request #540 from ArthurHoaro/doc/update20160414Arthur2016-04-1461-626/+3433
|\ \ \ \ | |/ / / |/| | | Update docs from Wiki
| * | | Update docs from WikiArthurHoaro2016-04-1461-626/+3433
|/ / /
* | | Merge pull request #538 from virtualtam/fix/bookmark-exportVirtualTam2016-04-125-42/+202
|\ \ \ | | | | | | | | Refactor Netscape bookmark exporting
| * | | Refactor Netscape bookmark exportingVirtualTam2016-04-105-42/+202
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Relates to https://github.com/shaarli/netscape-bookmark-parser/issues/5 Fixes: - respect the Netscape bookmark format "specification" Modifications: - [application] introduce the NetscapeBookmarkUtils class - [template] export - improve formatting, rename export selection parameter - [template] export.bookmarks - template for Netscape exports - [tests] bookmark filtering, additional field generation Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* | | Merge pull request #537 from virtualtam/tests/dependenciesVirtualTam2016-04-101-1/+1
|\ \ \ | |_|/ |/| | Tests: update PHPUnit to 4.8.x
| * | Tests: update PHPUnit to 4.8.xVirtualTam2016-04-101-1/+1
|/ / | | | | | | Signed-off-by: VirtualTam <virtualtam@flibidi.net>
* | Merge pull request #524 from ArthurHoaro/hotfix/redirectorurlArthur2016-04-093-25/+47
|\ \ | | | | | | Fixes #480: add an option to urlencode redirector URL
| * | Fixes #480: add an option to urlencode redirector URLArthurHoaro2016-04-093-25/+47
|/ / | | | | | | | | | | | | | | * New config: `$GLOBALS['config']['REDIRECTOR_URLENCODE']` (default `true`). * Parameter added to LinkDB constructor. * Fixes a bug with urlencode and escaped url. * In `index.php`, LinkDB is now instanciate once for `importFile()` and `showDaily()`. * TU
* | Merge pull request #525 from ArthurHoaro/plugins/feeds-markdown2Arthur2016-04-091-0/+19
|\ \ | | | | | | Process feeds content with Markdown
| * | Process feeds content with MarkdownArthurHoaro2016-03-261-0/+19
| | |
* | | Merge pull request #527 from ArthurHoaro/hotfix/tagcloud-sizeArthur2016-04-092-7/+12
|\ \ \ | |_|/ |/| | Fixes #526: bad font size separator in tagcloud with some locale
| * | Fixes #526: bad font size separator in tagcloud with some localeArthurHoaro2016-03-312-7/+12
| |/ | | | | | | | | * Force the number format with number_format(). * Reduce the size deciment number to 2.
* | Merge pull request #522 from ArthurHoaro/hotfix/readershaareVirtualTam2016-03-302-1/+38
|\ \ | |/ |/| Refactor and rebase #380: Firefox reader view links
| * Refactor and rebase #380: Firefox reader view linksArthurHoaro2016-03-262-13/+36
| | | | | | | | | | Fixes #366 Closes #380
| * Fix issue 366, Problem when shaaring a link in Reader View of Firefox.Kevin Canévet2016-03-241-1/+15
| |
* | Remove dev cache disablingArthurHoaro2016-03-261-1/+1
| |
* | Merge pull request #520 from ArthurHoaro/plugins/nomarkdownArthur2016-03-263-12/+89
|\ \ | | | | | | Markdown: Add the 'meta-tag' `.nomarkdown` which prevent a shaare fro…
| * | Update markdown plugin README documentationArthurHoaro2016-03-261-11/+23
| | | | | | | | | | | | | | | * Add the `.nomarkdown` section. * Update misleading statements.
| * | Markdown: Add the 'meta-tag' `.nomarkdown` which prevent a shaare from being ↵ArthurHoaro2016-03-212-1/+66
| | | | | | | | | | | | | | | | | | parsed with markdown Also add the tag in tag list in edit_link, so it will appear on autocompletion.
* | | Merge pull request #515 from ArthurHoaro/template-feedsArthur2016-03-2516-339/+859
|\ \ \ | | | | | | | | Refactor RSS feeds generation, and do it through templates
| * | | Refactor filter in LinkDBArthurHoaro2016-03-258-106/+158
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * search type now carried by LinkDB in order to factorize code between different search sources. * LinkDB->filter split in 3 method: filterSearch, filterHash, filterDay (we know what type of filter is needed). * filterHash now throw a LinkNotFoundException if it doesn't exist: internal implementation choice, still displays a 404. * Smallhash regex has been rewritten. * Unit tests update
| * | | Makes escape a recursive function which handle array of stringsArthurHoaro2016-03-251-3/+11
| | | |
| * | | FeedBuilder unit testsArthurHoaro2016-03-253-15/+227
| | | |
| * | | Create a FeedBuilder class which build data for both ATOM and RSS feed.ArthurHoaro2016-03-253-239/+337
| | | |
| * | | Reword the ENABLE_RSS_PERMALINKS in the settings.ArthurHoaro2016-03-181-2/+5
| | | |
| * | | Plugin: add render_feed hook and call it while generating ATOM and RSS feed.ArthurHoaro2016-03-182-1/+32
| | | | | | | | | | | | | | | | 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-182-67/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Minor changes: * Fix the date which was in a invalid format. * Avoid empty categories (tags). * Use the locale to set the language
| * | | Adds a route for ATOM and RSS feeds pageArthurHoaro2016-03-181-0/+12
| | | |
| * | | Adds a RSS template fileArthurHoaro2016-03-181-0/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improvements: * Add searchtags in categories domain URL. * Language is now based on the locale. * Add a generator tag. * self link is always displayed.
| * | | Create a template to handle ATOM feedArthurHoaro2016-03-181-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ATOM feed improvement: * Adds a subtitle to match RSS feed behavior. * Better syntax for categories (see http://edward.oconnor.cx/2007/02/representing-tags-in-atom ). * Use locale to set the language
| * | | Add method assignAll() to pageBuilder to assign an array of dataArthurHoaro2016-03-181-0/+23
| |/ /
* | | Merge pull request #521 from ArthurHoaro/hotfix/404loginVirtualTam2016-03-241-1/+1
|\ \ \ | |_|/ |/| | Use generateLocation to set the redirection in login (and don't escape the url)
| * | Use generateLocation to set the redirection in login (and don't escape the url)ArthurHoaro2016-03-211-1/+1
| |/
* | Merge pull request #513 from ArthurHoaro/hotfix/retrieve-title-issueVirtualTam2016-03-142-1/+3
|\ \ | |/ |/| Fixes #512: retrieving title didn't match the first closing tag
| * Fixes #512: retrieving title didn't match the first closing tagArthurHoaro2016-03-082-1/+3
|/
* Merge pull request #509 from ArthurHoaro/v0.6.5v0.6.5Arthur2016-03-022-3/+3
|\ | | | | Bump version to v0.6.5
| * Bump version to v0.6.5ArthurHoaro2016-03-022-3/+3
|/ | | | Signed-off-by: ArthurHoaro <arthur@hoa.ro>
* Merge pull request #504 from ArthurHoaro/hotfix/http_languageArthur2016-03-011-1/+4
|\ | | | | Fixes #503: check that HTTP_ACCEPT_LANGUAGE is set before calling autolocale
| * Fixes #503: check that HTTP_ACCEPT_LANGUAGE is set before calling autoLocale()ArthurHoaro2016-02-281-1/+4
| |
* | Merge pull request #506 from kalvn/masterArthur2016-03-011-1/+4
|\ \ | | | | | | Avoids populating a markdown empty container if there's no description.