Author: husted
Date: Fri Jun 10 05:46:03 2005
New Revision: 189949

URL: http://svn.apache.org/viewcvs?rev=189949&view=rev
Log:
OVR-5
* README - Update Subversion notes
* start-sql - Fix spelling
OVR-8
* App, ControllerTest - Remove static class (conflicts with application)
* AppConfig - Add Spring configuration template

Added:
    struts/sandbox/trunk/overdrive/Nexus/Test/Resources/Command/AppConfig.xml
Removed:
    struts/sandbox/trunk/overdrive/Nexus/Test/App.cs
Modified:
    struts/sandbox/trunk/overdrive/Nexus/Test/ControllerTest.cs
    struts/sandbox/trunk/overdrive/Nexus/Test/Test.csproj
    struts/sandbox/trunk/overdrive/PhoneBook/PhoneBook-start.sql
    struts/sandbox/trunk/overdrive/README.txt

Modified: struts/sandbox/trunk/overdrive/Nexus/Test/ControllerTest.cs
URL: 
http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/Nexus/Test/ControllerTest.cs?rev=189949&r1=189948&r2=189949&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/Nexus/Test/ControllerTest.cs (original)
+++ struts/sandbox/trunk/overdrive/Nexus/Test/ControllerTest.cs Fri Jun 10 
05:46:03 2005
@@ -29,7 +29,7 @@
                [Test]
                public void ExecuteContext ()
                {
-                       IRequestContext context = controller.ExecuteContext 
(App.LIST_ALL);
+                       IRequestContext context = controller.ExecuteContext 
("list_all");
                        AssertNominal (context);
                        Assert.IsTrue (context.IsNominal, "Expected nominal 
result.");
                        Assert.IsTrue (context.HasOutcome, "Expected outcome 
from command.");

Added: struts/sandbox/trunk/overdrive/Nexus/Test/Resources/Command/AppConfig.xml
URL: 
http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/Nexus/Test/Resources/Command/AppConfig.xml?rev=189949&view=auto
==============================================================================
--- struts/sandbox/trunk/overdrive/Nexus/Test/Resources/Command/AppConfig.xml 
(added)
+++ struts/sandbox/trunk/overdrive/Nexus/Test/Resources/Command/AppConfig.xml 
Fri Jun 10 05:46:03 2005
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="utf-8" ?> 
+<objects xmlns="http://www.springframework.net"; 
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
+       xsi:schemaLocation="http://www.springframework.net 
http://www.springframework.net/xsd/spring-objects.xsd";>
+       
+<!-- controller commands 
+       
+  <object id="convert_input" type="Nexus.Validators.ConvertInput">
+    <property name="ID"><value>ConvertInput</value></property>
+    <property name="Template"><value>{0} is required.</value></property>
+  </object>
+
+  <object id="format_output" type="Nexus.Validators.FormatOutput">
+    <property name="ID"><value>FormatOutput</value></property>    
+    <property name="Template"><value>{0} is required.</value></property>
+  </object>
+  
+-->
+
+  <!-- pre-op   
+  <object id="pre-op" type="Nexus.NexusChain, Agility.Nexus">
+       <property name="AddCommands">
+               <list>
+                       <ref object="convert_input"/>
+               </list>   
+    </property>           
+  </object>  
+  -->
+
+  <!-- post-op 
+  <object id="post-op" type="Nexus.NexusChain, Agility.Nexus">
+       <property name="AddCommands">
+               <list>
+                       <ref object="format_output"/>
+               </list>   
+    </property>           
+  </object>
+-->
+               
+ <!-- Nexus Controller -->
+
+  <object id="Controller" type="Nexus.Extras.Spring.Controller"/>
+  
+<!-- iBATIS Mapper -->
+  
+  <object id="Mapper" type="IBatisNet.DataMapper.Mapper, IBatisNet.DataMapper" 
+               factory-method="Instance"/> 
+    
+</objects>
\ No newline at end of file

Modified: struts/sandbox/trunk/overdrive/Nexus/Test/Test.csproj
URL: 
http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/Nexus/Test/Test.csproj?rev=189949&r1=189948&r2=189949&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/Nexus/Test/Test.csproj (original)
+++ struts/sandbox/trunk/overdrive/Nexus/Test/Test.csproj Fri Jun 10 05:46:03 
2005
@@ -110,11 +110,6 @@
         <Files>
             <Include>
                 <File
-                    RelPath = "App.cs"
-                    SubType = "Code"
-                    BuildAction = "Compile"
-                />
-                <File
                     RelPath = "AssemblyInfo.cs"
                     SubType = "Code"
                     BuildAction = "Compile"

Modified: struts/sandbox/trunk/overdrive/PhoneBook/PhoneBook-start.sql
URL: 
http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/PhoneBook/PhoneBook-start.sql?rev=189949&r1=189948&r2=189949&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/PhoneBook/PhoneBook-start.sql (original)
+++ struts/sandbox/trunk/overdrive/PhoneBook/PhoneBook-start.sql Fri Jun 10 
05:46:03 2005
@@ -15,4 +15,4 @@
  
('7c424227-8e19-4fb5-b089-423cfca723e1','Roosevelt','Theodore','5557438942','bull',0,'2001-09-14
 00:00:00',37.5),
  ('9320ea40-0c01-43e8-9cec-8fb9b3928c2c','Kennedy','John 
F.','5557433928','fitz',0,'1987-05-29 00:00:00',37.5),
  
('3b27c933-c1dc-4d85-9744-c7d9debae196','Pierce','Franklin','5557437919','hawkeye',0,'1984-11-18
 00:00:00',35),
- 
('554ff9e7-a6f5-478a-b76b-a666f5c54e40','Jeffrson','Thomas','5557435440','monty',0,'1976-07-04
 00:00:00',37.5);
+ 
('554ff9e7-a6f5-478a-b76b-a666f5c54e40','Jefferson','Thomas','5557435440','monty',0,'1976-07-04
 00:00:00',37.5);

Modified: struts/sandbox/trunk/overdrive/README.txt
URL: 
http://svn.apache.org/viewcvs/struts/sandbox/trunk/overdrive/README.txt?rev=189949&r1=189948&r2=189949&view=diff
==============================================================================
--- struts/sandbox/trunk/overdrive/README.txt (original)
+++ struts/sandbox/trunk/overdrive/README.txt Fri Jun 10 05:46:03 2005
@@ -50,9 +50,6 @@
 ** This archive contains development versions, so be sure to use these rather 
than the released versions. Our goal is to stay current with the development 
versions for now.
 ** If you have not already done so, also install NUnit 2.2 or later. There is 
a MSI available from  [http://NUnit.org], along with a Mono-friendly ZIP. 
 
-* Using the Ankh plugin for Subversion is suggested.
-** [http://www.tigris.org/]
-
 
 VISUAL STUDIO
 
@@ -89,6 +86,11 @@
 ** Open "Sharing" and "Security/Web" Sharing
 ** Set the sharename to "Phonebook"
 * Build Nexus before building PhoneBook
+
+h2. Subversion 
+
+* Using the Ankh plugin for Subversion is suggested.
+** [http://ankhsvn.tigris.org/]
 
 
 DATABASE



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to