From 0e1a849031a345ee369b28c25407f58a89e19791 Mon Sep 17 00:00:00 2001 From: Polonkai Gergely Date: Tue, 21 Aug 2012 20:03:56 +0200 Subject: [PATCH] Moved TODO entries to GitHub's issue tracker Signed-off-by: Gergely Polonkai --- TODO | 105 ------------------ src/KekRozsak/FrontBundle/Entity/BlogPost.php | 15 +++ src/KekRozsak/FrontBundle/Entity/Comment.php | 13 +++ .../FrontBundle/Entity/GroupChatMessage.php | 8 ++ src/KekRozsak/FrontBundle/Entity/Poll.php | 15 +++ .../FrontBundle/Entity/PollAnswer.php | 11 ++ .../FrontBundle/Entity/PrivateChatMessage.php | 8 ++ .../FrontBundle/Entity/PublicChatChannel.php | 5 + .../FrontBundle/Entity/PublicChatMessage.php | 8 ++ src/KekRozsak/FrontBundle/Entity/Song.php | 12 ++ .../FrontBundle/Entity/SongVersion.php | 9 ++ .../FrontBundle/Entity/UserForumTopicView.php | 6 + 12 files changed, 110 insertions(+), 105 deletions(-) delete mode 100644 TODO create mode 100644 src/KekRozsak/FrontBundle/Entity/BlogPost.php create mode 100644 src/KekRozsak/FrontBundle/Entity/Comment.php create mode 100644 src/KekRozsak/FrontBundle/Entity/GroupChatMessage.php create mode 100644 src/KekRozsak/FrontBundle/Entity/Poll.php create mode 100644 src/KekRozsak/FrontBundle/Entity/PollAnswer.php create mode 100644 src/KekRozsak/FrontBundle/Entity/PrivateChatMessage.php create mode 100644 src/KekRozsak/FrontBundle/Entity/PublicChatChannel.php create mode 100644 src/KekRozsak/FrontBundle/Entity/PublicChatMessage.php create mode 100644 src/KekRozsak/FrontBundle/Entity/Song.php create mode 100644 src/KekRozsak/FrontBundle/Entity/SongVersion.php create mode 100644 src/KekRozsak/FrontBundle/Entity/UserForumTopicView.php diff --git a/TODO b/TODO deleted file mode 100644 index 33c3bed..0000000 --- a/TODO +++ /dev/null @@ -1,105 +0,0 @@ -* book borrowing, lending and returning -* event creation -* songs -* news editor for administrators -* PDF header fix -* draft flag for Document and Article: only writer and administrators see it - from the Document/Article list, in preview mode -* full Document/Article list for administrators -* polls -* chat -* Users' favourite forum topics -* article categories -* blog -* site-based theme for ckeditor (both ui and the editor) - -Song - id - title - createdBy - createdAt - SongVersion[] - id - createdBy - createdAt - content - -News - lead - -Poll - id - createdAt - createdBy - updatedAt - updatedBy - updateReason - endTime (timestamp/date?) - anyoneCanAddAnswers - question - multiselect - voters - PollAnswer[] - id - createdAt - createdBy - updatedAt - updatedBy - updateReason - voters - text - -UserForumViewed - User - ForumTopic - timestamp of last visit - -BlogPost - id - title - slug - timestamp - lead (?) - text - poster - public - -ForumTopicGroup - visible - locked - -ForumTopic - roles who can access it - visible - locked - -ForumPost - last edited by - last edited timestamp - last edit reason - edit count - -Event - last edited by - last edited timestamp - last edit reason - location - commentable - -PrivateChatMessage - id - from user - to user - timestamp - -GroupChatMessage - id - from user - to group - timestamp - -PublicChatMessage - id - from user - to channel (ChatChannel class with id and name fields) - timestamp diff --git a/src/KekRozsak/FrontBundle/Entity/BlogPost.php b/src/KekRozsak/FrontBundle/Entity/BlogPost.php new file mode 100644 index 0000000..ac6b7df --- /dev/null +++ b/src/KekRozsak/FrontBundle/Entity/BlogPost.php @@ -0,0 +1,15 @@ +