1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-23 20:54:23 +01:00
Tim 597529b30c
Backport of #261 to stable8.2
Make tag filter bar visible

Full width tag filter bar

Ensure the tag filter bar is as large as the one for adding bookmarks

Tags under filter search bar

Ensure the selected tags appear below the tags filter search bar.

Update bookmarks.css
2016-08-07 23:04:28 +02:00
2016-08-07 23:04:28 +02:00
2016-08-07 23:04:28 +02:00
2015-09-04 02:10:41 -04:00
2016-04-25 01:02:16 +02:00
2015-07-14 14:27:09 +02:00
2015-07-08 22:14:52 +02:00

Bookmarks app

Maintainers:

Developer setup info:

Installation:

Just clone this repo into one of your apps directory.

Status :

Rewrite by [Stefan Klemm] aka ganomi (https://github.com/ganomi)

  • This is a refactored / rewritten version of the bookmarks app using the app framework
  • Dependency Injection for user and db is used througout the controllers
  • The Routing features a consistent rest api
  • The Routing provides some legacy routes, so that for exampe the Android Bookmarks App still works.
  • Merged all the changes from https://github.com/owncloud/bookmarks/pull/68 and added visual fixes. App uses the App Framework Styling on the Client side now.

There is a publicly available api that provides access to bookmarks per user. (This is usefull in connection with the Wordpress Plugin https://github.com/mario-nolte/oc2wp-bookmarks)

Public Rest Api (JSON Formatting):

Example Url:

../apps/bookmarks/public/rest/v1/bookmark?user=username&password=password&tags[]=firsttag&tags[]=anothertag&select[]=description&conjunction=AND&sortby=description

Parameters:

  • user is a mandatory parameter. This will return all bookmarks from the specific user marked as public. (not yet possible!)
  • by providing the users password all bookmarks will be returned
  • tags[] can take multiple arguments and they are used to filter the requested bookmarks by tags
  • conjunction (default = or) sets the tag filter to OR or to AND
  • select[] takes multiple arguments. By default only url and title per bookmark are returned. Further you can select any attribute of the bookmarks table and also the attribute "tags"
  • sortby takes and attribute that results will be sorted by descending.
Description
Bookmark app for ownCloud
Readme 4.7 MiB
Languages
PHP 55.9%
JavaScript 41.7%
CSS 2.4%