Flyspray:: Feed for all projects http://adras.wodkapower.de/mynotebook/flyspray/ 2009-05-15T09:44:15Z FS#37: Add support for uploading files 2009-05-15T09:44:15Z 2009-05-15T09:44:15Z
As a user I want to upload files, and attach them to a note
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:37
FS#36: 'New' column in mybotebook has to be removed 2009-04-11T23:21:13Z 2009-04-11T23:17:41Z
The 'new' column in mynotebook table can make problems on some mysql installations. The column has to be removed since the tag-system makes it obsolete anyway.
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:36
FS#35: Extend possible new note javascript error with more information 2009-04-11T23:22:46Z 2009-04-11T23:09:13Z
When php returns an error instead of a valid JSON string it is handled by javascript but a default message is displayed to the user. The same messagebox appears when the errorText variable is set within the JSON object. For this case the message in the errorText variable has to be added to the messagebox
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:35
FS#33: Make MyNotebook work in IE6, IE7, Firefox and Opera 2008-02-16T12:54:30Z 2008-02-04T16:43:11Z
Well, this should be done by now
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:33
FS#32: Delete Tags that are not assigned to a note 2008-01-28T14:00:48Z 2008-01-28T14:00:48Z
There can be tags that do not have a note assigned. These tags should be deleted automatically.
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:32
FS#31: Sperate tags by commas so spaces within tags are possible 2008-01-24T16:54:47Z 2008-01-24T16:54:47Z
http://adras.wodkapower.de/mynotebook/phpBB3/viewtopic.php?f=2&t=24

Tags like: "simple note", "important note", "cooking recipes" are only possible when the tags are separated by commas.

Andreas http://adras.wodkapower.de/mynotebook/flyspray/:31
FS#30: quotation marks keep getting escaped again and again when editing a note 2009-01-14T09:39:44Z 2008-01-23T14:38:28Z
Steps to reproduce
1. Create or edit a note and insert the following text with the quotes:
"testtext"

2. Save the note. As you see there appear backslasches before the quotes.

3. Edit the note again, and just save it without any changes. there are two more backslahes.
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:30
FS#29: Some characters lead to missing text 2008-02-16T12:49:33Z 2007-12-03T10:21:59Z
Edit or select a new note, enter some text, and place a "&" inside the text. The text behind & will be removed!
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:29
FS#28: Expand and collapse notes 2009-02-09T14:50:08Z 2007-07-09T10:53:33Z
Since I have some larger texts in my private notebook I want to have the possibility to expand/collapse notes.
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:28
FS#27: Fast clicking through tags does not work 2007-06-18T16:08:33Z 2007-06-18T16:08:33Z
Requirements:
A tag that is assigned to a lot notes.

Steps:
1. Disable all tags
2. Enable the tag
3. Disable it as fast as possible

Results:
Since the tag is deactivated no note should be visible. But all notes of this tag are displayed.

The reason for this is the follwing:
Everytime a tag is selected a request is sent to the server, processed and sent back. This process takes some time. This time can be from 100ms up to some seconds. Since there is no queue in which the requests are processed, small requests are returned faster.

The problem here is as follows:
The request when disabling a tag is returned much faster than the one that contains all notes to be displayed. So if you select and deselect the tag, both requests are sent. The one with empty content gets returned first, and is displayed, but some time later the request with all notes of the tag is sent back and so this one will be displayed.
Andreas http://adras.wodkapower.de/mynotebook/flyspray/:27