Hi, I am using naturaldocs the first time. I am running it in Win-7 64. It
produces no errors but I do not get any comments in the HTML document.
Naturaldocs generates the Output but the HTML is empty. Any Ideas? Here is the
simple File I parse with Naturaldocs (it's a VBScript):
You don't have a topic line, so Natural Docs doesn't see it as a comment it
should pay attention to. The first line under the dashes (or over it, if you
prefer) should be:
' Function: obsolete_bms_StartJob
The full documentation on how to write comments Natural Docs can understand is
here:
Hi, I am using naturaldocs the first time. I am running it in Win-7 64. It
produces no errors but I do not get any comments in the HTML document.
Naturaldocs generates the Output but the HTML is empty. Any Ideas? Here is the
simple File I parse with Naturaldocs (it's a VBScript):
'-----------------------------------------------------------------------------
' Start a bMS Job from an OT BmsJobExec object.
' SYNCHRONOUS VERSION
'
' Params:
' jobExec - a bMS Job Execution object
' Return:
' The status text returned from the BMS call
'THIS FUNCTION IS NOT MSA PROOF
'ane: 04/2012 MSA-ready adapted error handling
'-----------------------------------------------------------------------------
FUNCTION obsolete_bms_StartJob( jobExec)
Dim job_guid, machine_guid, obj_ret, status_txt
Dim job, ci
If Not jobExec.Fields( "RefJob").IsNull Then
Set job = jobExec.Fields( "RefJob").Tvalue
End If
END FUNCTION
You don't have a topic line, so Natural Docs doesn't see it as a comment it
should pay attention to. The first line under the dashes (or over it, if you
prefer) should be:
' Function: obsolete_bms_StartJob
The full documentation on how to write comments Natural Docs can understand is
here:
http://www.naturaldocs.org/documenting.html
GREAT!!! Many thanks for the help. It's working....