Skip to content

Commit bd0f0af

Browse files
author
Marc Benstein
committed
TIBCO JasperReports® Community Edition 7.1.0
0 parents  commit bd0f0af

File tree

6,685 files changed

+994705
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,685 files changed

+994705
-0
lines changed
366 KB
Binary file not shown.

LICENSE

Lines changed: 57957 additions & 0 deletions
Large diffs are not rendered by default.

README

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
TIBCO JasperReports® Server Community Edition
2+
=============================================
3+
4+
TIBCO JasperReports® Server builds on TIBCO JasperReports® Library as a comprehensive family of Business Intelligence (BI) products, providing robust static and interactive reporting, report server, and data analysis capabilities. These capabilities are available as either stand-alone products, or as part of an integrated end-to-end BI suite utilizing common metadata and provide shared services, such as security, a repository, and scheduling. The server exposes comprehensive public interfaces enabling seamless integration with other applications and the capability to easily add custom functionality.

build-config.xml

Lines changed: 362 additions & 0 deletions
Large diffs are not rendered by default.

buildomatic/bin/app-server.xml

Lines changed: 1049 additions & 0 deletions
Large diffs are not rendered by default.

buildomatic/bin/code-coverage.xml

Lines changed: 814 additions & 0 deletions
Large diffs are not rendered by default.

buildomatic/bin/cpappend.bat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
set EXP_CLASSPATH=%EXP_CLASSPATH%;%1

buildomatic/bin/date.bat

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
@ECHO OFF
2+
3+
:: Windows NT 4 or later only
4+
IF NOT "%OS%"=="Windows_NT" GOTO Syntax
5+
:: No command line arguments required
6+
IF NOT [%1]==[] GOTO Syntax
7+
8+
:: Keep variables local
9+
SETLOCAL
10+
11+
:: Store current date in a variable in default Locale format
12+
FOR /F "TOKENS=1* DELIMS= " %%A IN ('DATE/T') DO SET DATE=%%B
13+
14+
:: Store current date in a variable in YYYYMMDD format
15+
:: Export registry settings to a temporary file
16+
START /W REGEDIT /E %TEMP%.\_TEMP.REG "HKEY_CURRENT_USER\Control Panel\International"
17+
:: Read the exported data
18+
FOR /F "tokens=1* delims==" %%A IN ('TYPE %TEMP%.\_TEMP.REG ^| FIND /I "iDate"') DO SET iDate=%%B
19+
FOR /F "tokens=1* delims==" %%A IN ('TYPE %TEMP%.\_TEMP.REG ^| FIND /I "sDate"') DO SET sDate=%%B
20+
DEL %TEMP%.\_TEMP.REG
21+
:: Remove quotes
22+
SET iDate=%iDate:"=%
23+
SET sDate=%sDate:"=%
24+
25+
:: Parse today's date depending on registry's date format settings
26+
IF %iDate%==0 FOR /F "TOKENS=1-4* DELIMS=%sDate%" %%A IN ('DATE/T') DO (
27+
SET Year=%%C
28+
SET Month=%%A
29+
SET Day=%%B
30+
)
31+
IF %iDate%==1 FOR /F "TOKENS=1-4* DELIMS=%sDate%" %%A IN ('DATE/T') DO (
32+
SET Year=%%C
33+
SET Month=%%B
34+
SET Day=%%A
35+
)
36+
IF %iDate%==2 FOR /F "TOKENS=1-4* DELIMS=%sDate%" %%A IN ('DATE/T') DO (
37+
SET Year=%%A
38+
SET Month=%%B
39+
SET Day=%%C
40+
)
41+
:: Remove the day of week if applicable
42+
FOR %%A IN (%Year%) DO SET Year=%%A
43+
FOR %%A IN (%Month%) DO SET Month=%%A
44+
FOR %%A IN (%Day%) DO SET Day=%%A
45+
46+
:: Today's date in yyyy-MM-dd format
47+
SET SortDate=%Year%-%Month%-%Day%
48+
49+
:: Done
50+
ENDLOCAL & SET NOW_YYYY_MM_DD=%SortDate%
51+
GOTO:EOF
52+
53+
:Syntax
54+
ECHO.
55+
ECHO Date utility for Windows NT 4 / 2000 / XP
56+
ECHO Saves current date in yyyy-MM-dd format
57+
ECHO to NOW_YYYY_MM_DD environment variable.
58+
ECHO.
59+
ECHO Prepared by Vladimir Tsukur on the basis of
60+
ECHO SortDate batch script.
61+
ECHO.
62+
ECHO See below for original disclaimer notes:
63+
ECHO.
64+
ECHO -----------------------------------------------------------
65+
ECHO SortDate, Version 3.10 for Windows NT 4 / 2000 / XP
66+
ECHO Save date and "sorted" date in environment variables.
67+
ECHO.
68+
ECHO Usage: %0
69+
ECHO.
70+
ECHO This batch file will always display the same results,
71+
ECHO independent of "International" settings.
72+
ECHO.
73+
ECHO Written by Rob van der Woude
74+
ECHO http://www.robvanderwoude.com
75+
ECHO Adapted for Windows XP with help from Kailash Chanduka

0 commit comments

Comments
 (0)