|
From: Michalis K. <ka...@us...> - 2026-03-30 01:53:00
|
> Summary: I treat this request as partially fixed. The only
remaining issue here is number 2: using @created, @author
and @lastmod for all items.
This has been done long time ago :) `@created`, `@author`, `@lastmod` work for all items.
Other points from this were addressed already, from what I can see. Closing:)
---
**[feature-requests:#20] 4 question....**
**Status:** open
**Group:**
**Created:** Mon Jun 21, 2004 05:17 AM UTC by CETT
**Last Updated:** Thu Jan 01, 2015 08:34 PM UTC
**Owner:** nobody
Hi everyone!
So, I have 4 question:
------------------------------------------------------
------------------
1: How to create multiline description? If I use this:
{ @author(Jónás Gergő <jon...@ch...>)
@created(2004.06.01.)
@lastmod(2004.06.01.)
@abstract(temp)
line1
line2
line3}
or this:
{ @author(Jónás Gergő <jon...@ch...>)
@created(2004.06.01.)
@lastmod(2004.06.01.)
@abstract(temp)}
{line1}
{line2}
{line3}
description, then a pasdoc generate this HTML text:
</h2>temp<p>line1 line2
line3</p> WHY??? I think, the god HTML text is:
</h2>temp<p>line1<BR>line2<BR>line3</p>
------------------------------------------------------
------------------
2: How to use the @created, @author and @lastmod
tags in the procedures and
functions description?
If I use this:
{ Description
@param(param: input parameter)
@returns(output)
@author(Jónás Gergő <jon...@ch...>)
@created(2004.06.01.)
@lastmod(2004.06.01.)}
function func(param:string):String;
description, then a pasdoc add the HTML file is only
@param and @returns
tag... WHY??? And the more tags?
------------------------------------------------------
------------------
3: How to add the html output a local variables, and the
local variables
descriptions?
If I use this description to the main.pas:
function Tmainform.Encrypt(s: string): string; var
{ i temporary variables...}
i: integer;
then the pasdoc not added the local variables and local
variables
descriptions to the main.tmainform.html file in the
encrypt function
subsection...
------------------------------------------------------
------------------
4: If I use this unit:
unit Main;
interface
uses
Windows, Form, SysUtils, Variants, Classes, Controls,
Graphics;
type
TMainForm = class(TForm)
MainMenu1: TMainMenu;
Menu_Exit: TMenuItem;
private
public
end;
Var MainForm: TMainForm;
implementation
uses my_unit1, my_unit2;
{$R *.dfm}
..............
then the generated html file is:
uses
-Windows
-Messages
-SysUtils
-Variants
-Classes
-Controls
-Graphics
OK. But where is my units? (my_unit1, my_unit2)
------------------------------------------------------
------------------
Thx for answers, bye:
Jónás Gergő
---
Sent from sourceforge.net because pas...@li... is subscribed to https://sourceforge.net/p/pasdoc/feature-requests/
To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/pasdoc/admin/feature-requests/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |