openproj-commitlog Mailing List for OpenProj - Project Management (Page 74)
Open Source desktop project management
Brought to you by:
akheirol
You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(22) |
Sep
(216) |
Oct
(38) |
Nov
(74) |
Dec
(92) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2008 |
Jan
(34) |
Feb
(46) |
Mar
(121) |
Apr
(142) |
May
(143) |
Jun
(69) |
Jul
(72) |
Aug
(14) |
Sep
(8) |
Oct
(49) |
Nov
(12) |
Dec
(56) |
| 2009 |
Jan
(97) |
Feb
(95) |
Mar
(115) |
Apr
(151) |
May
(68) |
Jun
(36) |
Jul
(21) |
Aug
(6) |
Sep
(24) |
Oct
(19) |
Nov
|
Dec
|
|
From: Howard K. <ne...@us...> - 2007-08-29 18:11:24
|
Update of /cvsroot/openproj/openproj_core/src/com/projity/strings/nativeCodePage In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28584/src/com/projity/strings/nativeCodePage Log Message: Directory /cvsroot/openproj/openproj_core/src/com/projity/strings/nativeCodePage added to the repository |
|
From: Howard K. <ne...@us...> - 2007-08-29 07:29:05
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/dialog/options In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3187/src/com/projity/dialog/options Modified Files: CalendarDialogBox.java Log Message: fixed bug in form not showing current values Index: CalendarDialogBox.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/dialog/options/CalendarDialogBox.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- CalendarDialogBox.java 15 Aug 2007 23:28:29 -0000 1.1 +++ CalendarDialogBox.java 29 Aug 2007 07:29:03 -0000 1.2 @@ -194,17 +194,17 @@ startTime= new JTextField (Messages.getString("CalendarDialogBox.EightAM")); //$NON-NLS-1$ endTime= new JTextField (Messages.getString("CalendarDialogBox.SixPM")); //$NON-NLS-1$ - hoursPerDay = new JSpinner(new SpinnerNumberModel(8.0,0,24.0,0.5)); + hoursPerDay = new JSpinner(new SpinnerNumberModel(form.getHoursPerDay().doubleValue(),0,24.0,0.5)); JSpinner.NumberEditor editor1; editor1 = new JSpinner.NumberEditor(hoursPerDay,"##.##"); //$NON-NLS-1$ hoursPerDay.setEditor(editor1); - hoursPerWeek = new JSpinner(new SpinnerNumberModel(40.0,0,168.0,0.5)); + hoursPerWeek = new JSpinner(new SpinnerNumberModel(form.getHoursPerWeek().doubleValue(),0,168.0,0.5)); JSpinner.NumberEditor editor2; editor2 = new JSpinner.NumberEditor(hoursPerWeek,"##.##"); //$NON-NLS-1$ hoursPerWeek.setEditor(editor2); - daysPerMonth = new JSpinner(new SpinnerNumberModel(20.0,0,31.0,1.0)); + daysPerMonth = new JSpinner(new SpinnerNumberModel(form.getDaysPerMonth().doubleValue(),0,31.0,1.0)); JSpinner.NumberEditor editor3; editor3 = new JSpinner.NumberEditor(daysPerMonth,"##.##"); //$NON-NLS-1$ daysPerMonth.setEditor(editor3); |
|
From: l <sur...@us...> - 2007-08-28 22:02:05
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/print In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv21843/src/com/projity/print Modified Files: PrintDocumentFactory.java Log Message: enables transformers for printing Index: PrintDocumentFactory.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/print/PrintDocumentFactory.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- PrintDocumentFactory.java 28 Aug 2007 21:17:26 -0000 1.2 +++ PrintDocumentFactory.java 28 Aug 2007 21:53:29 -0000 1.3 @@ -55,7 +55,6 @@ import javax.swing.table.TableColumn; import javax.swing.table.TableColumnModel; -import javax.swing.text.View; import com.projity.graphic.configuration.SpreadSheetFieldArray; import com.projity.grouping.core.transform.ViewTransformer; @@ -63,12 +62,9 @@ import com.projity.offline_graphics.NetworkSVGRenderer; import com.projity.offline_graphics.SVGRenderer; import com.projity.pm.graphic.frames.DocumentFrame; -import com.projity.pm.graphic.model.cache.NodeCache; import com.projity.pm.graphic.model.cache.NodeModelCache; import com.projity.pm.graphic.model.cache.NodeModelCacheFactory; import com.projity.pm.graphic.model.cache.ReferenceNodeModelCache; -import com.projity.pm.graphic.model.event.CacheListener; -import com.projity.pm.graphic.model.event.CompositeCacheEvent; import com.projity.pm.graphic.model.transform.NodeCacheTransformer; import com.projity.pm.graphic.spreadsheet.SpreadSheet; import com.projity.pm.graphic.views.BaseView; |
|
From: l <sur...@us...> - 2007-08-28 21:18:04
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/offline_graphics In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6832/src/com/projity/offline_graphics Modified Files: NetworkSVGRenderer.java SVGRenderer.java Log Message: enables transformers for printing Index: NetworkSVGRenderer.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/offline_graphics/NetworkSVGRenderer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- NetworkSVGRenderer.java 15 Aug 2007 23:28:27 -0000 1.1 +++ NetworkSVGRenderer.java 28 Aug 2007 21:17:58 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -80,29 +80,29 @@ protected SpreadSheet spreadSheet; protected NetworkRenderer renderer; public void init(Project project, ReferenceNodeModelCache refCache) { - init(project, refCache,PERT,-1); + init(project, NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"Network",null),PERT,-1); } - public void init(Project project, ReferenceNodeModelCache refCache,int type,int scale) { + public void init(Project project, NodeModelCache cache,int type,int scale) { params=new NetworkParamsImpl(); params.setNetworkLayout(type==PERT?new PertLayout(params):new XbsLayout(params)); String viewName=null; - NodeModelCache cache=null; +// NodeModelCache cache=null; switch (type) { case PERT: viewName="pert"; - cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"Network",null); +// cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"Network",null); renderer=new PertRenderer(params); renderer.setVertical(false); break; case WBS: viewName="WBS"; - cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"WBS",null); +// cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"WBS",null); renderer=new XbsRenderer(params); renderer.setVertical(true); break; case RBS: viewName="RBS"; - cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"RBS",null); +// cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)refCache,"RBS",null); renderer=new XbsRenderer(params); renderer.setVertical(true); break; Index: SVGRenderer.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/offline_graphics/SVGRenderer.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- SVGRenderer.java 15 Aug 2007 23:28:27 -0000 1.1 +++ SVGRenderer.java 28 Aug 2007 21:17:58 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with |
|
From: l <sur...@us...> - 2007-08-28 21:17:44
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/reports/view In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6812/src/com/projity/reports/view Modified Files: ReportView.java Log Message: enables transformers for printing Index: ReportView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/reports/view/ReportView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ReportView.java 15 Aug 2007 23:28:28 -0000 1.1 +++ ReportView.java 28 Aug 2007 21:17:42 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -429,6 +429,9 @@ } + public NodeModelCache getCache(){ + return cache; + } } |
|
From: l <sur...@us...> - 2007-08-28 21:17:33
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/print In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6790/src/com/projity/print Modified Files: PrintDocumentFactory.java Log Message: enables transformers for printing Index: PrintDocumentFactory.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/print/PrintDocumentFactory.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- PrintDocumentFactory.java 15 Aug 2007 23:28:30 -0000 1.1 +++ PrintDocumentFactory.java 28 Aug 2007 21:17:26 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -55,15 +55,21 @@ import javax.swing.table.TableColumn; import javax.swing.table.TableColumnModel; +import javax.swing.text.View; import com.projity.graphic.configuration.SpreadSheetFieldArray; +import com.projity.grouping.core.transform.ViewTransformer; import com.projity.offline_graphics.GanttSVGRenderer; import com.projity.offline_graphics.NetworkSVGRenderer; import com.projity.offline_graphics.SVGRenderer; import com.projity.pm.graphic.frames.DocumentFrame; +import com.projity.pm.graphic.model.cache.NodeCache; import com.projity.pm.graphic.model.cache.NodeModelCache; import com.projity.pm.graphic.model.cache.NodeModelCacheFactory; import com.projity.pm.graphic.model.cache.ReferenceNodeModelCache; +import com.projity.pm.graphic.model.event.CacheListener; +import com.projity.pm.graphic.model.event.CompositeCacheEvent; +import com.projity.pm.graphic.model.transform.NodeCacheTransformer; import com.projity.pm.graphic.spreadsheet.SpreadSheet; import com.projity.pm.graphic.views.BaseView; import com.projity.pm.graphic.views.GanttView; @@ -82,6 +88,7 @@ public GraphPageable createDocument(DocumentFrame frame){ BaseView view=frame.getActiveTopView(); SVGRenderer renderer; + NodeModelCache cache; if (view instanceof GanttView){ renderer=new GanttSVGRenderer(); SpreadSheet sp=frame.getActiveSpreadSheet(); @@ -91,7 +98,8 @@ fieldArray=(SpreadSheetFieldArray)sp.getFieldArray(); colWidth=getColWidth(sp, fieldArray); } - ((GanttSVGRenderer)renderer).init(frame.getProject(), NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(true),"OfflineGantt",null),fieldArray,colWidth,frame.getScale(),true); + cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(true),"OfflineGantt",null); + ((GanttSVGRenderer)renderer).init(frame.getProject(),cache,fieldArray,colWidth,frame.getScale(),true); }else if (view instanceof ResourceView){ renderer=new GanttSVGRenderer(); SpreadSheet sp=frame.getActiveSpreadSheet(); @@ -101,7 +109,8 @@ fieldArray=(SpreadSheetFieldArray)sp.getFieldArray(); colWidth=getColWidth(sp, fieldArray); } - ((GanttSVGRenderer)renderer).init(frame.getProject(), NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(false),"OfflineResources",null),fieldArray,colWidth,frame.getScale(),false); + cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(false),"OfflineResources",null); + ((GanttSVGRenderer)renderer).init(frame.getProject(),cache,fieldArray,colWidth,frame.getScale(),false); }else if (view instanceof ProjectView){ renderer=new GanttSVGRenderer(); SpreadSheet sp=frame.getActiveSpreadSheet(); @@ -112,17 +121,31 @@ colWidth=getColWidth(sp, fieldArray); } Portfolio portfolio = frame.getGraphicManager().getProjectFactory().getPortfolio(); - ((GanttSVGRenderer)renderer).init(frame.getProject(), NodeModelCacheFactory.getInstance().createDefaultCache(portfolio.getNodeModel(), portfolio,NodeModelCache.PROJECT_TYPE,"OfflineProjects",null),fieldArray,colWidth,frame.getScale(),false); + cache=NodeModelCacheFactory.getInstance().createDefaultCache(portfolio.getNodeModel(), portfolio,NodeModelCache.PROJECT_TYPE,"OfflineProjects",null); + ((GanttSVGRenderer)renderer).init(frame.getProject(),cache,fieldArray,colWidth,frame.getScale(),false); }else if (view instanceof PertView){ renderer=new NetworkSVGRenderer(); - ((NetworkSVGRenderer)renderer).init(frame.getProject(), frame.getReferenceCache(true),NetworkSVGRenderer.PERT,frame.getScale()); + cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(true),"Network",null); + ((NetworkSVGRenderer)renderer).init(frame.getProject(),cache,NetworkSVGRenderer.PERT,frame.getScale()); }else if (view instanceof TreeView){ renderer=new NetworkSVGRenderer(); TreeView treeView=(TreeView)view; - if ("WBS".equals(treeView.getViewName())) ((NetworkSVGRenderer)renderer).init(frame.getProject(), frame.getReferenceCache(true),NetworkSVGRenderer.WBS,frame.getScale()); - else ((NetworkSVGRenderer)renderer).init(frame.getProject(), frame.getReferenceCache(false),NetworkSVGRenderer.RBS,frame.getScale()); + if ("WBS".equals(treeView.getViewName())){ + cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(true),"WBS",null); + ((NetworkSVGRenderer)renderer).init(frame.getProject(),cache,NetworkSVGRenderer.WBS,frame.getScale()); + }else{ + cache=NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)frame.getReferenceCache(false),"RBS",null); + ((NetworkSVGRenderer)renderer).init(frame.getProject(),cache,NetworkSVGRenderer.RBS,frame.getScale()); + } }else return null; - return new GraphPageable(PrinterJob.getPrinterJob (),renderer); + NodeModelCache srcCache=view.getCache(); + ViewTransformer transformer=((NodeCacheTransformer)cache.getVisibleNodes().getTransformer()).getTransformer(); + ViewTransformer srcTransformer=((NodeCacheTransformer)srcCache.getVisibleNodes().getTransformer()).getTransformer(); + transformer.setUserFilterId(srcTransformer.getUserFilterId()); //this is valid just because the views have the same transformers + transformer.setUserSorterId(srcTransformer.getUserSorterId()); //this is valid just because the views have the same transformers + transformer.setUserGrouperId(srcTransformer.getUserGrouperId()); //this is valid just because the views have the same transformers + GraphPageable document=new GraphPageable(PrinterJob.getPrinterJob (),renderer); + return document; } private List<Integer> getColWidth(SpreadSheet sp,SpreadSheetFieldArray fieldArray){ |
Update of /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6763/src/com/projity/pm/graphic/views Modified Files: TreeView.java ResourceView.java ProjectView.java PertView.java UsageDetailView.java Log Message: enables transformers for printing Index: TreeView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/TreeView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- TreeView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ TreeView.java 28 Aug 2007 21:17:09 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -188,6 +188,9 @@ } + public NodeModelCache getCache(){ + return cache; + } } Index: ResourceView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/ResourceView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ResourceView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ ResourceView.java 28 Aug 2007 21:17:09 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -261,6 +261,9 @@ } + public NodeModelCache getCache(){ + return cache; + } } Index: UsageDetailView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/UsageDetailView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- UsageDetailView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ UsageDetailView.java 28 Aug 2007 21:17:09 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -363,6 +363,10 @@ } + public NodeModelCache getCache(){ + return cache; + } + } Index: ProjectView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/ProjectView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ProjectView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ ProjectView.java 28 Aug 2007 21:17:09 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -204,6 +204,9 @@ } + public NodeModelCache getCache(){ + return cache; + } } Index: PertView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/PertView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- PertView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ PertView.java 28 Aug 2007 21:17:09 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -180,6 +180,9 @@ } + public NodeModelCache getCache(){ + return cache; + } |
|
From: l <sur...@us...> - 2007-08-28 21:16:55
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6384/src/com/projity/pm/graphic/views Modified Files: GanttView.java Log Message: enables transformers for printing Index: GanttView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/GanttView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- GanttView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ GanttView.java 28 Aug 2007 21:16:54 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -397,5 +397,8 @@ gantt.scrollToTask(interval, false); } + public NodeModelCache getCache(){ + return cache; + } } |
|
From: l <sur...@us...> - 2007-08-28 21:16:43
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6368/src/com/projity/pm/graphic/views Modified Files: ChartView.java Log Message: enables transformers for printing Index: ChartView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/ChartView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- ChartView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ ChartView.java 28 Aug 2007 21:16:40 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -211,7 +211,7 @@ } NodeModelCache cache = null; - private NodeModelCache getCache() { + public NodeModelCache getCache() { if (cache == null) // note that histogram and charts share same filtered cache cache = NodeModelCacheFactory.getInstance().createFilteredCache((ReferenceNodeModelCache)documentFrame.getResourceNodeModelCache(),MenuActionConstants.ACTION_CHARTS,transformerClosure); return cache; |
|
From: l <sur...@us...> - 2007-08-28 21:16:28
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6351/src/com/projity/pm/graphic/views Modified Files: BaseView.java Log Message: enables transformers for printing Index: BaseView.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/views/BaseView.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- BaseView.java 15 Aug 2007 23:28:26 -0000 1.1 +++ BaseView.java 28 Aug 2007 21:16:27 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -50,6 +50,7 @@ package com.projity.pm.graphic.views; import com.projity.graphic.configuration.SpreadSheetCategories; +import com.projity.pm.graphic.model.cache.NodeModelCache; import com.projity.pm.graphic.spreadsheet.SpreadSheet; import com.projity.undo.UndoController; import com.projity.workspace.SavableToWorkspace; @@ -71,4 +72,5 @@ void onActivate(boolean activate); boolean isPrintable(); void cleanUp(); + NodeModelCache getCache(); } |
|
From: l <sur...@us...> - 2007-08-28 21:16:10
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/gantt In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv6187/src/com/projity/pm/graphic/gantt Modified Files: GanttPopupMenu.java Log Message: enables transformers for printing Index: GanttPopupMenu.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/pm/graphic/gantt/GanttPopupMenu.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- GanttPopupMenu.java 15 Aug 2007 23:28:27 -0000 1.1 +++ GanttPopupMenu.java 28 Aug 2007 21:16:05 -0000 1.2 @@ -30,7 +30,7 @@ use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] -Attribution Information: Attribution Copyright Notice: Copyright © 2006, 2007 +Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with @@ -93,16 +93,18 @@ private class AssignmentsMenuAction extends JRadioButtonMenuItem implements ActionListener { private static final long serialVersionUID = 3480838269288912755L; - BaseFilter filter; + BaseFilter filter,filterOffline; AssignmentsMenuAction() { super(Messages.getString("Gantt.Popup.showAssignments")); filter=(BaseFilter)TransformList.getInstance("hidden_filters").getTransform("Filter.Gantt"); + filterOffline=(BaseFilter)TransformList.getInstance("hidden_filters").getTransform("Filter.OfflineGantt"); setSelected(filter.isShowAssignments()); addActionListener(this); } public void actionPerformed(ActionEvent e) { filter.setShowAssignments(isSelected()); + filterOffline.setShowAssignments(isSelected()); ((GraphModel)interactor.getGraph().getModel()).getCache().update(); } } |
|
From: Howard K. <ne...@us...> - 2007-08-28 04:32:18
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/dialog In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24317/src/com/projity/dialog Modified Files: AboutDialog.java Log Message: added openproj version to about dialog Index: AboutDialog.java =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/dialog/AboutDialog.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- AboutDialog.java 15 Aug 2007 23:28:24 -0000 1.1 +++ AboutDialog.java 28 Aug 2007 04:32:17 -0000 1.2 @@ -117,6 +117,8 @@ } if (version!=null){ builder.append("Version "+version); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ + } else { + builder.append("Version " +Messages.getString("Release.version")); // openproj version } builder.nextLine(2); builder.append(Messages.getString("AboutDialog.copyright")); //$NON-NLS-1$ |
|
From: Howard K. <ne...@us...> - 2007-08-27 23:52:05
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/menu In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13628/src/com/projity/menu Modified Files: menu_de.properties Log Message: fixed file menu Index: menu_de.properties =================================================================== RCS file: /cvsroot/openproj/openproj_ui/src/com/projity/menu/menu_de.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -d -r1.1 -r1.2 --- menu_de.properties 27 Aug 2007 23:21:58 -0000 1.1 +++ menu_de.properties 27 Aug 2007 23:52:06 -0000 1.2 @@ -80,7 +80,7 @@ Refresh.action = RefreshAction -StandardMenuBar = OpenProj Ablage Bearbeiten Ansicht Einfügen Tools Projekt Hilfe +StandardMenuBar = OpenProj File Edit View Insert Tools Project Help ServerStandardMenuBar = ServerAblage Bearbeiten Ansicht ServerEinfügen ServerTools Projekt Hilfe SFMenuBar = SFTracking |
|
From: Howard K. <ne...@us...> - 2007-08-27 23:22:29
|
Update of /cvsroot/openproj/openproj_core/src/com/projity/strings In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2198/src/com/projity/strings Added Files: client_de.properties Log Message: German properties --- NEW FILE: client_de.properties --- # The contents of this file are subject to the Common Public Attribution License # Version 1.0 (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # http://www.projity.com/license . The License is based on the Mozilla Public # License Version 1.1 but Sections 14 and 15 have been added to cover use of # software over a computer network and provide for limited attribution for the # Original Developer. In addition, Exhibit A has been modified to be consistent # with Exhibit B. # Software distributed under the License is distributed on an "AS IS" basis, # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the # specific language governing rights and limitations under the License. The # Original Code is OpenProj. The Original Developer is the Initial Developer and # is Projity, Inc. All portions of the code written by Projity are Copyright (c) # 2006, 2007. All Rights Reserved. Contributors Projity, Inc. # Alternatively, the contents of this file may be used under the terms of the # Projity End-User License Agreeement (the Projity License), in which case the # provisions of the Projity License are applicable instead of those above. If you [...1082 lines suppressed...] tip.9.description=Usually you'll want to keep the default FS (Finish-Start) links between tasks. Occasionally you may want SS and FF, but SF are very rare. You can change the link type by clicking on it. You can also set a lag. tip.9.name=Link types tip.10.description=It is always a good idea to save a baseline for your project. OpenProj lets you save up to 11 of them which you can display on the Gantt and use for Earned Value Analysis. tip.10.name=Baselines tip.11.description=You can adjust printing to a page by zooming the gantt in/out and resizing or hiding columns. Use Print Preview to verify. tip.11.name=Printing to a page tip.12.description=You can open files created by Microsoft Project in OpenProj, and you can also save them back out to Microsoft's XML format. tip.12.name=MS Project compatibility tip.13.description=You can show more than just work in the Task Usage and Resource Usage spreadsheets. Right click on the yellow row header to see other possibilities. tip.13.name=Detail view fields tip.14.description=OpenProj has lots of user-defined fields at your disposal. Try right clicking on a spreadsheet header and see. tip.14.name=User defined fields tip.15.description=You can assign calendars to tasks, resources, and projects so as to take into account holidays. tip.15.name=Calendars tip.16.description=There are tons of great sources of Project Management information on the Web. OpenProj is very similar to existing commercial solutions. tip.16.name=PM Information tip.17.description=To delete a task, right click on the spreadsheet row header for options. tip.17.name=Deleting Text.newVersion=There is a newer version {0} of OpenProj available.\nYour current version is {1}.\nWould you like to go to the download page to get it now? |
|
From: Howard K. <ne...@us...> - 2007-08-27 23:21:58
|
Update of /cvsroot/openproj/openproj_ui/src/com/projity/menu In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv1816/src/com/projity/menu Added Files: menu_de.properties Log Message: German properties --- NEW FILE: menu_de.properties --- # The contents of this file are subject to the Common Public Attribution License # Version 1.0 (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # http://www.projity.com/license . The License is based on the Mozilla Public # License Version 1.1 but Sections 14 and 15 have been added to cover use of # software over a computer network and provide for limited attribution for the # Original Developer. In addition, Exhibit A has been modified to be consistent # with Exhibit B. # Software distributed under the License is distributed on an "AS IS" basis, # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the # specific language governing rights and limitations under the License. The # Original Code is OpenProj. The Original Developer is the Initial Developer and # is Projity, Inc. All portions of the code written by Projity are Copyright (c) # 2006, 2007. All Rights Reserved. Contributors Projity, Inc. # Alternatively, the contents of this file may be used under the terms of the # Projity End-User License Agreeement (the Projity License), in which case the # provisions of the Projity License are applicable instead of those above. If you [...1182 lines suppressed...] PrintPreviewZoomReset.icon = print.zoomReset PrintPreviewZoomReset.action = PrintPreviewZoomResetAction PrintPreviewZoomReset.tip = Zoom zurücksetzen PrintPreviewZoomIn.icon = print.zoomIn PrintPreviewZoomIn.action = PrintPreviewZoomInAction PrintPreviewZoomIn.tip = Verkleinern PrintPreviewFormat.icon = print.format PrintPreviewFormat.action = PrintPreviewFormatAction PrintPreviewFormat.tip = Papierformat PrintPreviewPrint.icon = print.print PrintPreviewPrint.action = PrintPreviewPrintAction PrintPreviewPrint.tip = Drucken manageResources.tooltip = Manage Resource Pool #manageResources.help=http://www.projity.com/docs/tutorial/Project-ON-Demand%20Tutorial%20Chapter%203.htm manageResources.demo=http://www.projity.com/docs/tutorial_video/POD_ResourcePool/POD_ResourcePool.html |