Category Archives: Projects

Phil 2.26.13

8:00 – 4:00 ESSO

  • Went to burn a disk this morning but my “deploy” directory on Google Drive had not updated the vis2 swf. Dong’s zip files were there, And the assets directory had been touched. Odd. This could be from the new workspace install.
    • Verified that the files had been written into the right place. They’re just not updating. Somehow the files aren’t getting marked…
  • Deployed new PPM and PA
  • Checked out the Town Hall venue and made sure that the Data Visualizer would show up well.
  • Need to be by 7:30 tomorrow to support Town Hall
  • Burned a disk with new versions of PPM and Vis2
  • Lots of fun JavaScript today. YUI is nice and solid. The “plugin” components are particularly nice. Here’s a draggable, resizable square:
<style> #demo {     width: 100px; height: 100px; border: 1px #000 solid; background: #d72;     position: relative; } </style>
<div id="demo"></div>
<script src='http://yui.yahooapis.com/3.5.0/build/yui/yui-min.js'></script> 
<script> 
    YUI().use('dd-drag', 'dd-proxy', 'resize', 'resize-constrain', function (Y) {     
        var resize = new Y.Resize({ node: '#demo' });
        resize.plug(Y.Plugin.ResizeConstrained, {minWidth: 50, maxWidth: 200});
        var dd = new Y.DD.Drag({ node: '#demo' });     
        dd.plug(Y.Plugin.DDProxy); }); 
</script>

Phil 2.25.13

7:30 – 3:30 ESSO

  • No response from Dimitri WRT Webstorm request – Ping’d him – he’s going to do something?
  • Created slideshow for Chris. Still need budget info
  • Deployed a new Vis2 with tooltip zoom. It goes way too far. Scaling back to 1 – 4 is more than enough.
  • Two bugs
    • PPM – Data is not rolling up correctly in all fields, seems to only take the first project. The example to test against is ACC – AGS O&M (174596). It’s a real bug. Printed out some screen
    • The obligated amounts are not showing up on the charts. It looks like when we changed the tables we forgot to change the query. Fixed

Dong Shin 02.25.2013

  • Fixed PA showing invisible types (admins only) – Outlay $ (Reported in FACTS)
  • moved buttons to the top in PPM – ProjectMgmtPanel, CreateProjectPanel, UserRolesManagementPanel
  • added filter to Funding Request
  • Obligations weren’t showing in the FY13 summary charts – forgot to update quest when it was changed to Reported FACTS Obligated $: 

Phil 2.22.13

7:30 – 4:00 ESSO

  • Meeting with Chris, Tangie, Carla and Tom.
    • Make the tooltip larger
    • MIPR-based query
    • Did the math on John P’s project and it turned out to be correct, but the “overview” line items had only three rows when there should have been 5. That and the Funded Budget is still dissapearing.
    • Tangie needs to follow up with her person who was having the amfsecure problem
    • Need to make slide show of scaled panels on Monday
  • Working on adding slider for tooltip scaling when FB started to freeze. The only fix is to create a new workspace, check everything out of SVN again and rebuild.
  • Done. Burned a disk with the new version.

Phil 2.21.13

7:30 – 2:30 ESSO

  • Deployed the new PA and demoed it to CB, TH, and CH. Generally good, but a few bugs
  • Meeting with Chris tomorrow to look at visualization
  • Wrote up justification for Webstorm
  • Took and hour for classwork
  • JavaScript/YUI

2:30 – 4:00 OH

  • Mandatory all hands meeting

Dong Shin 02.21.2013

  • deployed new PA and went over with Chris B., few notes
    • need to be able to link a project to multiple MIPRs and a MIPR to multiple projects
    • Remove ability for user at the lab to adjust the FACTS outlay cell
    • Update the planned obligation/outlay pop up – if the planned obligated amounts is less than the funded budget amount the pop up needs ton continue until it matches or is more than the funded amount
    • verify totals in the project mgmt screens are adding up
    • MIPR 172356 not setting funded budget in PA from committed in funding request
    • Add search feature to “project to create funding request”, (Actually, all dialogs in PPM)
    • Need a better way to navigate large lists in “Add New Item” ComboBox
  • tried to duplicate the Funded Budget problem….. will debug on site tomorrow
  • All Hands at WCC

