You can subscribe to this list here.
| 2010 |
Jan
|
Feb
|
Mar
(81) |
Apr
(163) |
May
(333) |
Jun
(90) |
Jul
(66) |
Aug
(178) |
Sep
(83) |
Oct
(31) |
Nov
(70) |
Dec
(10) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2011 |
Jan
(40) |
Feb
(25) |
Mar
(23) |
Apr
(45) |
May
(60) |
Jun
(36) |
Jul
(54) |
Aug
(44) |
Sep
(26) |
Oct
(19) |
Nov
(27) |
Dec
(28) |
| 2012 |
Jan
(25) |
Feb
(36) |
Mar
(23) |
Apr
(22) |
May
(12) |
Jun
(26) |
Jul
(23) |
Aug
(76) |
Sep
(59) |
Oct
(44) |
Nov
(55) |
Dec
(10) |
| 2013 |
Jan
(30) |
Feb
(29) |
Mar
(18) |
Apr
(14) |
May
(10) |
Jun
(10) |
Jul
(20) |
Aug
(11) |
Sep
(21) |
Oct
(36) |
Nov
(30) |
Dec
(20) |
| 2014 |
Jan
(12) |
Feb
(26) |
Mar
(21) |
Apr
(12) |
May
(19) |
Jun
(17) |
Jul
(15) |
Aug
(21) |
Sep
(12) |
Oct
(30) |
Nov
(12) |
Dec
(10) |
| 2015 |
Jan
(6) |
Feb
(16) |
Mar
(7) |
Apr
(6) |
May
(4) |
Jun
(28) |
Jul
(33) |
Aug
(3) |
Sep
(25) |
Oct
(4) |
Nov
(34) |
Dec
(27) |
| 2016 |
Jan
(9) |
Feb
(6) |
Mar
(7) |
Apr
(13) |
May
(7) |
Jun
(27) |
Jul
(17) |
Aug
(13) |
Sep
(20) |
Oct
(20) |
Nov
(8) |
Dec
(12) |
| 2017 |
Jan
(8) |
Feb
(4) |
Mar
(8) |
Apr
(6) |
May
(5) |
Jun
(5) |
Jul
(13) |
Aug
(15) |
Sep
(5) |
Oct
(3) |
Nov
(6) |
Dec
(4) |
| 2018 |
Jan
(7) |
Feb
(2) |
Mar
(2) |
Apr
(1) |
May
(7) |
Jun
(5) |
Jul
(9) |
Aug
(8) |
Sep
(17) |
Oct
(8) |
Nov
(1) |
Dec
(2) |
| 2019 |
Jan
|
Feb
|
Mar
(2) |
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <duk...@us...> - 2010-03-17 17:50:21
|
Revision: 1061
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1061&view=rev
Author: dukes_little_b
Date: 2010-03-17 17:50:15 +0000 (Wed, 17 Mar 2010)
Log Message:
-----------
adding a more descriptive error processing in XMLConverter's clean XHTML methods
Modified Paths:
--------------
trunk/container/src/java/org/torweg/pulse/util/xml/XMLConverter.java
Added Paths:
-----------
trunk/container/src/java/org/torweg/pulse/util/xml/IllegalXHTMLException.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <duk...@us...> - 2010-03-17 17:49:44
|
Revision: 1060
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1060&view=rev
Author: dukes_little_b
Date: 2010-03-17 17:49:38 +0000 (Wed, 17 Mar 2010)
Log Message:
-----------
make CMSPageEditor use XMLConverter for XHTML processing rather than a plain SAXBuilder
Modified Paths:
--------------
trunk/components/cms/src/java/org/torweg/pulse/component/cms/admin/CMSPageEditor.java
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <duk...@us...> - 2010-03-17 15:29:37
|
Revision: 1058
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1058&view=rev
Author: dukes_little_b
Date: 2010-03-17 15:29:21 +0000 (Wed, 17 Mar 2010)
Log Message:
-----------
added getters and setters for Content-Disposition
Modified Paths:
--------------
trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java
Modified: trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java
===================================================================
--- trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java 2010-03-17 13:37:47 UTC (rev 1057)
+++ trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java 2010-03-17 15:29:21 UTC (rev 1058)
@@ -147,6 +147,25 @@
}
/**
+ * returns the Content-Dispostion.
+ *
+ * @return the disposition
+ */
+ public final Disposition getDisposition() {
+ return this.disposition;
+ }
+
+ /**
+ * sets the Content-Disposition.
+ *
+ * @param disp
+ * the disposition to set
+ */
+ public final void setDisposition(Disposition disp) {
+ this.disposition = disp;
+ }
+
+ /**
* starts the PDF output base on the given XSL.
*
* @param req
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <m-...@us...> - 2010-03-17 13:37:57
|
Revision: 1057
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1057&view=rev
Author: m-dietz
Date: 2010-03-17 13:37:47 +0000 (Wed, 17 Mar 2010)
Log Message:
-----------
organised imports
Modified Paths:
--------------
trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java
Modified: trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java
===================================================================
--- trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java 2010-03-17 13:10:18 UTC (rev 1056)
+++ trunk/container/src/java/org/torweg/pulse/service/event/PDFOutputEvent.java 2010-03-17 13:37:47 UTC (rev 1057)
@@ -10,16 +10,9 @@
import java.util.HashSet;
import javax.servlet.http.HttpServletResponse;
-import javax.xml.transform.Result;
-import javax.xml.transform.Transformer;
-import javax.xml.transform.sax.SAXResult;
-import org.apache.fop.apps.Fop;
-import org.apache.fop.apps.MimeConstants;
import org.apache.log4j.Logger;
-import org.jdom.transform.JDOMSource;
import org.torweg.pulse.bundle.ResultSet;
-import org.torweg.pulse.invocation.lifecycle.Lifecycle;
import org.torweg.pulse.service.PulseException;
import org.torweg.pulse.service.request.CacheMode;
import org.torweg.pulse.service.request.ServiceRequest;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <duk...@us...> - 2010-03-17 13:10:27
|
Revision: 1056
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1056&view=rev
Author: dukes_little_b
Date: 2010-03-17 13:10:18 +0000 (Wed, 17 Mar 2010)
Log Message:
-----------
moved package.html info to package-info.java
Modified Paths:
--------------
trunk/container/src/java/org/torweg/pulse/accesscontrol/package-info.java
Added Paths:
-----------
trunk/container/src/java/org/torweg/pulse/site/content/suffices/package-info.java
Removed Paths:
-------------
trunk/container/src/java/org/torweg/pulse/accesscontrol/package.html
trunk/container/src/java/org/torweg/pulse/site/content/suffices/package.html
Modified: trunk/container/src/java/org/torweg/pulse/accesscontrol/package-info.java
===================================================================
--- trunk/container/src/java/org/torweg/pulse/accesscontrol/package-info.java 2010-03-16 13:03:14 UTC (rev 1055)
+++ trunk/container/src/java/org/torweg/pulse/accesscontrol/package-info.java 2010-03-17 13:10:18 UTC (rev 1056)
@@ -1,3 +1,6 @@
+/**
+ * controls the access to <code>Bundle</code>s and their <code>Controller</code>s.
+ */
@javax.xml.bind.annotation.XmlSchema(namespace = "http://pulse.torweg.org/container")
package org.torweg.pulse.accesscontrol;
Deleted: trunk/container/src/java/org/torweg/pulse/accesscontrol/package.html
===================================================================
--- trunk/container/src/java/org/torweg/pulse/accesscontrol/package.html 2010-03-16 13:03:14 UTC (rev 1055)
+++ trunk/container/src/java/org/torweg/pulse/accesscontrol/package.html 2010-03-17 13:10:18 UTC (rev 1056)
@@ -1,11 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title>org.torweg.pulse.accesscontrol</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-<body>
-<p>controls the access to <code>Bundle</code>s and their <code>Controller</code>s.</p>
-</body>
-</html>
Added: trunk/container/src/java/org/torweg/pulse/site/content/suffices/package-info.java
===================================================================
--- trunk/container/src/java/org/torweg/pulse/site/content/suffices/package-info.java (rev 0)
+++ trunk/container/src/java/org/torweg/pulse/site/content/suffices/package-info.java 2010-03-17 13:10:18 UTC (rev 1056)
@@ -0,0 +1,11 @@
+/**
+ * contains suffix conversion classes to build URL safe, ASCII only
+ * and search engine friendly suffices for <code>AbstractBasicContent</code>s.
+ *
+ * <p><code>SuffixConverter</code> is the base interface for all actual
+ * converters.</p>
+ * <p>The converters are configured globally within <code>org.torweg.pulse.content.AbstractBasicContent.xml</code>
+ * in <code>WEB-INF/conf/</code>.</p>
+ */
+package org.torweg.pulse.site.content.suffices;
+
Deleted: trunk/container/src/java/org/torweg/pulse/site/content/suffices/package.html
===================================================================
--- trunk/container/src/java/org/torweg/pulse/site/content/suffices/package.html 2010-03-16 13:03:14 UTC (rev 1055)
+++ trunk/container/src/java/org/torweg/pulse/site/content/suffices/package.html 2010-03-17 13:10:18 UTC (rev 1056)
@@ -1,16 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-"http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-<title>org.torweg.pulse.site.content.suffices</title>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-</head>
-<body>
-<p>contains suffix conversion classes to build URL safe, ASCII only
-and search engine friendly suffices for <code>AbstractBasicContent</code>s.</p>
-<p><code>SuffixConverter</code> is the base interface for all actual
-converters.</p>
-<p>The converters are configured globally within <code>org.torweg.pulse.content.AbstractBasicContent.xml</code>
-in <code>WEB-INF/conf/</code>.</p>
-</body>
-</html>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dd...@us...> - 2010-03-16 13:03:27
|
Revision: 1055
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1055&view=rev
Author: ddietz
Date: 2010-03-16 13:03:14 +0000 (Tue, 16 Mar 2010)
Log Message:
-----------
made configurable how the screen resolution filter is to perform the calculations for the filtering of the screen resolutions
Modified Paths:
--------------
trunk/bundles/Statistics/org.torweg.pulse.component.statistics.view.TechnicalInformationViewReportController.xml
trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewController.java
trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerConfiguration.java
trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerResultData.java
trunk/components/statistics/xsl/Statistics/TechnicalInformationView.Data/ajax.tables.screenResolution.xsl
trunk/components/statistics/xsl/Statistics/ajax.init.Statistics.Center.TechnicalInformationView.xsl
Modified: trunk/bundles/Statistics/org.torweg.pulse.component.statistics.view.TechnicalInformationViewReportController.xml
===================================================================
--- trunk/bundles/Statistics/org.torweg.pulse.component.statistics.view.TechnicalInformationViewReportController.xml 2010-03-16 12:44:50 UTC (rev 1054)
+++ trunk/bundles/Statistics/org.torweg.pulse.component.statistics.view.TechnicalInformationViewReportController.xml 2010-03-16 13:03:14 UTC (rev 1055)
@@ -20,13 +20,22 @@
<statistical-data-resolution-period>YEAR</statistical-data-resolution-period>
</available-statistical-data-resolution-periods>
- <!--
+ <!-- [optional=true]
the value to filter the screen resolutions by
- set this to <= 0 to disable filtering
- default: 0.01
-->
- <!--<screen-resolution-lowest-display-value>0.01</screen-resolution-lowest-display-value>-->
+ <!--<screen-resolution-lowest-display-value>0.03</screen-resolution-lowest-display-value>-->
+ <!-- [optional=true]
+ the ScreenResolutionFilterMode for filtering the screen resolutions
+ - available values:
+ 1. ABSOLUTE_ROW_TOTAL (filter by check: resolution total vs. absolute row total)
+ 2. FORMAT_ROW_TOTAL (filter by check: resolution total vs. format row total)
+ - default: ABSOLUTE_ROW_TOTAL
+ -->
+ <!--<screen-resolution-lowest-display-value-filter-mode>FORMAT_ROW_TOTAL</screen-resolution-lowest-display-value-filter-mode>-->
+
<!-- the pdf-xsl for the report -->
<report-pdf-XSL
file="WEB-INF/components/statistics/xsl/Statistics/Report/ajax.Statistics.PDF.TechnicalInformationView.xsl"/>
Modified: trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewController.java
===================================================================
--- trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewController.java 2010-03-16 12:44:50 UTC (rev 1054)
+++ trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewController.java 2010-03-16 13:03:14 UTC (rev 1055)
@@ -192,10 +192,13 @@
// clear irrelevant screen resolution information
if (getConfiguration().getScreenResolutionLowestDisplayValue() > 0) {
data.clearScreenResolutionAggregationsMatrix(getConfiguration()
- .getScreenResolutionLowestDisplayValue());
+ .getScreenResolutionLowestDisplayValue(),
+ getConfiguration()
+ .getScreenResolutionLowestDisplayValueFilterMode());
}
return data;
}
+
}
Modified: trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerConfiguration.java
===================================================================
--- trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerConfiguration.java 2010-03-16 12:44:50 UTC (rev 1054)
+++ trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerConfiguration.java 2010-03-16 13:03:14 UTC (rev 1055)
@@ -54,6 +54,17 @@
private double screenResolutionLowestDisplayValue = 0.01;
/**
+ * Determines whether to use the absolute/format-specific row totals for
+ * calculation during filtering.
+ * <p>
+ * <strong>default:</strong>
+ * <code>ScreenResolutionFilterMode.ABSOLUTE_ROW_TOTAL</code>
+ * </p>
+ */
+ @XmlElement(name = "screen-resolution-lowest-display-value-filter-mode")
+ private ScreenResolutionFilterMode screenResolutionLowestDisplayValueFilterMode = ScreenResolutionFilterMode.ABSOLUTE_ROW_TOTAL;
+
+ /**
* Default constructor.
*/
@Deprecated
@@ -79,4 +90,44 @@
this.screenResolutionLowestDisplayValue = lowestDisplayValue;
}
+ /**
+ * Returns the <code>ScreenResolutionFilterMode</code>.
+ *
+ * @return the <code>ScreenResolutionFilterMode</code>
+ */
+ public ScreenResolutionFilterMode getScreenResolutionLowestDisplayValueFilterMode() {
+ return this.screenResolutionLowestDisplayValueFilterMode;
+ }
+
+ /**
+ * Sets the <code>ScreenResolutionFilterMode</code>.
+ *
+ * @param screenResolutionFilterMode
+ * the <code>ScreenResolutionFilterMode</code>
+ */
+ public void setScreenResolutionLowestDisplayValueFilterMode(
+ final ScreenResolutionFilterMode screenResolutionFilterMode) {
+ this.screenResolutionLowestDisplayValueFilterMode = screenResolutionFilterMode;
+ }
+
+ /**
+ * Determines which values are used for calculating during the
+ * <code>ScreenResolution</code> filtering process.
+ *
+ * @author Daniel Dietz
+ * @version $Revision$
+ */
+ protected static enum ScreenResolutionFilterMode {
+
+ /**
+ * Use the absolute row total.
+ */
+ ABSOLUTE_ROW_TOTAL,
+
+ /**
+ * Use the format specific row total.
+ */
+ FORMAT_ROW_TOTAL;
+ }
+
}
Modified: trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerResultData.java
===================================================================
--- trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerResultData.java 2010-03-16 12:44:50 UTC (rev 1054)
+++ trunk/components/statistics/src/java/org/torweg/pulse/component/statistics/view/TechnicalInformationViewControllerResultData.java 2010-03-16 13:03:14 UTC (rev 1055)
@@ -44,6 +44,7 @@
import org.torweg.pulse.component.statistics.util.ResultIHasDurationDataMatrixRow;
import org.torweg.pulse.component.statistics.util.ScreenResolutionPerVisitAggregationRowData;
import org.torweg.pulse.component.statistics.util.ScreenResolutionPerVisitAggregationRowDataBuilder;
+import org.torweg.pulse.component.statistics.view.TechnicalInformationViewControllerConfiguration.ScreenResolutionFilterMode;
import org.torweg.pulse.util.time.Duration;
import org.torweg.pulse.util.time.IHasDurationComparator;
import org.torweg.pulse.util.time.Period;
@@ -303,14 +304,20 @@
}
/**
- * Clears all information about screen resolutions the percentage of which
- * is below the given percentage value.
+ * Clears all known <code>ScreenResolution</code>s the calculated percentage
+ * (for all data rows of the <tt>screenResolutionAggregationsMatrix</tt>) of
+ * which is below the given percentage value using the given
+ * <code>ScreenResolutionFilterMode</code> for the arithmetical filter
+ * check.
*
* @param percentage
* the percentage value
+ * @param screenResolutionFilterMode
+ * the <code>ScreenResolutionFilterMode</code>
*/
protected void clearScreenResolutionAggregationsMatrix(
- final Double percentage) {
+ final Double percentage,
+ final ScreenResolutionFilterMode screenResolutionFilterMode) {
if (this.knownScreenResolutions == null
|| this.screenResolutionAggregationsMatrix == null
@@ -321,51 +328,68 @@
List<ScreenResolution> filtered = new ArrayList<ScreenResolution>();
for (ScreenResolution resolution : this.knownScreenResolutions) {
- boolean addToList = filterDataRowsForResolution(percentage,
- resolution);
+ // determines whether to filter the resolution
+ boolean addToList = isFilterResolution(percentage, resolution,
+ screenResolutionFilterMode);
if (addToList) {
filtered.add(resolution);
+ continue;
}
}
-
this.knownScreenResolutions = filtered;
}
/**
* Filters the data rows for the given <code>ScreenResolution</code> by the
- * given percentage value.
+ * given percentage value using the given
+ * <code>ScreenResolutionFilterMode</code>.
*
* @param percentage
* the percentage value
* @param resolution
* the <code>ScreenResolution</code>
+ * @param screenResolutionFilterMode
+ * the <code>ScreenResolutionFilterMode</code>
*
* @return <code>true</code> if the <code>ScreenResolution</code> is to be
* kept in the list, <code>false</code> otherwise
*/
- private boolean filterDataRowsForResolution(final Double percentage,
- final ScreenResolution resolution) {
- boolean addToList = false;
+ private boolean isFilterResolution(final Double percentage,
+ final ScreenResolution resolution,
+ final ScreenResolutionFilterMode screenResolutionFilterMode) {
for (ResultIHasDurationDataMatrixRow<ScreenResolutionPerVisitAggregation, ScreenResolutionPerVisitAggregationRowDataBuilder, ScreenResolutionPerVisitAggregationRowData> row : this.screenResolutionAggregationsMatrix
.getRows()) {
+
+ // check existance of required data for arithmetical filter check
if (row.getData() == null
|| row.getData().getFormatResolutionsData(
resolution.getFormat()) == null) {
continue;
}
- Integer formatTotal = row.getData().getFormatTotal(
- resolution.getFormat());
+
+ // retrieve the values for arithmetical filter check
+ Integer baseTotalToCheckAgainst;
+ if (screenResolutionFilterMode
+ .equals(ScreenResolutionFilterMode.FORMAT_ROW_TOTAL)) {
+ baseTotalToCheckAgainst = row.getData().getFormatTotal(
+ resolution.getFormat());
+ } else {
+ baseTotalToCheckAgainst = row.getData().getAbsoluteTotal();
+ }
Integer resolutionTotal = row.getData().getFormatResolutionsData(
resolution.getFormat()).getCount(resolution);
- if (formatTotal != null && resolutionTotal != null) {
+
+ // arithmetical filter check
+ if (baseTotalToCheckAgainst != null && resolutionTotal != null) {
Double calculatedPercentage = (double) resolutionTotal
- / (double) formatTotal;
+ / (double) baseTotalToCheckAgainst;
if (calculatedPercentage > percentage) {
- addToList = true;
+ return true;
}
}
+
}
- return addToList;
+ return false;
}
}
Modified: trunk/components/statistics/xsl/Statistics/TechnicalInformationView.Data/ajax.tables.screenResolution.xsl
===================================================================
--- trunk/components/statistics/xsl/Statistics/TechnicalInformationView.Data/ajax.tables.screenResolution.xsl 2010-03-16 12:44:50 UTC (rev 1054)
+++ trunk/components/statistics/xsl/Statistics/TechnicalInformationView.Data/ajax.tables.screenResolution.xsl 2010-03-16 13:03:14 UTC (rev 1055)
@@ -373,6 +373,9 @@
<xsl:text>color:#BBBBBB;</xsl:text>
</xsl:if>
</xsl:attribute>
+ <xsl:attribute name="title">
+ <xsl:text>% of ∑ = 100%</xsl:text>
+ </xsl:attribute>
<xsl:value-of
select="fn:round-half-to-even((($displayValueNumber div number($absoluteRowTotal)) * 100),2)"/>
<xsl:text>%</xsl:text>
@@ -384,6 +387,7 @@
<xsl:param name="format"/>
<xsl:param name="resolution"/>
<xsl:param name="absoluteRowTotal"/>
+ <xsl:param name="screen.resolution.filter.mode" tunnel="yes"/>
<xsl:param name="displayValue">
<xsl:for-each select="data/formats/entry">
<xsl:if test="key/text()=$format">
@@ -395,8 +399,21 @@
</xsl:if>
</xsl:for-each>
</xsl:param>
-
<xsl:param name="displVal" select="string(number($displayValue))"/>
+ <xsl:param name="calculationBase">
+ <xsl:choose>
+ <xsl:when test="$screen.resolution.filter.mode='FORMAT_ROW_TOTAL'">
+ <xsl:for-each select="data/format-totals/entry">
+ <xsl:if test="key/text()=$format">
+ <xsl:value-of select="value/text()"/>
+ </xsl:if>
+ </xsl:for-each>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:value-of select="$absoluteRowTotal"/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:param>
<td align="center">
<xsl:attribute name="style">
@@ -419,8 +436,18 @@
<xsl:text>color:#BBBBBB;</xsl:text>
</xsl:if>
</xsl:attribute>
+ <xsl:attribute name="title">
+ <xsl:choose>
+ <xsl:when test="$screen.resolution.filter.mode='FORMAT_ROW_TOTAL'">
+ <xsl:text>% of ∑</xsl:text>
+ </xsl:when>
+ <xsl:otherwise>
+ <xsl:text>% of ∑ = 100%</xsl:text>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:attribute>
<xsl:value-of
- select="fn:round-half-to-even(((number($displayValue) div number($absoluteRowTotal)) * 100),2)"/>
+ select="fn:round-half-to-even(((number($displayValue) div number($calculationBase)) * 100),2)"/>
<xsl:text>%</xsl:text>
</td>
</xsl:template>
Modified: trunk/components/statistics/xsl/Statistics/ajax.init.Statistics.Center.TechnicalInformationView.xsl
===================================================================
--- trunk/components/statistics/xsl/Statistics/ajax.init.Statistics.Center.TechnicalInformationView.xsl 2010-03-16 12:44:50 UTC (rev 1054)
+++ trunk/components/statistics/xsl/Statistics/ajax.init.Statistics.Center.TechnicalInformationView.xsl 2010-03-16 13:03:14 UTC (rev 1055)
@@ -85,6 +85,9 @@
mode="table.aggregations.matrix">
<xsl:with-param name="knownFormats" select="data/known-screen-resolution-formats/node()"/>
<xsl:with-param name="knownResolutions" select="data/known-screen-resolutions/node()"/>
+ <xsl:with-param name="screen.resolution.filter.mode"
+ select="configuration/screen-resolution-lowest-display-value-filter-mode/text()"
+ tunnel="yes"/>
</xsl:apply-templates>
<!-- inline js -->
@@ -101,7 +104,8 @@
thisTab = Ext.getCmp('Pulse.Statistics.TechnicalInformationView.<xsl:value-of select="data/statistics-server/@id"/>');
- <!-- init Toolbar: @see: ajax.util.Statistics.Center.xsl -->
+ <!--
+ init Toolbar: @see: ajax.util.Statistics.Center.xsl-->
<xsl:call-template name="statistics.toolbar.builder">
<xsl:with-param name="statistics.result" select="self::node()"/>
<xsl:with-param name="clearSessionDataCommand">
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <duk...@us...> - 2010-03-16 12:44:57
|
Revision: 1054
http://pulse-java.svn.sourceforge.net/pulse-java/?rev=1054&view=rev
Author: dukes_little_b
Date: 2010-03-16 12:44:50 +0000 (Tue, 16 Mar 2010)
Log Message:
-----------
dev.java.net project page
So long and thanks for the fish...
Removed Paths:
-------------
trunk/www/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|