From fcd505f621390aa261ee8ba49925539f03d2ec1c Mon Sep 17 00:00:00 2001 From: Mihai Parparita Date: Wed, 30 Jul 2014 22:46:03 -0700 Subject: [PATCH] TODO is now in a Quip doc. --- TODO | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 TODO diff --git a/TODO b/TODO deleted file mode 100644 index a9efd28..0000000 --- a/TODO +++ /dev/null @@ -1,26 +0,0 @@ -TODO -- Break up indexHandler -- Flash message when sending a single email -- Use task queue for sending out of digests, for better parallelism and retry behavior -- Flash message and sign out when OAuth token has expired/is invalid -- Handle pagination for user repository list -- Handle pagination for user organization list -- Handle pagination for organization repository list -- Handle pagination for commit list -- Digests for activity every year going back to the oldest repository -- List all repostories that were included in the the search in a footer of the template -- Option to disable HTTP request cache (or at least expire user/organization queries) -- Weekly vs. daily option -- Render markdown in commit messages (using https://github.com/russross/blackfriday) - -Notes: -- Mention https://help.github.com/articles/why-are-my-commits-linked-to-the-wrong-user#attach-the-email-to-your-github-account if people ask why their commits are not showing up (add option for aliases when searching for past activity?) -- Will need to get/store timezone of user (use https://bitbucket.org/pellepim/jstimezonedetect, use it with time.Location.LoadLocation) -- To make a raw HTTP request with the github package: - httpReq, _ := githubClient.NewRequest("GET", "user/teams", nil) - var jsonResp interface{} - githubClient.Do(httpReq, &jsonResp) - log.Printf("response'%s'", jsonResp) - -Later -- Option to only do this for public repos (repo vs. public_repo scopes)