remove .idea
This commit is contained in:
parent
91736dbbaf
commit
e5798a7576
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="WEB_MODULE" version="4">
|
||||
<component name="NewModuleRootManager">
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
||||
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
||||
</content>
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/docs.iml" filepath="$PROJECT_DIR$/.idea/docs.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
@ -118,13 +118,14 @@ string.prototype = {
|
||||
"+=": function (_o) {},
|
||||
|
||||
/**
|
||||
* Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum
|
||||
*
|
||||
* @public
|
||||
* @function assign
|
||||
* @memberof v2.string
|
||||
* @param {v2.string} _string
|
||||
* @param {number} _first
|
||||
* @param {number} _last
|
||||
* @param {v2.string} _string asdfasfasdf
|
||||
* @param {number} _first afasdfasdfasdf
|
||||
* @param {number} _last asdfasfdasdfas
|
||||
* @returns {this}
|
||||
*/
|
||||
assign: function (_string, _first, _last) {},
|
||||
|
@ -69,7 +69,7 @@ function Attributes() {
|
||||
*
|
||||
* @public
|
||||
* @function attributes
|
||||
* @returns {v2.map(v2.string.type, v2.vc.type)}
|
||||
* @returns {v2.map(v2.string, v2.vc)}
|
||||
* @memberof Trees.GlobalAttributeTree.Node.Attributes
|
||||
*/
|
||||
this.attributes = function() {
|
||||
|
@ -9,12 +9,16 @@ var path = require('jsdoc/path');
|
||||
var taffy = require('taffydb').taffy;
|
||||
var template = require('jsdoc/template');
|
||||
var util = require('util');
|
||||
var pct = require('./static/scripts/parse_complex_type');
|
||||
|
||||
var htmlsafe = helper.htmlsafe;
|
||||
var linkto = helper.linkto;
|
||||
var linkto = pct.linkto;
|
||||
var resolveAuthorLinks = helper.resolveAuthorLinks;
|
||||
var hasOwnProp = Object.prototype.hasOwnProperty;
|
||||
|
||||
|
||||
|
||||
|
||||
var data;
|
||||
var view;
|
||||
|
||||
|
19
templates/initi/static/scripts/parse_complex_type.js
Normal file
19
templates/initi/static/scripts/parse_complex_type.js
Normal file
@ -0,0 +1,19 @@
|
||||
/**
|
||||
* Created by Aleksey Chichenkov <a.chichenkov@initi.ru> on 9/20/18.
|
||||
*/
|
||||
var helper = require('jsdoc/util/templateHelper');
|
||||
// var linkto = helper.linkto;
|
||||
|
||||
|
||||
var linkto = function (_id, _alias, _class) {
|
||||
// ns.longname, ns.name, "menu-title"
|
||||
|
||||
var rx = /(.*?)\((.*)\)/im;
|
||||
// /_id.match(rx);
|
||||
|
||||
return helper.linkto(_id, _alias, _class);
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
linkto: linkto
|
||||
};
|
Loading…
Reference in New Issue
Block a user