Author: steveh Date: Wed Jan 26 15:10:16 2005 New Revision: 126556 URL: http://svn.apache.org/viewcvs?view=rev&rev=126556 Log: Fix for BEEHIVE-64: netui-blank not being described in samples/README.txt while others do
tests: build.dist Added: incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/samples/ incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/samples/index.xml (contents, props changed) incubator/beehive/trunk/samples/README.txt (contents, props changed) Modified: incubator/beehive/trunk/distribution.xml incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml Modified: incubator/beehive/trunk/distribution.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/distribution.xml?view=diff&rev=126556&p1=incubator/beehive/trunk/distribution.xml&r1=126555&p2=incubator/beehive/trunk/distribution.xml&r2=126556 ============================================================================== --- incubator/beehive/trunk/distribution.xml (original) +++ incubator/beehive/trunk/distribution.xml Wed Jan 26 15:10:16 2005 @@ -196,6 +196,10 @@ antfile="build.xml" target="clean" inheritall="false"/> + + <copy todir="${dist.dir}/samples" failOnError="true"> + <fileset file="samples/README.txt"/> + </copy> </target> Added: incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/samples/index.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/samples/index.xml?view=auto&rev=126556 ============================================================================== --- (empty file) +++ incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/samples/index.xml Wed Jan 26 15:10:16 2005 @@ -0,0 +1,54 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation V2.0//EN" "http://forrest.apache.org/dtd/document-v20.dtd"> +<document> + <header> + <title>Beehive Samples</title> + </header> + <body> + <p>Beehive ships with the following <strong>samples</strong> and + <strong>application templates</strong>. Follow the links + for instructions on using the samples and templates.</p> + <p> + <strong>Samples</strong> + </p> + <ul> + <li> + <a href="../jpetstore.html">Beehive Sample: Petstore</a> + </li> + <li> + <a href="../wsm/sample_Dashboard.html">Beehive Web Service + Sample: Petstore Dashboard</a> + </li> + <li> + <a href="../wsm/sample_AddressBook.html">Beehive AddressBookWS + and EmployeeWS Samples</a> + </li> + <li> + <a href="../controls/sample_controls-db.html">Database Control + Sample</a> + </li> + </ul> + <p> + <strong>Templates</strong> + </p> + <ul> + <li> + <a href="../pageflow/sample_netui-blank.html">Page Flow Project + Template</a> + </li> + <li> + <a href="../controls/sample_controls-blank.html">Control + Project Template</a> + </li> + <li> + <a href="../wsm/sample_wsm-blank.html">Web Service Project + Template</a> + </li> + </ul> + </body> + <footer> + <legal>Java, J2EE, and JCP are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries.<br/> + © 2004, Apache Software Foundation + </legal> + </footer> +</document> Modified: incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml?view=diff&rev=126556&p1=incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml&r1=126555&p2=incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml&r2=126556 ============================================================================== --- incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml (original) +++ incubator/beehive/trunk/docs/forrest/src/documentation/content/xdocs/site.xml Wed Jan 26 15:10:16 2005 @@ -36,6 +36,7 @@ <jsr181 label="Web Services (JSR 181)" href="webservices.html"/> </wsm> <samples label="Samples"> + <sam_index label="Samples" href="samples/index.html"/> <jpetstore label="Petstore" href="jpetstore.html"/> <dash label="Petstore Dashboard" href="wsm/sample_Dashboard.html"/> <address label="AddressBook/Employee" href="wsm/sample_AddressBook.html"/> Added: incubator/beehive/trunk/samples/README.txt Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/samples/README.txt?view=auto&rev=126556 ============================================================================== --- (empty file) +++ incubator/beehive/trunk/samples/README.txt Wed Jan 26 15:10:16 2005 @@ -0,0 +1,48 @@ +Beehive Samples +--------------- + +This directory contains (1) samples that demonstrate the capabilities of +Beehive controls, page flows, and web services and (2) application +templates you can use as development starting points. + +Instructions for running these samples are located at: + + http://incubator.apache.org/beehive/samples/index.html + +and locally at: + + <BeehiveRoot>/docs/samples/index.html + +The following list describes the function of each sample. + + AddressBookWS + An annotation-aware version of the Apahce Axis AddressBook sample. + + controls-blank + A simple HelloWorld control to be used as a template for building + more complex controls. + + controls-db + A database control that parses SQL statements, sends them to the + database, and handles the results sent back from the database. + + EmployeeWS + A web service that calls a database control. + + netui-blank + A simple Page Flow to be used as a template for starting a more + complex Page Flow project. + + PetStoreDashboard + A Swing client for the Petstore web service. + + petstoreWeb + This sample demonstrates all three Beehive sub-projects: controls, + page flows, and web services. Petstore includes (1) a page flow based web site, + (2) controls for managing state and data retrieval, and (3) a web service + interface for inventory management (PetStoreDashboard is a Swing client for + this web service). + + wsm-blank + A simple HelloWorld web service to be used a template for building more + complex web services. \ No newline at end of file
