Skip to content
This repository has been archived by the owner on May 9, 2020. It is now read-only.

Commit

Permalink
1. fix framework for using jsp tag in freemarker.
Browse files Browse the repository at this point in the history
2. change order building birt component to after common component in framework/build.xml file
3. specific birt container before beanshell container in framework/base/config/ofbiz-containers.xml file
4. specific loading birt component after bi component in framework/component-load.xml
5. list all birt's jar files that have Eclipse Public License - v 1.0 in LICENSE file
6. change example report's path in mail form's tooltip.
7. delete four duplicated jar files.
  - framework/birt/lib/axis.jar
  - framework/birt/lib/commons-discovery-0.2.jar
  - framework/birt/lib/axis-ant.jar
  - framework/birt/lib/commons-cli-1.0.jar

git-svn-id: https://svn.apache.org/repos/asf/ofbiz/branches/addbirt@833294 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
hansbak committed Nov 6, 2009
1 parent 4906096 commit e4b19cc
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 7 deletions.
Binary file removed framework/birt/lib/axis-ant.jar
Binary file not shown.
Binary file removed framework/birt/lib/axis.jar
Binary file not shown.
Binary file removed framework/birt/lib/commons-cli-1.0.jar
Binary file not shown.
Binary file removed framework/birt/lib/commons-discovery-0.2.jar
Binary file not shown.
Expand Up @@ -42,7 +42,6 @@ public BirtViewerAttributeBean(HttpServletRequest arg0) {
* @param request
* @throws Exception
*/
@Override
protected void __init( HttpServletRequest request ) throws Exception
{
// If GetImage operate, return directly.
Expand Down
Expand Up @@ -15,7 +15,6 @@ public OFBizBirtContext(HttpServletRequest request,
// TODO Auto-generated constructor stub
}

@Override
protected void __init() {
// TODO Auto-generated method stub
this.bean = (ViewerAttributeBean) request
Expand Down
Expand Up @@ -45,7 +45,6 @@ public OFBizBirtViewerReportService(ServletContext servletContext) {
// TODO Auto-generated constructor stub
}

@Override
public String runReport(IViewerReportDesignHandle design,
String outputDocName, InputOptions runOptions, Map parameters,
Map displayTexts, List<Exception> errorList) throws ReportServiceException {
Expand Down
Expand Up @@ -23,7 +23,6 @@ public class BirtViewerServlet extends BirtSoapMessageDispatcherServlet {

public final static String module = BirtViewerServlet.class.getName();

@Override
protected void __init(ServletConfig config) {
// TODO Auto-generated method stub
BirtReportServiceFactory.init( new OFBizBirtViewerReportService( config
Expand Down
2 changes: 1 addition & 1 deletion framework/birt/widget/BirtForms.xml
Expand Up @@ -25,7 +25,7 @@ under the License.
<field name="sendFrom"><text/></field>
<field name="sendTo"><text/></field>
<field name="subject"><text/></field>
<field name="birtReportLocation" tooltip="Example is component://webtools/webapp/birt/report/product.rptdesign"><text/></field>
<field name="birtReportLocation" tooltip="Example is component://birt/webapp/birt/report/product.rptdesign"><text/></field>
<field name="birtContentType">
<drop-down>
<option key="text/html" description="text/html"/>
Expand Down
4 changes: 2 additions & 2 deletions framework/build.xml
Expand Up @@ -29,9 +29,9 @@ under the License.
webslinger/build.xml,
bi/build.xml,datafile/build.xml,minilang/build.xml,
webapp/build.xml,guiapp/build.xml,widget/build.xml,
common/build.xml,
common/build.xml,birt/build.xml,
testtools/build.xml,
appserver/build.xml,webtools/build.xml,example/build.xml,birt/build.xml"/>
appserver/build.xml,webtools/build.xml,example/build.xml"/>

<filelist id="test-builds" dir="." files="base/build.xml,entity/build.xml"/>

Expand Down

0 comments on commit e4b19cc

Please sign in to comment.