Documentation is a file or set of files that come with a program which detail the programs operation.
1
vote
0answers
10 views
Doc for bison, flex files
I want to make a documentation for my interpreter, which is made with .y and .l files (bison/yacc and flex/lex files), and C files.
I wanted to use Doxygen, but it does not exists for theses files.
...
-3
votes
0answers
14 views
Best way to document a javascript framework?
What is the best way to document a JavaScript framework?
I'm looking for something which can export to PDF and doesn't require me to add any docblocks to my code.
Thanks :)
0
votes
1answer
31 views
HTML documentation tool
I have HTML part of code and I need to document it.
As output I want to see syntax highlight code where I can click even for attributes and see documentation for it.
Also I want to colorize some tags, ...
0
votes
1answer
16 views
google cloud endpoints discrepancy between documentation, and what works in my app
The documentation states you should load your api from javascript like this:
var ROOT = 'https://your_app_id.appspot.com/_ah/api';
gapi.client.load('your_app_id', 'v1', function() {
...
0
votes
1answer
10 views
Custom Doxygen Translations
I'm using Doxygen to build online "user documentation" for an application that supports simple Lua scripting of it's internal functions.
The application has the concepts of objects, properties and ...
0
votes
0answers
9 views
SharePoint and HelpNDoc [closed]
HelpNDoc can generate standard Windows .CHM help files and export into a navigable standard HTML structure. Does SharePoint search on/import standard HTML files generated by HelpNDoc?
0
votes
1answer
116 views
Code signing certificates compare/contrast other types
I'm trying to locate easy-to-understand information that tells me:
How a code signing certificate is similiar to/different from other types of SSL certificates
How many different types of ...
3
votes
0answers
30 views
Where is documentation on the embedding API for the Ruby interpreter?
I am looking for a comprehensive, online, documentation resource regarding the embedding of the Ruby interpreter into C or C++ programs, and the API(s) for that purpose.
The section on this in the ...
4
votes
1answer
672 views
Doxygen document C functions in Objective-C projects
I am programming a project in Objective-C. I have started to use Doxygen to document the project. A significant part of the project is C style functions. Unfortunately it is not documenting C ...
1
vote
2answers
33 views
Where does scaladoc look for the rootdoc.txt to create the root doc
This is a duplicate of Generate scaladoc for root package, however the Answer does not state where sbt doc looks for the rootdoc.txt.
I added
scalacOptions in doc ++= Seq("-doc-root-content", ...
1
vote
1answer
23 views
What is the semantics of the return value of the Android logging functions (e.g. Log.v() )?
The Android logging functions return an int. The documentation does not say anything about them. What does the return value mean?
When I try in my simple app, I get 18 for the following Log.v call:
...
0
votes
0answers
6 views
How do I show google spreadsheet data as text?
I'm using Google Sites to build a website that will show information from a spreadsheet. I don't want to embed the spreadsheet, or even a section of cells. I want the page to extract the data from a ...
0
votes
0answers
11 views
XSD documentation with Nokogiri
I'm currently writing a XML schema, and I'm using the <annotation> and <documentation> tag for the documentation of the fields. My problem is, that I can't find any good software that ...
0
votes
1answer
47 views
Dreamweaver / Filezilla / other FTP Client - summary of connections and edited files
is it somehow possible to get a summary of connections and edited files? Currently im using Dreamweaver and Filezilla, but i havent found a possibility to solve this.
Perfect would be something like :
...
2
votes
0answers
91 views
Spring and Java EE comparison - how to select features? [closed]
I trying to write thesis about comparison of Spring and Java EE. I want to touch a few topics e.g.
CDI and Spring DI,
Java EE Security and Spring Security,
Web Services,
JSF and Spring MVC
and ...
13
votes
5answers
8k views
Standard methods for documenting a RESTful API
I'm writing a specification for a RESTful API for a new internal web service. It's not hugely long and fairly simple, but even so, it's my first time using strict REST (as opposed to cheating for ...
0
votes
1answer
16 views
C++ Boost Docset
Is there a docset for Boost? I'ld like to add it to Dash for offline documentation search, and can't find one anywhere. All attempts of my own to build it have failed, rather spectacularly.
-2
votes
1answer
44 views
What does the double colon stand for in the Qt documentation?
I'm a newbie on Qt, and in the documentation, i don't understand a syntax prototype shown below:
Here is the syntax prototype of the function *addTab()* from QTabWidget class.
int ...
3
votes
2answers
328 views
API documentation via a gem
I'm trying to find out if there's a gem that can document an API by automatically detecting changes to the inputs/outputs of the endpoints and produce documentation (HTML or whatever) detailing the ...
11
votes
8answers
2k views
Xcode 4 - Documentation: How to show the Table of Contents?
simple question, but after jumping over to the new XCode 4 IDE and open the organizer and select the "Documentation", i can“t find a way how to display the "table of contents" of a visible class..
I ...
4
votes
3answers
375 views
Is there a quick way to retrieve documentation of OpenGL ES functions and symbols in Xcode?
While learning OpenGL ES 2.0 I find it inconvenient to look up OpenGL ES related symbols like glBindFramebuffer online. Maybe there is a better way? Is there a better documentation browser for OpenGL ...
13
votes
2answers
2k views
How to write C++ comments that show up in Intellisense?
I'm programming in C++ using Visual Studio 2010 Ultimate. I want to document some functions and I want the documentation to show up in Intellisense.
According to MSDN, I just need to put the comment ...
0
votes
0answers
32 views
DataAnnotations and Mvc attributes specification describing what html they render in editor and display templates
I want to be able to create custom templates saving whole flavor of MVC 4 attributes functionality.
For example if I have model:
public class SomeModel
{
[UIHint("MyPartial")]
...
0
votes
1answer
34 views
Document an application server
Does anyone have a Server Documentation Template they would be willing to share? I used to work on an application server (Linux) for a while and now I have to document everything in order to deliver ...
-2
votes
0answers
7 views
Network discover via SNMP [closed]
I'am looking at publication about discovering network via snmp using C(CPP) lang. Can you recommend something? Or maybe a tool (GPL) where I can see the code?
0
votes
0answers
34 views
iOS CommonCrypto reference
I'm trying to find some sort of reference for the Apple's CommonCrypto library, because apparently Apple doesn't have any obvious link for that, and the ones given by Google are outdated, like this ...
0
votes
0answers
20 views
non-root man pages with Linux-Ubuntu [migrated]
I'm working on a Linux-Ubuntu server as non-root user. I created a small application and because I'm not a privileged user I'm going to install it under $HOME/bin directory (this directory is in the ...
53
votes
4answers
5k views
How can I create annotated source code like underscore.js?
I absolutely love the annotated source code that accompanies the underscore.js library: http://documentcloud.github.com/underscore/docs/underscore.html
How did they do that?
Is there a script ...
2
votes
4answers
437 views
Documenting a Access Application for Developers
I need to document a MS-Access application that was created, developed and maintained completely by a power-user over 10 years.
This is an interesting situation because what they want is a manual ...
1
vote
2answers
34 views
How to keep track of my data structures?
I'm a javascript developer for a year now but I lack some architectural/engineering background as I was lazy in college.
In the beginning I was writing small scripts with relatively small and simple ...
12
votes
5answers
24k views
How do I add the Java API documentation to Eclipse?
I have downloaded Java API documentation from http://www.oracle.com/technetwork/java/javase/downloads/index.html#docs and have supposedly attached it to Eclipse using the
...
4
votes
3answers
147 views
Is switch case a loop or a conditional construct?
I was asked this question in an interview.
I replied that it was a conditional construct because
it executes once, unlike a loop which has the capability to execute multiple times.
There is no loop ...
3
votes
4answers
7k views
Where can I download the Android SDK Documentation?
I know that I can view the Documentation online. But I'm struggling to find a site where I can download the SDK Documentation to keep a copy on my offline PC.
Can anyone point me in the right ...
1
vote
7answers
3k views
Tools to draw and write software project roadmap, eg plans, schedules, tasks for developers?
What are the best tools [commercial and free]
to draw and write software project roadmap,
eg plans, schedules, deadline dates, tasks for developers?
0
votes
1answer
23 views
Code hinting method properties in PhpStorm
Suppose I have the following class:
namespace Acme\SuperBundle\Resources;
use \DOMDocument;
/**
* Class XMLAnswerParser
* @package Acme\SuperBundle\Resources
* @author Quant
* @param \DOMDocument ...
0
votes
2answers
40 views
Framemaker TOC Layout
I have a book in Adobe Framemaker and created a TOC. The Problem now is that I can't assign my master page to my body page. Also the TOC doesn't contain any of my paragraph and character formats. Thx ...
1
vote
1answer
38 views
How do I avoid “SEVERE: Duplicate ID” warnings for my autodoc'd modules in Sphinx?
I'm using rST/Sphinx to document my Python, however when building it's throwing warnings such as
...Code/doc/code.rst:3: SEVERE: Duplicate ID: "module-toast".
My Python source files are documented ...
1
vote
7answers
3k views
Tool to Document SQL Server Schema
Can anyone recommend a free (or cheap) program out there which allows me to easily document what certain tables and fields are used for in our applications? Ideally, when we update a fields type, it ...
2
votes
1answer
28 views
Sphinx documentation and autodoc-skip-member
I'm building my sphinx doc for a django project the following way:
sphinx-apidoc app -o docs/source/app --force
Now it includes all of the South migrations which I don't want to have in my ...
6
votes
7answers
6k views
Android — How to I get a list of all available intent filters?
I have search Android docs and for some insane reason I am not able to find the list of all available intent filters.
I am finding an intent filter, which would do something like , notifying me ...
-1
votes
0answers
18 views
How to do a Architectural documentation for iphone application [closed]
I am new guy for documentation work. I need to create architectural documentation for my iPhone app. Is there any sample to create.
2
votes
3answers
159 views
Software for Creating Documentation? (Large Source Code)
I am working on a project which has very less documentation and that too in form of comments. This thing is wasting lot of my time. I am working through the code with the help of tools like Source ...
2
votes
0answers
201 views
Write UriTemplate to help documentation for a WCF serivce
We're using the standard visual studio documentation to document methods and parameters which are published to the .xml file generated when compiled.
However, it would be extremely helpful to include ...
0
votes
1answer
381 views
Include local images in RDoc
I have created an image with a "visual" tool that I want to include on the front page of my rdoc documentation. The front page is defined in a *.rdoc . I have found it possible to include external ...
0
votes
1answer
20 views
How can I insert a bullet (<li>) element in Markdown-formatted YARD documentation
I am using YARDoc with Markdown to document my Ruby code, and want to have an unordered list (HTML "bullets") in the documentation for a method. Here's what I have so far:
$ cat file.rb
class Foo
# ...
0
votes
1answer
30 views
Reading incomplete API docs - how do you know what all your [options] are if they are not listed?
How do you go about finding all the [options] available to you when they are not listed out?
In the case of mongoose for nodejs:
http://mongoosejs.com/docs/api.html#schema_Schema-index
Examples ...
2
votes
1answer
34 views
“Docstring processing tools” following PEP 257?
PEP 257 says:
Docstring processing tools will strip a uniform amount of indentation from the second and further lines of the docstring, equal to the minimum indentation of all non-blank lines ...
1
vote
0answers
24 views
Where to find opa api docs
http://doc.opalang.org/api has has been down for several days, is there a mirror
Thanks
0
votes
0answers
11 views
iOS App Documentation and class diagram generation tools [duplicate]
I inherited an iOS 5 app which has no documentation.
Could someone suggest any tool/s that automatically generate class diagram/s and documentation for this app?
Im willing to pay for something ...
2
votes
2answers
72 views
Implementing a application HTML help system
We want to implement a application help and documentation system. It should be based on HTML, because there are a lot of existing files and it gives us the most flexibility. Currently we use CHM ...




