1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2024-11-28 04:24:09 +01:00
Bookmark app for ownCloud
Go to file
Thomas Müller 8bb4d0bf13 Merge pull request #3 from Kawohl/fixcompat
fixed compatibility
2017-08-07 12:09:05 +02:00
appinfo fixed compatibility 2017-03-09 15:06:22 +00:00
controller fixed opening bracket 2017-08-03 11:45:55 +02:00
css Update bookmarks.css 2016-07-01 04:35:49 +02:00
img Fix viewBox of SVG to allow proper scaling in Firefox 2016-08-19 17:12:29 +02:00
js accept pages that return 401-403, show error message on other error codes 2016-08-26 12:37:43 +02:00
l10n [tx-robot] updated from transifex 2016-08-03 20:11:27 -04:00
templates fixed compatibility 2017-03-09 15:06:22 +00:00
tests adjust unit test 2016-04-24 22:09:35 +02:00
.scrutinizer.yml Update .scrutinizer.yml 2015-07-14 14:27:09 +02:00
.travis.yml master of Nc and oC does not support PHP 5.5 anymore 2016-09-25 20:38:03 +02:00
CONTRIBUTING.md Add CONTRIBUTING.md 2015-07-08 22:14:52 +02:00
COPYING This is a refactored / rewritten version of the bookmarks app using the app frameworks design and controller features. 2014-11-26 12:24:18 +01:00
issue_template.md Shamelessly copy issue template from core 2016-04-17 22:58:11 +02:00
README.md This is a refactored / rewritten version of the bookmarks app using the app frameworks design and controller features. 2014-11-26 12:24:18 +01: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.