summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2015-09-20Fix #20 and #25: Add authorization header workaround for fcgidChristian Weiske
Apparently the "Authorization" header are passed into PHP as HTTP_XAUTHORIZATION instead of HTTP_AUTHORIZATION.
2015-09-18Let the SQL server filter notesChristian Weiske
2015-09-18Fix #28: array_shift() E_NOTICE in owncloud.logChristian Weiske
2015-06-04Fix bug #19: Tabs ignored in HTML exportChristian Weiske
2015-03-17use ILIKE for case insensitive searchesChristian Weiske
see https://github.com/owncloud/core/pull/10958
2015-03-17do not force wrap; we break links with thatChristian Weiske
2015-03-17reStructuredText outputChristian Weiske
2015-03-17standlone HTML outputChristian Weiske
2014-10-28Add hrefs to API responsesChristian Weiske
2014-10-28show last note modification dateChristian Weiske
2014-10-28catch rendering exceptionsChristian Weiske
2014-10-27Download note as XML and JSONChristian Weiske
2014-10-27new search query parser; support for NOTChristian Weiske
2014-10-24support query splitting and quoting and search content and tagsChristian Weiske
2014-10-24Implement note searchChristian Weiske
2014-10-24make linking of notes with <speci"a'l> chars workChristian Weiske
2014-10-23note previewChristian Weiske
2014-10-14Add database management pageChristian Weiske
2014-10-08Fix bug #10: OAuth does not work on ovh.com serverChristian Weiske
This ovh.com server always has $_SERVER['HTTP_AUTHORIZATION'] set. By default it has an empty string as value, and this breaks the PHP OAuth extension - see https://bugs.php.net/bug.php?id=68168 We work around that by forcing the signature method in this special case, so that no exception is thrown. Thanks to Julien Daviaud for giving me access to his server for debugging.
2014-10-07Another fix for bug #10Christian Weiske
2014-10-06Try to fix issue #10; work around bug https://bugs.php.net/bug.php?id=68168Christian Weiske
2014-10-02add DELETE /token/$username/$tokenKey APIChristian Weiske
2014-10-02Fix bug #8: Titled blank notes cause SQL errorChristian Weiske
2014-09-30store client name and last use time for tokens. show them in token managementChristian Weiske
2014-09-30fix owncloud.log noticesChristian Weiske
2014-09-26Send HTTP 401 on invalid tokenChristian Weiske
2014-09-26Fix bug #3: Inserting notes on PostgreSQLChristian Weiske
2014-09-26Fix length of date fields in database.Christian Weiske
The last digit of the time zone was missing because the database date fields were only 32 instead of 33 characters. Tomdroid sync failed because of this. Tomdroid sync works now!
2014-08-23allow listing all and untagged notesv0.1.0Christian Weiske
2014-08-23fix two bugs: syncdata generation and tag linkingChristian Weiske
2014-08-22show tags and note titles in the notebookChristian Weiske
2014-08-22link api from web interface, make single note fetching work, redo note ↵Christian Weiske
storage username
2014-08-22show some statistics on the index pageChristian Weiske
2014-08-21make sync work with conboyChristian Weiske
2014-08-21fix docblocksChristian Weiske
2014-08-21Support oauth on apache+fastcgiChristian Weiske
2014-08-21fix re-sync with tomboyChristian Weiske
2014-08-21use factory method for oauthproviderChristian Weiske
2014-08-21CS: tab2spacesChristian Weiske
2014-08-20sync with tomboy worksChristian Weiske
2014-08-18oauth dance worksChristian Weiske