Improved auto-generated documentation for use with doxygen; moved 'using' devlarations inside namespaces.
This commit is contained in:
parent
63a94d8ce1
commit
2594cb384c
|
@ -9,8 +9,8 @@
|
||||||
Transform ADL into (partial) controller classes
|
Transform ADL into (partial) controller classes
|
||||||
|
|
||||||
$Author: sb $
|
$Author: sb $
|
||||||
$Revision: 1.44 $
|
$Revision: 1.45 $
|
||||||
$Date: 2010-01-12 17:20:17 $
|
$Date: 2010-06-01 17:29:02 $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- WARNING WARNING WARNING: Do NOT reformat this file!
|
<!-- WARNING WARNING WARNING: Do NOT reformat this file!
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
//
|
//
|
||||||
// Automatically generated abstract super class for controllers for the
|
// Automatically generated abstract super class for controllers for the
|
||||||
// <xsl:value-of select="/adl:application/@name"/> application; generated using
|
// <xsl:value-of select="/adl:application/@name"/> application; generated using
|
||||||
// adl2controllerclasses.xslt version <xsl:value-of select="substring( '$Revision: 1.44 $', 10)"/>
|
// adl2controllerclasses.xslt version <xsl:value-of select="substring( '$Revision: 1.45 $', 10)"/>
|
||||||
//
|
//
|
||||||
// <xsl:value-of select="/adl:application/@revision"/>
|
// <xsl:value-of select="/adl:application/@revision"/>
|
||||||
//
|
//
|
||||||
|
@ -80,6 +80,14 @@
|
||||||
//
|
//
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// \mainpage <xsl:value-of select="concat( @name, ' ', @version)"/>
|
||||||
|
/// <xsl:value-of select="normalize-space(adl:documentation)"/>
|
||||||
|
///
|
||||||
|
/// \package <xsl:value-of select="$controllerns"/>
|
||||||
|
/// MVC Controller classes for <xsl:value-of select='/adl:application/@name'/>
|
||||||
|
/// </summary>
|
||||||
|
namespace <xsl:value-of select="$controllerns"/> {
|
||||||
using System;
|
using System;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
@ -92,8 +100,6 @@
|
||||||
using Castle.MonoRail.Framework;
|
using Castle.MonoRail.Framework;
|
||||||
using <xsl:value-of select="$entityns"/>;
|
using <xsl:value-of select="$entityns"/>;
|
||||||
|
|
||||||
namespace <xsl:value-of select="$controllerns"/> {
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Automatically generated abstract super class for controllers for the
|
/// Automatically generated abstract super class for controllers for the
|
||||||
/// <xsl:value-of select="/adl:application/@name"/> application
|
/// <xsl:value-of select="/adl:application/@name"/> application
|
||||||
|
@ -182,12 +188,13 @@
|
||||||
//
|
//
|
||||||
// Controller for auto-generated forms for editing <xsl:value-of select="@name"/>s
|
// Controller for auto-generated forms for editing <xsl:value-of select="@name"/>s
|
||||||
// Automatically generated from application description using
|
// Automatically generated from application description using
|
||||||
// adl2controllerclasses.xslt version <xsl:value-of select="substring( '$Revision: 1.44 $', 10)"/>
|
// adl2controllerclasses.xslt version <xsl:value-of select="substring( '$Revision: 1.45 $', 10)"/>
|
||||||
//
|
//
|
||||||
// This file is automatically generated; DO NOT EDIT IT.
|
// This file is automatically generated; DO NOT EDIT IT.
|
||||||
//
|
//
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace <xsl:value-of select="$controllerns"/> {
|
||||||
using System;
|
using System;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
@ -199,28 +206,36 @@
|
||||||
using System.Web.UI.WebControls.WebParts;
|
using System.Web.UI.WebControls.WebParts;
|
||||||
using System.Web.UI.HtmlControls;
|
using System.Web.UI.HtmlControls;
|
||||||
using Castle.MonoRail.Framework.Helpers;
|
using Castle.MonoRail.Framework.Helpers;
|
||||||
using Cygnet.Entities;
|
using Cygnet.Entities;
|
||||||
using Cygnet.Exceptions;
|
using Cygnet.Exceptions;
|
||||||
using Cygnet.Web.Helpers;
|
using Cygnet.Web.Helpers;
|
||||||
using Cygnet.Web.Controllers;
|
using Cygnet.Web.Controllers;
|
||||||
using Cygnet.Web.SmartControls;
|
using Cygnet.Web.SmartControls;
|
||||||
using Cygnet.Utility;
|
using Cygnet.Utility;
|
||||||
using NHibernate;
|
using NHibernate;
|
||||||
using NHibernate.Expression;
|
using NHibernate.Expression;
|
||||||
using Castle.MonoRail.Framework;
|
using Castle.MonoRail.Framework;
|
||||||
using Iesi.Collections.Generic;
|
using Iesi.Collections.Generic;
|
||||||
using <xsl:value-of select="$entityns"/>;
|
using <xsl:value-of select="$entityns"/>;
|
||||||
|
|
||||||
namespace <xsl:value-of select="$controllerns"/> {
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Automatically generated partial controller class following 'thin controller'
|
/// Automatically generated partial controller class following 'thin controller'
|
||||||
/// strategy, for entity <xsl:value-of select="@name"/>. Note that part of this
|
/// strategy, for entity <xsl:value-of select="@name"/>. Note that part of this
|
||||||
/// class may be defined in a separate file called
|
/// class may be defined in a separate file called
|
||||||
/// <xsl:value-of select="@name"/>Controller.manual.cs, q.v.
|
/// <xsl:value-of select="@name"/>Controller.manual.cs, q.v.
|
||||||
|
/// </summary>
|
||||||
|
///
|
||||||
|
/// <remarks>
|
||||||
|
/// <list type='bullet'>
|
||||||
|
/// <listheader><description>See also auto-generated Velocity view macros</description></listheader><xsl:for-each select='adl:form|adl:page|adl:list'>
|
||||||
|
/// <item>
|
||||||
|
/// <term><xsl:value-of select="concat(@name, '.auto.vm')"/></term>
|
||||||
|
/// <description><xsl:apply-templates select='adl:documentation'/></description>
|
||||||
|
/// </item></xsl:for-each>
|
||||||
|
/// </list>
|
||||||
///
|
///
|
||||||
/// DO NOT EDIT THIS FILE!
|
/// DO NOT EDIT THIS FILE!
|
||||||
/// </summary>
|
/// </remarks>
|
||||||
[
|
[
|
||||||
<xsl:if test="$layout-name">
|
<xsl:if test="$layout-name">
|
||||||
Layout("<xsl:value-of select="$layout-name"/>"),
|
Layout("<xsl:value-of select="$layout-name"/>"),
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
Transform ADL into C# entity classes
|
Transform ADL into C# entity classes
|
||||||
|
|
||||||
$Author: sb $
|
$Author: sb $
|
||||||
$Revision: 1.27 $
|
$Revision: 1.28 $
|
||||||
$Date: 2010-01-12 17:20:17 $
|
$Date: 2010-06-01 17:29:02 $
|
||||||
-->
|
-->
|
||||||
|
|
||||||
<!-- WARNING WARNING WARNING: Do NOT reformat this file!
|
<!-- WARNING WARNING WARNING: Do NOT reformat this file!
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
// (c)2007 Cygnet Solutions Ltd
|
// (c)2007 Cygnet Solutions Ltd
|
||||||
//
|
//
|
||||||
// Automatically generated from application description using
|
// Automatically generated from application description using
|
||||||
// adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.27 $', 10)"/>
|
// adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.28 $', 10)"/>
|
||||||
//
|
//
|
||||||
// <xsl:value-of select="/adl:application/@revision"/>
|
// <xsl:value-of select="/adl:application/@revision"/>
|
||||||
//
|
//
|
||||||
|
@ -97,7 +97,7 @@
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Automatically generated from description of group <xsl:value-of select="@name"/>
|
/// Automatically generated from description of group <xsl:value-of select="@name"/>
|
||||||
/// using adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.27 $', 10)"/>.
|
/// using adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.28 $', 10)"/>.
|
||||||
///
|
///
|
||||||
/// DO NOT EDIT THIS FILE!
|
/// DO NOT EDIT THIS FILE!
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
|
@ -123,13 +123,25 @@
|
||||||
// (c)2007 Cygnet Solutions Ltd
|
// (c)2007 Cygnet Solutions Ltd
|
||||||
//
|
//
|
||||||
// Automatically generated from application description using
|
// Automatically generated from application description using
|
||||||
// adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.27 $', 10)"/>
|
// adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.28 $', 10)"/>
|
||||||
//
|
//
|
||||||
// <xsl:value-of select="/adl:application/@revision"/>
|
// <xsl:value-of select="/adl:application/@revision"/>
|
||||||
//
|
//
|
||||||
// This file is automatically generated; DO NOT EDIT IT.
|
// This file is automatically generated; DO NOT EDIT IT.
|
||||||
//
|
//
|
||||||
//-------------------------------------------------------------
|
//-------------------------------------------------------------
|
||||||
|
|
||||||
|
<xsl:if test="position() = 1">
|
||||||
|
/// <summary>
|
||||||
|
/// \mainpage <xsl:value-of select="concat( /adl:application/@name, ' ', /adl:application/@version)"/>
|
||||||
|
/// <xsl:value-of select="normalize-space( /adl:application/adl:documentation)"/>
|
||||||
|
///
|
||||||
|
/// \package <xsl:value-of select="$entityns"/>
|
||||||
|
/// Entity (MVC model) classes for <xsl:value-of select='/adl:application/@name'/>
|
||||||
|
/// </summary>
|
||||||
|
</xsl:if>
|
||||||
|
namespace <xsl:value-of select="$entityns"/>
|
||||||
|
{
|
||||||
using System;
|
using System;
|
||||||
using System.Configuration;
|
using System.Configuration;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
@ -142,14 +154,12 @@
|
||||||
using NHibernate;
|
using NHibernate;
|
||||||
using NHibernate.Classic;
|
using NHibernate.Classic;
|
||||||
|
|
||||||
namespace <xsl:value-of select="$entityns"/>
|
|
||||||
{
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// <xsl:value-of select="normalize-space( adl:documentation)"/>
|
/// <xsl:value-of select="normalize-space( adl:documentation)"/>
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// Automatically generated from description of entity <xsl:value-of select="@name"/>
|
/// Automatically generated from description of entity <xsl:value-of select="@name"/>
|
||||||
/// using adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.27 $', 10)"/>.
|
/// using adl2entityclass.xsl revision <xsl:value-of select="substring( '$Revision: 1.28 $', 10)"/>.
|
||||||
/// Note that manually maintained parts of this class may be defined in
|
/// Note that manually maintained parts of this class may be defined in
|
||||||
/// a separate file called <xsl:value-of select="@name"/>.manual.cs, q.v.
|
/// a separate file called <xsl:value-of select="@name"/>.manual.cs, q.v.
|
||||||
///
|
///
|
||||||
|
|
Loading…
Reference in a new issue