-
I checked again, and the prefs page has changed since I originally submitted the bug.
Now the "user info" text under "help&preferences" is an active link. It is here and only here that the user can change the signature. This is quite confusing because it is not the same look as the rest of the links, and it took me about 10 minutes to figure out that I could click on it.
/. user = davek...
2008-02-20 09:29:11 UTC in Slash
-
Someone screwed up big time. I have never been so frustrated with this site in my entire life. I tried to change my prefs, then tried to submit a bug report, and this is going on 2 hours now. Unbelievable.
I've been SEARCHING my preferences of slashdot, and my option to change my signature has VANISHED!?
Talk about the one important thing that everyone sees about my /. user. Even from...
2008-02-13 17:55:53 UTC in Slash
-
pas2dox is a essential part of our code maintenance system. I haven't found a free and open tool able to generate quality documentation for our 600,000 line delphi pascal system.
However, it hasn't been updated in 4 years. Is it unwise for me to count on this being around for a while?.
2007-08-10 18:08:25 UTC in Pascal To Doxygen Convertor
-
Going to the "hall of fame" page causes the status bar at the top to appear that I have logged out of the system. It presents me with a "login" button.
Going back to the homepage will show that I am still logged in, proving that the hall of fame page is lying to me.
-dave.
2007-01-10 15:37:10 UTC in Slash
-
This code will not parse in pas2dox:
const FieldList =
'PROCEDURES.PATIENTRECORDNUMBER,'+
'PROCEDURES.REFERRINGPHYSICIAN,'+
'PROCEDURES.ENDOSCOPIST,'+
'PROCEDURES.DATEOFPROCEDURE,'+
'PROCEDURES.TIMEOFPROCEDURE,'+
'PROCEDURES.PROCEDUREPROPOSED,'+
'PROCEDURES.INSTRUMENTS,'+
'PROCEDURES.ROOM,'+
'PROCEDURES.ADDENDUM_PROC,'+...
2006-12-21 19:57:45 UTC in Pascal To Doxygen Convertor
-
Consider this block of pascal code:
--------------------
procedure TfrmDictate.SaveMedia;
type
PMCI_Save_Parms = ^TMCI_Save_Parms;
TMCI_Save_Parms = record
dwCallback: DWord;
lpstrFileName: PAnsiChar; // name of file to save
end;
var
MySaveParms: TMCI_Save_Parms;
begin
[...]
-----------------------
pas2dox has no idea how to handle this construct. It...
2006-12-05 18:09:33 UTC in Pascal To Doxygen Convertor
-
any time a 'var' is found on its own in the implementation, pas2dox opens a C comment block, but never closes it. Observe:
----------------------------
unit Dictate
[...]
implementation
uses WaveUtilities, WavDataEntry, DBClient, Login, SkinUtils, DBINI_Fnc;
{$R *.DFM}
var
MyError, Flags: longint;
{*
* OpenMedia: open media
}
procedure TfrmDictate.OpenMedia;
[...]...
2006-12-05 18:06:07 UTC in Pascal To Doxygen Convertor
-
I tried the *.VBP extension and it seemed to parse every file. I'm not sure why it didn't work before.
I'm guessing that group files expect to contain project files, which in turn contain modules (source files). But that's just a guess.
2006-10-17 19:53:17 UTC in VBDOX
-
I'm using 2.1, and the contents of module-level @remarks is nowhere to be found in the output docs. It works peachy for everything but modules.
Can anyone confirm or deny this?.
2006-10-17 19:41:27 UTC in VBDOX
-
FYI: from stepping through the code (mostly clsFilterASP.cls), it appears that the parser is breaking on comment lines by stripping out the first single quote ('). After that, the parser sees the words as keywords, and bombs.
If I put TRIPPLE quotes (''') in front of the comment lines, it seems to work.
2006-10-17 19:31:04 UTC in VBDOX