| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
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].
|
|\
| |
| | |
Refactor Netscape bookmark exporting
|
|/
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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>
|
|\
| |
| | |
Tests: update PHPUnit to 4.8.x
|
|/
|
|
| |
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
|
|\
| |
| | |
Fixes #480: add an option to urlencode redirector URL
|
|/
|
|
|
|
|
|
| |
* 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
|
|\
| |
| | |
Process feeds content with Markdown
|
| | |
|
|\ \
| | |
| | | |
Fixes #526: bad font size separator in tagcloud with some locale
|
| |/
| |
| |
| |
| | |
* Force the number format with number_format().
* Reduce the size deciment number to 2.
|
|\ \
| |/
|/| |
Refactor and rebase #380: Firefox reader view links
|
| |
| |
| |
| |
| | |
Fixes #366
Closes #380
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Markdown: Add the 'meta-tag' `.nomarkdown` which prevent a shaare fro…
|
| | |
| | |
| | |
| | |
| | | |
* Add the `.nomarkdown` section.
* Update misleading statements.
|
| | |
| | |
| | |
| | |
| | |
| | | |
parsed with markdown
Also add the tag in tag list in edit_link, so it will appear on autocompletion.
|
|\ \ \
| | | |
| | | | |
Refactor RSS feeds generation, and do it through templates
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
* 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
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Create an example of the new hook in the demo plugin.
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Minor changes:
* Fix the date which was in a invalid format.
* Avoid empty categories (tags).
* Use the locale to set the language
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Improvements:
* Add searchtags in categories domain URL.
* Language is now based on the locale.
* Add a generator tag.
* self link is always displayed.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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
|
| |/ / |
|
|\ \ \
| |_|/
|/| | |
Use generateLocation to set the redirection in login (and don't escape the url)
|
| |/ |
|
|\ \
| |/
|/| |
Fixes #512: retrieving title didn't match the first closing tag
|
|/ |
|
|\
| |
| | |
Bump version to v0.6.5
|
|/
|
|
| |
Signed-off-by: ArthurHoaro <arthur@hoa.ro>
|
|\
| |
| | |
Fixes #503: check that HTTP_ACCEPT_LANGUAGE is set before calling autolocale
|
| | |
|
|\ \
| | |
| | | |
Avoids populating a markdown empty container if there's no description.
|
| |/ |
|
|\ \
| |/
|/| |
Fixes #477: support multi reverse proxy with comma syntax
|
|/
|
|
| |
Going through multiple reverse proxy will store multiple scheme and port in HTTP header separated by a comma. Shaarli will use the first one to generate server_url.
|
|\
| |
| | |
Bump version to v0.6.4
|
|/
|
|
| |
Signed-off-by: ArthurHoaro <arthur@hoa.ro>
|
|\
| |
| | |
Fixes #411: remove hardcoded plugin icon size
|
| | |
|
|\ \
| |/
|/| |
Allow crossed search between terms and tags
|
| |
| |
| |
| |
| |
| |
| | |
* Partial fix of #449
* Current use case: search term + click on tag.
* LinkFilter now returns all links if no filter is given.
* Unit tests.
|
|\ \
| | |
| | | |
Markdown: don't escape content + sanitize sensible tags
|