//
// Copyright (c) 2006 by Conor O'Mahony.
// For enquiries, please email GubuSoft@GubuSoft.com.
// Please keep all copyright notices below.
// Original author of TreeView script is Marcelino Martins.
//
// This document includes the TreeView script.
// The TreeView script can be found at http://www.TreeView.net.
// The script is Copyright (c) 2006 by Conor O'Mahony.
//
// You can find general instructions for this file at www.treeview.net. 
//

// Configures whether the names of the nodes are links (or whether only the icons
// are links).
USETEXTLINKS = 1

// Configures whether the tree is fully open upon loading of the page, or whether
// only the root node is visible.
STARTALLOPEN = 0

// Specify if the images are in a subdirectory;
ICONPATH = ''


foldersTree = gFld("<i>DBAddin Help</i>", "DBAddin.htm")
  foldersTree.treeID = "Frameset"

  aux1 = insFld(foldersTree, gFld("Reference", "DBAddin.htm"))
    aux2 = insFld(aux1, gFld("DB Functions", "DBAddin.htm#DBFuncs"))
      insDoc(aux2, gLnk("R", "DBListFetch", "DBAddin.htm#DBListFetch"))
      insDoc(aux2, gLnk("R", "DBRowFetch", "DBAddin.htm#DBRowFetch"))
      insDoc(aux2, gLnk("R", "DBCellFetch", "DBAddin.htm#DBCellFetch"))
      insDoc(aux2, gLnk("R", "DBMakeControl", "DBAddin.htm#DBMakeControl"))
	    aux3 = insFld(aux2, gFld("Helper functions", "DBAddin.htm#HelperFuncs"))
	      insDoc(aux3, gLnk("R", "chainCells", "DBAddin.htm#chainCells"))
	      insDoc(aux3, gLnk("R", "concatCells", "DBAddin.htm#concatCells"))
	      insDoc(aux3, gLnk("R", "concatCellsSep", "DBAddin.htm#concatCellsSep"))
	      insDoc(aux3, gLnk("R", "DBinClause", "DBAddin.htm#DBinClause"))
	      insDoc(aux3, gLnk("R", "DBString", "DBAddin.htm#DBString"))
	      insDoc(aux3, gLnk("R", "DBDate", "DBAddin.htm#DBDate"))
	      insDoc(aux3, gLnk("R", "Plookup", "DBAddin.htm#Plookup"))
	  insDoc(aux2, gLnk("R", "Modifications of DBFunc Behaviour", "DBAddin.htm#ModificationsDBFuncBehaviour"))
	    aux3 = insFld(aux2, gFld("Supporting Tools", "DBAddin.htm#Supporting_Tool_Query_Builder"))
	  		insDoc(aux3, gLnk("R", "Query Builder", "DBAddin.htm#Supporting_Tool_Query_Builder"))
	  		insDoc(aux3, gLnk("R", "Cell Config Deployment", "DBAddin.htm#Cell_Config_Deployment"))
	  insDoc(aux2, gLnk("R", "Installation", "DBAddin.htm#Installation1"))
	  insDoc(aux2, gLnk("R", "Points of Interest", "DBAddin.htm#Points of Interest"))
	  insDoc(aux2, gLnk("R", "Known Issues / Limitations", "DBAddin.htm#Known Issues / Limitations1"))
      
    aux2 = insFld(aux1, gFld("DB Sheets", "DBAddin.htm#DBSheets"))
	    aux3 = insFld(aux2, gFld("Main Features", "DBAddin.htm#Features"))
	      insDoc(aux3, gLnk("R", "Editing Data", "DBAddin.htm#Editing Data"))
	      insDoc(aux3, gLnk("R", "DBSheets parameters", "DBAddin.htm#parameter_dialog"))
	      insDoc(aux3, gLnk("R", "Data Conflicts", "DBAddin.htm#Data Conflict resolution"))
	      insDoc(aux3, gLnk("R", "foreign lookup", "DBAddin.htm#Looking up foreign table records"))
	  insDoc(aux2, gLnk("R", "DBSheet Creation", "DBAddin.htm#DBSheet Creation"))
	  insDoc(aux2, gLnk("R", "DBSheet Menu", "DBAddin.htm#DBSheet_Menu"))
	  insDoc(aux2, gLnk("R", "Installation", "DBAddin.htm#Installation2"))
	  insDoc(aux2, gLnk("R", "Known Issues / Limitations", "DBAddin.htm#Known Issues/Limitations2"))
   insFld(aux1, gFld("Mapper", "DBAddin.htm#Mapper"))
  aux1 = insFld(foldersTree, gFld("Examples", "DBAddinExamples.htm"))
    aux2 = insFld(aux1, gFld("DB functions", "DBAddinExamples.htm"))
  insDoc(foldersTree, gLnk("R", "ChangeLog", "ChangeLog.txt"))
  insDoc(foldersTree, gLnk("R", "DocAsPackage", "doc.zip"))
  insDoc(foldersTree, gLnk("R", "Developer Documentation", "developerDoc/DBAddin.html"))
