summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-02-10 11:01:49 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-02-10 11:01:49 -0500
commit5587c8cafce1ca50d76cf6fc2406e9351a920586 (patch)
tree8fd8ce77a3b957aab6cb5aab91f17cc8e6bdda17 /docs
parent9edc561c4bc11a201c018f546e2ddafba581dac7 (diff)
parente19166aaadc1a999d88432d7db3a0cd505a5e2cf (diff)
Merge branch 'master' of github.com:LukeShu/leager
Diffstat (limited to 'docs')
-rw-r--r--docs/DesignDocument.md8
-rw-r--r--docs/DesignDocument_Purpose.txt15
2 files changed, 22 insertions, 1 deletions
diff --git a/docs/DesignDocument.md b/docs/DesignDocument.md
index 29387dd..10e88bb 100644
--- a/docs/DesignDocument.md
+++ b/docs/DesignDocument.md
@@ -52,7 +52,13 @@ Webpage: An abstract HTML file, all entries below are webpages (we represent the
Homepage: This page has 3 basic options. Visually simple – two large buttons on a white screen, and a search bar above them. The search bar will allow you to search upcoming or current searchable tournaments. Log in (which will take you to the login page) and “Go to Tournament” in which you enter a tournament title. This interacts with the Homepage Controller.
Login: Page with form entries for username, password. If user clicks “new user” more forms entries will appear. One for repeating the password, and one for email. This interacts with the Login controller.
Tournament: A tree-like display of pairs of matches, where each match consists of a pair of teams. All users can click on a match to go to that match’s page. Host can see a gear on top left corner that represents tournament settings. This will open up more options for the host to change. This interacts with the tournament controller.
-Match: A display of both teams.
+Match: A display of both teams. Each team's players are clickable which leads to the player's profile. A link above both teams leads back to the tournament the match belongs to. This interacts with the Match controller.
+Search: A page with a searchbar and a list of searchable tournaments that match the search query. Each entry is clickable and leads to a tournament.
+UserProfile: A page with the user's information. One can view the player's reviews. If the user is viewing his/her own profile, they can edit it. This interacts with the UserProfile controller.
+
+
+CONTROLLERS
+Homepage Controller:
Server: Rails’ Server class handles all HTTP events. Our Server class is the class that is the main program. It instantiates other classes, manages requests from Views, and runs static methods.
User: A class that represents someone using the Views (HTML, javascript) the user is in competitions and
diff --git a/docs/DesignDocument_Purpose.txt b/docs/DesignDocument_Purpose.txt
new file mode 100644
index 0000000..ed06d2f
--- /dev/null
+++ b/docs/DesignDocument_Purpose.txt
@@ -0,0 +1,15 @@
+Purpose:
+
+The purpose of this document is to outlay the desgin, intent, and structure of
+the Project Leaguer tournament organizing software.
+
+Released under an open license, Project Leaguer leverages powerful web
+technologies to provide everything needed to organize an online tournament.
+Whether it's League of Legends, Chess, Poker or more, Project Leaguer provides
+tournament organizers, participants, and spectators with an online
+interface to keep up with the score.
+
+The software itself operates as a stand-alone background application
+accessible and configurable though its web interface.
+
+NOT FINISHED -- JUST COMMITING