No significant change to anything that matters, just to the TestApp stuff.
This commit is contained in:
parent
8cd3a059ea
commit
4e0f0c58cc
6 changed files with 52 additions and 26 deletions
|
|
@ -33,6 +33,10 @@
|
|||
<Reference Include="Castle.Core, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL" />
|
||||
<Reference Include="Castle.MonoRail.Framework, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL" />
|
||||
<Reference Include="Castle.MonoRail.Framework.Views.NVelocity, Version=1.0.3.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL" />
|
||||
<Reference Include="Iesi.Collections, Version=1.0.0.3, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>L:\Castle\1.0.3RC3\Iesi.Collections.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="NHibernate, Version=1.2.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
|
|
@ -83,6 +87,12 @@
|
|||
<None Include="Web\Views\Auto\test\person\edit.auto.vm" />
|
||||
<None Include="Web\Views\Auto\test\person\maybedelete.auto.vm" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\CygnetToolkit\CygnetToolkit.csproj">
|
||||
<Project>{77FB7DE5-1F33-4DDC-8A2E-79EF4728705E}</Project>
|
||||
<Name>CygnetToolkit</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="App_Data\" />
|
||||
<Folder Include="Web\bin\" />
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
Copyright (c) 2008 Cygnet Solutions Ltd
|
||||
|
||||
$Author: sb $
|
||||
$Revision: 1.2 $
|
||||
$Date: 2008-06-19 09:04:01 $
|
||||
$Revision: 1.3 $
|
||||
$Date: 2008-07-01 16:08:18 $
|
||||
-->
|
||||
<output xmlns="http://cygnets.co.uk/schemas/adl-1.2" xmlns:adl="http://cygnets.co.uk/schemas/adl-1.2" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
|
||||
<!--Layout is default-->
|
||||
|
|
|
|||
|
|
@ -12,11 +12,11 @@
|
|||
Copyright (c) 2008 Cygnet Solutions Ltd
|
||||
|
||||
$Author: sb $
|
||||
$Revision: 1.1 $
|
||||
$Date: 2008-06-18 15:55:49 $
|
||||
$Revision: 1.2 $
|
||||
$Date: 2008-07-01 16:08:17 $
|
||||
-->
|
||||
|
||||
<application name="adltestapp" xmlns="http://cygnets.co.uk/schemas/adl-1.2">
|
||||
<application name="ADLTestApp" xmlns="http://cygnets.co.uk/schemas/adl-1.2">
|
||||
<content>
|
||||
<head>
|
||||
|
||||
|
|
@ -42,14 +42,14 @@
|
|||
</typedef>
|
||||
<group name="public"/>
|
||||
<group name="admin" parent="public"/>
|
||||
<entity name="person">
|
||||
<entity name="Person">
|
||||
<property name="LastName" type="string" required="true" size="100" distinct="user">
|
||||
<prompt locale="en-UK" prompt="Surname"/>
|
||||
</property>
|
||||
<property name="ForeNames" type="string" required="true" size="100" distinct="user">
|
||||
<prompt locale="en-UK" prompt="Fore names"/>
|
||||
</property>
|
||||
<property name="Partner" type="entity" entity="person"/>
|
||||
<property name="Partner" type="entity" entity="Person"/>
|
||||
<property name="Gender" type="string" size="1" required="true">
|
||||
<option value="M">
|
||||
<prompt locale="en-GB" prompt="Male"/>
|
||||
|
|
@ -59,8 +59,8 @@
|
|||
</option>
|
||||
</property>
|
||||
<property name="age" type="defined" typedef="age"/>
|
||||
<property name="Address" type="entity" entity="address" distinct="user"/>
|
||||
<property name="Friends" type="link" entity="person"/>
|
||||
<property name="Address" type="entity" entity="Address" distinct="user"/>
|
||||
<property name="Friends" type="link" entity="Person"/>
|
||||
<form name="edit" properties="listed">
|
||||
<fieldgroup name="Personal Data">
|
||||
<documentation>
|
||||
|
|
@ -84,7 +84,7 @@
|
|||
</fieldgroup>
|
||||
</form>
|
||||
</entity>
|
||||
<entity name="address">
|
||||
<entity name="Address">
|
||||
<key>
|
||||
<property name="Number" type="string" size="8" distinct="all">
|
||||
<prompt locale="en-GB" prompt="House number"/>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue