| 
  Part 1: Definition
 
 This is the section where things common to the whole script are defined. This section should be written between BEGIN_DEF and END commands.   
 The minimum definition you can write consists of two lines, as follows: 
 //Example 1.0 
 BEGIN_DEF  
  START_URL = "http://www.cnn.com"  
 SOURCE = "CNN"  
 CALL FirstProcess 
 END 
 Command available in this section are  
 START_URL  
 BASE_URL  
 SOURCE  
 IMAGE_LOGO  
 IMAGE_FAVICON  
 IMAGE_DEFAULT_FAVICON  
 INCLUDE_FORWARD_SLASH_LINK_ENDINGS  
 OUTPUT_TO_FILE_NAME  
 COVER_IMAGE  
 COVER_TEXT  
 CALL  
 These can be used only in "Definition" section.  
 You must call the first process to be run using "CALL" command, this will then start the script processes.    
                
  |