diff options
author | Daniel Stefan Haischt <dsh@pfsense.org> | 2007-10-14 06:13:04 +0000 |
---|---|---|
committer | Daniel Stefan Haischt <dsh@pfsense.org> | 2007-10-14 06:13:04 +0000 |
commit | ab3a9d33349c2f18a3e3727b26a682058d7735a7 (patch) | |
tree | a3228be17b5e5dd384000c7db1271c54a6365e46 /packages/dyntables/pkg/dyntables.xml | |
parent | 11bff113accc69c9c9cb8efee642c1378b936e29 (diff) | |
download | pfsense-packages-ab3a9d33349c2f18a3e3727b26a682058d7735a7.tar.gz pfsense-packages-ab3a9d33349c2f18a3e3727b26a682058d7735a7.tar.bz2 pfsense-packages-ab3a9d33349c2f18a3e3727b26a682058d7735a7.zip |
* added initial dynamic table prototype
Diffstat (limited to 'packages/dyntables/pkg/dyntables.xml')
-rw-r--r-- | packages/dyntables/pkg/dyntables.xml | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/packages/dyntables/pkg/dyntables.xml b/packages/dyntables/pkg/dyntables.xml new file mode 100644 index 00000000..529e587e --- /dev/null +++ b/packages/dyntables/pkg/dyntables.xml @@ -0,0 +1,139 @@ +<?xml version="1.0" encoding="utf-8" ?> +<!DOCTYPE packagegui SYSTEM "../../schema/packages.dtd"> +<?xml-stylesheet type="text/xsl" href="../../xsl/package.xsl"?> +<packagegui> + <copyright> + <![CDATA[ +/* $Id$ */ +/* ========================================================================== */ +/* + dyntables.xml + part of pfSense (http://www.pfSense.com) + Copyright (C) 2007 Daniel S. Haischt <me@daniel.stefan.haischt.name> + All rights reserved. + + Based on m0n0wall (http://m0n0.ch/wall) + Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>. + All rights reserved. + */ +/* ========================================================================== */ +/* + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. + */ +/* ========================================================================== */ + ]]> + </copyright> + <description> + This package adds dynamic reloading support of table data to + various pfSense web pages. Reloading table data is done using + Ajax. + </description> + <requirements> + This package is supposed to be run on RELENG based pfSense systems. + </requirements> + <faq>Currently there are no FAQ items provided.</faq> + <name>dyntables</name> + <version>1.0</version> + <title>System: Dynamic Tables</title> + <include_file>/usr/local/pkg/dyntables.inc</include_file> + <!-- Menu is where this packages menu will appear --> + <!-- + <menu> + <name>Menu Name</name> + <section>Menu Section</section> + <url>/phpfile.php</url> + </menu> + --> + <!-- + <service> + <name>yourservice</name> + <rcfile>/usr/local/etc/rc.d/yourservice.sh</rcfile> + </service> + --> + <tabs /> + <!-- + configpath gets expanded out automatically and config items + will be stored in that location + --> + <configpath>['installedpackages']['dyntables']['config']</configpath> + <!-- + | + | PHP files (user management) + | + --> + <additional_files_needed> + <prefix>/usr/local/www/</prefix> + <chmod>0755</chmod> + <item>http://www.pfsense.com/packages/config/dyntables/www/php/diag_dhcp_leases.php</item> + </additional_files_needed> + <!-- + | + | JavaScript files (*.js and *.inc.) + | + --> + <additional_files_needed> + <prefix>/usr/local/www/javascript</prefix> + <chmod>0755</chmod> + <item>http://www.pfsense.com/packages/config/dyntables/www/js/dyntables.js</item> + </additional_files_needed> + <!-- + | + | Include files (class defs etc.) + | + --> + <additional_files_needed> + <prefix>/usr/local/pkg/</prefix> + <chmod>0755</chmod> + <item>http://www.pfsense.com/packages/config/dyntables/pkg/dyntables.inc</item> + </additional_files_needed> + <additional_files_needed> + <prefix>/usr/local/pkg/</prefix> + <chmod>0755</chmod> + <item>http://www.pfsense.com/packages/config/dyntables/pkg/dyntables_classdefs.inc</item> + </additional_files_needed> + <!-- + | + | Binary files + | + --> + <additional_files_needed> + <prefix>/usr/local/lib/php/extensions/no-debug-non-zts-20020429/</prefix> + <chmod>0755</chmod> + <item>http://www.pfsense.com/packages/config/dyntables/bin/json.so</item> + </additional_files_needed> + <!-- + fields gets invoked when the user adds or edits a item. The following items + will be parsed and rendered for the user as a gui with input, and selectboxes. + --> + <!-- + Arbitrary PHP Code, that gets executed if a certain event gets triggered. + --> + <custom_php_resync_config_command> + syncPackageDyntables(); + </custom_php_resync_config_command> + <custom_php_install_command> + installPackageDyntables(); + </custom_php_install_command> + <custom_php_deinstall_command> + deinstallPackageDyntables(); + </custom_php_deinstall_command> +</packagegui> |