Changeset 604
- Timestamp:
- 04/22/07 18:45:32 (1 year ago)
- Files:
-
- trunk/build.xml (modified) (3 diffs)
- trunk/examples (modified) (1 prop)
- trunk/examples/json-rpc/README (modified) (1 diff)
- trunk/examples/json-rpc/index.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build.xml
r601 r604 20 20 <!-- Setup examples --> 21 21 <target name="setup-examples" description="Setup the included examples"> 22 <resolvepath propertyName="examples.absolute.dir" file="${examples.base.dir}"/> 22 23 <echo>-------------------------------</echo> 23 24 <echo>| Setting up JSON-RPC example |</echo> … … 31 32 </copy> 32 33 <if> 33 <available file="${examples. base.dir}/json-rpc/yui" type="dir"/>34 <available file="${examples.absolute.dir}/yui" type="dir"/> 34 35 <then> 35 36 <echo>YAHOO! User Interface library is installed.</echo> … … 37 38 <else> 38 39 <echo level="error">[Error] YAHOO! User Interface library is *not* installed.</echo> 39 <echo level="error">[Error] Please refer to the README file in the ${examples.base.dir}/json-rpc/ folder.</echo> 40 <echo>Please download the latest version of the YAHOO! User Interface library from http://developer.yahoo.com/yui</echo> 41 <echo>and place it into ${examples.absolute.dir}/yui.</echo> 42 <echo>For more information refer to ${examples.absolute.dir}/json-rpc/README.</echo> 40 43 </else> 41 44 </if> trunk/examples
- Property svn:ignore set to
yui
- Property svn:ignore set to
trunk/examples/json-rpc/README
r600 r604 5 5 1. Dowload the latest release from http://developer.yahoo.com/yui/ 6 6 2. Extract the archive 7 3. Move the "yui" folder into the document root7 3. Move the "yui" folder into the /examples folder 8 8 4. Make sure, that all javascript files from stubbles are copied to this directory, by executing "phing setup" in the Stubbles checkout folder trunk/examples/json-rpc/index.php
r602 r604 4 4 <head> 5 5 <title>JSON-RPC Test</title> 6 <script type="text/javascript" src=" yui/build/yahoo/yahoo.js"></script>7 <script type="text/javascript" src=" yui/build/connection/connection.js"></script>6 <script type="text/javascript" src="../yui/build/yahoo/yahoo.js"></script> 7 <script type="text/javascript" src="../yui/build/connection/connection.js"></script> 8 8 <script type="text/javascript" src="javascript/json.js"></script> 9 9 <script type="text/javascript" src="javascript/stub-base.js"></script>
