Difference between revisions of "ADF Applications"

From ADF Docs
Jump to: navigation, search
(Created page with '== Guide to Creating a New ADF Application == Following are instructions for Creating a New Application in the # A ''Starter App'' is provided in the 'ADF/apps' directory. See…')
 
Line 1: Line 1:
 
== Guide to Creating a New ADF Application ==
 
== Guide to Creating a New ADF Application ==
Following are instructions for Creating a New Application in the  
+
The following steps are instructions for creating a new application in the ADF.
  
 
# A ''Starter App'' is provided in the 'ADF/apps' directory.  See the [[Starter_Application|Starter Application]] wiki page for more details.
 
# A ''Starter App'' is provided in the 'ADF/apps' directory.  See the [[Starter_Application|Starter Application]] wiki page for more details.
# Copy and paste this ''Starter App'' directory into the apps directory and rename the folder.  Name the folder the name of your application.
+
# Copy this ''Starter App'' directory into the apps directory and rename the folder to the name of your application.
 
# Open the ''AppBeanConfig.cfm'' file in your applications directory.  See the [[App Bean Config|App Bean Config]] wiki page for more details.
 
# Open the ''AppBeanConfig.cfm'' file in your applications directory.  See the [[App Bean Config|App Bean Config]] wiki page for more details.
# Update the ''appBeanName'' variable with the name for your application.  Also, update the comment header at the top of the file with your application name.
+
# Update the ''appBeanName'' variable with the name for your application and the comment header at the top of the file with your application name.
 
   // App specific variables
 
   // App specific variables
 
   appBeanName = "STARTER_APP";
 
   appBeanName = "STARTER_APP";
 
# Save the updated ''AppBeanConfig.cfm'' file.
 
# Save the updated ''AppBeanConfig.cfm'' file.
# Reset the ADF for the server and site.  See the [[Reset_ADF|Reset ADF]] wiki page for more details.
+
# [[Reset_ADF|Reset the ADF]] for the server and site.  
# If no error messages, then your application is configured within the ADF.
+
# If no error messages appear, then your application is configured within the ADF.
  
 
== Related Guides ==
 
== Related Guides ==
Line 17: Line 17:
 
* ADF Library Overrides
 
* ADF Library Overrides
 
* Application Site Level Customization
 
* Application Site Level Customization
 +
 +
[[Category: How-to Guide]]

Revision as of 00:08, 20 December 2009

Guide to Creating a New ADF Application

The following steps are instructions for creating a new application in the ADF.

  1. A Starter App is provided in the 'ADF/apps' directory. See the Starter Application wiki page for more details.
  2. Copy this Starter App directory into the apps directory and rename the folder to the name of your application.
  3. Open the AppBeanConfig.cfm file in your applications directory. See the App Bean Config wiki page for more details.
  4. Update the appBeanName variable with the name for your application and the comment header at the top of the file with your application name.
 // App specific variables
 appBeanName = "STARTER_APP";
  1. Save the updated AppBeanConfig.cfm file.
  2. Reset the ADF for the server and site.
  3. If no error messages appear, then your application is configured within the ADF.

Related Guides

  • Change Components in App
  • Application Site Config
  • ADF Library Overrides
  • Application Site Level Customization