aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-14note about work in progressv0.3.0Christian Weiske
2014-10-14update changelog and readme; prepare 0.3.0Christian Weiske
2014-10-14Add database management pageChristian Weiske
2014-10-14Add computer name input field on oauth authorization pageChristian Weiske
2014-10-14Use SQL transactions during syncChristian Weiske
2014-10-14Link pages from statsChristian Weiske
2014-10-13Token deletion with simple undoChristian Weiske
Following the lines of - http://alistapart.com/article/neveruseawarning - https://github.com/owncloud/core/issues/9268 - https://github.com/owncloud/contacts/issues/107 I've added simple undo functionality to the "delete token" action. The user has 5 seconds to click on the "restore" button to undo the token deletion.
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-07Tell what the token management page doesChristian Weiske
2014-10-07add known working versionsChristian Weiske
2014-10-07Add 0.2.1 info to ChangeLogChristian Weiske
2014-10-07Tomboy on windows syncs fine with grauphel.Christian Weiske
Thanks to Chris Miera for reporting this.
2014-10-07Deleting tokens works (without confirmation)Christian Weiske
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-06prevent warning when user is not logged inChristian 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-30style the token list a bitChristian Weiske
2014-09-29Show client name in oauth authorization (works for tomdroid only)Christian Weiske
2014-09-27use .tar.bz2 instead of .zip for releasesv0.2.0Christian Weiske
2014-09-27update changelogChristian Weiske
2014-09-27fix zip file nameChristian Weiske
2014-09-27Tell about homepageChristian Weiske
2014-09-27phing build file to create releasesChristian Weiske
2014-09-27Add token management page (only shows tokens for now)Christian Weiske
2014-09-27Link info and stats page in settings section, update info pageChristian Weiske
2014-09-26Send HTTP 401 on invalid tokenChristian Weiske
2014-09-26Fix bug #3: Inserting notes on PostgreSQLChristian Weiske
2014-09-26Add changelog, update readmeChristian 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-09-26Fix oauth problem with tomdroid.Christian Weiske
Tomdroid[0] uses signpost[1] as oauth library. This lib detected our server as OAuth 1.0 and not 1.0a because callback_confirmed was "TRUE" instead of "true". OAuth 1.0 does not have the verifier parameter, so it was ignored and not sent to our server. The OAuth RFC 5849 specifies in section 2.1: oauth_callback_confirmed MUST be present and set to "true". TRUE is not true, so we failed to implement the spec correctly. [0] https://launchpad.net/tomdroid [1] https://github.com/mttkay/signpost
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-22add sidebarChristian Weiske
2014-08-22readmeChristian Weiske
2014-08-21use standard owncloud app layoutChristian Weiske
2014-08-21make sync work with conboyChristian Weiske
2014-08-21fix link output for tomdroidChristian Weiske
2014-08-21fix docblocksChristian Weiske
2014-08-21check if oauth extension is installedChristian 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