diff options
author | doktornotor <notordoktor@gmail.com> | 2015-08-08 16:33:08 +0200 |
---|---|---|
committer | doktornotor <notordoktor@gmail.com> | 2015-08-08 16:33:08 +0200 |
commit | 31806ea4ef87516dd4978c62359323da64f60189 (patch) | |
tree | f9db63493a2b27530fdf7a033808b923d0942ab7 | |
parent | 268764e87ab8d2371542d8676f3bec3a4d436ce4 (diff) | |
download | pfsense-packages-31806ea4ef87516dd4978c62359323da64f60189.tar.gz pfsense-packages-31806ea4ef87516dd4978c62359323da64f60189.tar.bz2 pfsense-packages-31806ea4ef87516dd4978c62359323da64f60189.zip |
backup package - cleanup round two
backup.xml
- Removed self-referencing additional_files_needed
- Fix copyright header
- Remove pointless/unused tags
- Remove WTF <fields> copy/paste code coming from god knows where
- Removed no-op duplicated <tab> and fix the url in the other one
- Fix files permissions
-rw-r--r-- | config/backup/backup.xml | 55 |
1 files changed, 14 insertions, 41 deletions
diff --git a/config/backup/backup.xml b/config/backup/backup.xml index f9cf36b9..18fbb0ed 100644 --- a/config/backup/backup.xml +++ b/config/backup/backup.xml @@ -1,21 +1,24 @@ <?xml version="1.0" encoding="utf-8" ?> -<!DOCTYPE packagegui SYSTEM "./schema/packages.dtd"> -<?xml-stylesheet type="text/xsl" href="./xsl/package.xsl"?> +<!DOCTYPE packagegui SYSTEM "../schema/packages.dtd"> +<?xml-stylesheet type="text/xsl" href="../xsl/package.xsl"?> <packagegui> <copyright> - <![CDATA[ + <![CDATA[ /* $Id$ */ -/* ========================================================================== */ +/* ====================================================================================== */ /* backup.xml + part of pfSense (https://www.pfSense.org/) Copyright (C) 2008 Mark J Crane + Copyright (C) 2015 ESF, LLC 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. @@ -23,6 +26,7 @@ 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 @@ -34,14 +38,12 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* ========================================================================== */ - ]]> +/* ====================================================================================== */ + ]]> </copyright> <description>Backup</description> - <requirements>Describe your package requirements here</requirements> - <faq>Currently there are no FAQ items provided.</faq> <name>Backup Settings</name> - <version>0.1.8</version> + <version>0.1.9</version> <title>Settings</title> <include_file>/usr/local/pkg/backup.inc</include_file> <menu> @@ -53,53 +55,24 @@ </menu> <tabs> <tab> - <text>Settings</text> - <url>/pkg_edit.php?xml=backup.xml&id=0</url> - <active/> - </tab> - <tab> - <text>Settings</text> - <url>/packages/backup.php</url> + <text>Backup</text> + <url>/packages/backup/backup.php</url> <active/> </tab> </tabs> <configpath>installedpackages->package->$packagename->configuration->backup</configpath> <additional_files_needed> <prefix>/usr/local/pkg/</prefix> - <chmod>0755</chmod> - <item>https://packages.pfsense.org/packages/config/backup/backup.xml</item> - </additional_files_needed> - <additional_files_needed> - <prefix>/usr/local/pkg/</prefix> - <chmod>0755</chmod> <item>https://packages.pfsense.org/packages/config/backup/backup.inc</item> </additional_files_needed> <additional_files_needed> <prefix>/usr/local/www/packages/backup/</prefix> - <chmod>0755</chmod> <item>https://packages.pfsense.org/packages/config/backup/backup.php</item> </additional_files_needed> <additional_files_needed> <prefix>/usr/local/www/packages/backup/</prefix> - <chmod>0755</chmod> <item>https://packages.pfsense.org/packages/config/backup/backup_edit.php</item> </additional_files_needed> - <fields> - <field> - <fielddescr>Example Variable One</fielddescr> - <fieldname>var1</fieldname> - <description>Enter the variable one here.</description> - <type>input</type> - </field> - <field> - <fielddescr>Example Variable Two</fielddescr> - <fieldname>var1</fieldname> - <description>Enter the variable one here.</description> - <type>input</type> - </field> - </fields> - <custom_add_php_command> - </custom_add_php_command> <custom_php_resync_config_command> backup_sync_package(); </custom_php_resync_config_command> |