Development

Changeset 4815

You must first sign up to be able to contribute.

Changeset 4815

Show
Ignore:
Timestamp:
08/03/07 18:56:29 (1 year ago)
Author:
Jonathan.Wage
Message:

sfISBNPlugin: Fixes to README and package.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfISBNPlugin/README

    r4792 r4815  
    22 
    33This plugin gives you functionality for searching for books on amazon, looking up isbns, converting back and fourth between isbn10 and isbn13. It also gives you functionality to retrieve offers from different vendors for certain books/isbns. Currently the only support vendors are amazon and commission junction. 
     4 
     5== Requirements == 
     6 
     7This plugin requires a few other plugins to be installed: [wiki:sfWSDLPlugin]:, [wiki:sfAmazonECSPlugin], and [wiki:sfCommissionJunctionPlugin] 
     8 
     9== Installation == 
     10 
     11Installing from package 
     12{{{ 
     13  symfony plugin-install http://plugins.symfony-project.com/sfISBNPlugin 
     14}}} 
     15 
     16Installing from svn 
     17{{{ 
     18  svn co http://svn.symfony-project.com/plugins/sfISBNPlugin 
     19}}} 
     20 
     21Clear your cache after installing 
     22{{{ 
     23  symfony cc 
     24}}} 
    425 
    526== Configuring sfISBN == 
  • plugins/sfISBNPlugin/package.xml

    r4792 r4815  
    11<?xml version="1.0" encoding="UTF-8"?> 
    2 <package packagerversion="1.0.0" version="1.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd"> 
     2<package xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" packagerversion="1.0.0" version="1.0" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd"> 
    33 <name>sfISBNPlugin</name> 
    44 <channel>pear.symfony-project.com</channel> 
     
    1717  <active>yes</active> 
    1818 </maintainer> 
    19  <date>2007-08-01</date> 
    20  <time>15:54:35</time> 
     19 <date>2007-08-03</date> 
    2120 <release> 
    22   <version>0.0.1</version> 
    23   <state>beta</state> 
     21  <version>1.0.0</version> 
     22  <state>stable</state> 
    2423 </release> 
    2524 <stability> 
    26   <release>beta</release> 
    27   <api>beta</api> 
     25  <release>stable</release> 
     26  <api>stable</api> 
    2827 </stability> 
    2928 <license uri="http://www.symfony-project.com/license">MIT license</license> 
    3029 <notes>-</notes> 
    31  <contents> 
    32   <dir name="/"> 
    33    <file role="data" name="README" /> 
    34    <file role="data" name="LICENSE" /> 
    35    <dir name="lib"> 
    36     <file role="data" name="BasesfISBN.class.php" /> 
    37     <file role="data" name="sfISBN.class.php" /> 
    38     <file role="data" name="sfISBNCommissionJunctionDriver.class.php" /> 
    39     <file role="data" name="sfISBNNumber.class.php" /> 
    40     <file role="data" name="sfISBNSellerDriver.class.php" /> 
    41    </dir> 
    42   </dir> 
    43  </contents> 
     30 <contents><dir name="/"><dir name="config"/><dir name="lib"><file name="sfISBNSellerDriver.class.php" role="data"/><file name="sfISBNCommissionJunctionDriver.class.php" role="data"/><file name="sfISBNNumber.class.php" role="data"/><file name="BasesfISBN.class.php" role="data"/><file name="sfISBN.class.php" role="data"/></dir><file name="LICENSE" role="data"/><file name="README" role="data"/><file name="package-sfISBNPlugin.xml" role="data"/></dir></contents> 
    4431 <dependencies> 
    4532  <required> 
     
    5946  </required> 
    6047 </dependencies> 
    61  <phprelease /> 
    62  <changelog /> 
     48 <phprelease/> 
     49 <changelog/> 
    6350</package>