diff options
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | graphics/php-jpgraph/DESCR | 14 | ||||
-rw-r--r-- | graphics/php-jpgraph/MESSAGE | 16 | ||||
-rw-r--r-- | graphics/php-jpgraph/Makefile | 78 | ||||
-rw-r--r-- | graphics/php-jpgraph/PLIST | 920 | ||||
-rw-r--r-- | graphics/php-jpgraph/distinfo | 6 |
6 files changed, 956 insertions, 81 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 0580f0a71d1..02f3d691d57 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.8090 2004/11/27 22:01:45 jdolecek Exp $ +$NetBSD: CHANGES,v 1.8091 2004/11/27 22:34:19 jdolecek Exp $ Changes to the packages collection and infrastructure in 2004: @@ -5552,3 +5552,4 @@ Changes to the packages collection and infrastructure in 2004: Removed slsk [hubertf 2004-11-27] Updated psi to 0.9.2 [jdolecek 2004-11-27] Removed psi-ssl [jdolecek 2004-11-27] + Updated php-jpgraph to 2.16 [jdolecek 2004-11-27] diff --git a/graphics/php-jpgraph/DESCR b/graphics/php-jpgraph/DESCR index 2d030a83fcd..581ac349adb 100644 --- a/graphics/php-jpgraph/DESCR +++ b/graphics/php-jpgraph/DESCR @@ -1,8 +1,8 @@ -JpGraph is an OO class library for PHP (ver >=4.04) JpGraph makes it easy to -draw both "quick and dirty" graphs with a minimum of code and complex -professional looking graphs which requires a very fine grain of control. The -library assigns context sensitive default values for most parameters which -helps minimize the learning curve. +JpGraph is an OO class library for PHP 4.3.x and later. JpGraph +makes it easy to draw both "quick and dirty" graphs with a minimum +of code and complex professional looking graphs which require a +very fine grain of control. The library assigns context sensitive +default values for most parameters which helps minimize the learning +curve. -The only requirement is that the PHP installation needs to have the GD -library setup correctly (most PHP installations do). +JpGraph uses only GD, no other PHP extensions are necessary. diff --git a/graphics/php-jpgraph/MESSAGE b/graphics/php-jpgraph/MESSAGE new file mode 100644 index 00000000000..e62374ed5df --- /dev/null +++ b/graphics/php-jpgraph/MESSAGE @@ -0,0 +1,16 @@ +=========================================================================== +$NetBSD: MESSAGE,v 1.1 2004/11/27 22:34:19 jdolecek Exp $ + +Do *not* edit "${PJDIR}/jpg-config.inc" to customize +this package because it is a link which will removed during upgrades. +The actual configuration file is "${PJCONFFILE}". + +To make php-jpgraph available for PHP scripts, make sure to +add following directory to php.ini 'include_path': + + ${PJDIR} + +Usage examples are available in ${EXDIR}. + +=========================================================================== + diff --git a/graphics/php-jpgraph/Makefile b/graphics/php-jpgraph/Makefile index 4daa3e8bd94..80fdb221cfc 100644 --- a/graphics/php-jpgraph/Makefile +++ b/graphics/php-jpgraph/Makefile @@ -1,57 +1,55 @@ -# $NetBSD: Makefile,v 1.3 2004/10/31 23:47:32 jdolecek Exp $ +# $NetBSD: Makefile,v 1.4 2004/11/27 22:34:19 jdolecek Exp $ -DISTNAME= jpgraph-1.13 +DISTNAME= jpgraph-1.16 PKGNAME= php-${DISTNAME} CATEGORIES= graphics www MASTER_SITES= http://www.aditus.nu/jpgraph/downloads/ -MAINTAINER= adrianp@stindustries.net +MAINTAINER= jdolecek@NetBSD.org HOMEPAGE= http://www.aditus.nu/jpgraph/index.php COMMENT= Object Oriented class library for PHP DEPENDS+= php-gd>=4.3.0:../../graphics/php-gd +NO_CONFIGURE= YES NO_BUILD= YES NO_BUILDLINK= YES +EXDIR= ${PREFIX}/share/examples/php-jpgraph +PJDIR= ${PREFIX}/share/php-jpgraph +PJCONFFILE= ${PKG_SYSCONFDIR}/jpg-config.inc +CONF_FILES= ${EXDIR}/jpg-config.inc ${PKG_SYSCONFDIR}/jpg-config.inc + +USE_PKGINSTALL= YES +PKG_SYSCONFSUBDIR?= php-jpgraph + +MESSAGE_SUBST+= PJCONFFILE=${PJCONFFILE} PJDIR=${PJDIR} EXDIR=${EXDIR} + do-install: - ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/php-jpgraph + ${INSTALL_DATA_DIR} ${EXDIR} ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/php-jpgraph - ${INSTALL_DATA_DIR} ${PREFIX}/share/php-jpgraph - ${INSTALL_DATA_DIR} ${PREFIX}/share/php-jpgraph/utils - ${INSTALL_DATA_DIR} ${PREFIX}/share/php-jpgraph/utils/misc - ${INSTALL_DATA_DIR} ${PREFIX}/share/php-jpgraph/utils/jpdocgen - - ${INSTALL_SCRIPT} ${WRKSRC}/src/Examples/*.php \ - ${PREFIX}/share/examples/php-jpgraph - ${INSTALL_DATA} ${WRKSRC}/src/Examples/*.png \ - ${PREFIX}/share/examples/php-jpgraph - ${INSTALL_DATA} ${WRKSRC}/src/Examples/*.gif \ - ${PREFIX}/share/examples/php-jpgraph - ${INSTALL_DATA} ${WRKSRC}/src/Examples/*.jpg \ - ${PREFIX}/share/examples/php-jpgraph - - ${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/php-jpgraph - ${INSTALL_DATA} ${WRKSRC}/src/Changelog ${PREFIX}/share/doc/php-jpgraph - - ${INSTALL_SCRIPT} ${WRKSRC}/src/*.php ${PREFIX}/share/php-jpgraph - ${INSTALL_DATA} ${WRKSRC}/src/*.inc ${PREFIX}/share/php-jpgraph - - ${INSTALL_DATA} ${WRKSRC}/src/utils/Readme \ - ${PREFIX}/share/php-jpgraph/utils - ${INSTALL_SCRIPT} ${WRKSRC}/src/utils/misc/*.php \ - ${PREFIX}/share/php-jpgraph/utils/misc - ${INSTALL_DATA} ${WRKSRC}/src/utils/misc/*.inc \ - ${PREFIX}/share/php-jpgraph/utils/misc - - ${INSTALL_DATA} ${WRKSRC}/src/utils/jpdocgen/README \ - ${PREFIX}/share/php-jpgraph/utils/jpdocgen - ${INSTALL_SCRIPT} ${WRKSRC}/src/utils/jpdocgen/*.php \ - ${PREFIX}/share/php-jpgraph/utils/jpdocgen - ${INSTALL_DATA} ${WRKSRC}/src/utils/jpdocgen/*.css \ - ${PREFIX}/share/php-jpgraph/utils/jpdocgen - - ${INSTALL_DATA} ${WRKSRC}/QPL.txt ${PREFIX}/share/doc/php-jpgraph - cd ${WRKSRC}/docs && ${PAX} -rw . ${PREFIX}/share/doc/php-jpgraph + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/html/php-jpgraph + ${INSTALL_DATA_DIR} ${PJDIR} + + ${INSTALL_SCRIPT} ${WRKSRC}/src/Examples/*.php ${EXDIR} + ${INSTALL_DATA} ${WRKSRC}/src/Examples/*.png ${EXDIR} + ${INSTALL_DATA} ${WRKSRC}/src/Examples/*.gif ${EXDIR} + ${INSTALL_DATA} ${WRKSRC}/src/Examples/*.jpg ${EXDIR} + + ${RM} -f ${PJDIR}/jpg-config.inc + + ${INSTALL_SCRIPT} ${WRKSRC}/src/*.php ${PJDIR} + ${INSTALL_DATA} ${WRKSRC}/src/*.inc ${PJDIR} + ${INSTALL_DATA} ${WRKSRC}/src/*.dat ${PJDIR} + + ${MV} -f ${PJDIR}/jpg-config.inc ${EXDIR} + ${LN} -sf ${PJCONFFILE} ${PJDIR}/jpg-config.inc + + for f in README QPL.txt IMPORTANT_DO_README; do \ + ${INSTALL_DATA} ${WRKSRC}/$$f \ + ${PREFIX}/share/doc/php-jpgraph; \ + done + cd ${WRKSRC}/docs && ${PAX} -rw . ${PREFIX}/share/doc/html/php-jpgraph +.include "../../mk/bsd.pkg.install.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/php-jpgraph/PLIST b/graphics/php-jpgraph/PLIST index 7621f012cbd..513f9d197d0 100644 --- a/graphics/php-jpgraph/PLIST +++ b/graphics/php-jpgraph/PLIST @@ -1,5 +1,864 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2004/01/22 12:40:17 xtraeme Exp $ -share/doc/php-jpgraph/Changelog +@comment $NetBSD: PLIST,v 1.2 2004/11/27 22:34:19 jdolecek Exp $ +share/doc/html/php-jpgraph/JpGraph_Logo.png +share/doc/html/php-jpgraph/html/0aboutmanual.html +share/doc/html/php-jpgraph/html/1introduction.html +share/doc/html/php-jpgraph/html/2210intro.html +share/doc/html/php-jpgraph/html/2220fonts.html +share/doc/html/php-jpgraph/html/2230colors.html +share/doc/html/php-jpgraph/html/2240cache.html +share/doc/html/php-jpgraph/html/22working.html +share/doc/html/php-jpgraph/html/2installation.html +share/doc/html/php-jpgraph/html/3010intro.html +share/doc/html/php-jpgraph/html/3020lineplot.html +share/doc/html/php-jpgraph/html/3030barplot.html +share/doc/html/php-jpgraph/html/3040errorplot.html +share/doc/html/php-jpgraph/html/3050scatterplot.html +share/doc/html/php-jpgraph/html/3055stockplot.html +share/doc/html/php-jpgraph/html/3060combplots.html +share/doc/html/php-jpgraph/html/3070adjscalelabels.html +share/doc/html/php-jpgraph/html/3080graphaug.html +share/doc/html/php-jpgraph/html/3090axisform.html +share/doc/html/php-jpgraph/html/3095bands.html +share/doc/html/php-jpgraph/html/3xyplots.html +share/doc/html/php-jpgraph/html/4010radarplot.html +share/doc/html/php-jpgraph/html/4020pieplot.html +share/doc/html/php-jpgraph/html/4nonxy.html +share/doc/html/php-jpgraph/html/5gantt.html +share/doc/html/php-jpgraph/html/6csimdoc.html +share/doc/html/php-jpgraph/html/7adv.html +share/doc/html/php-jpgraph/html/8canvas.html +share/doc/html/php-jpgraph/html/A00utilities.html +share/doc/html/php-jpgraph/html/A01codedef.html +share/doc/html/php-jpgraph/html/exframes/alphabarex1.html +share/doc/html/php-jpgraph/html/exframes/backgroundex03.html +share/doc/html/php-jpgraph/html/exframes/balloonex1.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex1.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex2.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex3.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex4.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex5.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex6.html +share/doc/html/php-jpgraph/html/exframes/bargradsmallex7.html +share/doc/html/php-jpgraph/html/exframes/bartutex1.html +share/doc/html/php-jpgraph/html/exframes/bartutex2.html +share/doc/html/php-jpgraph/html/exframes/bartutex3.html +share/doc/html/php-jpgraph/html/exframes/bartutex4.html +share/doc/html/php-jpgraph/html/exframes/bartutex5.html +share/doc/html/php-jpgraph/html/exframes/bartutex6.html +share/doc/html/php-jpgraph/html/exframes/boxstockex1.html +share/doc/html/php-jpgraph/html/exframes/builtinplotmarksex1.html +share/doc/html/php-jpgraph/html/exframes/canvas_jpgarchex.html +share/doc/html/php-jpgraph/html/exframes/canvasex01.html +share/doc/html/php-jpgraph/html/exframes/canvasex02.html +share/doc/html/php-jpgraph/html/exframes/canvasex03.html +share/doc/html/php-jpgraph/html/exframes/canvasex04.html +share/doc/html/php-jpgraph/html/exframes/canvasex05.html +share/doc/html/php-jpgraph/html/exframes/canvasex06.html +share/doc/html/php-jpgraph/html/exframes/color_chart01.html +share/doc/html/php-jpgraph/html/exframes/color_chart02.html +share/doc/html/php-jpgraph/html/exframes/color_chart03.html +share/doc/html/php-jpgraph/html/exframes/color_chart04.html +share/doc/html/php-jpgraph/html/exframes/dateaxisex1.html +share/doc/html/php-jpgraph/html/exframes/dbschemaex1.html +share/doc/html/php-jpgraph/html/exframes/example0.html +share/doc/html/php-jpgraph/html/exframes/example11.html +share/doc/html/php-jpgraph/html/exframes/example13.html +share/doc/html/php-jpgraph/html/exframes/example14.html +share/doc/html/php-jpgraph/html/exframes/example15.html +share/doc/html/php-jpgraph/html/exframes/example16.1.html +share/doc/html/php-jpgraph/html/exframes/example16.2.html +share/doc/html/php-jpgraph/html/exframes/example16.3.html +share/doc/html/php-jpgraph/html/exframes/example16.4.html +share/doc/html/php-jpgraph/html/exframes/example16.6.html +share/doc/html/php-jpgraph/html/exframes/example16.html +share/doc/html/php-jpgraph/html/exframes/example17.html +share/doc/html/php-jpgraph/html/exframes/example18.html +share/doc/html/php-jpgraph/html/exframes/example19.1.html +share/doc/html/php-jpgraph/html/exframes/example19.html +share/doc/html/php-jpgraph/html/exframes/example2.html +share/doc/html/php-jpgraph/html/exframes/example20.1.html +share/doc/html/php-jpgraph/html/exframes/example20.2.html +share/doc/html/php-jpgraph/html/exframes/example20.3.html +share/doc/html/php-jpgraph/html/exframes/example20.4.html +share/doc/html/php-jpgraph/html/exframes/example20.5.html +share/doc/html/php-jpgraph/html/exframes/example20.html +share/doc/html/php-jpgraph/html/exframes/example21.html +share/doc/html/php-jpgraph/html/exframes/example22.html +share/doc/html/php-jpgraph/html/exframes/example23.html +share/doc/html/php-jpgraph/html/exframes/example24.html +share/doc/html/php-jpgraph/html/exframes/example25.1.html +share/doc/html/php-jpgraph/html/exframes/example25.2.html +share/doc/html/php-jpgraph/html/exframes/example25.html +share/doc/html/php-jpgraph/html/exframes/example26.1.html +share/doc/html/php-jpgraph/html/exframes/example26.html +share/doc/html/php-jpgraph/html/exframes/example27.1.html +share/doc/html/php-jpgraph/html/exframes/example27.2.html +share/doc/html/php-jpgraph/html/exframes/example27.3.html +share/doc/html/php-jpgraph/html/exframes/example27.html +share/doc/html/php-jpgraph/html/exframes/example28.1.html +share/doc/html/php-jpgraph/html/exframes/example28.2.html +share/doc/html/php-jpgraph/html/exframes/example28.3.html +share/doc/html/php-jpgraph/html/exframes/example28.html +share/doc/html/php-jpgraph/html/exframes/example3.1.html +share/doc/html/php-jpgraph/html/exframes/example3.2.1.html +share/doc/html/php-jpgraph/html/exframes/example3.2.2.html +share/doc/html/php-jpgraph/html/exframes/example3.2.html +share/doc/html/php-jpgraph/html/exframes/example3.3.html +share/doc/html/php-jpgraph/html/exframes/example3.4.html +share/doc/html/php-jpgraph/html/exframes/example3.html +share/doc/html/php-jpgraph/html/exframes/example4.html +share/doc/html/php-jpgraph/html/exframes/example5.1.html +share/doc/html/php-jpgraph/html/exframes/example5.html +share/doc/html/php-jpgraph/html/exframes/example6.1.html +share/doc/html/php-jpgraph/html/exframes/example6.2.html +share/doc/html/php-jpgraph/html/exframes/example6.html +share/doc/html/php-jpgraph/html/exframes/example7.html +share/doc/html/php-jpgraph/html/exframes/example8.html +share/doc/html/php-jpgraph/html/exframes/example9.1.html +share/doc/html/php-jpgraph/html/exframes/example9.2.html +share/doc/html/php-jpgraph/html/exframes/example9.html +share/doc/html/php-jpgraph/html/exframes/fieldscatterex1.html +share/doc/html/php-jpgraph/html/exframes/filledgridex1.html +share/doc/html/php-jpgraph/html/exframes/filledlineex01.1.html +share/doc/html/php-jpgraph/html/exframes/filledlineex01.html +share/doc/html/php-jpgraph/html/exframes/frame_alphabarex1.html +share/doc/html/php-jpgraph/html/exframes/frame_backgroundex03.html +share/doc/html/php-jpgraph/html/exframes/frame_balloonex1.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex1.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex2.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex3.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex4.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex5.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex6.html +share/doc/html/php-jpgraph/html/exframes/frame_bargradsmallex7.html +share/doc/html/php-jpgraph/html/exframes/frame_bartutex1.html +share/doc/html/php-jpgraph/html/exframes/frame_bartutex2.html +share/doc/html/php-jpgraph/html/exframes/frame_bartutex3.html +share/doc/html/php-jpgraph/html/exframes/frame_bartutex4.html +share/doc/html/php-jpgraph/html/exframes/frame_bartutex5.html +share/doc/html/php-jpgraph/html/exframes/frame_bartutex6.html +share/doc/html/php-jpgraph/html/exframes/frame_boxstockex1.html +share/doc/html/php-jpgraph/html/exframes/frame_builtinplotmarksex1.html +share/doc/html/php-jpgraph/html/exframes/frame_canvas_jpgarchex.html +share/doc/html/php-jpgraph/html/exframes/frame_canvasex01.html +share/doc/html/php-jpgraph/html/exframes/frame_canvasex02.html +share/doc/html/php-jpgraph/html/exframes/frame_canvasex03.html +share/doc/html/php-jpgraph/html/exframes/frame_canvasex04.html +share/doc/html/php-jpgraph/html/exframes/frame_canvasex05.html +share/doc/html/php-jpgraph/html/exframes/frame_canvasex06.html +share/doc/html/php-jpgraph/html/exframes/frame_color_chart01.html +share/doc/html/php-jpgraph/html/exframes/frame_color_chart02.html +share/doc/html/php-jpgraph/html/exframes/frame_color_chart03.html +share/doc/html/php-jpgraph/html/exframes/frame_color_chart04.html +share/doc/html/php-jpgraph/html/exframes/frame_dateaxisex1.html +share/doc/html/php-jpgraph/html/exframes/frame_dbschemaex1.html +share/doc/html/php-jpgraph/html/exframes/frame_example0.html +share/doc/html/php-jpgraph/html/exframes/frame_example11.html +share/doc/html/php-jpgraph/html/exframes/frame_example13.html +share/doc/html/php-jpgraph/html/exframes/frame_example14.html +share/doc/html/php-jpgraph/html/exframes/frame_example15.html +share/doc/html/php-jpgraph/html/exframes/frame_example16.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example16.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example16.3.html +share/doc/html/php-jpgraph/html/exframes/frame_example16.4.html +share/doc/html/php-jpgraph/html/exframes/frame_example16.6.html +share/doc/html/php-jpgraph/html/exframes/frame_example16.html +share/doc/html/php-jpgraph/html/exframes/frame_example17.html +share/doc/html/php-jpgraph/html/exframes/frame_example18.html +share/doc/html/php-jpgraph/html/exframes/frame_example19.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example19.html +share/doc/html/php-jpgraph/html/exframes/frame_example2.html +share/doc/html/php-jpgraph/html/exframes/frame_example20.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example20.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example20.3.html +share/doc/html/php-jpgraph/html/exframes/frame_example20.4.html +share/doc/html/php-jpgraph/html/exframes/frame_example20.5.html +share/doc/html/php-jpgraph/html/exframes/frame_example20.html +share/doc/html/php-jpgraph/html/exframes/frame_example21.html +share/doc/html/php-jpgraph/html/exframes/frame_example22.html +share/doc/html/php-jpgraph/html/exframes/frame_example23.html +share/doc/html/php-jpgraph/html/exframes/frame_example24.html +share/doc/html/php-jpgraph/html/exframes/frame_example25.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example25.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example25.html +share/doc/html/php-jpgraph/html/exframes/frame_example26.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example26.html +share/doc/html/php-jpgraph/html/exframes/frame_example27.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example27.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example27.3.html +share/doc/html/php-jpgraph/html/exframes/frame_example27.html +share/doc/html/php-jpgraph/html/exframes/frame_example28.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example28.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example28.3.html +share/doc/html/php-jpgraph/html/exframes/frame_example28.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.2.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.2.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.3.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.4.html +share/doc/html/php-jpgraph/html/exframes/frame_example3.html +share/doc/html/php-jpgraph/html/exframes/frame_example4.html +share/doc/html/php-jpgraph/html/exframes/frame_example5.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example5.html +share/doc/html/php-jpgraph/html/exframes/frame_example6.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example6.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example6.html +share/doc/html/php-jpgraph/html/exframes/frame_example7.html +share/doc/html/php-jpgraph/html/exframes/frame_example8.html +share/doc/html/php-jpgraph/html/exframes/frame_example9.1.html +share/doc/html/php-jpgraph/html/exframes/frame_example9.2.html +share/doc/html/php-jpgraph/html/exframes/frame_example9.html +share/doc/html/php-jpgraph/html/exframes/frame_fieldscatterex1.html +share/doc/html/php-jpgraph/html/exframes/frame_filledgridex1.html +share/doc/html/php-jpgraph/html/exframes/frame_filledlineex01.1.html +share/doc/html/php-jpgraph/html/exframes/frame_filledlineex01.html +share/doc/html/php-jpgraph/html/exframes/frame_funcex1.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttconstrainex0.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttconstrainex1.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex00.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex01.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex02.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex03.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex04.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex05.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex06.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex07.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex08.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex09.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex10.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex11.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex12.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex13.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex14.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex15.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex16.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex17.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex18.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttex19.html +share/doc/html/php-jpgraph/html/exframes/frame_gantthourex1.html +share/doc/html/php-jpgraph/html/exframes/frame_gantthourminex1.html +share/doc/html/php-jpgraph/html/exframes/frame_gantticonex1.html +share/doc/html/php-jpgraph/html/exframes/frame_ganttsimpleex1.html +share/doc/html/php-jpgraph/html/exframes/frame_gradbkgex1.html +share/doc/html/php-jpgraph/html/exframes/frame_horizbarex1.html +share/doc/html/php-jpgraph/html/exframes/frame_horizbarex2.html +share/doc/html/php-jpgraph/html/exframes/frame_horizbarex3.html +share/doc/html/php-jpgraph/html/exframes/frame_horizbarex4.html +share/doc/html/php-jpgraph/html/exframes/frame_imgmarkerex1.html +share/doc/html/php-jpgraph/html/exframes/frame_impulsex1.html +share/doc/html/php-jpgraph/html/exframes/frame_impulsex2.html +share/doc/html/php-jpgraph/html/exframes/frame_impulsex3.html +share/doc/html/php-jpgraph/html/exframes/frame_impulsex4.html +share/doc/html/php-jpgraph/html/exframes/frame_inyaxisex2.html +share/doc/html/php-jpgraph/html/exframes/frame_linebarcentex1.html +share/doc/html/php-jpgraph/html/exframes/frame_lineiconex1.html +share/doc/html/php-jpgraph/html/exframes/frame_lineiconex2.html +share/doc/html/php-jpgraph/html/exframes/frame_listfontsex1.html +share/doc/html/php-jpgraph/html/exframes/frame_logbarex1.html +share/doc/html/php-jpgraph/html/exframes/frame_loglogex1.html +share/doc/html/php-jpgraph/html/exframes/frame_manscaleex1.html +share/doc/html/php-jpgraph/html/exframes/frame_manscaleex2.html +share/doc/html/php-jpgraph/html/exframes/frame_manscaleex3.html +share/doc/html/php-jpgraph/html/exframes/frame_manscaleex4.html +share/doc/html/php-jpgraph/html/exframes/frame_markflagex1.html +share/doc/html/php-jpgraph/html/exframes/frame_nullvalueex01.html +share/doc/html/php-jpgraph/html/exframes/frame_partiallyfilledlineex1.html +share/doc/html/php-jpgraph/html/exframes/frame_penguin.html +share/doc/html/php-jpgraph/html/exframes/frame_piecex1.html +share/doc/html/php-jpgraph/html/exframes/frame_piecex2.html +share/doc/html/php-jpgraph/html/exframes/frame_pieex3.html +share/doc/html/php-jpgraph/html/exframes/frame_pieex8.html +share/doc/html/php-jpgraph/html/exframes/frame_pieex9.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex0-180.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex0.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex3-lin.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex3.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex4.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex5.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex7-2.html +share/doc/html/php-jpgraph/html/exframes/frame_polarex9.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex1.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex2.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex4.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex6.1.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex6.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex7.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex8.1.html +share/doc/html/php-jpgraph/html/exframes/frame_radarex8.html +share/doc/html/php-jpgraph/html/exframes/frame_rotex0.html +share/doc/html/php-jpgraph/html/exframes/frame_rotex1.html +share/doc/html/php-jpgraph/html/exframes/frame_rotex2.html +share/doc/html/php-jpgraph/html/exframes/frame_rotex3.html +share/doc/html/php-jpgraph/html/exframes/frame_rotex4.html +share/doc/html/php-jpgraph/html/exframes/frame_rotex5.html +share/doc/html/php-jpgraph/html/exframes/frame_scatterex1.html +share/doc/html/php-jpgraph/html/exframes/frame_scatterex2.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex1.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex10.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex2.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex3.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex4.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex5.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex6.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex7.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex8.html +share/doc/html/php-jpgraph/html/exframes/frame_smallstaticbandsex9.html +share/doc/html/php-jpgraph/html/exframes/frame_splineex1.html +share/doc/html/php-jpgraph/html/exframes/frame_staticbandbarex7.html +share/doc/html/php-jpgraph/html/exframes/frame_stockex1.html +share/doc/html/php-jpgraph/html/exframes/frame_tabtitleex1.html +share/doc/html/php-jpgraph/html/exframes/frame_textalignex1.html +share/doc/html/php-jpgraph/html/exframes/frame_topxaxisex1.html +share/doc/html/php-jpgraph/html/exframes/funcex1.html +share/doc/html/php-jpgraph/html/exframes/ganttconstrainex0.html +share/doc/html/php-jpgraph/html/exframes/ganttconstrainex1.html +share/doc/html/php-jpgraph/html/exframes/ganttex00.html +share/doc/html/php-jpgraph/html/exframes/ganttex01.html +share/doc/html/php-jpgraph/html/exframes/ganttex02.html +share/doc/html/php-jpgraph/html/exframes/ganttex03.html +share/doc/html/php-jpgraph/html/exframes/ganttex04.html +share/doc/html/php-jpgraph/html/exframes/ganttex05.html +share/doc/html/php-jpgraph/html/exframes/ganttex06.html +share/doc/html/php-jpgraph/html/exframes/ganttex07.html +share/doc/html/php-jpgraph/html/exframes/ganttex08.html +share/doc/html/php-jpgraph/html/exframes/ganttex09.html +share/doc/html/php-jpgraph/html/exframes/ganttex10.html +share/doc/html/php-jpgraph/html/exframes/ganttex11.html +share/doc/html/php-jpgraph/html/exframes/ganttex12.html +share/doc/html/php-jpgraph/html/exframes/ganttex13.html +share/doc/html/php-jpgraph/html/exframes/ganttex14.html +share/doc/html/php-jpgraph/html/exframes/ganttex15.html +share/doc/html/php-jpgraph/html/exframes/ganttex16.html +share/doc/html/php-jpgraph/html/exframes/ganttex17.html +share/doc/html/php-jpgraph/html/exframes/ganttex18.html +share/doc/html/php-jpgraph/html/exframes/ganttex19.html +share/doc/html/php-jpgraph/html/exframes/gantthourex1.html +share/doc/html/php-jpgraph/html/exframes/gantthourminex1.html +share/doc/html/php-jpgraph/html/exframes/gantticonex1.html +share/doc/html/php-jpgraph/html/exframes/ganttsimpleex1.html +share/doc/html/php-jpgraph/html/exframes/gradbkgex1.html +share/doc/html/php-jpgraph/html/exframes/horizbarex1.html +share/doc/html/php-jpgraph/html/exframes/horizbarex2.html +share/doc/html/php-jpgraph/html/exframes/horizbarex3.html +share/doc/html/php-jpgraph/html/exframes/horizbarex4.html +share/doc/html/php-jpgraph/html/exframes/image_alphabarex1.html +share/doc/html/php-jpgraph/html/exframes/image_backgroundex03.html +share/doc/html/php-jpgraph/html/exframes/image_balloonex1.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex1.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex2.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex3.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex4.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex5.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex6.html +share/doc/html/php-jpgraph/html/exframes/image_bargradsmallex7.html +share/doc/html/php-jpgraph/html/exframes/image_bartutex1.html +share/doc/html/php-jpgraph/html/exframes/image_bartutex2.html +share/doc/html/php-jpgraph/html/exframes/image_bartutex3.html +share/doc/html/php-jpgraph/html/exframes/image_bartutex4.html +share/doc/html/php-jpgraph/html/exframes/image_bartutex5.html +share/doc/html/php-jpgraph/html/exframes/image_bartutex6.html +share/doc/html/php-jpgraph/html/exframes/image_boxstockex1.html +share/doc/html/php-jpgraph/html/exframes/image_builtinplotmarksex1.html +share/doc/html/php-jpgraph/html/exframes/image_canvas_jpgarchex.html +share/doc/html/php-jpgraph/html/exframes/image_canvasex01.html +share/doc/html/php-jpgraph/html/exframes/image_canvasex02.html +share/doc/html/php-jpgraph/html/exframes/image_canvasex03.html +share/doc/html/php-jpgraph/html/exframes/image_canvasex04.html +share/doc/html/php-jpgraph/html/exframes/image_canvasex05.html +share/doc/html/php-jpgraph/html/exframes/image_canvasex06.html +share/doc/html/php-jpgraph/html/exframes/image_color_chart01.html +share/doc/html/php-jpgraph/html/exframes/image_color_chart02.html +share/doc/html/php-jpgraph/html/exframes/image_color_chart03.html +share/doc/html/php-jpgraph/html/exframes/image_color_chart04.html +share/doc/html/php-jpgraph/html/exframes/image_dateaxisex1.html +share/doc/html/php-jpgraph/html/exframes/image_dbschemaex1.html +share/doc/html/php-jpgraph/html/exframes/image_example0.html +share/doc/html/php-jpgraph/html/exframes/image_example11.html +share/doc/html/php-jpgraph/html/exframes/image_example13.html +share/doc/html/php-jpgraph/html/exframes/image_example14.html +share/doc/html/php-jpgraph/html/exframes/image_example15.html +share/doc/html/php-jpgraph/html/exframes/image_example16.1.html +share/doc/html/php-jpgraph/html/exframes/image_example16.2.html +share/doc/html/php-jpgraph/html/exframes/image_example16.3.html +share/doc/html/php-jpgraph/html/exframes/image_example16.4.html +share/doc/html/php-jpgraph/html/exframes/image_example16.6.html +share/doc/html/php-jpgraph/html/exframes/image_example16.html +share/doc/html/php-jpgraph/html/exframes/image_example17.html +share/doc/html/php-jpgraph/html/exframes/image_example18.html +share/doc/html/php-jpgraph/html/exframes/image_example19.1.html +share/doc/html/php-jpgraph/html/exframes/image_example19.html +share/doc/html/php-jpgraph/html/exframes/image_example2.html +share/doc/html/php-jpgraph/html/exframes/image_example20.1.html +share/doc/html/php-jpgraph/html/exframes/image_example20.2.html +share/doc/html/php-jpgraph/html/exframes/image_example20.3.html +share/doc/html/php-jpgraph/html/exframes/image_example20.4.html +share/doc/html/php-jpgraph/html/exframes/image_example20.5.html +share/doc/html/php-jpgraph/html/exframes/image_example20.html +share/doc/html/php-jpgraph/html/exframes/image_example21.html +share/doc/html/php-jpgraph/html/exframes/image_example22.html +share/doc/html/php-jpgraph/html/exframes/image_example23.html +share/doc/html/php-jpgraph/html/exframes/image_example24.html +share/doc/html/php-jpgraph/html/exframes/image_example25.1.html +share/doc/html/php-jpgraph/html/exframes/image_example25.2.html +share/doc/html/php-jpgraph/html/exframes/image_example25.html +share/doc/html/php-jpgraph/html/exframes/image_example26.1.html +share/doc/html/php-jpgraph/html/exframes/image_example26.html +share/doc/html/php-jpgraph/html/exframes/image_example27.1.html +share/doc/html/php-jpgraph/html/exframes/image_example27.2.html +share/doc/html/php-jpgraph/html/exframes/image_example27.3.html +share/doc/html/php-jpgraph/html/exframes/image_example27.html +share/doc/html/php-jpgraph/html/exframes/image_example28.1.html +share/doc/html/php-jpgraph/html/exframes/image_example28.2.html +share/doc/html/php-jpgraph/html/exframes/image_example28.3.html +share/doc/html/php-jpgraph/html/exframes/image_example28.html +share/doc/html/php-jpgraph/html/exframes/image_example3.1.html +share/doc/html/php-jpgraph/html/exframes/image_example3.2.1.html +share/doc/html/php-jpgraph/html/exframes/image_example3.2.2.html +share/doc/html/php-jpgraph/html/exframes/image_example3.2.html +share/doc/html/php-jpgraph/html/exframes/image_example3.3.html +share/doc/html/php-jpgraph/html/exframes/image_example3.4.html +share/doc/html/php-jpgraph/html/exframes/image_example3.html +share/doc/html/php-jpgraph/html/exframes/image_example4.html +share/doc/html/php-jpgraph/html/exframes/image_example5.1.html +share/doc/html/php-jpgraph/html/exframes/image_example5.html +share/doc/html/php-jpgraph/html/exframes/image_example6.1.html +share/doc/html/php-jpgraph/html/exframes/image_example6.2.html +share/doc/html/php-jpgraph/html/exframes/image_example6.html +share/doc/html/php-jpgraph/html/exframes/image_example7.html +share/doc/html/php-jpgraph/html/exframes/image_example8.html +share/doc/html/php-jpgraph/html/exframes/image_example9.1.html +share/doc/html/php-jpgraph/html/exframes/image_example9.2.html +share/doc/html/php-jpgraph/html/exframes/image_example9.html +share/doc/html/php-jpgraph/html/exframes/image_fieldscatterex1.html +share/doc/html/php-jpgraph/html/exframes/image_filledgridex1.html +share/doc/html/php-jpgraph/html/exframes/image_filledlineex01.1.html +share/doc/html/php-jpgraph/html/exframes/image_filledlineex01.html +share/doc/html/php-jpgraph/html/exframes/image_funcex1.html +share/doc/html/php-jpgraph/html/exframes/image_ganttconstrainex0.html +share/doc/html/php-jpgraph/html/exframes/image_ganttconstrainex1.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex00.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex01.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex02.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex03.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex04.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex05.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex06.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex07.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex08.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex09.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex10.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex11.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex12.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex13.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex14.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex15.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex16.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex17.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex18.html +share/doc/html/php-jpgraph/html/exframes/image_ganttex19.html +share/doc/html/php-jpgraph/html/exframes/image_gantthourex1.html +share/doc/html/php-jpgraph/html/exframes/image_gantthourminex1.html +share/doc/html/php-jpgraph/html/exframes/image_gantticonex1.html +share/doc/html/php-jpgraph/html/exframes/image_ganttsimpleex1.html +share/doc/html/php-jpgraph/html/exframes/image_gradbkgex1.html +share/doc/html/php-jpgraph/html/exframes/image_horizbarex1.html +share/doc/html/php-jpgraph/html/exframes/image_horizbarex2.html +share/doc/html/php-jpgraph/html/exframes/image_horizbarex3.html +share/doc/html/php-jpgraph/html/exframes/image_horizbarex4.html +share/doc/html/php-jpgraph/html/exframes/image_imgmarkerex1.html +share/doc/html/php-jpgraph/html/exframes/image_impulsex1.html +share/doc/html/php-jpgraph/html/exframes/image_impulsex2.html +share/doc/html/php-jpgraph/html/exframes/image_impulsex3.html +share/doc/html/php-jpgraph/html/exframes/image_impulsex4.html +share/doc/html/php-jpgraph/html/exframes/image_inyaxisex2.html +share/doc/html/php-jpgraph/html/exframes/image_linebarcentex1.html +share/doc/html/php-jpgraph/html/exframes/image_lineiconex1.html +share/doc/html/php-jpgraph/html/exframes/image_lineiconex2.html +share/doc/html/php-jpgraph/html/exframes/image_listfontsex1.html +share/doc/html/php-jpgraph/html/exframes/image_logbarex1.html +share/doc/html/php-jpgraph/html/exframes/image_loglogex1.html +share/doc/html/php-jpgraph/html/exframes/image_manscaleex1.html +share/doc/html/php-jpgraph/html/exframes/image_manscaleex2.html +share/doc/html/php-jpgraph/html/exframes/image_manscaleex3.html +share/doc/html/php-jpgraph/html/exframes/image_manscaleex4.html +share/doc/html/php-jpgraph/html/exframes/image_markflagex1.html +share/doc/html/php-jpgraph/html/exframes/image_nullvalueex01.html +share/doc/html/php-jpgraph/html/exframes/image_partiallyfilledlineex1.html +share/doc/html/php-jpgraph/html/exframes/image_penguin.html +share/doc/html/php-jpgraph/html/exframes/image_piecex1.html +share/doc/html/php-jpgraph/html/exframes/image_piecex2.html +share/doc/html/php-jpgraph/html/exframes/image_pieex3.html +share/doc/html/php-jpgraph/html/exframes/image_pieex8.html +share/doc/html/php-jpgraph/html/exframes/image_pieex9.html +share/doc/html/php-jpgraph/html/exframes/image_polarex0-180.html +share/doc/html/php-jpgraph/html/exframes/image_polarex0.html +share/doc/html/php-jpgraph/html/exframes/image_polarex3-lin.html +share/doc/html/php-jpgraph/html/exframes/image_polarex3.html +share/doc/html/php-jpgraph/html/exframes/image_polarex4.html +share/doc/html/php-jpgraph/html/exframes/image_polarex5.html +share/doc/html/php-jpgraph/html/exframes/image_polarex7-2.html +share/doc/html/php-jpgraph/html/exframes/image_polarex9.html +share/doc/html/php-jpgraph/html/exframes/image_radarex1.html +share/doc/html/php-jpgraph/html/exframes/image_radarex2.html +share/doc/html/php-jpgraph/html/exframes/image_radarex4.html +share/doc/html/php-jpgraph/html/exframes/image_radarex6.1.html +share/doc/html/php-jpgraph/html/exframes/image_radarex6.html +share/doc/html/php-jpgraph/html/exframes/image_radarex7.html +share/doc/html/php-jpgraph/html/exframes/image_radarex8.1.html +share/doc/html/php-jpgraph/html/exframes/image_radarex8.html +share/doc/html/php-jpgraph/html/exframes/image_rotex0.html +share/doc/html/php-jpgraph/html/exframes/image_rotex1.html +share/doc/html/php-jpgraph/html/exframes/image_rotex2.html +share/doc/html/php-jpgraph/html/exframes/image_rotex3.html +share/doc/html/php-jpgraph/html/exframes/image_rotex4.html +share/doc/html/php-jpgraph/html/exframes/image_rotex5.html +share/doc/html/php-jpgraph/html/exframes/image_scatterex1.html +share/doc/html/php-jpgraph/html/exframes/image_scatterex2.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex1.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex10.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex2.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex3.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex4.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex5.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex6.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex7.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex8.html +share/doc/html/php-jpgraph/html/exframes/image_smallstaticbandsex9.html +share/doc/html/php-jpgraph/html/exframes/image_splineex1.html +share/doc/html/php-jpgraph/html/exframes/image_staticbandbarex7.html +share/doc/html/php-jpgraph/html/exframes/image_stockex1.html +share/doc/html/php-jpgraph/html/exframes/image_tabtitleex1.html +share/doc/html/php-jpgraph/html/exframes/image_textalignex1.html +share/doc/html/php-jpgraph/html/exframes/image_topxaxisex1.html +share/doc/html/php-jpgraph/html/exframes/imgmarkerex1.html +share/doc/html/php-jpgraph/html/exframes/impulsex1.html +share/doc/html/php-jpgraph/html/exframes/impulsex2.html +share/doc/html/php-jpgraph/html/exframes/impulsex3.html +share/doc/html/php-jpgraph/html/exframes/impulsex4.html +share/doc/html/php-jpgraph/html/exframes/inyaxisex2.html +share/doc/html/php-jpgraph/html/exframes/linebarcentex1.html +share/doc/html/php-jpgraph/html/exframes/lineiconex1.html +share/doc/html/php-jpgraph/html/exframes/lineiconex2.html +share/doc/html/php-jpgraph/html/exframes/listfontsex1.html +share/doc/html/php-jpgraph/html/exframes/logbarex1.html +share/doc/html/php-jpgraph/html/exframes/loglogex1.html +share/doc/html/php-jpgraph/html/exframes/manscaleex1.html +share/doc/html/php-jpgraph/html/exframes/manscaleex2.html +share/doc/html/php-jpgraph/html/exframes/manscaleex3.html +share/doc/html/php-jpgraph/html/exframes/manscaleex4.html +share/doc/html/php-jpgraph/html/exframes/markflagex1.html +share/doc/html/php-jpgraph/html/exframes/nullvalueex01.html +share/doc/html/php-jpgraph/html/exframes/partiallyfilledlineex1.html +share/doc/html/php-jpgraph/html/exframes/penguin.html +share/doc/html/php-jpgraph/html/exframes/piecex1.html +share/doc/html/php-jpgraph/html/exframes/piecex2.html +share/doc/html/php-jpgraph/html/exframes/pieex3.html +share/doc/html/php-jpgraph/html/exframes/pieex8.html +share/doc/html/php-jpgraph/html/exframes/pieex9.html +share/doc/html/php-jpgraph/html/exframes/polarex0-180.html +share/doc/html/php-jpgraph/html/exframes/polarex0.html +share/doc/html/php-jpgraph/html/exframes/polarex3-lin.html +share/doc/html/php-jpgraph/html/exframes/polarex3.html +share/doc/html/php-jpgraph/html/exframes/polarex4.html +share/doc/html/php-jpgraph/html/exframes/polarex5.html +share/doc/html/php-jpgraph/html/exframes/polarex7-2.html +share/doc/html/php-jpgraph/html/exframes/polarex9.html +share/doc/html/php-jpgraph/html/exframes/radarex1.html +share/doc/html/php-jpgraph/html/exframes/radarex2.html +share/doc/html/php-jpgraph/html/exframes/radarex4.html +share/doc/html/php-jpgraph/html/exframes/radarex6.1.html +share/doc/html/php-jpgraph/html/exframes/radarex6.html +share/doc/html/php-jpgraph/html/exframes/radarex7.html +share/doc/html/php-jpgraph/html/exframes/radarex8.1.html +share/doc/html/php-jpgraph/html/exframes/radarex8.html +share/doc/html/php-jpgraph/html/exframes/rotex0.html +share/doc/html/php-jpgraph/html/exframes/rotex1.html +share/doc/html/php-jpgraph/html/exframes/rotex2.html +share/doc/html/php-jpgraph/html/exframes/rotex3.html +share/doc/html/php-jpgraph/html/exframes/rotex4.html +share/doc/html/php-jpgraph/html/exframes/rotex5.html +share/doc/html/php-jpgraph/html/exframes/scatterex1.html +share/doc/html/php-jpgraph/html/exframes/scatterex2.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex1.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex10.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex2.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex3.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex4.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex5.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex6.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex7.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex8.html +share/doc/html/php-jpgraph/html/exframes/smallstaticbandsex9.html +share/doc/html/php-jpgraph/html/exframes/splineex1.html +share/doc/html/php-jpgraph/html/exframes/staticbandbarex7.html +share/doc/html/php-jpgraph/html/exframes/stockex1.html +share/doc/html/php-jpgraph/html/exframes/tabtitleex1.html +share/doc/html/php-jpgraph/html/exframes/textalignex1.html +share/doc/html/php-jpgraph/html/exframes/topxaxisex1.html +share/doc/html/php-jpgraph/html/img/JpGraph_Logo.png +share/doc/html/php-jpgraph/html/img/backgroundex03.png +share/doc/html/php-jpgraph/html/img/balloonex1.png +share/doc/html/php-jpgraph/html/img/bargradsmallex1.png +share/doc/html/php-jpgraph/html/img/bargradsmallex2.png +share/doc/html/php-jpgraph/html/img/bargradsmallex3.png +share/doc/html/php-jpgraph/html/img/bargradsmallex4.png +share/doc/html/php-jpgraph/html/img/bargradsmallex5.png +share/doc/html/php-jpgraph/html/img/bargradsmallex6.png +share/doc/html/php-jpgraph/html/img/bargradsmallex7.png +share/doc/html/php-jpgraph/html/img/bartutex1.png +share/doc/html/php-jpgraph/html/img/bartutex2.png +share/doc/html/php-jpgraph/html/img/bartutex3.png +share/doc/html/php-jpgraph/html/img/bartutex4.png +share/doc/html/php-jpgraph/html/img/bartutex5.png +share/doc/html/php-jpgraph/html/img/bartutex6.png +share/doc/html/php-jpgraph/html/img/boxstockex1.png +share/doc/html/php-jpgraph/html/img/builtinplotmarksex1.png +share/doc/html/php-jpgraph/html/img/canvas_jpgarchex.png +share/doc/html/php-jpgraph/html/img/canvasex01.png +share/doc/html/php-jpgraph/html/img/canvasex02.png +share/doc/html/php-jpgraph/html/img/canvasex03.png +share/doc/html/php-jpgraph/html/img/canvasex04.png +share/doc/html/php-jpgraph/html/img/canvasex05.png +share/doc/html/php-jpgraph/html/img/canvasex06.png +share/doc/html/php-jpgraph/html/img/color_chart01.png +share/doc/html/php-jpgraph/html/img/color_chart02.png +share/doc/html/php-jpgraph/html/img/color_chart03.png +share/doc/html/php-jpgraph/html/img/color_chart04.png +share/doc/html/php-jpgraph/html/img/dateaxisex1.png +share/doc/html/php-jpgraph/html/img/dbschemaex1.png +share/doc/html/php-jpgraph/html/img/example0.png +share/doc/html/php-jpgraph/html/img/example11.png +share/doc/html/php-jpgraph/html/img/example13.png +share/doc/html/php-jpgraph/html/img/example14.png +share/doc/html/php-jpgraph/html/img/example15.png +share/doc/html/php-jpgraph/html/img/example16.1.png +share/doc/html/php-jpgraph/html/img/example16.2.png +share/doc/html/php-jpgraph/html/img/example16.3.png +share/doc/html/php-jpgraph/html/img/example16.4.png +share/doc/html/php-jpgraph/html/img/example16.6.png +share/doc/html/php-jpgraph/html/img/example16.png +share/doc/html/php-jpgraph/html/img/example17.png +share/doc/html/php-jpgraph/html/img/example19.1.png +share/doc/html/php-jpgraph/html/img/example2.png +share/doc/html/php-jpgraph/html/img/example20.1.png +share/doc/html/php-jpgraph/html/img/example20.2.png +share/doc/html/php-jpgraph/html/img/example20.3.png +share/doc/html/php-jpgraph/html/img/example20.4.png +share/doc/html/php-jpgraph/html/img/example20.5.png +share/doc/html/php-jpgraph/html/img/example20.png +share/doc/html/php-jpgraph/html/img/example21.png +share/doc/html/php-jpgraph/html/img/example22.png +share/doc/html/php-jpgraph/html/img/example23.png +share/doc/html/php-jpgraph/html/img/example24.png +share/doc/html/php-jpgraph/html/img/example25.1.png +share/doc/html/php-jpgraph/html/img/example25.2.png +share/doc/html/php-jpgraph/html/img/example25.png +share/doc/html/php-jpgraph/html/img/example26.1.png +share/doc/html/php-jpgraph/html/img/example26.png +share/doc/html/php-jpgraph/html/img/example27.1.png +share/doc/html/php-jpgraph/html/img/example27.2.png +share/doc/html/php-jpgraph/html/img/example27.3.png +share/doc/html/php-jpgraph/html/img/example27.png +share/doc/html/php-jpgraph/html/img/example28.1.png +share/doc/html/php-jpgraph/html/img/example28.2.png +share/doc/html/php-jpgraph/html/img/example28.3.png +share/doc/html/php-jpgraph/html/img/example28.png +share/doc/html/php-jpgraph/html/img/example3.1.png +share/doc/html/php-jpgraph/html/img/example3.2.1.png +share/doc/html/php-jpgraph/html/img/example3.2.2.png +share/doc/html/php-jpgraph/html/img/example3.2.png +share/doc/html/php-jpgraph/html/img/example3.3.png +share/doc/html/php-jpgraph/html/img/example3.4.png +share/doc/html/php-jpgraph/html/img/example3.png +share/doc/html/php-jpgraph/html/img/example4.png +share/doc/html/php-jpgraph/html/img/example5.png +share/doc/html/php-jpgraph/html/img/example6.1.png +share/doc/html/php-jpgraph/html/img/example6.2.png +share/doc/html/php-jpgraph/html/img/example6.png +share/doc/html/php-jpgraph/html/img/example7.png +share/doc/html/php-jpgraph/html/img/example8.png +share/doc/html/php-jpgraph/html/img/example9.1.png +share/doc/html/php-jpgraph/html/img/example9.2.png +share/doc/html/php-jpgraph/html/img/example9.png +share/doc/html/php-jpgraph/html/img/fieldscatterex1.png +share/doc/html/php-jpgraph/html/img/filledgridex1.png +share/doc/html/php-jpgraph/html/img/filledlineex01.1.png +share/doc/html/php-jpgraph/html/img/filledlineex01.png +share/doc/html/php-jpgraph/html/img/funcex1.png +share/doc/html/php-jpgraph/html/img/ganttconstrainex0.png +share/doc/html/php-jpgraph/html/img/ganttconstrainex1.png +share/doc/html/php-jpgraph/html/img/ganttex00.png +share/doc/html/php-jpgraph/html/img/ganttex01.png +share/doc/html/php-jpgraph/html/img/ganttex02.png +share/doc/html/php-jpgraph/html/img/ganttex03.png +share/doc/html/php-jpgraph/html/img/ganttex04.png +share/doc/html/php-jpgraph/html/img/ganttex05.png +share/doc/html/php-jpgraph/html/img/ganttex06.png +share/doc/html/php-jpgraph/html/img/ganttex07.png +share/doc/html/php-jpgraph/html/img/ganttex08.png +share/doc/html/php-jpgraph/html/img/ganttex09.png +share/doc/html/php-jpgraph/html/img/ganttex10.png +share/doc/html/php-jpgraph/html/img/ganttex11.png +share/doc/html/php-jpgraph/html/img/ganttex12.png +share/doc/html/php-jpgraph/html/img/ganttex13.png +share/doc/html/php-jpgraph/html/img/ganttex14.png +share/doc/html/php-jpgraph/html/img/ganttex15.png +share/doc/html/php-jpgraph/html/img/ganttex16.png +share/doc/html/php-jpgraph/html/img/ganttex17.png +share/doc/html/php-jpgraph/html/img/ganttex18.png +share/doc/html/php-jpgraph/html/img/ganttex19.png +share/doc/html/php-jpgraph/html/img/gantthourex1.png +share/doc/html/php-jpgraph/html/img/gantthourminex1.png +share/doc/html/php-jpgraph/html/img/gantticonex1.png +share/doc/html/php-jpgraph/html/img/ganttsimpleex1.png +share/doc/html/php-jpgraph/html/img/gradbkgex1.png +share/doc/html/php-jpgraph/html/img/horizbarex1.png +share/doc/html/php-jpgraph/html/img/horizbarex2.png +share/doc/html/php-jpgraph/html/img/horizbarex3.png +share/doc/html/php-jpgraph/html/img/horizbarex4.png +share/doc/html/php-jpgraph/html/img/imgadj_b00c00sat-1.jpg +share/doc/html/php-jpgraph/html/img/imgadj_b03c-03sat0.jpg +share/doc/html/php-jpgraph/html/img/imgadj_b04c-07sat-1.jpg +share/doc/html/php-jpgraph/html/img/imgadj_b04c-07sat0.jpg +share/doc/html/php-jpgraph/html/img/imgadj_b0c0sat1.jpg +share/doc/html/php-jpgraph/html/img/imgadj_orig.jpg +share/doc/html/php-jpgraph/html/img/imgmarkerex1.png +share/doc/html/php-jpgraph/html/img/impulsex1.png +share/doc/html/php-jpgraph/html/img/impulsex2.png +share/doc/html/php-jpgraph/html/img/impulsex3.png +share/doc/html/php-jpgraph/html/img/impulsex4.png +share/doc/html/php-jpgraph/html/img/inyaxisex2.png +share/doc/html/php-jpgraph/html/img/linebarcentex1.png +share/doc/html/php-jpgraph/html/img/lineiconex1.png +share/doc/html/php-jpgraph/html/img/lineiconex2.png +share/doc/html/php-jpgraph/html/img/listfontsex1.png +share/doc/html/php-jpgraph/html/img/logbarex1.png +share/doc/html/php-jpgraph/html/img/loglogex1.png +share/doc/html/php-jpgraph/html/img/manscaleex1.png +share/doc/html/php-jpgraph/html/img/manscaleex2.png +share/doc/html/php-jpgraph/html/img/manscaleex3.png +share/doc/html/php-jpgraph/html/img/manscaleex4.png +share/doc/html/php-jpgraph/html/img/markflagex1.png +share/doc/html/php-jpgraph/html/img/nullvalueex01.png +share/doc/html/php-jpgraph/html/img/partiallyfilledlineex1.png +share/doc/html/php-jpgraph/html/img/piecex1.png +share/doc/html/php-jpgraph/html/img/piecex2.png +share/doc/html/php-jpgraph/html/img/pieex3.png +share/doc/html/php-jpgraph/html/img/pieex8.png +share/doc/html/php-jpgraph/html/img/pieex9.png +share/doc/html/php-jpgraph/html/img/radarex1.png +share/doc/html/php-jpgraph/html/img/radarex2.png +share/doc/html/php-jpgraph/html/img/radarex4.png +share/doc/html/php-jpgraph/html/img/radarex6.1.png +share/doc/html/php-jpgraph/html/img/radarex6.png +share/doc/html/php-jpgraph/html/img/radarex7.png +share/doc/html/php-jpgraph/html/img/radarex8.1.png +share/doc/html/php-jpgraph/html/img/radarex8.png +share/doc/html/php-jpgraph/html/img/rotex0.png +share/doc/html/php-jpgraph/html/img/rotex1.png +share/doc/html/php-jpgraph/html/img/rotex2.png +share/doc/html/php-jpgraph/html/img/rotex3.png +share/doc/html/php-jpgraph/html/img/rotex4.png +share/doc/html/php-jpgraph/html/img/rotex5.png +share/doc/html/php-jpgraph/html/img/saab_95.jpg +share/doc/html/php-jpgraph/html/img/scatterex1.png +share/doc/html/php-jpgraph/html/img/scatterex2.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex1.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex10.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex2.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex3.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex4.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex5.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex6.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex7.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex8.png +share/doc/html/php-jpgraph/html/img/smallstaticbandsex9.png +share/doc/html/php-jpgraph/html/img/splineex1.png +share/doc/html/php-jpgraph/html/img/staticbandbarex7.png +share/doc/html/php-jpgraph/html/img/stockex1.png +share/doc/html/php-jpgraph/html/img/tabtitleex1.png +share/doc/html/php-jpgraph/html/img/textalignex1.png +share/doc/html/php-jpgraph/html/img/theme01.png +share/doc/html/php-jpgraph/html/img/theme02.png +share/doc/html/php-jpgraph/html/img/theme03.png +share/doc/html/php-jpgraph/html/img/theme04.png +share/doc/html/php-jpgraph/html/img/tiger1.jpg +share/doc/html/php-jpgraph/html/img/topxaxisex1.png +share/doc/html/php-jpgraph/html/index.html +share/doc/html/php-jpgraph/index.html +share/doc/html/php-jpgraph/manual.png +share/doc/html/php-jpgraph/ref/AccBarPlot.html +share/doc/html/php-jpgraph/ref/AccLinePlot.html +share/doc/html/php-jpgraph/ref/Axis.html +share/doc/html/php-jpgraph/ref/BarPlot.html +share/doc/html/php-jpgraph/ref/BoxPlot.html +share/doc/html/php-jpgraph/ref/CanvasGraph.html +share/doc/html/php-jpgraph/ref/CanvasRectangleText.html +share/doc/html/php-jpgraph/ref/CanvasScale.html +share/doc/html/php-jpgraph/ref/DateLocale.html +share/doc/html/php-jpgraph/ref/DisplayValue.html +share/doc/html/php-jpgraph/ref/ErrorLinePlot.html +share/doc/html/php-jpgraph/ref/ErrorPlot.html +share/doc/html/php-jpgraph/ref/FieldArrow.html +share/doc/html/php-jpgraph/ref/FieldPlot.html +share/doc/html/php-jpgraph/ref/Footer.html +share/doc/html/php-jpgraph/ref/FuncGenerator.html +share/doc/html/php-jpgraph/ref/GanttActivityInfo.html +share/doc/html/php-jpgraph/ref/GanttBar.html +share/doc/html/php-jpgraph/ref/GanttGraph.html +share/doc/html/php-jpgraph/ref/GanttPlotObject.html +share/doc/html/php-jpgraph/ref/GanttScale.html +share/doc/html/php-jpgraph/ref/GanttVLine.html +share/doc/html/php-jpgraph/ref/Graph.html +share/doc/html/php-jpgraph/ref/GraphTabTitle.html +share/doc/html/php-jpgraph/ref/Grid.html +share/doc/html/php-jpgraph/ref/GroupBarPlot.html +share/doc/html/php-jpgraph/ref/HeaderProperty.html +share/doc/html/php-jpgraph/ref/IconImage.html +share/doc/html/php-jpgraph/ref/IconPlot.html +share/doc/html/php-jpgraph/ref/Image.html +share/doc/html/php-jpgraph/ref/Legend.html +share/doc/html/php-jpgraph/ref/LineErrorPlot.html +share/doc/html/php-jpgraph/ref/LinePlot.html +share/doc/html/php-jpgraph/ref/LineProperty.html +share/doc/html/php-jpgraph/ref/LinearScale.html +share/doc/html/php-jpgraph/ref/LinearTicks.html +share/doc/html/php-jpgraph/ref/LogScale.html +share/doc/html/php-jpgraph/ref/LogTicks.html +share/doc/html/php-jpgraph/ref/MileStone.html +share/doc/html/php-jpgraph/ref/PieGraph.html +share/doc/html/php-jpgraph/ref/PiePlot.html +share/doc/html/php-jpgraph/ref/PiePlot3D.html +share/doc/html/php-jpgraph/ref/PiePlotC.html +share/doc/html/php-jpgraph/ref/Plot.html +share/doc/html/php-jpgraph/ref/PlotBand.html +share/doc/html/php-jpgraph/ref/PlotLine.html +share/doc/html/php-jpgraph/ref/PlotMark.html +share/doc/html/php-jpgraph/ref/PolarAxis.html +share/doc/html/php-jpgraph/ref/PolarGraph.html +share/doc/html/php-jpgraph/ref/PolarPlot.html +share/doc/html/php-jpgraph/ref/Progress.html +share/doc/html/php-jpgraph/ref/RadarAxis.html +share/doc/html/php-jpgraph/ref/RadarGraph.html +share/doc/html/php-jpgraph/ref/RadarGrid.html +share/doc/html/php-jpgraph/ref/RadarLinearTicks.html +share/doc/html/php-jpgraph/ref/RadarLogTicks.html +share/doc/html/php-jpgraph/ref/RadarPlot.html +share/doc/html/php-jpgraph/ref/RotImage.html +share/doc/html/php-jpgraph/ref/ScatterPlot.html +share/doc/html/php-jpgraph/ref/Shape.html +share/doc/html/php-jpgraph/ref/Spline.html +share/doc/html/php-jpgraph/ref/StockPlot.html +share/doc/html/php-jpgraph/ref/SuperScriptText.html +share/doc/html/php-jpgraph/ref/Text.html +share/doc/html/php-jpgraph/ref/TextProperty.html +share/doc/html/php-jpgraph/ref/Ticks.html +share/doc/html/php-jpgraph/ref/class_toc.html +share/doc/html/php-jpgraph/ref/index.html +share/doc/html/php-jpgraph/ref/projinfo.html +share/doc/html/php-jpgraph/reference.png +share/doc/php-jpgraph/IMPORTANT_DO_README share/doc/php-jpgraph/QPL.txt share/doc/php-jpgraph/README share/examples/php-jpgraph/accbarex1.php @@ -25,12 +884,14 @@ share/examples/php-jpgraph/bargradsmallex4.php share/examples/php-jpgraph/bargradsmallex5.php share/examples/php-jpgraph/bargradsmallex6.php share/examples/php-jpgraph/bargradsmallex7.php +share/examples/php-jpgraph/barimgex1.php share/examples/php-jpgraph/barintex1.php share/examples/php-jpgraph/barintex2.php share/examples/php-jpgraph/barline_csimex1.php share/examples/php-jpgraph/barlinealphaex1.php share/examples/php-jpgraph/barlinefreq_csimex1.php share/examples/php-jpgraph/barlinefreqex1.php +share/examples/php-jpgraph/barpatternex1.php share/examples/php-jpgraph/barscalecallbackex1.php share/examples/php-jpgraph/bartutex1.php share/examples/php-jpgraph/bartutex12.php @@ -39,10 +900,15 @@ share/examples/php-jpgraph/bartutex3.php share/examples/php-jpgraph/bartutex4.php share/examples/php-jpgraph/bartutex5.php share/examples/php-jpgraph/bartutex6.php +share/examples/php-jpgraph/bkgimgflagex1.php +share/examples/php-jpgraph/bkgimgflagex2.php +share/examples/php-jpgraph/bkgimgflagex3.php +share/examples/php-jpgraph/bkgimgflagex4.php share/examples/php-jpgraph/blueblack400x300grad.png share/examples/php-jpgraph/boxstockcsimex1.php share/examples/php-jpgraph/boxstockex1.php share/examples/php-jpgraph/boxstockex2.php +share/examples/php-jpgraph/builtinplotmarksex1.php share/examples/php-jpgraph/canvas_jpgarchex.php share/examples/php-jpgraph/canvasbezierex1.php share/examples/php-jpgraph/canvasex01.php @@ -165,6 +1031,7 @@ share/examples/php-jpgraph/ganttex18.php share/examples/php-jpgraph/ganttex19.php share/examples/php-jpgraph/ganttex30.php share/examples/php-jpgraph/ganttex_slice.php +share/examples/php-jpgraph/gantthgridex1.php share/examples/php-jpgraph/gantthourex1.php share/examples/php-jpgraph/gantthourminex1.php share/examples/php-jpgraph/gantticonex1.php @@ -192,12 +1059,15 @@ share/examples/php-jpgraph/impulsex4.php share/examples/php-jpgraph/inyaxisex1.php share/examples/php-jpgraph/inyaxisex2.php share/examples/php-jpgraph/inyaxisex3.php +share/examples/php-jpgraph/jpg-config.inc share/examples/php-jpgraph/lightbluedarkblue400x300grad.png share/examples/php-jpgraph/linebarcentex1.php share/examples/php-jpgraph/linebarex1.php share/examples/php-jpgraph/linebarex2.php share/examples/php-jpgraph/linebarex3.php share/examples/php-jpgraph/linegraceex.php +share/examples/php-jpgraph/lineiconex1.php +share/examples/php-jpgraph/lineiconex2.php share/examples/php-jpgraph/linlogex1.php share/examples/php-jpgraph/listallflags.php share/examples/php-jpgraph/listallflags_helper.php @@ -213,6 +1083,7 @@ share/examples/php-jpgraph/multconstganttex01.php share/examples/php-jpgraph/negbarvalueex01.php share/examples/php-jpgraph/nullvalueex01.php share/examples/php-jpgraph/partiallyfilledlineex1.php +share/examples/php-jpgraph/penguin.png share/examples/php-jpgraph/pie3d_csimex1.php share/examples/php-jpgraph/pie3dex1.php share/examples/php-jpgraph/pie3dex2.php @@ -249,6 +1120,7 @@ share/examples/php-jpgraph/polarex7.php share/examples/php-jpgraph/polarex8.php share/examples/php-jpgraph/polarex9.php share/examples/php-jpgraph/pushpinex1.php +share/examples/php-jpgraph/pushpinex2.php share/examples/php-jpgraph/radarex1.php share/examples/php-jpgraph/radarex2.php share/examples/php-jpgraph/radarex3.php @@ -259,8 +1131,10 @@ share/examples/php-jpgraph/radarex6.php share/examples/php-jpgraph/radarex7.php share/examples/php-jpgraph/radarex8.1.php share/examples/php-jpgraph/radarex8.php +share/examples/php-jpgraph/radarex9.php share/examples/php-jpgraph/radarlogex1.php share/examples/php-jpgraph/radarlogex2.php +share/examples/php-jpgraph/radarmarkex1.php share/examples/php-jpgraph/rotateex1.php share/examples/php-jpgraph/rotex0.php share/examples/php-jpgraph/rotex1.php @@ -312,12 +1186,17 @@ share/examples/php-jpgraph/tiger_bkg.jpg share/examples/php-jpgraph/tiger_bkg.png share/examples/php-jpgraph/topxaxisex1.php share/examples/php-jpgraph/worldmap1.jpg +share/php-jpgraph/flags.dat +share/php-jpgraph/flags_thumb100x100.dat +share/php-jpgraph/flags_thumb35x35.dat +share/php-jpgraph/flags_thumb60x60.dat share/php-jpgraph/imgdata_balls.inc share/php-jpgraph/imgdata_bevels.inc share/php-jpgraph/imgdata_diamonds.inc share/php-jpgraph/imgdata_pushpins.inc share/php-jpgraph/imgdata_squares.inc share/php-jpgraph/imgdata_stars.inc +share/php-jpgraph/jpg-config.inc share/php-jpgraph/jpgraph.php share/php-jpgraph/jpgraph_bar.php share/php-jpgraph/jpgraph_canvas.php @@ -327,42 +1206,23 @@ share/php-jpgraph/jpgraph_flags.php share/php-jpgraph/jpgraph_gantt.php share/php-jpgraph/jpgraph_gb2312.php share/php-jpgraph/jpgraph_gradient.php +share/php-jpgraph/jpgraph_iconplot.php +share/php-jpgraph/jpgraph_imgtrans.php share/php-jpgraph/jpgraph_line.php share/php-jpgraph/jpgraph_log.php share/php-jpgraph/jpgraph_pie.php share/php-jpgraph/jpgraph_pie3d.php +share/php-jpgraph/jpgraph_plotband.php share/php-jpgraph/jpgraph_plotmark.inc share/php-jpgraph/jpgraph_polar.php share/php-jpgraph/jpgraph_radar.php share/php-jpgraph/jpgraph_regstat.php share/php-jpgraph/jpgraph_scatter.php share/php-jpgraph/jpgraph_stock.php -share/php-jpgraph/utils/Readme -share/php-jpgraph/utils/jpdocgen/README -share/php-jpgraph/utils/jpdocgen/dbschema_ddda.php -share/php-jpgraph/utils/jpdocgen/ddda_chkdb.php -share/php-jpgraph/utils/jpdocgen/de_normal.css -share/php-jpgraph/utils/jpdocgen/de_utils.php -share/php-jpgraph/utils/jpdocgen/jpclassref.php -share/php-jpgraph/utils/jpdocgen/jpd_editclass.php -share/php-jpgraph/utils/jpdocgen/jpd_editmethod.php -share/php-jpgraph/utils/jpdocgen/jpd_editproject.php -share/php-jpgraph/utils/jpdocgen/jpdb.php -share/php-jpgraph/utils/jpdocgen/jpdbdelclass.php -share/php-jpgraph/utils/jpdocgen/jpdocedit.php -share/php-jpgraph/utils/jpdocgen/jpgendb.php -share/php-jpgraph/utils/jpdocgen/jpgendbdriver.php -share/php-jpgraph/utils/jpdocgen/jpgendoc.php -share/php-jpgraph/utils/jpdocgen/jpgenhtmldoc.php -share/php-jpgraph/utils/jpdocgen/jplintdriver.php -share/php-jpgraph/utils/jpdocgen/jplintphp.php -share/php-jpgraph/utils/misc/adjimg.php -share/php-jpgraph/utils/misc/chkgd.php -share/php-jpgraph/utils/misc/gencolorchart.php -share/php-jpgraph/utils/misc/imgdbschema.inc -share/php-jpgraph/utils/misc/mkgrad.php -@dirrm share/php-jpgraph/utils/misc -@dirrm share/php-jpgraph/utils/jpdocgen -@dirrm share/php-jpgraph/utils -@dirrm share/php-jpgraph +@dirrm share/doc/php-jpgraph +@dirrm share/doc/html/php-jpgraph/ref +@dirrm share/doc/html/php-jpgraph/html/img +@dirrm share/doc/html/php-jpgraph/html/exframes +@dirrm share/doc/html/php-jpgraph/html @dirrm share/examples/php-jpgraph +@dirrm share/php-jpgraph diff --git a/graphics/php-jpgraph/distinfo b/graphics/php-jpgraph/distinfo index c1454165765..1a7e5c64914 100644 --- a/graphics/php-jpgraph/distinfo +++ b/graphics/php-jpgraph/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.1.1.1 2004/01/22 12:40:14 xtraeme Exp $ +$NetBSD: distinfo,v 1.2 2004/11/27 22:34:20 jdolecek Exp $ -SHA1 (jpgraph-1.13.tar.gz) = 5086d9ce964c04fd1f87ad0eadd9c0ff60f05c72 -Size (jpgraph-1.13.tar.gz) = 4091723 bytes +SHA1 (jpgraph-1.16.tar.gz) = bd175521bdbb1f53f7b67f2096f8182f835b7f6c +Size (jpgraph-1.16.tar.gz) = 3862276 bytes |