summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-03-23 15:28:35 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-03-23 15:28:35 +0100
commit503817875b5ffa26a96fa478dc81de5032d82271 (patch)
tree6bbde3bad0b57c633db458277e7be7a6b19c7bb3 /doc
parent8f637cfb85f551f6e6e73ec3ff7ea1190a0f30d4 (diff)
removed old files from the previous news version
Diffstat (limited to 'doc')
-rw-r--r--doc/.mapper spec.md.kate-swpbin530 -> 0 bytes
-rw-r--r--doc/GUI specification.md81
-rw-r--r--doc/mapper spec.md31
3 files changed, 0 insertions, 112 deletions
diff --git a/doc/.mapper spec.md.kate-swp b/doc/.mapper spec.md.kate-swp
deleted file mode 100644
index 4dbdf8137..000000000
--- a/doc/.mapper spec.md.kate-swp
+++ /dev/null
Binary files differ
diff --git a/doc/GUI specification.md b/doc/GUI specification.md
deleted file mode 100644
index 09f7ca0d2..000000000
--- a/doc/GUI specification.md
+++ /dev/null
@@ -1,81 +0,0 @@
-# GUI Specification
-
-This should be a document which specifies the GUI for testing purposes.
-
-**This specification is not yet final and only reflects the current state**
-
-## General
-* When the programs is being launched the last viewed feed is being loaded by default
-
-## Feed List
-* You can click on the following entries:
- * folders that contain feeds
- * starred
- * new articles
-
-* When you click on a feed or folder it should:
- * get the css class 'active'
- * load the folder or feed into the right view
-
-* When you hover over a feed it should:
- * show a css hint that you hovered over it
- * show the delete and mark all read button
-
-* When you hover over a folder it should:
- * show a css hint that you hovered over it
- * show the edit, delete, mark all read button
-
-* When you hover over a folder with feeds it should:
- * show the collapse/open button (open button if opened, collapse button if collapsed
-
-* When an entry has only read items it should have the all_read class
-
-## Controls
-* When you click on the plus button it should show a Menu which shows Feed and Folder
-
-* When you click on the Settings symbol it should show the settings popup
-
-* When you click on the eye symbol it should toggle the SHOW_ALL and SHOW_UNREAD mode
-
-## Modes
-
-### SHOW_ALL
-* When you activate it it should
- * Tell the server that its activated
- * Empty the cache and reload the current items
- * Show all feeds and folders in the feedlist
- * Show all items in the itemslist
- * Change the title of the eye button to "Show everything"
- * Show empty folders
-
-* When you click on a feed load read and unread items and show items with the read class
-
-### SHOW_UNREAD
-* When you activate it it should
- * Tell the server that its activated
- * Empty the cache and reload the current items
- * Hide all feeds with all_read class in the feedlist. If all feeds of a folder are all_read, hide the folder.
- * Hide empty folders
- * Hide all items with read class in the itemslist
- * Change the title of the eye button to "Show only unread"
- * When the feed is selected (active class) and has the all_read class dont hide it and neither hide its parent folder but do so if it is deselected
-
-* When you click on a feed only unread items and hide items with the read class
-
-## Items
-* Hover over a item should show the bottom util bar (keep unread)
-
-* Click on the starred item should make it starred (add the class important) and tell the server that its starred and increase the unread count for starred items by 1
-
-* Click on the header link or
- Click on the text body or
- Scrolling a feed beyond the top edge
- * should mark it as read (add css read class) and tell the server that its marked read and decrease the unread count of the item and its top folder and unread articles by 1
-
-
-* click on keep unread text or keep unread checkbox should
- * **When not marked yet**:
- * tell the server to make it unread
- * prevent it from being marked read
- * **When marked yet**:
- * dont prevent it from being marked read
diff --git a/doc/mapper spec.md b/doc/mapper spec.md
deleted file mode 100644
index 2996dc6c6..000000000
--- a/doc/mapper spec.md
+++ /dev/null
@@ -1,31 +0,0 @@
-
-request: get just starred items of a user
- SELECT * FROM items
- WHERE user_id = ? AND status = ?
- (AND id < ? LIMIT ?)
- (AND items.lastmodified >= ?)
-
-request: get all items of a user (unread and read)
- SELECT * FROM items
- WHERE user_id = ? AND status = ?
- (AND id < ? LIMIT ?)
- (AND items.lastmodified >= ?)
-
-request: get all items of a folder of a user (unread and read)
- SELECT * FROM items
- JOIN feeds
- ON feed.id = feed_id
- WHERE user_id = ? AND status = ? AND feed.folder_id = ?
- (AND id < ? LIMIT ?)
- (AND items.lastmodified >= ?)
-
-
-request: get all items of a feed of a user (unread and read)
- SELECT * FROM items
- WHERE user_id = ? AND status = ? AND feed_id = ?
- (AND id < ? LIMIT ?)
- (AND items.lastmodified >= ?)
-
-
-all requests: can be specified using an (offset (id), limit) or (updatedSince (timestamp))
-