Book a Demo

Author Topic: html document generation with EA  (Read 3341 times)

suresh

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
html document generation with EA
« on: August 18, 2006, 12:49:19 am »
Hi,

I am trying to generate html documents from inside EA. But the problem is that EA skips certain tags but I want those tags to be inserted into the html document. How can I get this done? Any idea from the experts here?


a sample file below
''' -----------------------------------------------------------------------------
   ''' Project
: DevX
   ''' Class
: AAA.DevX.ABC.EX
   '''
   ''' -----------------------------------------------------------------------------
   ''' <summary>
   ''' <jp>ブザー鳴動の基底クラス</jp>
   ''' <en>This class is used to generate buzzer sound in emulator</en>
   ''' </summary>
   ''' <remarks>
   ''' <jp>ブザー鳴動の基底クラス</jp>
   ''' <en>This class is used to generate buzzer sound in emulator</en>
   ''' </remarks>
   ''' <history>
   '''
[Suresh.K]
10/31/2005
Created
   ''' </history>
   ''' -----------------------------------------------------------------------------
   Public Class EX
       Implements BIntf

#Region "Public methods"
       ''' -----------------------------------------------------------------------------
       ''' <summary>
       ''' <jp>ブザー鳴動のメソッド</jp>
       ''' <en>This method produces buzzer tone</en>
       ''' </summary>
       ''' <param name="beepTone">
       ''' <jp>パラメータが 1 なら エラー音。1以外の場合は普通の音</jp>
       ''' <en>If beepTone is set to 1, then error buzzer sound. Else normal buzzer
       '''  sound</en>
       ''' </param>
       ''' <remarks>
       ''' <example>
       ''' <code>
       ''' Beep(1) -> produces error tone
       ''' Beep(0) -> produces normal tone
       ''' </code>
       ''' </example>
       ''' <jp>ブザー鳴動のメソッド。パラメータが 1 なら エラー音。1以外の場合は普通の音</jp>
       ''' <en>This method produces buzzer tone depending on the
       ''' user inputIf beepTone is set to 1, then error buzzer sound. Else normal buzzer
       ''' sound</en>
       ''' </remarks>
       ''' <history>
       '''
[Suresh.K]
10/31/2005
Created
       ''' </history>
       ''' -----------------------------------------------------------------------------
       Public Sub Beep(ByVal beepTone As Short) Implements BIntf.Beep
           Dim isErrCheck As Boolean = False
           Me.Beep(beepTone, isErrCheck)
       End Sub


The generated html looks like this

====================================================================
<jp>ブザー鳴動の基底クラス</jp>
<en>This class is used to generate buzzer sound in emulator</en>

@remark <jp>ブザー鳴動の基底クラス</jp>
<en>This class is used to generate buzzer sound in emulator</en>

EX Methods

Operation :
public
Beep(
  Short beepTone):


Details :
Sequential
Tags:  implements=BIntf.Beep

Notes:  
<jp>ブザー鳴動のメソッド</jp>
<en>This method produces buzzer tone</en>

@remark
<example>
<code> Beep(1) -> produces error tone Beep(0) -> produces normal tone
</code>
</example>

<jp>ブザー鳴動のメソッド。パラメータが 1 なら エラー音。1以外の場合は普通の音</jp>
<en>This method produces buzzer tone depending on the user inputIf beepTone is set to 1, then error buzzer sound. Else normal buzzer sound</en>


==========================================================================

where as I need something like

==========================================================================
Notes:  
<summary>
<jp>ブザー鳴動のメソッド</jp>
<en>This method produces buzzer tone</en>
</summary>


<param name="beepTone">
<jp>パラメータが 1 なら エラー音。1以外の場合は普通の音</jp>
<en>If beepTone is set to 1, then error buzzer sound. Else normal buzzer
sound</en>
</param>


@remark
<example>
<code> Beep(1) -> produces error tone Beep(0) -> produces normal tone
</code>
</example>

<jp>ブザー鳴動のメソッド。パラメータが 1 なら エラー音。1以外の場合は普通の音</jp>
<en>This method produces buzzer tone depending on the user inputIf beepTone is set to 1, then error buzzer sound. Else normal buzzer sound</en>




=========================================================================

because my contents inside <param> tag are missing and neither <summary> nor @summary appears in the document.

If I generate html document, EA skips the summary, param, history tags but just prints the en and jp tags and the contents inside.


Thanks

Note : Japanese characters will be displaying as junk sometimes. Change the browser encoding to UTF-8