Skip to content

Commit

Permalink
MONDRIAN: Upgrade to JPivot 1.0.1.
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//open/mondrian/": change = 797]
  • Loading branch information
julianhyde committed Sep 24, 2003
1 parent fc72207 commit be5966c
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 13 deletions.
29 changes: 29 additions & 0 deletions src/main/mondrian/resource/ChainableRuntimeException.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
// $Id$
// This software is subject to the terms of the Common Public License
// Agreement, available at the following URL:
// http://www.opensource.org/licenses/cpl.html.
// (C) Copyright 2001-2003 Kana Software, Inc. and others.
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.resource;

/**
* @deprecated use {@link RuntimeException}
**/
public class ChainableRuntimeException extends RuntimeException {
public ChainableRuntimeException(String message) {
super(message);
}

public ChainableRuntimeException(String message, Throwable cause) {
super(message, cause);
}

public ChainableRuntimeException(Throwable cause) {
super(cause);
}
}

// End ChainableRuntimeException.java
32 changes: 19 additions & 13 deletions webapp/WEB-INF/web-jpivot.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,12 @@ You must accept the terms of that agreement to use this software.
</context-param>
-->

<!-- optional
<context-param>
<param-name>connectString</param-name>
<param-value>@mondrian.test.connectString@</param-value>
<param-name>chartServlet</param-name>
<param-value>/path/to/chartServlet</param-value>
</context-param>
-->

<filter>
<filter-name>JPivotController</filter-name>
Expand All @@ -45,6 +47,12 @@ You must accept the terms of that agreement to use this software.
<listener-class>mondrian.web.taglib.Listener</listener-class>
</listener>

<!-- jfreechart provided servlet -->
<servlet>
<servlet-name>DisplayChart</servlet-name>
<servlet-class>org.jfree.chart.servlet.DisplayChart</servlet-class>
</servlet>

<servlet>
<servlet-name>MDXQueryServlet</servlet-name>
<servlet-class>mondrian.web.servlet.MDXQueryServlet</servlet-class>
Expand All @@ -59,6 +67,12 @@ You must accept the terms of that agreement to use this software.
<servlet-class>mondrian.xmla.XmlaServlet</servlet-class>
</servlet>

<!-- jfreechart provided servlet -->
<servlet-mapping>
<servlet-name>DisplayChart</servlet-name>
<url-pattern>/DisplayChart</url-pattern>
</servlet-mapping>

<servlet-mapping>
<servlet-name>MDXQueryServlet</servlet-name>
<url-pattern>/mdxquery</url-pattern>
Expand All @@ -75,20 +89,12 @@ You must accept the terms of that agreement to use this software.

<taglib>
<taglib-uri>http://www.tonbeller.com/wcf</taglib-uri>
<taglib-location>/WEB-INF/wcf/wcf.tld</taglib-location>
<taglib-location>/WEB-INF/wcf/wcf-tags.tld</taglib-location>
</taglib>

<taglib>
<taglib-uri>http://www.tonbeller.com/jpivot/core</taglib-uri>
<taglib-location>/WEB-INF/jpivot/jpivot.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://www.tonbeller.com/jpivot/mondrian</taglib-uri>
<taglib-location>/WEB-INF/jpivot/mondrian.tld</taglib-location>
</taglib>
<taglib>
<taglib-uri>http://www.tonbeller.com/jpivot/test</taglib-uri>
<taglib-location>/WEB-INF/jpivot/testtags.tld</taglib-location>
<taglib-uri>http://www.tonbeller.com/jpivot</taglib-uri>
<taglib-location>/WEB-INF/jpivot/jpivot-tags.tld</taglib-location>
</taglib>

</web-app>

0 comments on commit be5966c

Please sign in to comment.