Documentation is a file or set of files that come with a program which detail the programs operation.

learn more… | top users | synonyms (1)

0
votes
1answer
36 views

What does this mean in documentation: square bracket followed by comma ( [, )

Today this caught my attention on jQuery's API Documentation for the closest selector: .closest( selector [, context ] ) What exactly does [, context] mean? I know I can put a variable or jQuery ...
0
votes
0answers
8 views

Gdata Objective-C Client, Trying to post to Google Docs - getting 403, I think my post URL might be wrong

I think my post URL might be wrong - but if it is, I'm not sure what the right POST URL would be. My code is below. Class entryClass = NSClassFromString(@"GDataEntryStandardDoc"); ...
0
votes
0answers
9 views

Product documentation: Microsoft and F1-like

Our product already has documentation, but it uses MediaWiki and that's not being enough for us. I was thinking of using Atlassian Confluence, but there is the problem of offline documentation. Many ...
-2
votes
0answers
22 views

Documentation of Existing Code

I know it is very open question and I was not able to Fine proper solution from internet. I am analyzing existing code which have used multiple Algorithm and Business Logic.We do not have any document ...
0
votes
0answers
69 views

Are there tools for figuring out all possible return values of the function?

Oftentimes when writing documentation or tests one wants to know ALL function's return values. It can be hard to find out, as the function can call other functions and return what they return. Is ...
-3
votes
0answers
25 views

TYPO3 Extension: documentationtools [closed]

I like to document typo3-extension (extbase) code with tools like phpDocumentor2 What are your experiences? Which tools are possible? How do you document extensions?
1
vote
1answer
49 views

Should Doxygen documentation be placed before include guards?

Should Doxygen documentation be placed after include guards or before tchem; before or inside a namespace? Assue the header contains the declaration of a single class (context) and this is what I am ...
0
votes
0answers
14 views

Change formatting of Doxygen comment-blocks in VS2012

I use Doxygen to document my code. I like the JavaDoc style and I use it even in my C++ projects. /** * @file bitmap.h * @brief Header file for the Bitmap class. */ Now the default ...
0
votes
0answers
19 views

Where can I host API docs in javadoc and phpdoc format? [closed]

I'm trying to find a place to host API docs in javadoc and phpdoc format, something like readthedocs.org with webhooks into git would be ideal.
1
vote
0answers
22 views

Generate test plan from test method names and docstrings

I have a set of tests written using nose and I want to automatically create something like a test plan readable by non-programmers using sphinx or perhaps some other tool. class TestUser(): ...
2
votes
0answers
26 views

Doc for bison, flex files

I want to create 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 appear to support these ...
-3
votes
0answers
17 views

Best way to document a javascript framework? [closed]

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
0answers
11 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
11 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
1answer
21 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() { ...
3
votes
0answers
31 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 ...
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 ...
1
vote
2answers
36 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", ...
0
votes
1answer
20 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
45 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 ...
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")] ...
-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
37 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 ...
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 ...
4
votes
3answers
150 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 ...
0
votes
1answer
26 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 ...
-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.
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 # ...
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 ...
0
votes
1answer
31 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 ...
0
votes
0answers
15 views

how reference member comment in Sandcastle

Code sample : //<remarks> // look <see cref="Class2.DoSomething(object)" /> //</remarks> public class Class1 { } public class Class2 { //<summary>do something ...
1
vote
1answer
28 views

View XCode docset docs from terminal

Is there some tool that can allow me to view an installed DocSet as something like a manpage? Maybe something along the lines of ri in ruby, godoc in Go, etc? I do most of my Objective-C coding in ...
1
vote
0answers
19 views

Manual to Quickly: application preferences?

Where can one find a manual to Quickly, where it is written about using (=programming, how to connect widgets in PreferencesDialogWindow with preferences, and how to use them in the application) ...
0
votes
1answer
28 views

API Documentation [closed]

What's the best way to define and document an api for a new project. My project is about a web browser application with an integration with a third party software. We'll have an api for the web and ...
1
vote
1answer
39 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 ...
3
votes
1answer
27 views

How can I contribute to Doctrine documentation

I've been using Doctrine since a long time, and always felt the documentation is one its weakest spot. I've no problems myself looking in stackoverflow, irc and even looking at the code directly, but, ...
0
votes
0answers
28 views

Oracle document generation

I need to generate the documentation of an Oracle database. I use SQL Developer's Generate DB Doc tool, but the generated html it's empty ( it has all the links to tables, index etc, but that html ...
0
votes
0answers
20 views

C# documentation XamlGeneratedNamespace (Sandcastle)

I have created a documentation to my project which contains a several .xaml files and tens of .cs files. My problem is that after I have generated the documentation (using Sandcastle) there is also ...
0
votes
3answers
30 views

magento - documentation for public interface of magento core models

Let's say I have this code: $order = Mage::getModel('sales/order')->load($orderId); I would like to know what methods I can call on $order object. Is there any good online reference where I can ...
0
votes
1answer
24 views

Continuous user manual generation

Are there already solutions existing for "continuous documentation", e.g. documentation markup languages and build plugins for Jenkins/Hudson? I'm not talking about generating the API description, ...
0
votes
0answers
15 views

Customize ssis documenter

Hi everyone I'm trying to generate documentation for my SSIS packages. I found SSIS Documenter and it gives a lot of technical details. Is there any way to customize it: change it and add my own ...
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 ...
0
votes
3answers
43 views

Mapping and displaying interaction between classes

I've been working in complete isolation on quite a large piece of software and now I'm leaving my position and my colleague wants to know how it all works. A thing I wanted to include in the report is ...
-1
votes
1answer
40 views

Make @property private

Is there any way to make a @property private? /** * * @property {Object} shouldBePrivate but how? * */ ... I'm using jsdoc3 I want to be able to generate my documentation two times, one with ...
0
votes
0answers
17 views

How do i explain a grep marker to people not used to computers?

I am currently writing a manual for a program i designed. My output has grep markers in it like this marker: Texttexttext Where marker can be used in a grep clause to extract the text marker. ...

1 2 3 4 5 79