-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevlog.txt
More file actions
88 lines (70 loc) · 3.75 KB
/
devlog.txt
File metadata and controls
88 lines (70 loc) · 3.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
xuJ -- 2017-10-22 22:13
added design.pdf into repo
xuJ —- 2017-10-24 14:50
added in templates directory with discover.html, home.html, login.html, storypage.html
created main.py and setup the basic code (taken from previous login hw)
created db.py and setup the basic code (taken from smpl code)
parkP -- 2017-10-24 23:04
created and added create.html and edit.html to the templates directory
xuJ — 2017-10-25 14:53
home.html: added forms for the links on top (might change this to links?)
discover/home.html: added table for info, currently in comments because data structures aren’t set
main.py: created data structures to store contributed/untouched stories
xuJ - 2017-10-26 14:50
/story route in main.py: not all data structures are set yet, only the beginning code
-- all data structures to insert into templates
—- redirect if story is unedited by user in session
—- otherwise will proceed to storypage.html template
discover.html and storypage.html: displaying data structures
parkP -- 2017-10-26 14:50
created create route
marchiniM -- 2017-10-26 14:50
wrote check() function
wrote root() --> redirects to home if user in session otherwise goes to login
wrote home() --> validates username and password and if not valid redirects back to login with a flash message
worked on login.html
xuJ — 2017-10-27 13:30
added data structure in /create route for uncontribs and contribs dictionaries
uncommented data structure display in discover.html and home.html
added in form submit buttons in discover.html and home.html that go into /story route
fixed /story route data structures that I had trouble with earlier
marchiniM — 2017-10-27 16:00
finished login.html form
tested for errors in login functioning
fixed database/python interaction
marchiniM — 2017-10-29 13:00
instantaited database tables in main.py file to fix errors interacting with database
xuJ - 2017-10-29 14:02
created printdict() function in main.py for later debugging
parkP -- 2017-10-20 22:34
fixed flash messages bug in login page
fixed error that occurs when you try to enter the homepage from /discover and /new
created the getID function to help with the /new route
finished the /new route
xuJ - 2017-10-29 23:03
took css from a template online and then implemented into html files
xuJ - 2017-10-29 23:32
fixed css because it’s different when implemented from python
could not figure out images so probably will not use at all
added a welcome paragraph onto the login page
marchiniM — 2017-10-30 00:22
edited create() to fix some database errors (mostly string formatting)
added create() and instantiation of username variable to home root after auhthorization
wrote /discover route and fixed discover.html template issue displaying the wrong name
marchiniM — 2017-10-30 1:00
edited create() so that all stories are being added to uncontrib, not just the first
allows for full list to be displayed in /discover
made some edits to database test cases to fix error in discover
parkP -- 2017-10-30 4:33
edited discover.html to make it more compatible with the edit route in main.py
created the getTitle, getLast, getPrev, and getNext functions to help with the edit route
added the edit route and made it redirect to the home page
fixed bug on edit.html that led users to an error
marchiniM — 2017-10-30 7:15
fixed create() so that the uncontrib and contrib lists are correct
fixed /home to display lists of stories contributed to
fixed /story to work with storypage.html to show the full story
xuJ - 2017-10-30 14:05
updated design.pdf
removed db and kept code for create table in db.py
hashed passwords