8:00 – 4:00 SR
- Meeting with Dong, Lenny & Chris. Charts are the priority.
- Working on migrating the chart grid to WegGlCharts.
- Fixing subversion. Looks like the easiest thing to do is to copy over the old repo to the new one?
- Tried copying, but the permissions were wrong. Trying this
-
svnadmin dump /path/to/repository > repository-name.dmp
-
svnadmin create repository-name [--fs-type fsfs] <-optional?
-
svnadmin load repository-name --force-uuid < repository-name.dmp
-
- Finished moving over chartbg to WebGlCharts. Creating a chart now looks like this:
var months:any = this.dataProvider.mappings[0]; var charts:WglCharts.ConfiguredChart = new WglCharts.ConfiguredChart(rb, this.dataProvider, this.dataFormat); charts.setChartGrid(cg); charts.add2DCharts(months);
