debian/0000755000000000000000000000000011660551263007173 5ustar debian/libjodreports-java.examples0000644000000000000000000000002511660551262014530 0ustar jodreports-webapp.gz debian/jodreports0000755000000000000000000000171211660551262011314 0ustar #!/bin/sh # # jodreports-cli - wrapper to use libjodreports-java from command line # # Copyright (C) 2011 by Sascha Girrulat # # Sun, 30 Jan 2011 20:22:36 +0100 # # License: # # This program is free software; you can redistribute it and/or modify it under # the terms of the GNU General Public License as published by the Free Software # Foundation; either version 3 of the License, or (at your option) any later # version. # # This program is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. See the GNU General Public License for more details. # # You should have received a copy of the GNU General Public License along with # this program; if not, see . # export JAVA_HOME=/usr/lib/jvm/default-java JAVA="/usr/bin/java" OPT="-jar" $JAVA $OPT /usr/share/jodreports-cli/jodreports-cli.jar "$@" debian/copyright0000644000000000000000000000374311660551262011134 0ustar Format: http://dep.debian.net/deps/dep5 Upstream-Name: jodreports Source: http://sourceforge.net/projects/jodreports/ Files: * Copyright: 2003-2011 Mirko Nasato 2003-2011 Terry Liang License: LGPL-2.0+ Files: debian/* Copyright: 2011 Sascha Girrulat License: GPL-3.0+ License: LGPL-2.0+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU Lesser General Public License can be found in "/usr/share/common-licenses/LGPL-2". License: GPL-3.0+ This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. . This package is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU General Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". debian/jodreports-cli.manpages0000644000000000000000000000002411660551262013643 0ustar debian/jodreports.1 debian/libjodreports-java.docs0000644000000000000000000000002611660551262013643 0ustar jodreports/README.txt debian/jodreports.10000644000000000000000000001157411660551262011457 0ustar .\" Hey, EMACS: -*- nroff -*- .\" First parameter, NAME, should be all caps .\" Second parameter, SECTION, should be 1-8, maybe w/ subsection .\" other parameters are allowed: see man(7), man(1) .TH JODREPORTS 1 "January 30, 2011" "User Manuals" .\" Please adjust this date whenever revising the manpage. .\" .\" Some roff macros, for reference: .\" .nh disable hyphenation .\" .hy enable hyphenation .\" .ad l left justify .\" .ad b justify to both left and right margins .\" .nf disable filling .\" .fi enable filling .\" .br insert line break .\" .sp insert n+1 empty lines .\" for manpage-specific macros, see man(7) .SH NAME jodreports \- use libjodreports-java directly from the command line to merge OpenDocument text with data .SH SYNOPSIS .B jodreports .br .SH DESCRIPTION .PP .\" TeX users may be more comfortable with the \fB\fP and .\" \fI\fP escape sequences to invode bold face and italics, .\" respectively. \fBjodreports\fP is a java program that merge OpenDocument text with data by using libjodreports-java. The command line tool is especially useful to test templates while you are adding instructions to them. You use a .properties or .xml file to contain the \fI\fP to be merged into the template. The \fI\fP needs to be an existing OpenDocument text with simple fields. A field that will be replaced with the value of a variable passed can be specified using the standard FreeMarker expression notation by typing the variable name into the document as follows Hi ${name}! here \fIname\fP will be replaced with the value passed in at runtime. However, mixing processing instructions and normal text into the document may become confusing and clutter the layout. So JOOReports provides an alternative way of inserting fields. You can insert a visual field in OpenOffice.org Writer from the menu Insert / Fields / Other... (or just press Ctrl+F2), then click on the Functions tab and select Input field. Change the field Reference to JOOScript and in the following field Content enter the variable name (e.g. "$name"). This field will typically be displayed by Writer as a grayed rectangle with the variable name, while moving the mouse over it will reveal the field reference. This is a nice way of keeping processing instructions separate from the document layout and is thus the recommended approach. Whatever you specify as the field Reference will be treated as a FreeMarker ${...} expression, so it could also be something more complex than a simple variable name. To insert more advanced instructions, e.g. for conditionally displaying a portion of text, or repeating a table row for each item in a collection, you can use FreeMarker directives. A simple directive is \fIassign\fP. You can use it to define a new variable, for example [#assign totalPrice = unitPrice * quantity] Note that we always use the alternative (square bracket) syntax for FreeMarker directives. While it may be possible to insert this directive directly as text into the template, this does not always work (for reasons we'll see below) and as mentioned mixing instructions into the document is a practice we want to avoid anyway. For this reason, JOOReports lets you insert FreeMarker directives as scripts. You can insert a script in Writer from the menu Insert / Script..., then change the Script type to JOOScript and insert any FreeMarker directives in the script Text box. A script will be displayed by Writer as a small green rectangle, and you can double click on it to open it and modify it. So you directive will be executed at the point where the script has been inserted. This is ok for something like \fIassign\fP but as we'll see will not work for something like \fIlist\fP. Alternatively, you can insert a FreeMarker directive in OpenOffice.org Writer from the menu Insert / Fields / Other... (or just press Ctrl+F2), then click on the Functions tab and select Input field. Change the field Reference to JOOScript and in the following field Content enter the directive (e.g. "[#assign title='Mr.']"). Sample Open Document Template Again this provides a nice way to insert processing instructions and keept them separate from the document layout. The \fI\fP is also an OpenDocument text and will be created as the result of the merge. JOOReports uses FreeMarker as its template engine. .SH FILES .I /usr/share/java/jodreports.jar .br .SH AUTHOR jodreports was written by Mirko Nasato and Terry Liang . .br jodreports was packaged for the Debian project by Sascha Girrulat . .PP This manual page was written by Sascha Girrulat , for the Debian project (and may be used by others). Most of the used information are reused from http://jodreports.sourceforge.net. debian/rules0000755000000000000000000000145311660551262010255 0ustar #!/usr/bin/make -f JAVACLASSES=/usr/share/java JAVA_HOME=/usr/lib/jvm/default-java export CLASSPATH=$(JAVACLASSES)/jaxen.jar:$(JAVACLASSES)/junit.jar:$(JAVACLASSES)/commons-logging.jar:$(JAVACLASSES)/xom.jar:$(JAVACLASSES)/commons-io.jar:$(JAVACLASSES)/freemarker.jar:$(JAVACLASSES)/slf4j-api.jar:$(JAVACLASSES)/slf4j-simple.jar:./jodreports-2.4.0.jar:$(JAVACLASSES)/jodreports-2.4.0.jar create-example: # requires gzip and create the jodreports-wepapp as an example for libjodreports-java set -e; gzip -r -c jodreports-webapp/ > jodreports-webapp.gz; %: dh $@ --with javahelper override_dh_link: dh_link -i override_jh_build: create-example jh_build jodreports-2.4.0.jar jodreports/src/main/java jh_build -mnet.sf.jodreports.cli.CreateDocument jodreports-cli-2.4.0.jar jodreports-cli/src/main/java debian/changelog0000644000000000000000000003106011660551262011044 0ustar jodreports (2.4.0-3) unstable; urgency=low * [3aabe4f] change depenency of libspring-core-2.5-java to libspring-core-java (Closes: #639412) * [b550ccf] add DM-Upload-Allowed: yes * [41c2c58] uncomment git source * [380c132] document changes and release 2.4.0-3 -- Sascha Girrulat Tue, 15 Nov 2011 21:58:01 +0100 jodreports (2.4.0-2) unstable; urgency=low * [848cf91] update control to new standards version 3.9.2 * [fb1c3ed] update copyright file to new standards version * [b0b6ddc] remove the dependency of libjodreports-java to default-jre -- Sascha Girrulat Fri, 29 Jul 2011 17:19:45 +0200 jodreports (2.4.0-1) unstable; urgency=low [ mnasato ] * [b2d496b] moved latest 'jooreports' in cvs to 'jodreports' in svn git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@1 d507b1d9-9123-0410-be71-93f138d682fd * [8b0f73e] moved latest 'jooreports' in cvs to 'jodreports' in svn git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@2 d507b1d9-9123-0410-be71-93f138d682fd * [b2cbea7] moved latest 'jooreports-webapp' in cvs to 'jodreports- webapp' in svn git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@3 d507b1d9-9123-0410-be71-93f138d682fd * [75f3737] moved latest 'jooreports-webapp' in cvs to 'jodreports- webapp' in svn git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@4 d507b1d9-9123-0410-be71-93f138d682fd [ terryliang ] * [637324f] Fixed problem with XML escaping in JOOScript. Backwards compatibility for old-style JOOScript. Implement JOOScript in 'TextInput' tag. Enhance dynamic image filter with image size control and file URI support. git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@5 d507b1d9-9123-0410-be71-93f138d682fd * [19fdecd] Updated dependency JODConverter to version 2.2.2 git-svn- id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@6 d507b1d9-9123-0410-be71-93f138d682fd * [fe4afe1] Change Project Name from 'JOOReports' to 'JODReports'. Change template FreeMarker NameSpace NAME for dynamic image from 'template' to 'jooscript'. Enhance dynamic image filter with image size control (MaxWidth, MaxHeight and Fit). git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@7 d507b1d9-9123-0410-be71-93f138d682fd * [26442fe] Change Project Name from 'JOOReports' to 'JODReports'. git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@8 d507b1d9-9123-0410-be71-93f138d682fd * [62d246a] Avoid inserting duplicated images. git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@9 d507b1d9-9123-0410-be71-93f138d682fd * [777baaf] Backwards compatibility for old-style JOOScript from version 2.0.1 git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@10 d507b1d9-9123-0410-be71-93f138d682fd * [697a31e] Updated dependency JFreeChart to version 1.0.12 git-svn- id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@11 d507b1d9-9123-0410-be71-93f138d682fd * [63a261a] mirror variable name changes git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@12 d507b1d9-9123-0410-be71-93f138d682fd * [99bfacc] mirror variable name changes git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@13 d507b1d9-9123-0410-be71-93f138d682fd * [c992488] prepare for release 2.1rc update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@14 d507b1d9-9123-0410-be71-93f138d682fd * [f5d33fe] fixed problem with dynamic images while using element as fileName git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@17 d507b1d9-9123-0410-be71-93f138d682fd * [5f9b1e7] prepare for release 2.1 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@18 d507b1d9-9123-0410-be71-93f138d682fd * [dde16f0] prepare for release 2.1 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@19 d507b1d9-9123-0410-be71-93f138d682fd * [41c2f9b] prepare for release 2.1 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@20 d507b1d9-9123-0410-be71-93f138d682fd * [67349bc] fixed problem with script output in JOOScript git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@22 d507b1d9-9123-0410-be71-93f138d682fd * [ea3a9be] support custom Open Document Settings git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@23 d507b1d9-9123-0410-be71-93f138d682fd * [a647bbc] prepare for release 2.2 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@24 d507b1d9-9123-0410-be71-93f138d682fd * [e26444d] fixed problem with script output in JOOScript git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@26 d507b1d9-9123-0410-be71-93f138d682fd * [6911e19] support custom FreeMarker configuration with Template. git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@27 d507b1d9-9123-0410-be71-93f138d682fd * [5338a6c] Revert changes from Revision 27 remove custom FreeMarker configuration with Template. git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@28 d507b1d9-9123-0410-be71-93f138d682fd * [8b16046] fixed resize problem with dynamic images while using element as fileName git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@29 d507b1d9-9123-0410-be71-93f138d682fd * [25c3e2a] fixed resize problem with dynamic images while using element as fileName git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@30 d507b1d9-9123-0410-be71-93f138d682fd * [86ea97b] prepare for release 2.2.1 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@31 d507b1d9-9123-0410-be71-93f138d682fd * [2485738] upgrade xom to version 1.2.4 prepare for release 2.2.1 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@32 d507b1d9-9123-0410-be71-93f138d682fd * [2545038] update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@33 d507b1d9-9123-0410-be71-93f138d682fd * [1b520f1] fix default locale bug in unit test. git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@35 d507b1d9-9123-0410-be71-93f138d682fd * [c4e7ead] fix compress method bug in mimetype entry of output ODF files git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@36 d507b1d9-9123-0410-be71-93f138d682fd * [99c1f54] update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@37 d507b1d9-9123-0410-be71-93f138d682fd * [a2b0792] fix compress method bug in mimetype entry of output ODF files git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@38 d507b1d9-9123-0410-be71-93f138d682fd * [32c3cdb] fix unit test to validate mimetype entry for output ODF files git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@39 d507b1d9-9123-0410-be71-93f138d682fd * [276358e] optimize the code for solving XML escaping and script output in JOOScript. support change tag attribute in JOOScript. Syntax: @#location attributeName=value git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@43 d507b1d9-9123-0410-be71-93f138d682fd * [dcfc3a0] Implement configuration feature. Introduce two configurable setting: process_jooscript_only check_image_exist (both setting default to Boolean.TRUE) git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@44 d507b1d9-9123-0410-be71-93f138d682fd * [2abe80b] support script replacement in preceding elements when node is not exist in ancestor elements git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@45 d507b1d9-9123-0410-be71-93f138d682fd * [90bf074] prepare for release 2.3.0 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@46 d507b1d9-9123-0410-be71-93f138d682fd * [21bdd7b] prepare for release 2.3.0 update freemarker and xom. git- svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@48 d507b1d9-9123-0410-be71-93f138d682fd * [2ee71f4] prepare for release 2.3.0 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@50 d507b1d9-9123-0410-be71-93f138d682fd * [ba5480b] update pom file git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@51 d507b1d9-9123-0410-be71-93f138d682fd * [f14843f] update template according to the changes in version 2.3.0 git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@52 d507b1d9-9123-0410-be71-93f138d682fd * [5e847ad] Support more attribute NamespaceURI in tag attribute replacement. (Available Namespaces: draw, script, table, text, style, xlink) git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@53 d507b1d9-9123-0410-be71-93f138d682fd * [8577462] Replaced commons-logging with slf4j. Split CLI into separate module git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@54 d507b1d9-9123-0410-be71-93f138d682fd * [fd65154] Split CLI into separate module git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@55 d507b1d9-9123-0410-be71-93f138d682fd * [ef80ebc] Split CLI into separate module git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@56 d507b1d9-9123-0410-be71-93f138d682fd * [3d55374] Release 2.4.0RC git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/tags/2.4.0 @57 d507b1d9-9123-0410-be71-93f138d682fd * [51478d6] [maven-release-plugin] prepare release 2.4.0 git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@58 d507b1d9-9123-0410-be71-93f138d682fd * [9225f7f] [maven-release-plugin] prepare release 2.4.0/jodreports git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@60 d507b1d9-9123-0410-be71-93f138d682fd * [7f317d6] Prepare for release 2.4.0 git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@61 d507b1d9-9123-0410-be71-93f138d682fd * [1b209fc] [maven-release-plugin] prepare release 2.4.0/jodreports git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@62 d507b1d9-9123-0410-be71-93f138d682fd * [c4a6c75] Prepare for release 2.4.0 git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@64 d507b1d9-9123-0410-be71-93f138d682fd * [e8570d7] Prepare for release 2.4.0. Fix document git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@65 d507b1d9-9123-0410-be71-93f138d682fd * [161de7d] prepare for release 2.4.0 update documentation git-svn-id: https://jodreports.svn.sourceforge.net/svnroot/jodreports/trunk@66 d507b1d9-9123-0410-be71-93f138d682fd [ Sascha Girrulat ] * [b9dd48d] update libjodreports to 2.4.0 * [8259bd3] add libjodreports command line tool * [32f10b5] fix lintian binary-control-field-duplicates-sources * [6579e6f] add new mapage for jodreports-cli * [783fb21] remove depends to java6-jre and java6-runtime because it could not be satisfied * [cedad94] add jodreports-webapp.gz as webapp-example * [e1804c7] add missed dependency to libjaxen-java -- Sascha Girrulat Tue, 15 Feb 2011 16:52:52 +0100 jodreports (2.2.1-3) unstable; urgency=low * [7559186] fix closes format in initial release. Thanks to chris * [54a9d42] update debian vcs path * [a0bcc51] update to policy standard 3.9.1 * [8fc2fcf] now we use javahelper * [08c7f14] remove build-depends to java6-jre because it can't be satisfied -- Sascha Girrulat Sat, 29 Jan 2011 10:45:18 +0100 jodreports (2.2.1-2) unstable; urgency=low * [9911052] add JAVA_HOME -- Sascha Girrulat Fri, 29 Oct 2010 17:40:28 +0200 jodreports (2.2.1-1) unstable; urgency=low * Initial release 2.2.1 ( Closes: #599787 ) -- Sascha Girrulat Mon, 11 Oct 2010 14:46:45 +0200 debian/jodreports-cli.links0000644000000000000000000000013611660551262013174 0ustar usr/share/jodreports-cli/jodreports-cli-2.4.0.jar usr/share/jodreports-cli/jodreports-cli.jar debian/jodreports-cli.install0000644000000000000000000000011511660551262013517 0ustar jodreports-cli-2.4.0.jar usr/share/jodreports-cli debian/jodreports usr/bin/ debian/javabuild0000644000000000000000000000014411660551262011055 0ustar jodreports-2.4.0.jar jodreports/src/main/java jodreports-cli-2.4.0.jar jodreports-cli/src/main/java debian/libjodreports-java-doc.javadoc0000644000000000000000000000005711660551262015071 0ustar internal /usr/share/doc/libjodreports-java/api debian/jodreports-cli.docs0000644000000000000000000000003211660551262012777 0ustar jodreports-cli/README.txt debian/control0000644000000000000000000000414311660551262010577 0ustar Source: jodreports Section: java Priority: extra Maintainer: Sascha Girrulat DM-Upload-Allowed: yes Build-Depends: debhelper (>= 7.0.50~), junit, libcommons-logging-java, libfreemarker-java, default-jdk, libcommons-io-java, libxom-java, javahelper (>=0.25), libslf4j-java Standards-Version: 3.9.2 Homepage: http://www.artofsolving.com/opensource/jodreports Vcs-Git: git://git.debian.org/~sagiru-guest/public_git/pkg-jodreports.git Vcs-Browser: http://git.debian.org/?p=users/sagiru-guest/pkg-jodreports.git Package: libjodreports-java Architecture: all Depends: ${misc:Depends}, ure, libjaxen-java, libcommons-logging-java, junit, libcommons-logging-java, libfreemarker-java, libcommons-io-java, libxom-java Recommends: libxstream-java Suggests: libspring-core-java, libjfreechart-java, libpdfbox-java Description: Merge OpenDocument text with data - Library JODReports, Java OpenDocument Reports, is a solution for creating office documents and reports in OpenDocument Text format from templates that can be visually composed using the OpenOffice.org Writer word processor. . This package provides a java library to run JODReports. Package: libjodreports-java-doc Section: doc Depends: ${misc:Depends} Architecture: all Description: Merge OpenDocument text with data - Library documentation JODReports, Java OpenDocument Reports, is a solution for creating office documents and reports in OpenDocument Text format from templates that can be visually composed using the OpenOffice.org Writer word processor. . This package provides the documentation for the java library. Package: jodreports-cli Architecture: all Depends: ${misc:Depends}, ure, default-jre, libjodreports-java Recommends: libslf4j-java Description: Merge OpenDocument text with data - command line tool JODReports, Java OpenDocument Reports, is a solution for creating office documents and reports in OpenDocument Text format from templates that can be visually composed using the OpenOffice.org Writer word processor. . This package provides a command line tool to execute the jar file directly debian/README.Debian0000644000000000000000000000031711660551262011234 0ustar libjodreports for Debian --------------------- See http://www.artofsolving.com/opensource/jodreports for the latest documentation. -- Sascha Girrulat Thu, 10 Jun 2010 20:56:42 +0200 debian/libjodreports-java.jlibs0000644000000000000000000000002511660551262014015 0ustar jodreports-2.4.0.jar debian/source/0000755000000000000000000000000011660551262010472 5ustar debian/source/format0000644000000000000000000000001411660551262011700 0ustar 3.0 (quilt) debian/compat0000644000000000000000000000000211660551262010370 0ustar 7 debian/libjodreports-java.links0000644000000000000000000000010211660551262014026 0ustar usr/share/java/jodreports-2.4.0.jar usr/share/java/jodreports.jar