mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-23 00:46:16 -04:00
first-commit
This commit is contained in:
commit
325c322a27
207 changed files with 35989 additions and 0 deletions
26
doc/jsdoc-toolkit/app/handlers/FOODOC.js
Normal file
26
doc/jsdoc-toolkit/app/handlers/FOODOC.js
Normal file
|
@ -0,0 +1,26 @@
|
|||
/**
|
||||
This is the main container for the FOODOC handler.
|
||||
@namespace
|
||||
*/
|
||||
FOODOC = {
|
||||
};
|
||||
|
||||
/** The current version string of this application. */
|
||||
FOODOC.VERSION = "1.0";
|
||||
|
||||
FOODOC.handle = function(srcFile, src) {
|
||||
LOG.inform("Handling file '" + srcFile + "'");
|
||||
|
||||
return [
|
||||
new JSDOC.Symbol(
|
||||
"foo",
|
||||
[],
|
||||
"VIRTUAL",
|
||||
new JSDOC.DocComment("/** This is a foo. */")
|
||||
)
|
||||
];
|
||||
};
|
||||
|
||||
FOODOC.publish = function(symbolgroup) {
|
||||
LOG.inform("Publishing symbolgroup.");
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue