Author: kevj Date: Sat Jun 2 23:16:13 2007 New Revision: 543846 URL: http://svn.apache.org/viewvc?view=rev&rev=543846 Log: -first pass at some docs
Added: ant/sandbox/antlibs/debian/trunk/docs/install.html ant/sandbox/antlibs/debian/trunk/docs/remove.html Modified: ant/sandbox/antlibs/debian/trunk/docs/index.html Modified: ant/sandbox/antlibs/debian/trunk/docs/index.html URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/debian/trunk/docs/index.html?view=diff&rev=543846&r1=543845&r2=543846 ============================================================================== --- ant/sandbox/antlibs/debian/trunk/docs/index.html (original) +++ ant/sandbox/antlibs/debian/trunk/docs/index.html Sat Jun 2 23:16:13 2007 @@ -114,13 +114,15 @@ <h2>Tasks and Types</h2> <ul> - <li><a href="control.html">control</a> - TODO.</li> + <li><a href="control.html">control</a> - Create a control file for use in building a package.</li> <li><a href="dpkg.html">dpkg</a> - TODO.</li> - <li><a href="install.html">install</a> - TODO.</li> + <li><a href="install.html">install</a> - Install a package.</li> + + <li><a href="remove.html">remove</a> - Remove a previously installed package.</li> - <li><a href="checksum.html">checksum</a> - TODO.</li> + <li><a href="checksum.html">checksum</a> - Create a checksum file for use in building a package.</li> <li><a href="verify.html">verify</a> - TODO.</li> Added: ant/sandbox/antlibs/debian/trunk/docs/install.html URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/debian/trunk/docs/install.html?view=auto&rev=543846 ============================================================================== --- ant/sandbox/antlibs/debian/trunk/docs/install.html (added) +++ ant/sandbox/antlibs/debian/trunk/docs/install.html Sat Jun 2 23:16:13 2007 @@ -0,0 +1,65 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<html> + <head> + <meta http-equiv="Content-Language" content="en-us"></meta> + <link rel="stylesheet" type="text/css" href="style.css"> + <title>install Task</title> + </head> + + <body> + <h2><a name="install">Install</a></h2> + + <h3>Description</h3> + + <p>Installs the specified debian package or directory.</p> + + <h3>Parameters</h3> + <table border="1" cellpadding="2" cellspacing="0"> + <tr> + <td valign="top"><b>Attribute</b></td> + <td valign="top"><b>Description</b></td> + <td align="center" valign="top"><b>Required</b></td> + </tr> + <tr> + <td valign="top">packagename</td> + <td valign="top">The name of the debian package to install.</td> + <td align="center">Either this or a directory is required.</td> + </tr> + <tr> + <td valign="top">dir</td> + <td valign="top">The directory of an expanded debian package.</td> + <td align="center">Either this or a packagename is required.</td> + </tr> + <tr> + <td valign="top">recursive</td> + <td valign="top">This must be set to use the directory option.</td> + <td align="center">Required for using the directory option.</td> + </tr> + </table> + + <h3>Examples</h3> + + <p>Install the package foo:</p> + + <pre> + <deb:install packagename="foo"/> + </pre> + + <hr/> + </body> +</html> \ No newline at end of file Added: ant/sandbox/antlibs/debian/trunk/docs/remove.html URL: http://svn.apache.org/viewvc/ant/sandbox/antlibs/debian/trunk/docs/remove.html?view=auto&rev=543846 ============================================================================== --- ant/sandbox/antlibs/debian/trunk/docs/remove.html (added) +++ ant/sandbox/antlibs/debian/trunk/docs/remove.html Sat Jun 2 23:16:13 2007 @@ -0,0 +1,65 @@ +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<html> + <head> + <meta http-equiv="Content-Language" content="en-us"></meta> + <link rel="stylesheet" type="text/css" href="style.css"> + <title>remove Task</title> + </head> + + <body> + <h2><a name="remove">Remove</a></h2> + + <h3>Description</h3> + + <p>Removes the specified debian package.</p> + + <h3>Parameters</h3> + <table border="1" cellpadding="2" cellspacing="0"> + <tr> + <td valign="top"><b>Attribute</b></td> + <td valign="top"><b>Description</b></td> + <td align="center" valign="top"><b>Required</b></td> + </tr> + <tr> + <td valign="top">packagename</td> + <td valign="top">The name of the debian package to remove.</td> + <td align="center">Yes.</td> + </tr> + <tr> + <td valign="top">purge</td> + <td valign="top">Set to true to remove config files.</td> + <td align="center">No.</td> + </tr> + </table> + + <h3>Examples</h3> + + <p>Remove the package foo:</p> + + <pre> + <deb:remove packagename="foo"/> + </pre> + + <p>Remove and purge any config files for package foo:</p> + + <pre> + <deb:remove purge="true" packagename="foo"/> + </pre> + <hr/> + </body> +</html> \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]