Difference between revisions of "User:Ryan52/todo"

From FreekiWiki
Jump to navigation Jump to search
 
(415 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Tickets ==
+
== new new new todo list ==
* [[FGRT: 15753 | #15753]] install security update
+
* [[FGRT: 23393 | #23393]] deleteing events
* [[FGRT: 15784 | #15784]] Newfangled keyboard tester addition request/issues
+
* [[FGRT: 22184 | #22184]] upgrade website server
* test installing and write debian-specific install instructions that are up to date for fgdb.rb ([[FGRT: 15523 | #15523]])
+
* [[FGRT: 23062 | #23062]] drive test database recording features
* [[FGRT: 15885 | #15885]] fix up coveredness tracking
+
* [[FGRT: 18140 | #18140]] reuseweek domains xfer to freegeek
** [[FGRT: 15492| 15492]] covered or noncovered choice added to printme
+
* [[FGRT: 23431 | #23431]] volskedj automatic refresh
** [[FGRT: 15846| 15846]] Make FG-PDX automatically uncovered
+
* [[FGRT: 23418 | #23418]] schedule viewing
** [[FGRT: 15883| 15883]] figure out if the sales screen should have a covered widget too
+
* [[FGRT: 23408 | #23408]] newsletter through database
** [[FGRT: 15884| 15884]] make them choose covered or uncovered
+
* [[FGRT: 23377 | #23377]] backup file improvements
* [[FGRT: 15518 | #15518]] Redo how the destroy link works
+
* [[FGRT: 23432 | #23432]] google search blocked us
* [[Staff_hours_tracking_application]]
+
* schedule@ ticket web interface
  
== Timeline ==
+
== new todo list ==
* 11-14-09 release:
+
* [[FGRT: 14227 | #14227]] Fix docs on how to install FGdb
** carryover - destroy link, #15518 (plus unimportant changes in current master)
+
* [[FGRT: 12482 | #12482]] ease recording hours under multiple types on a given day
** coveredness improvements, #15885
+
* [[FGRT: 19348 | #19348]] csv output on searches
*** shouldn't wait until next release, this will break stuff
+
* [[FGRT: 19190 | #19190]] emails get held up (and released)
* 11-21-09 release: staff hours rollout/testing?
+
* [[FGRT: 21768 | #21768]] rootmail borked on several systems
** has to be, FG is closed on the 28th, and it's needed before December...
+
* [[FGRT: 21983 | #21983]] eliminate old line item code
** pretty much ready now
+
* [[FGRT: 21466 | #21466]] Certificates of destruction / data destruction verification
 +
* [[General_scheduling_application#Remaining_Todos]]
 +
* report/data for: SELECT vendor, model, chipset_info, count(*) FROM spec_sheets GROUP BY 1, 2, 3;
 +
** asked for by Nate and EWT
  
* on Wednesday (whether home or at FG, need it for release):
+
== not fgdb ==
** #15518, destroy link
+
* [[User:Ryan52/maintenance]]
* on Saturday the 14th:
+
* old ASS
** #15885, coveredness improvements (if not done already)
+
** [[FGRT: 16697 | #16697]] RT requires multiple logins
** minor improvements to staff hours
+
** [[FGRT: 17664 | #17664]] make diskless xterm default font size bigger
* on Saturday the 21st:
+
* disktest
** #15784, keyboard tester
+
** [[FGRT: 19172 | #19172]] Reading SMART device error log for HDD testers
** #15523/#14227, install instructions/testing
+
* keyboard tester
 +
** [[FGRT: 15784| #15784]] Newfangled keyboard tester addition request/issues
 +
** [[FGRT: 16161| #16161]] additional function keys (F13 - F16) as well as the volume/eject keys to (volume up/down/mute keys)
 +
** [[FGRT: 16164| #16164]] screenshots of each layout and the settings screen
  
== What's left for staff hours ==
+
== fgdb ==
* need to make it locked down by role (skudjul and beancounter)
+
* [[FGRT: 19495 | #19495]] Extracting Info from Database
* make strings on interface make more sense
+
* [[FGRT: 19360 | #19360]] search for store credits
* should make some metadata (the income streams, wc_categories, and programs) effective/ineffective
+
* [[FGRT: 19348 | #19348]] csv output on searches
* should make workers to worker_types effective/ineffective
+
* make store people happy with store credits
** edited through interface, hm. I guess this should be line item? eww. need an interface for editing effective/ineffective things when it's originally a one-to-many.
+
** make a search for store credits, not gizmo returns, and associate store credits with contacts, so they can be searched for
** also need a validation. like this:
+
* fix up the worker type editing interface
worker.workers_worker_types.sort_by(&:effective_on).each_with_siblings{|a,b,c| raise if (a && (a.ineffective_on.nil? or a.ineffective_on > b.effective_on)) || (c && (c.effective_on.nil? or c.effective_on < b.ineffective_on))}
+
** fix dedupping
def Enumerable.each_with_siblings
+
** click on a date or worker_type in old records should put it into the form
  self.each_with_index{|b, i|
+
** make it ajax
    a = self[i - 1] if i > 0 # -1 does not mean what we want it to
+
** check that I didn't break anything with the fix for [[FGRT: 18319 | #18319]]
    c = self[i + 1]
+
** fix odd bug with leaving a NULL in the end date in the middle that richard reproduced. steps:
    yield(a, b, c)
+
*** set them to be "nother" from point A to C.
  }
+
*** set them to be "collective" from point C to point D.
end
+
*** add in an inactive that goes from point B to point C, between the two.
** find a way to determine current worker type.
+
* reports for taxes and workers comp
*** in Worker:
+
* [[FGRT: 17796 | #17796]] database - Committed Hours & PTO
def worker_type_on_day(date)
+
* [[FGRT: 18316 | #18316]] graphic reports are resource hogs
  self.workers_worker_types.effective_on(date).first
+
* [[FGRT: 18266 | #18266]] default the individual report and logging staff hours forms
end
+
* [[FGRT: 17932 | #17932]] tricky to log 0 hours when the schedule expects hours
def worker_type_today
+
* use store credit like things for gift certificates
  self.worker_type_on_day(Date.today)
+
* link to old system IDs on the systems page as well
end
+
** [[FGRT: 17231 | #17231]] "current" system ids
*** in WorkerWorkerType:
+
* get fgdb.rb able to be set up by new freegeeks and new coders
steal named scope from VolunteerTaskType
+
** [[FGRT: 15523 | #15523]] fgdb can't be set up from scratch atm (broken devel data)
 +
** [[FGRT: 14227 | #14227]] Fix docs on how to install FGdb
 +
* cashier code enhancements
 +
** [[FGRT: 16671 | #16671]] ask for cashier code on destroy
 +
*** want to redo destroy in fgdb anyway
 +
** [[FGRT: 16673 | #16673]] eleminate cashier_created_by?
 +
** [[FGRT: 15498 | #15498]] should not recheck the same cashier code
 +
** [[FGRT: 18046 | #18046]] cashier code on disbursements?
 +
 
 +
== more fgdb ==
 +
* [[FGRT: 17255 | #17255]] overtime report
 +
* [[FGRT: 17031 | #17031]] integrate meeting-minder functionality into skedjulnator
 +
* [[FGRT: 14861 | #14861]] swap computers (tech support)
 +
* I WANT A TEST SUITE
 +
* db cleanups
 +
** gizmo_types.effective_on has a silly default
 +
** workers.contact_id needs to be unique
 +
** users.contact_id needs to be unique
 +
** flatten contact_method_types (add a category)
 +
** created_at should be NOT NULL
 +
* changes to the contact widget
 +
** need to think this through.
 +
** should take these tickets into account:
 +
*** [[FGRT: 13061 | #13061]] auto search for contacts when creating a contact
 +
*** [[FGRT: 14840 | #14840]] contact search kinda sucks
 +
*** [[FGRT: 14827 | #14827]] FGDB: force search on create
 +
*** [[FGRT: 14828 | #14828]] FGDB feature request #2
 +
*** [[FGRT: 15034 | #15034]] add show more button on contact search
 +
* fix up form_has_not_been_edited
 +
** [[FGRT: 15921 | #15921]] form_has_not_been_edited isn't called on edit links, I think
 +
** [[FGRT: 15922 | #15922]] form_has_not_been_edited shouldn't be called on destroy
 +
* [[ FGRT: 16108 | #16108]] gizmo_types with same name and different effective date ranges should act sanely in reports
 +
 
 +
== junk ==
 +
* go through remaining trac tickets:
 +
** fgdb's are emptied already
 +
** [http://dev.freegeek.org/projects/skedjulnator/report/1 skedjulnator tickets]
 +
* [[ User:Ryan52/old_todo | old TODO list ]]
 +
* has_many use :autosave for some things
 +
* release utilities
 +
** get continuation to work with multiple branches
 +
** get continuation running with test-migrate
 +
** the auto-update script is connected to my home dir (because of the devel checkout), but it shouldn't be.
 +
*** use multiple working copies from the production checkout: http://kerneltrap.org/mailarchive/git/2007/10/11/335637
 +
**** I have some magic that does this that I use for myself
 +
*** or just create a dbadmin user on arik
 +
**** benefit of possibility of having a key connected to devo.
 +
*** update [[Committing to FGdb]] after that.
 +
** I want all changes on a release_X.X.X branch (after the initial branch) to get their own tag. this would involve running ./script/mini-release (new script?) when making a direct change, and this would affect the output of ./script/version. mini-release would also close the ticket(s) (by pushing the tag, I guess). also, this would mean that pushes on release_X.X.X branches wouldn't close the tickets. this would also affect the changelog workflow probably.
 +
 
 +
[[Category: Coders]][[Category: FGdb]]

Latest revision as of 12:50, 25 June 2011

new new new todo list

  • #23393 deleteing events
  • #22184 upgrade website server
  • #23062 drive test database recording features
  • #18140 reuseweek domains xfer to freegeek
  • #23431 volskedj automatic refresh
  • #23418 schedule viewing
  • #23408 newsletter through database
  • #23377 backup file improvements
  • #23432 google search blocked us
  • schedule@ ticket web interface

new todo list

  • #14227 Fix docs on how to install FGdb
  • #12482 ease recording hours under multiple types on a given day
  • #19348 csv output on searches
  • #19190 emails get held up (and released)
  • #21768 rootmail borked on several systems
  • #21983 eliminate old line item code
  • #21466 Certificates of destruction / data destruction verification
  • General_scheduling_application#Remaining_Todos
  • report/data for: SELECT vendor, model, chipset_info, count(*) FROM spec_sheets GROUP BY 1, 2, 3;
    • asked for by Nate and EWT

not fgdb

  • User:Ryan52/maintenance
  • old ASS
    • #16697 RT requires multiple logins
    • #17664 make diskless xterm default font size bigger
  • disktest
    • #19172 Reading SMART device error log for HDD testers
  • keyboard tester
    • #15784 Newfangled keyboard tester addition request/issues
    • #16161 additional function keys (F13 - F16) as well as the volume/eject keys to (volume up/down/mute keys)
    • #16164 screenshots of each layout and the settings screen

fgdb

  • #19495 Extracting Info from Database
  • #19360 search for store credits
  • #19348 csv output on searches
  • make store people happy with store credits
    • make a search for store credits, not gizmo returns, and associate store credits with contacts, so they can be searched for
  • fix up the worker type editing interface
    • fix dedupping
    • click on a date or worker_type in old records should put it into the form
    • make it ajax
    • check that I didn't break anything with the fix for #18319
    • fix odd bug with leaving a NULL in the end date in the middle that richard reproduced. steps:
      • set them to be "nother" from point A to C.
      • set them to be "collective" from point C to point D.
      • add in an inactive that goes from point B to point C, between the two.
  • reports for taxes and workers comp
  • #17796 database - Committed Hours & PTO
  • #18316 graphic reports are resource hogs
  • #18266 default the individual report and logging staff hours forms
  • #17932 tricky to log 0 hours when the schedule expects hours
  • use store credit like things for gift certificates
  • link to old system IDs on the systems page as well
  • get fgdb.rb able to be set up by new freegeeks and new coders
    • #15523 fgdb can't be set up from scratch atm (broken devel data)
    • #14227 Fix docs on how to install FGdb
  • cashier code enhancements
    • #16671 ask for cashier code on destroy
      • want to redo destroy in fgdb anyway
    • #16673 eleminate cashier_created_by?
    • #15498 should not recheck the same cashier code
    • #18046 cashier code on disbursements?

more fgdb

  • #17255 overtime report
  • #17031 integrate meeting-minder functionality into skedjulnator
  • #14861 swap computers (tech support)
  • I WANT A TEST SUITE
  • db cleanups
    • gizmo_types.effective_on has a silly default
    • workers.contact_id needs to be unique
    • users.contact_id needs to be unique
    • flatten contact_method_types (add a category)
    • created_at should be NOT NULL
  • changes to the contact widget
    • need to think this through.
    • should take these tickets into account:
      • #13061 auto search for contacts when creating a contact
      • #14840 contact search kinda sucks
      • #14827 FGDB: force search on create
      • #14828 FGDB feature request #2
      • #15034 add show more button on contact search
  • fix up form_has_not_been_edited
    • #15921 form_has_not_been_edited isn't called on edit links, I think
    • #15922 form_has_not_been_edited shouldn't be called on destroy
  • #16108 gizmo_types with same name and different effective date ranges should act sanely in reports

junk

  • go through remaining trac tickets:
  • old TODO list
  • has_many use :autosave for some things
  • release utilities
    • get continuation to work with multiple branches
    • get continuation running with test-migrate
    • the auto-update script is connected to my home dir (because of the devel checkout), but it shouldn't be.
    • I want all changes on a release_X.X.X branch (after the initial branch) to get their own tag. this would involve running ./script/mini-release (new script?) when making a direct change, and this would affect the output of ./script/version. mini-release would also close the ticket(s) (by pushing the tag, I guess). also, this would mean that pushes on release_X.X.X branches wouldn't close the tickets. this would also affect the changelog workflow probably.