<feed xmlns='http://www.w3.org/2005/Atom'>
<title>grauphel.git, branch v0.3.0</title>
<subtitle>ownCloud application implementing the Tomboy REST API for syncing notes.</subtitle>
<id>https://git.cweiske.de/grauphel.git/atom?h=v0.3.0</id>
<link rel='self' href='https://git.cweiske.de/grauphel.git/atom?h=v0.3.0'/>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/'/>
<updated>2014-10-14T21:29:21Z</updated>
<entry>
<title>note about work in progress</title>
<updated>2014-10-14T21:29:21Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-14T21:29:21Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=a6e6dc9e303ccddf1cb6e699f5e43295af361e0f'/>
<id>urn:sha1:a6e6dc9e303ccddf1cb6e699f5e43295af361e0f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>update changelog and readme; prepare 0.3.0</title>
<updated>2014-10-14T21:27:36Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-14T21:27:36Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=1ba3513a32c4ea51e4e3f2ea56e3639aa76f3bb2'/>
<id>urn:sha1:1ba3513a32c4ea51e4e3f2ea56e3639aa76f3bb2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add database management page</title>
<updated>2014-10-14T21:24:40Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-14T21:24:40Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=6c8ad60e9888fa5625dad2460ca073f93ac1ae0d'/>
<id>urn:sha1:6c8ad60e9888fa5625dad2460ca073f93ac1ae0d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add computer name input field on oauth authorization page</title>
<updated>2014-10-14T16:23:36Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-14T16:23:36Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=2cb2fae10d986db73bb0ad517df8c5334cab713c'/>
<id>urn:sha1:2cb2fae10d986db73bb0ad517df8c5334cab713c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Use SQL transactions during sync</title>
<updated>2014-10-14T16:12:45Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-14T05:54:56Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=62340c61f3ab49aa405c549b43e2cd910ab4d834'/>
<id>urn:sha1:62340c61f3ab49aa405c549b43e2cd910ab4d834</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Link pages from stats</title>
<updated>2014-10-14T05:46:07Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-14T05:46:07Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=0b208d3ef2a8501713169b74eb0b48e2e3bb10a6'/>
<id>urn:sha1:0b208d3ef2a8501713169b74eb0b48e2e3bb10a6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Token deletion with simple undo</title>
<updated>2014-10-13T18:41:30Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-13T18:41:30Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=ca442a803832c885af7835c5fcf7cd48cfe752ce'/>
<id>urn:sha1:ca442a803832c885af7835c5fcf7cd48cfe752ce</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Fix bug #10: OAuth does not work on ovh.com server</title>
<updated>2014-10-08T19:24:35Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-08T19:24:35Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=dab31d3882a398d5f459a0aca71b2e35ab641708'/>
<id>urn:sha1:dab31d3882a398d5f459a0aca71b2e35ab641708</id>
<content type='text'>
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.
</content>
</entry>
<entry>
<title>Tell what the token management page does</title>
<updated>2014-10-07T16:09:34Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-07T16:09:34Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=9b69209d884a6d01e890ec3360cb88fe7cf64f6a'/>
<id>urn:sha1:9b69209d884a6d01e890ec3360cb88fe7cf64f6a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add known working versions</title>
<updated>2014-10-07T16:04:02Z</updated>
<author>
<name>Christian Weiske</name>
<email>cweiske@cweiske.de</email>
</author>
<published>2014-10-07T16:04:02Z</published>
<link rel='alternate' type='text/html' href='https://git.cweiske.de/grauphel.git/commit/?id=f8d16246cd26dcbc0a0ed9e7eb19a7fc5b2ddd80'/>
<id>urn:sha1:f8d16246cd26dcbc0a0ed9e7eb19a7fc5b2ddd80</id>
<content type='text'>
</content>
</entry>
</feed>
