Tagged Questions
6
votes
4answers
524 views
Are there any conventions for writing POD comments for Perl?
I was able to find a page from Safari Books Online that provides a template, but having never written POD comments, I'm not sure how good it is or if it is missing anything that might be considered ...
5
votes
2answers
955 views
Documenting Node.js projects
I'm currently using JSDoc Toolkit to document my code, but it doesn't quite fit - namely, it seem to struggle with describing namespaces properly. Say you have two simple classes in each their files:
...
5
votes
4answers
159 views
Code Documentation - What and how? [closed]
This is a hypothetical question, not based on anything I'm working on at the moment but I was wondering about it earlier and I figured I'd ask people who might know more about it than I do.
The ...
5
votes
4answers
295 views
Selectively suppress XML Code Comments in C#?
We deliver a number of assemblies to external customers, but not all of the public APIs are officially supported. For example, due to less than optimal design choices sometimes a type must be ...
4
votes
0answers
1k views
Widely accepted methods for documenting PHP source code in an auto-doc way? [closed]
Possible Duplicate:
Automatic PHP Documentation Generation?
I'm new to PHP, and my current job requires me to pick up the language at an extremely quick pace.
I'm a documentation stickler. ...
2
votes
3answers
95 views
How to write documentation comments in ANSI C?
I can't find how to write comments in C. I mean I know about // and /* */, what I mean is where can I find good practices? Like if I have a function, how do I write the @param variable is the value ...
2
votes
2answers
89 views
C# Documentation generator that runs on mono?
I mainly use mono and now I would like to produce some HTML output of the inline xml documentation. I've found 3 documentation projects so far:
NDoc, which seems outdated and development has stopped ...
2
votes
0answers
110 views
Make SandCastle merge the all members page to the main type page
For each class in the project SandCastle creates (among others) two pages:
the main page, named T_class_full_name, with the description, Syntax, Inheritance Hierarchy and See Also
and the members ...
2
votes
1answer
175 views
is it possible to build a debugger around the java scripting engine?
we are using the java 6 scripting engine in our product, and now we are thinking on adding some debugging abilities.
my question is:
is it possible? does the java 6 scripting engine has the same ...
1
vote
2answers
94 views
Tips for documentation for beginners
I am new and has started working on a project which has no paperwork with them.
I and my team was told to do some documentation as we are working on the project.
It is made in c# .net and we are ...
1
vote
3answers
52 views
Are my doc-comments too verbose?
Here's a class template I wrote. It has two public functions (three if you count Instance(); it's a singleton) and four private functions. The code is less important; what I'd like is to ask you if ...
1
vote
0answers
424 views
howto create Quick Help enntry for custom functions in XCode
I still searched for this but without success.
I would like to create 'Quick Help' entries in XCode for custom classes.
Don't know Quick Help?
Select a function-name, right-click and choose 'Quick ...
0
votes
1answer
25 views
What do I need to cover in my documentation?
I'm writing my own documentation for a small ActionScript 3 library that I've written.
I'm trying to keep as close to the layout and content of the Adobe Livedocs as I can, while cleaning it up a ...
0
votes
0answers
16 views
Is there a docco variant that works with XML?
I tried patching pycco, the python version of docco to process XML but it turned out too difficult. Is there any fork of docco that would work with XML and multi-line comments like
<!-- this? ...
0
votes
3answers
196 views
Is there a fork of docco that accommodates JSDoc style comments?
I'm looking at using docco for JavaScript documentation, but a lot of my existing codebase uses JSDoc style comments. Is there a fork of docco that parses both the typical style and JSDoc style ...
0
votes
1answer
32 views
Is this documentation missing anything?
I've written this documentation of a rather simple class, but I feel it's not clear enough. Should I change anything?
/**
Pointer class that wraps resources loaded through the ResourceManager.
...
0
votes
2answers
116 views
Automatic INLINE Document Generation
First off, I'm not asking about how to generate documentation FROM PHP source. That's easy enough with libraries like Doxygen or PHPDocumentor. What I'm looking for is a way to automatically generate ...
0
votes
2answers
83 views
how should I document my application
We have developed an application in c# .net and aim to make it deployable within our intranet. We would like to have a solid documentation to go along with it but are unsure of the best platform to ...
0
votes
2answers
670 views
Documentation generator tool for BOTH Javascript and PHP
Do you know about a tool to easily create documentation for both Javascript and PHP code?
Something that takes comments in code similar to the one shown below:
...