Tagged Questions
1
vote
1answer
210 views
How do I add a Table of Contents to every page in my Sphinx Documentation?
I'm trying to replicate how the ToC shows up in the sidebar on this page: http://matplotlib.sourceforge.net/sampledoc/extensions.html
...but I can't find any doc explaining how to or "Show Source" on ...
3
votes
2answers
2k views
Change the Theme of Doxygen?
I don't really think the Doxygen HTML theme for documenting C code is good for documenting functions and procedures (though it is awesome for documenting OOP if using C++). So what I'm asking is can ...
0
votes
1answer
559 views
doxygen, python and function parameters
Doxygen get me docs similarly to
http://www.stack.nl/~dimitri/doxygen/examples/pyexample/html/classpyexample_1_1PyClass.html
But I want to see Functions with parameters similarly to c/c++.
Is there ...
0
votes
1answer
147 views
build documentation for xml file (ex. ebay api)
does anyone knows a documentation build tool for xml file that builds a documentation similar to ebay trading api documentation?
example the eBay trading api documentation scheme:
...
3
votes
2answers
588 views
Should I use @return self, this or the current class?
I have a method that return the current object, how do I document this?
/**
* set something
*
* @return this
*/
public function setSomething(){
// ...
return $this;
}
Or should ...
1
vote
4answers
587 views
.Net Framework documentation location
im working on a documentation project and i need to parse the .net framework documentation.
I want to use NDoc for that. I have successfully installed the .net framework and the msdn library. The ...
0
votes
1answer
377 views
Recommend me User Manual Maker
I need a tool or application which can extract my user manual documentations as HTML format and also in same standard.
I heard about HelpMan which is a nice application for creating docs. But it ...
0
votes
1answer
22 views
About clarity and javadoc
Opinions divided on this one ...
Guys, say you have a method defined as
public static String getTestName(JsonElement e) throws ParserException;
As a wanna-do-the-the-right-thing developer I'd like ...
3
votes
1answer
116 views
Are there any language neutral documentation frameworks out there?
I am looking to present consistent documentation for a project that spans python, erlang, c and obj-c. Is there a language neutral framework for generating api/user guide documentation out there? ...
1
vote
1answer
80 views
Should I document everyting in my method and test based on the documentation?
here is my question, as an example suppose i have a method to convert some types. something like this:
/// <summary>
/// Convierte el valor del objeto especificado a un valor equivalente de ...
8
votes
3answers
4k views
Advice for learning Linux x86-64 assembly & documentation
Does anyone have documentation pertaining to learning the fundamentals of Linux x86-64 assembly? I'm not sure whether or not to learn it as is, or to learn x86 first, and learn it later, but being as ...
