From: Gandin M. <mg...@us...> - 2005-10-18 15:17:23
|
mgandin 05/10/18 08:17:13 Modified: maven-dashboard-history/maven-plugins/src/plugin-resources dashboard-history-report-detailed.jsl dashboard-history-report.jsl maven-dashboard-history/maven-plugins project.xml plugin.properties plugin.jelly project.properties Log: Some correction in the plugin src, due to some refactoring Revision Changes Path 1.2 +19 -9 maven-plugins/maven-dashboard-history/maven-plugins/src/plugin-resources/dashboard-history-report-detailed.jsl Index: dashboard-history-report-detailed.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/src/plugin-resources/dashboard-history-report-detailed.jsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- dashboard-history-report-detailed.jsl 12 Jul 2005 14:37:42 -0000 1.1 +++ dashboard-history-report-detailed.jsl 18 Oct 2005 15:17:13 -0000 1.2 @@ -15,6 +15,9 @@ </properties> <body> + <j:choose> + <j:when test="${generatereport == 'true'}"> + <!-- The historical dashboard is activated --> <section name="Dashboard history"> <p> Here, you can take a look at the trends of the different metrics build after build : @@ -31,13 +34,15 @@ </section> - <x:forEach var="aggregatorName" select="project[1]/aggregator/@name"> + <!-- Iteration on aggregator --> + <u:tokenize var="indicators" delim=",">${maven.historical.aggregators}</u:tokenize> + <j:forEach items="${indicators}" trim="true" var="indicator"> + <j:set var="aggregatorName" trim="true" value="${indicator}"/> <x:forEach var="artifactName" select="/dashboard/project/@artifactId"> - <j:set var="labelProperty" value="maven.dashboard.aggregator.${aggregatorName.value}.label"/> - <!--section name="${context.getVariable(labelProperty)} for ${artifactName.value}"--> - <section name="${aggregatorName.value} for ${artifactName.value}"> + <j:set var="labelProperty" value="maven.dashboard.aggregator.${aggregatorName}.label"/> + <section name="${context.getVariable(labelProperty)} (${aggregatorName}) for ${artifactName.value}"> <table> <tr> <td> @@ -49,16 +54,21 @@ </tr> </table> <br/> - <u:replace var="aggreg" oldChar=" " newChar="_" value="${aggregatorName.value}"/> - <!--u:replace var="proj" oldChar=" " newChar="_" value="${artifactName.value}"/--> - <img border="0" src="images/${artifactName.value}-${aggreg}.${maven.historical.image.extension}"/> + <u:replace var="aggreg" oldChar=" " newChar="_" value="${aggregatorName}"/> + <img border="0" src="images/${artifactName.value}-${aggreg}.${maven.historical.image.extension}"/> </section> </x:forEach> - </x:forEach> + </j:forEach> - + </j:when> + <j:otherwise> + <section name="Dashboard history"> + <p>Historical Dashboard deactivated, set 'maven.dashboard.history.report=true' for reactivation.</p> + </section> + </j:otherwise> + </j:choose> </body> </document> </jsl:template> 1.2 +41 -31 maven-plugins/maven-dashboard-history/maven-plugins/src/plugin-resources/dashboard-history-report.jsl Index: dashboard-history-report.jsl =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/src/plugin-resources/dashboard-history-report.jsl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- dashboard-history-report.jsl 12 Jul 2005 14:37:42 -0000 1.1 +++ dashboard-history-report.jsl 18 Oct 2005 15:17:13 -0000 1.2 @@ -7,15 +7,19 @@ xmlns:u="jelly:util" xmlns="dummy" trim="false"> - <jsl:template match="dashboard"> - <document> - <properties> + <jsl:template match="dashboard"> + +<document> + <properties> <title>Dashboard History Report</title> - </properties> - <body> + </properties> + <body> - <section name="Dashboard history"> - <p> + <j:choose> + <j:when test="${generatereport == 'true'}"> + <!-- The historical dashboard is activated --> + <section name="Dashboard history"> + <p> Here, you can take a look at the trends of the different metrics build after build : </p> <ul> @@ -29,19 +33,26 @@ <table> <tr> <th>Project</th> - <x:forEach var="aggregatorName" select="project[1]/aggregator/@name"> + <u:tokenize var="indicators" delim=",">${maven.historical.aggregators}</u:tokenize> + <j:forEach items="${indicators}" trim="true" var="indicator"> + <j:set var="aggregatorName" trim="true" value="${indicator}"/> <th> <j:set var="labelProperty" - value="maven.dashboard.aggregator.${aggregatorName.value}.label"/> - <!--a href="#${context.getVariable(labelProperty)}"--> + value="maven.dashboard.aggregator.${aggregatorName}.label"/> <j:expr value="${context.getVariable(labelProperty)}"/> - <!--/a--> </th> - </x:forEach> + </j:forEach> </tr> <jsl:applyTemplates/> </table> </section> + </j:when> + <j:otherwise> + <section name="Dashboard history"> + <p>Historical Dashboard deactivated, set 'maven.dashboard.history.report=true' for reactivation.</p> + </section> + </j:otherwise> + </j:choose> </body> </document> </jsl:template> @@ -51,26 +62,25 @@ <tr> <j:set var="artifact.name"><x:expr select="@artifactId"/></j:set> <td><a href="multiproject/${artifact.name}/index.html"><x:expr select="@name"/></a></td> - <jsl:applyTemplates select="aggregator"/> + + <!-- Iteration on aggregator --> + <u:tokenize var="indicators" delim=",">${maven.historical.aggregators}</u:tokenize> + <j:forEach items="${indicators}" trim="true" var="indicator"> + <j:set var="aggregatorName" trim="true" value="${indicator}"/> + <j:set var="labelProperty" + value="maven.dashboard.aggregator.${aggregatorName}.label"/> + <j:set var="descriptionProperty" + value="maven.dashboard.aggregator.${aggregatorName}.description"/> + <u:replace var="aggr" oldChar=" " newChar="_" value="${aggregatorName}"/> + <u:replace var="desc" oldChar=" " newChar="_" value="${context.getVariable(labelProperty)}"/> + + <j:expr value="${context.getVariable(labelProperty)}"/> + <td><a href="dashboard-history-report-detailed.html#${desc}__${aggr}__for_${artifact.name}"> + <img border="0" src="images/${artifact.name}-${aggr}.${maven.historical.image.extension}" + width="${maven.historical.thumbnail.width}" height="${maven.historical.thumbnail.height}" title="${context.getVariable(descriptionProperty)}"/> + </a></td> + </j:forEach> </tr> </jsl:template> - <jsl:template match="aggregator"> - <td> - <j:set var="aggr.name"><x:expr select="@name"/></j:set> - <j:set var="artifact.name"><x:expr select="../@artifactId"/></j:set> - <j:set var="labelProperty" - value="maven.dashboard.aggregator.${aggr.name}.label"/> - <j:set var="descriptionProperty" - value="maven.dashboard.aggregator.${aggr.name}.description"/> - - <u:replace var="aggr" oldChar=" " newChar="_" value="${aggr.name}"/> - - <a href="dashboard-history-report-detailed.html#${aggr}_for_${artifact.name}"> - <img border="0" src="images/${artifact.name}-${aggr}.${maven.historical.image.extension}" - width="100" height="75" title="${context.getVariable(descriptionProperty)}"/> - </a> - </td> - </jsl:template> - </jsl:stylesheet> \ No newline at end of file 1.2 +18 -18 maven-plugins/maven-dashboard-history/maven-plugins/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/project.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- project.xml 12 Jul 2005 14:37:43 -0000 1.1 +++ project.xml 18 Oct 2005 15:17:13 -0000 1.2 @@ -2,17 +2,15 @@ <project> <pomVersion>3</pomVersion> - <id>maven-history-plugin</id> - <groupId>maven_history_dashboard</groupId> - <currentVersion>${dashboardhistorical.version}</currentVersion> - <name>Maven dashboard history plugin</name> + <id>maven-historical-plugin</id> + <groupId>maven_historic_dashboard</groupId> + <name>Maven dashboard historic plugin</name> <currentVersion>${dashboardhistorical.version}</currentVersion> <organization> <name>OCTO Technology</name> </organization> <inceptionYear>2003</inceptionYear> <shortDescription>Short description of the plugin</shortDescription> - <developers> <developer> <name>Gandin Mathieu</name> @@ -34,31 +32,33 @@ --> <dependency> - <groupId>maven_history_dashboard</groupId> - <artifactId>history_dashboard</artifactId> + <groupId>maven_historic_dashboard</groupId> + <artifactId>historic_dashboard</artifactId> <version>${dashboardhistorical.version}</version> </dependency> <dependency> - <groupId>maven_history_dashboard</groupId> - <artifactId>ant_history_dashboard</artifactId> + <groupId>maven_historic_dashboard</groupId> + <artifactId>ant_historic_dashboard</artifactId> <version>${dashboardhistorical.version}</version> </dependency> <dependency> - <groupId>jfree</groupId> - <artifactId>jfreechart</artifactId> - <version>0.9.21</version> + <groupId>jfreechart</groupId> + <artifactId>jfreechart</artifactId> + <version>0.9.21</version> </dependency> + <dependency> - <groupId>jfree</groupId> - <artifactId>jcommon</artifactId> - <version>0.9.6</version> + <groupId>jfreechart</groupId> + <artifactId>jcommon</artifactId> + <version>0.9.6</version> </dependency> + <dependency> - <groupId>xalan</groupId> - <artifactId>xalan</artifactId> - <version>2.5.1</version> + <groupId>xalan</groupId> + <artifactId>xalan</artifactId> + <version>2.5.1</version> </dependency> </dependencies> 1.2 +16 -2 maven-plugins/maven-dashboard-history/maven-plugins/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/plugin.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- plugin.properties 12 Jul 2005 14:37:43 -0000 1.1 +++ plugin.properties 18 Oct 2005 15:17:13 -0000 1.2 @@ -1,5 +1,6 @@ maven.dashboard.indicators=cserrors,cswarnings,clovertpc,cloverloc,cloverncloc,simiantdl,junittests,junitpassrate,fbfiles,fbviolations -dashboardhistorical.version=1.1SNAPSHOT + +dashboardhistorical.version=1.1 maven.dashboard.history.report.xdoc=dashboard-history-report maven.dashboard.report.xml=dashboard-data.xml @@ -9,4 +10,17 @@ maven.historical.filename=${maven.build.dir}/dashboard-history.xml maven.historical.image.extension=png -maven.historical.image.graphclass=com.octo.dashboard.historical.graph.impl.PNGGraphImage \ No newline at end of file +maven.historical.image.graphclass=com.octo.dashboard.historical.graph.impl.PNGGraphImage + +#By default we build the report +maven.dashboard.history.report=true + +#By default the historical has the same aggregators than thee dashboard +maven.historical.aggregators=${maven.dashboard.aggregators} + +#Size of the thumbnail of all the graphics +maven.historical.thumbnail.width=100 +maven.historical.thumbnail.height=75 +#Size of the Image +maven.historical.image.width=800 +maven.historical.image.height=600 1.3 +118 -157 maven-plugins/maven-dashboard-history/maven-plugins/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/plugin.jelly,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- plugin.jelly 29 Jul 2005 16:17:25 -0000 1.2 +++ plugin.jelly 18 Oct 2005 15:17:13 -0000 1.3 @@ -1,176 +1,137 @@ <?xml version="1.0" encoding="ISO-8859-1"?> <project xmlns:j="jelly:core" - xmlns:ant="jelly:ant" - xmlns:m="jelly:maven" - xmlns:u="jelly:util" - xmlns:d="doc"> - + xmlns:ant="jelly:ant" + xmlns:m="jelly:maven" + xmlns:u="jelly:util" + xmlns:d="doc"> + <goal name="dashboard-history:report"> - <ant:mkdir dir="${maven.build.dir}"/> - <ant:mkdir dir="${maven.historical.projectresultpath}"/> - <ant:path id="compile.classpath"> - - <ant:fileset dir="${maven.repo.local}\\maven_history_dashboard\\jars"> - <ant:include name="**/*.jar"/> - </ant:fileset> - <ant:fileset dir="${maven.repo.local}\\jfree\\jars"> - <ant:include name="**/*.jar"/> - </ant:fileset> - <ant:fileset dir="${maven.repo.local}\\xalan\\jars"> - <ant:include name="**/*.jar"/> - </ant:fileset> - </ant:path> - <ant:taskdef name="historic" - classname="com.octo.dashboard.history.task.HistoryTask" classpathref="compile.classpath"/> - - <ant:taskdef name="historicgraph" - classname="com.octo.dashboard.history.task.HistoryGraphTask" - classpathref="compile.classpath"/> - - <!-- Generate dashboard data for all sub-projects if it is required --> - <j:set var="runreactor" value="${maven.dashboard.runreactor}"/> - <j:choose> - <j:when test="${runreactor == 'true'}"> - <m:reactor - basedir="${maven.dashboard.basedir}" - banner="Generating dashboard data for" - includes="${maven.dashboard.includes}" - excludes="${maven.dashboard.excludes}" - postProcessing="true" - goals="dashboard:report-single" - ignoreFailures="${maven.dashboard.ignoreFailures}"/> - </j:when> - <!--j:otherwise--> - <!-- We need to run the reactor to gather the list of projects - because the reactor creates a reactorProjects jelly property - that we need in the dashboard:aggregate goal. --> - <!--m:reactor - basedir="${maven.dashboard.basedir}" - banner="Gathering project list for" - includes="${maven.dashboard.includes}" - excludes="${maven.dashboard.excludes}" - postProcessing="true" - collectOnly="true" - ignoreFailures="${maven.dashboard.ignoreFailures}"/> - </j:otherwise--> - </j:choose> - - <ant:historic destination="${maven.historical.destination}" - dashboardfilename="${maven.historical.dashboardfilename}" - projectresultpath="${maven.historical.projectresultpath}" - filetype="${maven.historical.filetype}" - historicalfilename="${maven.historical.filename}"/> - - <u:tokenize var="indicators" delim=",">${maven.dashboard.aggregators}</u:tokenize> - - <ant:echo>${maven.build.dir}</ant:echo> - - <j:forEach items="${indicators}" var="indicator"> - <j:forEach var="project" items="${reactorProjects}"> - <u:replace var="aggreg" oldChar=" " newChar="_" value="${indicator}"/> - <u:replace var="proj" oldChar=" " newChar="_" value="${project}"/> - <ant:historicgraph historicfilename="${maven.historical.destination}" - indicatorname="${indicator}" - projectname="${project}" - graphtype="JFREE" - graphname="${maven.build.dir}/${project.artifactId}-${aggreg}.${maven.historical.image.extension}" - imagegenerationclassname="${maven.historical.image.graphclass}"/> - </j:forEach> - </j:forEach> - <attainGoal name="dashboard-history:xdoc"/> - <attainGoal name="dashboard-history:archive"/> + <j:set var="generatereport" scope="parent" + value="${maven.dashboard.history.report}"/> + <j:choose> + <j:when test="${generatereport == 'true'}"> + <!-- The historical dashboard is activated --> + <ant:mkdir dir="${maven.build.dir}"/> + <ant:mkdir dir="${maven.historical.projectresultpath}"/> + <ant:taskdef name="historic" classname="com.octo.dashboard.historic.task.HistoricTask"> + <ant:classpath> + <pathelement location="${maven.repo.local}\\maven_historic_dashboard\\jars\\historic_dashboard-${dashboardhistorical.version}.jar"/> + <pathelement location="${maven.repo.local}\\maven_historic_dashboard\\jars\\ant_historic_dashboard-${dashboardhistorical.version}.jar"/> + <pathelement location="${maven.repo.local}\\jfreechart\\jars\\jcommon-0.9.6.jar"/> + <pathelement location="${maven.repo.local}\\jfreechart\\jars\\jfreechart-0.9.21.jar"/> + </ant:classpath> + </ant:taskdef> + + <ant:taskdef name="historicgraph" classname="com.octo.dashboard.historic.task.HistoricalGraphTask"> + <ant:classpath> + <pathelement location="${maven.repo.local}\\maven_historic_dashboard\\jars\\historic_dashboard-${dashboardhistorical.version}.jar"/> + <pathelement location="${maven.repo.local}\\maven_historic_dashboard\\jars\\ant_historic_dashboard-${dashboardhistorical.version}.jar"/> + <pathelement location="${maven.repo.local}\\jfreechart\\jars\\jcommon-0.9.6.jar"/> + <pathelement location="${maven.repo.local}\\jfreechart\\jars\\jfreechart-0.9.21.jar"/> + <pathelement location="${maven.repo.local}\\xalan\\jars\\xalan-2.5.1.jar"/> + </ant:classpath> + </ant:taskdef> + + + <!-- Generate dashboard data for all sub-projects if it is required --> + <j:set var="runreactor" value="${maven.dashboard.runreactor}"/> + <j:choose> + <j:when test="${runreactor == 'true'}"> + <m:reactor + basedir="${maven.dashboard.basedir}" + banner="Generating dashboard data for" + includes="${maven.dashboard.includes}" + excludes="${maven.dashboard.excludes}" + postProcessing="true" + goals="dashboard:report-single" + ignoreFailures="${maven.dashboard.ignoreFailures}"/> + </j:when> + <j:otherwise> + <!-- We need to run the reactor to gather the list of projects + because the reactor creates a reactorProjects jelly property + that we need in the dashboard:aggregate goal. --> + <m:reactor + basedir="${maven.dashboard.basedir}" + banner="Gathering project list for" + includes="${maven.dashboard.includes}" + excludes="${maven.dashboard.excludes}" + postProcessing="true" + collectOnly="true" + ignoreFailures="${maven.dashboard.ignoreFailures}"/> + </j:otherwise> + </j:choose> + + <ant:historic destination="${maven.historical.destination}" + dashboardfilename="${maven.historical.dashboardfilename}" + projectresultpath="${maven.historical.projectresultpath}" + filetype="${maven.historical.filetype}" + historicalfilename="${maven.historical.filename}"/> + + <u:tokenize var="indicators" delim=",">${maven.historical.aggregators}</u:tokenize> + <ant:echo>${maven.build.dir}</ant:echo> + + <j:forEach items="${indicators}" var="indicator"> + <j:forEach var="project" items="${reactorProjects}"> + <u:replace var="aggreg" oldChar=" " newChar="_" value="${indicator}"/> + <u:replace var="proj" oldChar=" " newChar="_" value="${project}"/> + <ant:historicgraph historicfilename="${maven.historical.destination}" + indicatorname="${indicator}" + projectname="${project}" + graphtype="JFREE" + graphname="${maven.build.dir}/${project.artifactId}-${aggreg}.${maven.historical.image.extension}" + imagegenerationclassname="${maven.historical.image.graphclass}" + width="${maven.historical.image.width}" height="${maven.historical.image.height}"/> + </j:forEach> + </j:forEach> + </j:when> + <j:otherwise> + <echo>Historical dashbord deactivated, see maven.dashboard.history.report=${maven.dashboard.history.report}</echo> + </j:otherwise> + </j:choose> + <attainGoal name="dashboard-history:xdoc"/> </goal> - <!-- - Generate the report of dashboard history - --> <goal name="dashboard-history:xdoc"> <d:jsl - input="${maven.build.dir}/${maven.historical.dashboardfilename}" - output="${maven.dashboard.history.report.xdoc}.xml" - stylesheet="${plugin.resources}/dashboard-history-report.jsl" - outputMode="xml" - prettyPrint="true"/> + input="${maven.build.dir}/${maven.historical.dashboardfilename}" + output="${maven.dashboard.history.report.xdoc}.xml" + stylesheet="${plugin.resources}/dashboard-history-report.jsl" + outputMode="xml" + prettyPrint="true"/> <d:jsl - input="${maven.build.dir}/${maven.historical.dashboardfilename}" - output="${maven.dashboard.history.report.xdoc}-detailed.xml" - stylesheet="${plugin.resources}/dashboard-history-report-detailed.jsl" - outputMode="xml" - prettyPrint="true"/> + input="${maven.build.dir}/${maven.historical.dashboardfilename}" + output="${maven.dashboard.history.report.xdoc}-detailed.xml" + stylesheet="${plugin.resources}/dashboard-history-report-detailed.jsl" + outputMode="xml" + prettyPrint="true"/> <ant:mkdir dir="${maven.docs.dest}/images"/> - <ant:copy todir="${maven.docs.dest}/images"> - <ant:fileset dir="${maven.build.dir}"> - <include name="*.${maven.historical.image.extension}"/> - </ant:fileset> - </ant:copy> + <ant:copy todir="${maven.docs.dest}/images"> + <ant:fileset dir="${maven.build.dir}"> + <include name="*.${maven.historical.image.extension}"/> + </ant:fileset> + </ant:copy> </goal> - <!-- - Copy all the result into a repository of dashbord result, for making - an history - --> - <goal name="dashboard-history:archive"> - <j:new var="currentDate" className="java.util.Date"/> - <j:set var="myYear" value="${currentDate.getYear()+1900}"/> - <j:set var="offset" value=""/> - <j:if test="${10>currentDate.getMonth()}"> - <j:set var="offset" value="0"/> - </j:if> - <j:set var="myMonth" value="${offset}${currentDate.getMonth()+1}"/> - - <j:set var="offset" value=""/> - <j:if test="${10>currentDate.getDate()}"> - <j:set var="offset" value="0"/> - </j:if> - <j:set var="myDay" value="${offset}${currentDate.getDate()}"/> - - <j:set var="offset" value=""/> - <j:if test="${9>currentDate.getHours()}"> - <j:set var="offset" value="0"/> - </j:if> - <j:set var="myHours" value="${offset}${currentDate.getHours()+1}"/> - - <j:set var="offset" value=""/> - <j:if test="${9>currentDate.getMinutes()}"> - <j:set var="offset" value="0"/> - </j:if> - <j:set var="myMinutes" value="${offset}${currentDate.getMinutes()+1}"/> - - <j:set var="offset" value=""/> - <j:if test="${9>currentDate.getSeconds()}"> - <j:set var="offset" value="0"/> - </j:if> - <j:set var="mySeconds" value="${offset}${currentDate.getSeconds()+1}"/> - <j:set var="currentDateAsStr" value="${myYear}${myMonth}${myDay}${myHours}${myMinutes}${mySeconds}"/> - - <copy todir="${maven.historical.projectresultpath}/${currentDateAsStr}" file="${maven.build.dir}/dashboard-data.xml"/> - + <!--======================================================================== + Register the dashboard report. + ========================================================================--> + <goal name="maven-dashboard-history-plugin:register"> + + <d:registerReport + name="Dashboard history" + pluginName="dashboard-history" + description="Reports history of all dashboard" + link="${maven.dashboard.history.report.xdoc}"/> </goal> - -<!-- - ======================================================================== - Register the dashboard report. - ======================================================================== - --> - <goal name="maven-dashboard-history-plugin:register"> - - <d:registerReport - name="Dashboard history" - pluginName="dashboard-history" - description="Reports history of all dashboard" - link="${maven.dashboard.history.report.xdoc}"/> - </goal> - <!-- - ======================================================================== + <!--======================================================================== Deregister the dashboard report. - ======================================================================== - --> - <goal name="maven-dashboard-history-plugin:deregister"> - <d:deregisterReport name="Dashboard history"/> - </goal> + ========================================================================--> + <goal name="maven-dashboard-history-plugin:deregister"> + <d:deregisterReport name="Dashboard history"/> + </goal> </project> \ No newline at end of file 1.2 +1 -1 maven-plugins/maven-dashboard-history/maven-plugins/project.properties Index: project.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven-dashboard-history/maven-plugins/project.properties,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- project.properties 12 Jul 2005 14:37:43 -0000 1.1 +++ project.properties 18 Oct 2005 15:17:13 -0000 1.2 @@ -1,2 +1,2 @@ #numéro de version du projet qui est utilisé par tous les composants du projet -dashboardhistorical.version=1.1 +dashboardhistorical.version=1.1 \ No newline at end of file |