Phil 2.20.13

8:00 – 4:00 ESSO

  • Deployed new PA, even though I had to go to another machine that could see the CD.
  • Working through an issue with John Parker:
  • JavaScript/YUI – finished Chapter 2, starting chapter 3

Phil 2.19.13

9:30 – 4:30 ESSO

  • Dentist this morning
  • Tried to swing by the customer site this morning – not a *single* parking space
  • Installed new video drivers, which led to some cleanup.
  • Back to YUI. Need to write up a justification by Thursday for Dong and I to get Webstorm at least, possibly IntelleJ
  • Multithreading in JavaScript: http://www.html5rocks.com/en/tutorials/workers/basics/

Dong Shin 02.15.2013

  • deployed new PPM and PA – didn’t go well,
    • PA’s Project list behaving weird, graying out all projects.
    • Refresh need after Planned Values update
    • SQL Errors. Test with multiple funding requests – happens when more than one MIPR in a funding request
  • Annoying Adobe support not giving the license for Flash Builder 4.7
  • re-installing Flash Builder 4.6
  • PA changes
    • removed itemRenderer for the project list, keep status itemRenderer
    • add “(NOT FUNDED)” to status for the projects that has no budget
    • enabled Admins to edit NOT FUNDED projects

Phil 2.15.13

8:00 – 3:00 ESSO

  • Viztool review Thursday 21 at 8:00
  • Deployed new versions of PPM and PA
    • Text is graying out oddly. The short-term answer could be to leave the colored indicator grayed out, but leave the text intact.
    • Planned outlays need to refresh on save.
    • We really need to get all the “save” buttons in the same place on the screen, ideally near the upper left.
  • YUI 3.5.1 is available on-site
  • Got a local version ofYUI 3.8.1 running on my local tomcat server (as per example 1-8 in the YUI cookbook) . So far, so good. Now is a nice time to stop for the weekend

Dong Shin 02.14.2013

  • FGM Mail down? can’t get to the web mail either….
  • added Budget Center DropdownList to the status view, added event handler to change data
  • added a flag to keep track of Funded Budget (Commit in the Funding Request table) in the database – done!
    • ALTER TABLE `funding_requests` ADD `commit_flag` TINYINT NOT NULL DEFAULT '0' AFTER `commit`
    • UPDATE funding_requests SET commit_flag = 1 WHERE COMMIT > 0
    • DBUpdateSQLs02142013.sql
    • query to update commit_flag
      • UPDATE funding_requests SET commit_flag = 1 WHERE funding_requests.uid IN
        (SELECT funding_request_id FROM _funding_requests_budget_centers
        WHERE budget_center_id = 18)
  • changed PPM to keep track of the funded budget flag in the funding requests
  • disabled projects in PA that has $0 budgeted amount in funding requests
  • trouble shooting 4.7 install issues…. no luck, java crashes in memory dump found in the installation directory. uninstalling and re-install 4.6

Phil 2.14.13

8:00 – 4:00 ESSO

  • Icy today. The roads were OK, but the parking lots…
  • Having an odd endpoint problem. Getting a “Channel.Call.Failed: HTTP: Failed runSQL – [object Operation] endpoint https://…/ProjPortfolioMgr/messagebroker/amf. It may need to be amfsecure. Testing…
  • Although I like the Cloud9 IDE, it can’t handle the YUI ().use(….) pattern. Apparently Webstorm can. Getting the download (sigh) now.
  • That works like a charm. To add the YUI libraries, go Settings -> JavaScript -> Librares -> Download… -> and choose the library. And webGL is supported as well! IntelleJ (JetBrains’ Java IDE) may support this as well. Something to think about.

Dong Shin 02.13.2013

  • VizTool status meeting at Fort
  • Changed Reported Actual Obligated to Reported FACTS Obligated, no need to update database as of today.
  • continue working on Planned Obligation/Outlay Editor
    • got edit to work – saves to database!
  • moved buttons to the top
  • resized the Financial Data Navigator window
  • added DropDownList to Status view to filter MIPRs
    • still needs filtering
  • managed to corrupt the workspace I was using Flash Builder 4.7 with… and couldn’t get 4.7 to start! removed and re-installed, but no luck. going back to 4.6