GitXplorerGitXplorer
s

Cream

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
552dcd7758badee946a57687b12f1188a3d3188b

removed id

ssherlyc committed 8 years ago
Unverified
305fa79b5c74c70365fc5a68a8c3fa4810befca2

removed id in data.json, edited functions to work on array based index, added additional objects to render in routes

ssherlyc committed 8 years ago
Unverified
676d7877f0a463685b919f9dc73e4e84ffcf4871

reupload

ssherlyc committed 8 years ago
Unverified
60ef29cdb1d37e569d53e97c76b518a010aae439

removed clientside.js

ssherlyc committed 8 years ago
Unverified
db22d741b68cea825195bbd6a26a9f4f11d8020d

removed some redundant newlines

ssherlyc committed 8 years ago
Unverified
97c4b341a7b592bc9f857b55c5d919d793ce549a

fixed some spacing

ssherlyc committed 8 years ago

README

The README file for this repository.

gp1

group project 1

TO DO LIST - PLAN

  1. MVP - create a list: with the options to View All Tasks, Add task, remove task, set priority and set status.

  2. Stretch :

        a) sort list tasks by priorities
    
        b) edit task
        
        c) add project/category
    
  3. Streeetch:

        a) sort - by list, done, still to do, in progress. 
    
        b) sort by project/category/owner
    

User Stories

  1. user can add task - addTask()

    test: addTask function returns newly added task.

  2. user can delete a task - delTask()

    test: check the length of our data, is it -1?

  3. user can set priority - setPriority()

    test : check the value of the priority of the edited task.

  4. User can set status - setStatus()

    test : check the value of the status of the edited task.

  5. User can list all tasks - displayTasks()

    test: check the 3rd task display on webpage, is the string matched with our 3rd test data.

  6. user can edit a task - editTask()

    test : check the task value edited task whether it match with our test string.

User Interface (HTML & CSS)

Main - display all tasks, add task form, edit/delete buttons, dropdown menus for priorities and status.

Edit - form to edit data , post to Main to display tasks