Dong Shin 11.03.2011

  • PPM
    • changed PPM Widgets to Project Assistant
    • bold fonts on DropDowList
    • lighter gray for disabled Budget Centers and Years
    • added Budget Center information on Financial Data Navigator
    • fixed triple click/double tab to edit bug
  • Updated SF86 and sent to Carrie
  • Updating Performance Plan

Phil 11.3.11

7:30 – 4:00 VISIBILITY

  • Added more info to the credentials test webpage servlet and sent out the link
  • Walked though the PPM Widget with Dong
  • Reviewed Mike M’s spreadsheet for proposal
  • Working on Performance Plan – done
  • Security videos

Tom DeVito 11.2.2011

Start:  1:00

  • Tinned the leads which kept slipping out of place.  Everything is much more secure now.
  • Hooking the wires to the power supply was a bit annoying.  Once I get everything working I will make a power bus so only two lead need to go to the contacts.
  • Everything is powering up without issues.

End:  5:30

Phil 11.2.11

7:30 – 5:30 VISIBILITY

  • Deployed Dong’s code, thought he network was slooooooooooooooooow. Didn’t realize that cut and paste worked with remote desktop. Handy.
  • Talked to Dong about making the contract information clearer
  • Worked on Performance Plan
  • Meeting with customer here at the Rams Head. Demo went well except for when everything bogged down because the laptop was trying to install 27 windows updates during the demo

Mike 11.02.11

  • Lots more waiting for permissions even though some people ‘disapprove’ of it
  • Continuing to work on the chart scrolling and zooming
  • There’s a weird bug with the throw, it seems to calculate the endpoints and animate fine until the last frame of the animation where it resets the axis back to where it started.  I’ve spent a lot of time debugging this and can’t figure it out.
  • So I checked in my ChartScroller component and added it to the mobile project with the throw DISABLED.  Scrolling and zooming do work fine though.

Tom DeVito 11.1.2011

Start: 9:00

  • Add the midi controllers to the board.
  • Put back together the stuff I took apart when I was testing stuff.
  • I was a little confused with the interface code.  I figured out how to set the display values though.
  • The interface seems to be working in the testing sandbox.  I need to add it to the main now.
  • There’s a few issues with the hardware.  Mostly wires are just not staying secure.  I need to tin some leads When I get in tomorrow to make them more secure.

End: 5:00

Dong Shin 11.01.2011

  • PPM
    • only Budget Centers in the selected project shown for Funding Request
    • removed Funding with $0 budget
    • changed the debug login settings
  • FMGDEV updates for demo
    • database updates
    • PPM and Widgets uploaded
    • renamed old ones – ProjPortfolioMgr_11012011, project_portfolio_110111

Tom DeVito 10.31.2011

Start: 9:00

  • Tested out the new midi controllers.  Tried it with only the Arduino and my headphones and there is still a buzz.  Now I know I didn’t damage the other ones.
  • I tested the balance and pan, same issues.  Oh well, I will just have to use one controller per finger.
  • All the variables are now passing properly between the arduino and the pc.  Its set to do one send and recieve per cycle.  The buffer has a hard limit but you can easily add objects to it for transmission.
  • In the process of integrating the data into the interface.  I started changing it into a class.  I figured this was best in order to keep the main from getting cluttered.

End: 5:00

Phil 10.31.11

7:30 – 4:30 VISIBILITY

  • Lots of paperwork today.
  • Was finally able to add status to the server blog
  • Got the last bits of the scaling/translation math working:
	private var _newButtonDown:Boolean = true;

	private function init():void{
		listenerGroup.addEventListener(MouseEvent.MOUSE_WHEEL, handleMove);
		listenerGroup.addEventListener(MouseEvent.MOUSE_MOVE, handleMove);
		_xpos = chart.width/2;
		_ypos = chart.height/2;
		_scaledWidth = chart.width;
		_scaledHeight = chart.height;

		handleZoom(null);
	}

	private function handleZoom(event:Event):void{
		_scalar = scaleSlider.value;
		var m:Matrix = chart.getLayoutMatrix();

		m.a = _scalar;
		m.d = _scalar;
		var s:Number = chart.width*_scalar;
		_scaledWidthDelta = s - _scaledWidth;
		_scaledWidth = s;
		s = chart.height*_scalar;
		_scaledHeightDelta = s - _scaledHeight;
		_scaledHeight = s;

		m.tx += -_scaledWidthDelta*0.5;
		m.ty += -_scaledHeightDelta*0.5;
		_dx = m.tx;
		_dy = m.ty;

		chart.setLayoutMatrix(m, true);
	}

	private function handleMove(evt:MouseEvent):void{
		var m:Matrix = chart.getLayoutMatrix();

		if(evt.buttonDown){
			if(_newButtonDown){
				_newButtonDown = false;
				_xpos = evt.stageX-_dx;
				_ypos = evt.stageY-_dy;
			}
			_dx = evt.stageX - _xpos;
			_dy = evt.stageY - _ypos;
		}else{
			_newButtonDown = true;
			return;
		}

		m.a = _scalar;
		m.d = _scalar;

		m.tx = _dx;
		m.ty = _dy;
		chart.setLayoutMatrix(m, true);
	}
  • Next, incorporate into Mobile code.
  • Before that, fixing the multiple select from search bug in GenericScroller

Tom DeVito 10.28.2011

Start:  2:30pm

  • Spent the first half of the day putting up our office window insulators.
  • Added methods to the interfaces class to change the data which has pointers in the datadictionary.
  • Added methods for displaying the volume and pressure data.

end : 6:00pm

Phil 10.28.11

8:00 – 4:00 VISIBILITY

  • Tried to update the server journal, but no luck. Talked to Denise about it. We’ll try a few things on Monday
  • Working the dragging problem. Going from local to stage coordinates helped some. Progress!

Dong Shin 10.27.2011

  • went to Fort, the VR hasn’t been approved yet.
  • PPM Widgets
    • changed the labels for the month navigation buttons
    • changed the way Financial Data Navigator starts up.
      • when there are overdue financial data, show first overdue on start
      • when there are no overdue financial data, show current FY and month
    • current Identifier added to the title of the Financial Data Navigator
    • changed the label per request (show # of total overdue when navigating overdue data, otherwise show total # of overdue data)
    • changed the colors of the Navigator