изменил иерархию файлов

This commit is contained in:
Aleksey Chichenkov 2018-09-24 19:03:29 +03:00
parent 9ef7ac0df9
commit dd1eed15cf
52 changed files with 1602 additions and 938 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
/**
*
* @library
* @group library
* @namespace v2
*/
function v2() {}

View File

@ -1,18 +0,0 @@
/**
* @manager
* @class DesktopTree
* @extends Trees.GlobalAttributeTree
* @memberof Trees
*/
function DesktopTree() {
}
/**
* @class Node
* @extends Trees.GlobalAttributeTree.Node
* @memberof Trees.DesktopTree
*/
function Node() {
}

View File

@ -1,157 +0,0 @@
/**
* Глобальное дерево, от которого отнаследованы все остальные. <br>
* Копирует идеологию ядра. <br>
* Ноды этого дерева имеют доступ только к списку своих потомков.
*
* @manager
* @class GlobalTree
* @memberof Trees
*/
function GlobalTree() {
/**
* Возвращает ссылку на ноду. В качестве идентификатора надо указать идентификатор ноды.<br>
* <br> Работает через промис.
*
* @public
* @function get
* @param {v2.integer} nodeId Уникальный идентификатор ноды в дереве
* @returns {tools.promise}
* @memberof Trees.GlobalTree
*/
this.get = function(nodeId) {
};
/**
* Позволяет удалить динамический атрибут ноды. <br>
* Возвращает булевое значение об операции
*
* @public
* @function remove
* @param {v2.string} nodeId Уникальный идентификатор ноды в дереве
* @returns {boolean}
* @memberof Trees.GlobalTree
*/
this.remove = function(nodeId) {
};
/**
* Возвращает адрес дерева в системе
*
* @public
* @function sys_addr
* @returns {v2.address}
* @memberof Trees.GlobalTree
*/
this.sys_addr = function() {
};
}
/**
* Нода дерева.<br>
* Представляет интефрейс для доступа к данным глобальной ноды в ядре.<br>
* Позволяет узнать потомков ноды<br>
*
* @class Node
* @memberof Trees.GlobalTree
*/
function Node() {
/**
* Возвращает ссылку на атрибут ноды.<br>
* <br> Работает через промис.
*
* @public
* @function get
* @param {v2.string} attributeName Имя атрибута
* @returns {tools.promise}
* @memberof Trees.GlobalTree.Node
*/
this.get = function(attributeName) {
};
/**
* Добавляет новый динамический атрибут в ноду.<br>
* Ничего не возвращает.
*
* @public
* @function add_node
* @param {v2.vc} _attrs
* @memberof Trees.GlobalTree.Node
*/
this.add_node = function(_attrs) {
};
/**
* Возвращает уникальный идентификатор ноды.
*
* @public
* @function id
* @returns {v2.integer}
* @memberof Trees.GlobalTree.Node
*/
this.id = function() {
};
/**
* Возвращает список потомков ноды.<br>
* <br> Работает через промис.
*
* @public
* @function children
* @returns {tools.promise}
* @memberof Trees.GlobalTree.Node
*/
this.children = function() {
};
/**
* Доступ к менеджеру детей
* @public
* @function cm
* @returns {Children}
* @memberof Trees.GlobalTree.Node
*/
this.cm = function() {
};
}
/**
* Интерфейс позволяющей пользователю работать с потомками ноды
*
* @manager
* @class Children
* @memberof Trees.GlobalTree.Node
*/
function Children() {
/**
* Возвращает список потомков ноды
*
* @public
* @function get
* @returns {v2.list(v2.integer.type)}
* @memberof Trees.GlobalTree.Node.Children
*/
this.children = function(attributeName) {
};
/**
* Возвращает тип ноды, по ее идентификатору
*
* @public
* @function get_type_by_id
* @returns {v2.model_type}
* @memberof Trees.GlobalTree.Node.Children
*/
this.get_type_by_id = function(attributeName) {
};
}

View File

@ -1,21 +0,0 @@
/**
* Created by Aleksey Chichenkov <a.chichenkov@initi.ru> on 9/17/18.
*/
/**
* @manager
* @class RemoteModulesTree
* @extends Trees.GlobalAttributeTree
* @memberof Trees
*/
function RemoteModulesTree() {
}
/**
* @class Node
* @extends Trees.GlobalAttributeTree.Node
* @memberof Trees.RemoteModulesTree
*/
function Node() {
}

View File

@ -1,18 +0,0 @@
/**
* @manager
* @class SchemeTree
* @extends Trees.GlobalTree
* @memberof Trees
*/
function SchemeTree() {
}
/**
* @class Node
* @extends Trees.GlobalTree.Node
* @memberof Trees.SchemeTree
*/
function Node() {
}

View File

@ -1,18 +0,0 @@
/**
* @manager
* @class UserAttributeTree
* @extends Trees.GlobalAttributeTree
* @memberof Trees
*/
function UserAttributeTree() {
}
/**
* @class Node
* @extends Trees.GlobalAttributeTree.Node
* @memberof Trees.UserAttributeTree
*/
function Node() {
}

View File

@ -0,0 +1,59 @@
/**
*
* @group providers_interface
* @namespace Platform
*/
function Platform() {
/**
* @name tm
* @public
* @type {Trees}
* @memberof Platform
*/
this.tm = new Trees();
/**
*
* @public
* @function mm
* @memberof Platform
* @returns {Models}
*/
this.mm = function () {
};
/**
*
* @public
* @function core_translations
* @memberof Platform
* @returns {CoreTranslations}
*/
this.core_translations = function () {
};
/**
*
* @public
* @function m_sys_addr
* @memberof Platform
* @returns {v2.address}
*/
this.m_sys_addr = function () {
};
/**
*
* @public
* @function m_address
* @memberof Platform
* @returns {v2.address}
*/
this.m_address = function () {
};
}

View File

@ -0,0 +1,79 @@
/**
*
* @group providers_interface
* @namespace ProvidersSystem
*/
function ProvidersSystem() {
/**
*
* @public
* @function start
* @memberof ProvidersSystem
*/
this.start = function () {
};
/**
*
* @public
* @function login
* @memberof ProvidersSystem
* @param _login {string}
* @param _password {string}
* @param _callback {function}
*/
this.login = function (_login, _password, _callback) {
};
/**
*
* @public
* @function break_connection
* @memberof ProvidersSystem
*/
this.break_connection = function () {
};
/**
* @name s_connected
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_connected = -1;
/**
* @name s_connecting
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_connecting = -1;
/**
* @name s_platform_up
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_up = -1;
/**
* @name s_platform_down
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_down = -1;
/**
* @name s_platform_broken
* @public
* @memberof ProvidersSystem
* @type {number}
*/
this.s_platform_broken = -1;
}

View File

@ -42,7 +42,7 @@ function GroupType() {
* @public
* @function attributes
* @memberof GroupTypes.GroupType
* @returns {v2.map(v2.string.type, v2.vc.type)}
* @returns {v2.map(v2.string, v2.vc)}
*/
this.attributes = function() {

View File

@ -2,7 +2,7 @@
* Менеджер тип групп.<br>
*
* @manager
* @group manager
* @namespace GroupTypes
*/
function GroupTypes() {
@ -13,9 +13,9 @@ function GroupTypes() {
* @function get
* @memberof GroupTypes
* @param {v2.model_type} groupType Адрес модели
* @returns {tools.promise}
* @returns {tools.promise(GroupTypes.GroupType)}
*/
this.get = function (_groupType) {
this.get = function (groupType) {
};
}

View File

@ -1,10 +1,9 @@
/**
* Менеджер моделей.<br>
* Представляет собой интерфейс для доступа ко всем моделям<br>
* Позволяет по адресу модели, получить на нее ссылку.<br>
* Менеджер моделей.
* Представляет собой интерфейс для доступа ко всем моделям
* Позволяет по адресу модели, получить на нее ссылку.
*
* @manager
* @group manager
* @namespace Models
*/
function Models() {
@ -14,7 +13,7 @@ function Models() {
* @public
* @function get
* @param {v2.address} address Адрес модели
* @returns {tools.promise.native}
* @returns {tools.promise(Models.Model)}
* @memberof Models
*/
this.get = function (address) {

View File

@ -1,7 +1,7 @@
/**
* Нода дерева.<br>
* Представляет интефрейс для доступа к данным устройства.<br>
* Позволяет получить список компонентов модели<br>
* Нода дерева.
* Представляет интефрейс для доступа к данным устройства.
* Позволяет получить список компонентов модели
*
* @class Model
* @memberof Models

View File

@ -1,8 +1,6 @@
/**
* Менеджер тип групп.<br>
*
* @manager
* @group manager
* @namespace ModelTypes
*/
function ModelTypes() {
@ -12,7 +10,7 @@ function ModelTypes() {
* @public
* @function get
* @param {v2.string} modelType Адрес модели
* @returns {tools.promise}
* @returns {tools.promise(ModelTypes.ModelType)}
* @memberof ModelTypes
*/
this.get = function (modelType) {

View File

@ -1,6 +1,6 @@
/**
* @class ModelType
* @manager
* @group manager
* @memberof ModelTypes
*/
function ModelType() {

View File

@ -0,0 +1,151 @@
/** @typedef {Publishers.Publisher.Items.Item} PublisherItem */
/** @typedef {Publishers.Publisher.Items.Item.Attributes.Attribute} PublisherItemAttribute */
/**
*
* @group manager
* @class Items
* @memberof Publishers.Publisher
*/
var Items = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItem)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function is_exist
* @memberof Publishers.Publisher.Items
* @param _id {v2.integer}
* @returns {boolean}
*/
this.is_exist = function (_id) {
};
/**
*
* @group manager
* @class Item
* @memberof Publishers.Publisher.Items
*/
var Item = function () {
/**
*
* @name id
* @public
* @memberof Publishers.Publisher.Items.Item
* @type {v2.integer}
*/
this.id = function () {
};
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items.Item
* @param _index {v2.integer}
* @returns {tools.promise(PublisherItemAttribute)}
*/
this.get = function (_index) {
};
};
};
/**
*
* @group manager
* @class Attributes
* @memberof Publishers.Publisher.Items.Item
*/
var Attributes = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Items.Item.Attributes
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItemAttribute)}
*/
this.get = function (_id) {
};
/**
*
* @public
* @function attributes
* @memberof Publishers.Publisher.Items.Item.Attributes
* @returns {v2.list(v2.string)}
*/
this.attributes = function () {}
/**
*
* @group manager
* @class Attribute
* @memberof Publishers.Publisher.Items.Item.Attributes
*/
var Attribute = function () {
/**
*
* @name s_size_change
* @public
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @type {number}
*/
this.s_size_change = -1;
/**
*
* @public
* @function name
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.string}
*/
this.name = function () {
};
/**
*
* @public
* @function value
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2}
*/
this.value = function () {
};
/**
*
* @public
* @function type
* @memberof Publishers.Publisher.Items.Item.Attributes.Attribute
* @returns {v2.type}
*/
this.type = function () {
}
};
};

View File

@ -0,0 +1,19 @@
/**
* Менеджер паблишеров.
*
* @group manager
* @namespace Publishers
*/
function Publishers() {
/**
*
* @public
* @function get
* @param {v2.address} address Адрес паблишера
* @returns {tools.promise(Publishers.Publisher)}
* @memberof Publishers
*/
this.get = function (address) {
};
}

View File

@ -0,0 +1,89 @@
/**
*
* @group manager
* @class Publisher
* @memberof Publishers
*/
function Publisher() {
/**
*
* @public
* @function address
* @memberof Publishers.Publisher
* @returns {v2.address}
*/
this.address = function () {
};
/**
*
* @public
* @function id
* @memberof Publishers.Publisher
* @returns {v2.address}
*/
this.id = function () {
};
/**
*
* @public
* @function headers
* @memberof Publishers.Publisher
* @returns {v2.list(v2.vc)}
*/
this.headers = function () {
};
/**
*
* @public
* @function get_reader
* @memberof Publishers.Publisher
* @param _column_name {v2.string}
* @param _sort {v2.integer}
* @returns {tools.promise(PublisherReader)}
*/
this.get_reader = function (_column_name, _sort) {
};
/**
*
* @public
* @function get_item
* @memberof Publishers.Publisher
* @param _id {v2.integer}
* @returns {tools.promise(PublisherItem)}
*/
this.get_item = function (_id) {
};
/**
*
* @public
* @function default_sort_column
* @returns {v2.string}
* @memberof Publishers.Publisher
*/
this.default_sort_column = function () {
};
/**
*
* @public
* @function default_sort
* @memberof Publishers.Publisher
* @returns {v2.integer}
*/
this.default_sort = function () {
};
}

View File

@ -0,0 +1,22 @@
/**
*
* @group manager
* @class Readers
* @memberof Publishers.Publisher
*/
var Readers = function () {
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Readers
* @param _column_name {v2.string}
* @param _sort {v2.integer}
* @returns {tools.promise(PublisherReader)}
*/
this.get = function (_column_name, _sort) {
};
};

View File

@ -0,0 +1,36 @@
/** @typedef {Publishers.Publisher.Readers.Reader.Index} PublisherReaderIndex */
/**
*
* @group manager
* @class Index
* @memberof Publishers.Publisher.Readers.Reader
*/
var Index = function () {
/**
*
* @name s_change
* @public
* @memberof Publishers.Publisher.Readers.Reader.Index
* @type {number}
*/
this.s_change = -1;
/**
*
* @public
* @function index
* @memberof Publishers.Publisher.Readers.Reader.Index
* @returns {v2.integer}
*/
this.index = function () {};
/**
*
* @public
* @function inst_id
* @memberof Publishers.Publisher.Readers.Reader.Index
* @returns {v2.integer}
*/
this.inst_id = function () {};
};

View File

@ -0,0 +1,54 @@
/** @typedef {Publishers.Publisher.Readers.Reader} PublisherReader */
/**
*
* @group manager
* @class Reader
* @memberof Publishers.Publisher.Readers
*/
var Reader = function () {
/**
*
* @name s_size_change
* @public
* @memberof Publishers.Publisher.Readers.Reader
* @type {number}
*/
this.s_size_change = -1;
/**
*
* @public
* @function get
* @memberof Publishers.Publisher.Readers.Reader
* @param _index {v2.integer}
* @returns {tools.promise(PublisherReaderIndex)}
*/
this.get = function (_index) {
};
/**
*
* @public
* @function size
* @memberof Publishers.Publisher.Readers.Reader
* @returns {v2.integer}
*/
this.size = function () {
};
/**
*
* @public
* @function check_index
* @memberof Publishers.Publisher.Readers.Reader
* @param _index {v2.integer}
* @returns {boolean}
*/
this.check_index = function (_index) {
}
};

View File

@ -0,0 +1,8 @@
/**
* @class Node
* @extends Trees.GlobalAttributeTree.Node
* @memberof Trees.DesktopTree
*/
function Node() {
}

View File

@ -0,0 +1,29 @@
/**
*
* sdfasdfasdf
* asdf
* asdfa
* sdfasd
* fasdf
* asdf
* asdfa
* sdfasdf
* asdf
* asdf
* asdf
* asdf
* asdfa
* sdf
* asdfsdfsdfasdfasdf
* sdfsdfsadffsda
* AAASS
*
*
* @group manager
* @class DesktopTree
* @extends Trees.GlobalAttributeTree
* @memberof Trees
*/
function DesktopTree() {
}

View File

@ -0,0 +1,10 @@
/**
* Атрибут ноды
*
* @group manager
* @class Attribute
* @memberof Trees.GlobalAttributeTree.Node.Attributes
*/
function Attribute() {
}

View File

@ -1,65 +1,7 @@
/**
* Отнаследовано от глобального дерева. <br>
* Ноды этого дерева имеют доступ к атрибутам
*
* @manager
* @class GlobalAttributeTree
* @extends Trees.GlobalTree
* @memberof Trees
*/
function GlobalAttributeTree() {
}
/**
* @class Node
* @extends Trees.GlobalTree.Node
* @memberof Trees.GlobalAttributeTree
*/
function Node() {
/**
* Возвращает список всех атрибутов, включая динамические <br>
* <br> Работает через промис.
*
* @public
* @function attributes
* @returns {tools.promise}
* @memberof Trees.GlobalAttributeTree.Node
*/
this.attributes = function() {
};
/**
* Возвращает список базовых атрибутов ноды (их нельзя удалить) <br>
* <br> Работает через промис.
*
* @public
* @function base_attributes
* @returns {tools.promise}
* @memberof Trees.GlobalAttributeTree.Node
*/
this.base_attributes = function() {
};
/**
* Возвращает менеджер атрибутов ноды.
*
* @public
* @function am
* @returns {tools.promise}
* @memberof Trees.GlobalAttributeTree.Node
*/
this.am = function() {
};
}
/**
* Интерфейс позволяющей пользователю работать с атрибутами ноды
*
* @manager
* @group manager
* @class Attributes
* @memberof Trees.GlobalAttributeTree.Node
*/
@ -152,4 +94,4 @@ function Attributes() {
this.remove = function(attributes) {
};
}
}

View File

@ -0,0 +1,44 @@
/**
* @class Node
* @extends Trees.GlobalTree.Node
* @memberof Trees.GlobalAttributeTree
*/
function Node() {
/**
* Возвращает список всех атрибутов, включая динамические <br>
* <br> Работает через промис.
*
* @public
* @function attributes
* @returns {tools.promise}
* @memberof Trees.GlobalAttributeTree.Node
*/
this.attributes = function() {
};
/**
* Возвращает список базовых атрибутов ноды (их нельзя удалить) <br>
* <br> Работает через промис.
*
* @public
* @function base_attributes
* @returns {tools.promise}
* @memberof Trees.GlobalAttributeTree.Node
*/
this.base_attributes = function() {
};
/**
* Возвращает менеджер атрибутов ноды.
*
* @public
* @function am
* @returns {tools.promise}
* @memberof Trees.GlobalAttributeTree.Node
*/
this.am = function() {
};
}

View File

@ -0,0 +1,12 @@
/**
* Отнаследовано от глобального дерева. <br>
* Ноды этого дерева имеют доступ к атрибутам
*
* @group manager
* @class GlobalAttributeTree
* @extends Trees.GlobalTree
* @memberof Trees
*/
function GlobalAttributeTree() {
}

View File

@ -0,0 +1,50 @@
/**
* Интерфейс позволяющей пользователю работать с потомками ноды
*
* @group manager
* @class Children
* @memberof Trees.GlobalTree.Node
*/
function Children() {
/**
*
* @name s_node_add
* @public
* @memberof Trees.GlobalTree.Node.Children
* @type {number}
*/
this.s_node_add = -1;
/**
*
* @name s_change
* @public
* @memberof Trees.GlobalTree.Node.Children
* @type {number}
*/
this.s_change = -1;
/**
* Возвращает список потомков ноды
*
* @public
* @function get
* @returns {v2.list(v2.integer.type)}
* @memberof Trees.GlobalTree.Node.Children
*/
this.children = function(attributeName) {
};
/**
* Возвращает тип ноды, по ее идентификатору
*
* @public
* @function get_type_by_id
* @returns {v2.model_type}
* @memberof Trees.GlobalTree.Node.Children
*/
this.get_type_by_id = function(attributeName) {
};
}

View File

@ -0,0 +1,72 @@
/**
* Нода дерева.<br>
* Представляет интефрейс для доступа к данным глобальной ноды в ядре.<br>
* Позволяет узнать потомков ноды<br>
*
* @class Node
* @memberof Trees.GlobalTree
*/
function Node() {
/**
* Возвращает ссылку на атрибут ноды.<br>
* <br> Работает через промис.
*
* @public
* @function get
* @param {v2.string} attributeName Имя атрибута
* @returns {tools.promise}
* @memberof Trees.GlobalTree.Node
*/
this.get = function(attributeName) {
};
/**
* Добавляет новый динамический атрибут в ноду.<br>
* Ничего не возвращает.
*
* @public
* @function add_node
* @param {v2.vc} _attrs
* @memberof Trees.GlobalTree.Node
*/
this.add_node = function(_attrs) {
};
/**
* Возвращает уникальный идентификатор ноды.
*
* @public
* @function id
* @returns {v2.integer}
* @memberof Trees.GlobalTree.Node
*/
this.id = function() {
};
/**
* Возвращает список потомков ноды.<br>
* <br> Работает через промис.
*
* @public
* @function children
* @returns {tools.promise}
* @memberof Trees.GlobalTree.Node
*/
this.children = function() {
};
/**
* Доступ к менеджеру детей
* @public
* @function cm
* @returns {Children}
* @memberof Trees.GlobalTree.Node
*/
this.cm = function() {
};
}

View File

@ -0,0 +1,41 @@
/**
*
* @group manager
* @class NodeTypes
* @memberof Trees.GlobalTree.Node
*/
function NodeTypes() {
/**
*
* @public
* @function node_types
* @returns {unknownType}
* @memberof Trees.GlobalTree.Node.NodeTypes
*/
this.node_types = function(attributeName) {
};
/**
*
* @public
* @function root_type
* @returns {unknownType}
* @memberof Trees.GlobalTree.Node.NodeTypes
*/
this.root_type = function(attributeName) {
};
/**
*
* @public
* @function get_type_by_id
* @param {unknownType} nodeType
* @returns {tools.promise(NodeType)}
* @memberof Trees.GlobalTree.Node.NodeTypes
*/
this.get = function(nodeType) {
};
}

View File

@ -0,0 +1,21 @@
/** @typedef {Trees.GlobalTree.Node.NodeTypes.NodeType} NodeType
/**
*
* @group manager
* @class NodeType
* @memberof Trees.GlobalTree.Node.NodeTypes
*/
function NodeType() {
/**
* Возвращает список потомков ноды
*
* @public
* @function attributes
* @returns {v2.vc}
* @memberof Trees.GlobalTree.Node.NodeTypes.NodeType
*/
this.attributes = function(attributeName) {
};
}

View File

@ -0,0 +1,50 @@
/**
* Глобальное дерево, от которого отнаследованы все остальные. <br>
* Копирует идеологию ядра. <br>
* Ноды этого дерева имеют доступ только к списку своих потомков.
*
* @group manager
* @class GlobalTree
* @memberof Trees
*/
function GlobalTree() {
/**
* Возвращает ссылку на ноду. В качестве идентификатора надо указать идентификатор ноды.<br>
* <br> Работает через промис.
*
* @public
* @function get
* @param {v2.integer} nodeId Уникальный идентификатор ноды в дереве
* @returns {tools.promise}
* @memberof Trees.GlobalTree
*/
this.get = function(nodeId) {
};
/**
* Позволяет удалить динамический атрибут ноды. <br>
* Возвращает булевое значение об операции
*
* @public
* @function remove
* @param {v2.string} nodeId Уникальный идентификатор ноды в дереве
* @returns {boolean}
* @memberof Trees.GlobalTree
*/
this.remove = function(nodeId) {
};
/**
* Возвращает адрес дерева в системе
*
* @public
* @function sys_addr
* @returns {v2.address}
* @memberof Trees.GlobalTree
*/
this.sys_addr = function() {
};
}

View File

@ -1,16 +1,16 @@
/**
* Менеджер деревьев.<br>
* Представляет собой интерфейс для доступа ко всем деревьям<br>
* Позволяет по тегу дерева получить на него ссылку.<br>
* На текущий момент содержит в себе: <br>
* - global_tree (Основное дерево)<br>
* - global_attribute_tree (Дерево, которое предоставляет доступ к атрибутам)<br>
* - desktop_tree (Представляет рабочий стол)<br>
* - remote_modules_tree (Представляет собой дерево сборщиков)<br>
* - scheme_tree (Топология)<br>
* - user_attribute_tree (Пользовательские данные)<br>
* Менеджер деревьев.
* Представляет собой интерфейс для доступа ко всем деревьям
* Позволяет по тегу дерева получить на него ссылку.
* На текущий момент содержит в себе:
* - global_tree (Основное дерево)
* - global_attribute_tree (Дерево, которое предоставляет доступ к атрибутам)
* - desktop_tree (Представляет рабочий стол)
* - remote_modules_tree (Представляет собой дерево сборщиков)
* - scheme_tree (Топология)
* - user_attribute_tree (Пользовательские данные)
*
* @manager
* @group manager
* @namespace Trees
*/
function Trees() {

View File

@ -0,0 +1,8 @@
/**
* @class Node
* @extends Trees.GlobalAttributeTree.Node
* @memberof Trees.RemoteModulesTree
*/
function Node() {
}

View File

@ -0,0 +1,9 @@
/**
* @group manager
* @class RemoteModulesTree
* @extends Trees.GlobalAttributeTree
* @memberof Trees
*/
function RemoteModulesTree() {
}

View File

@ -0,0 +1,8 @@
/**
* @class Node
* @extends Trees.GlobalTree.Node
* @memberof Trees.SchemeTree
*/
function Node() {
}

View File

@ -0,0 +1,9 @@
/**
* @group manager
* @class SchemeTree
* @extends Trees.GlobalTree
* @memberof Trees
*/
function SchemeTree() {
}

View File

@ -0,0 +1,9 @@
/**
* @group manager
* @class UserAttributeTree
* @extends Trees.GlobalAttributeTree
* @memberof Trees
*/
function UserAttributeTree() {
}

View File

@ -13,6 +13,9 @@ var pct = require('./static/scripts/parse_complex_type');
var htmlsafe = helper.htmlsafe;
var linkto = pct.linkto;
var replace_enters_to_br = pct.replace_enters_to_br;
var resolveAuthorLinks = helper.resolveAuthorLinks;
var hasOwnProp = Object.prototype.hasOwnProperty;
@ -238,6 +241,7 @@ function generate(title, docs, filename, resolveLinks) {
};
outpath = path.join(outdir, filename);
// console.log(docData)
html = view.render('container.tmpl', docData);
if (resolveLinks) {
@ -557,7 +561,8 @@ function buildNav(members) {
var render_explorer = function (_nss, _clss) {
var nav = "";
nav += render_menu_item("Managers", "manager", _nss, _clss, true);
nav += render_menu_item("Providers Interface", "providers_interface", _nss, _clss, true);
nav += render_menu_item("Providers Managers", "manager", _nss, _clss, true);
nav += render_menu_item("Libraries", "library", _nss, _clss, true);
return nav;
};
@ -609,7 +614,8 @@ var render_menu_item = function (_title, _type, _nss, _clss, _check_tags) {
var check_tags = function (_tags, _key) {
for (var a = 0; a < _tags.length; a++) {
var info = _tags[a];
if (info.title == _key) return true;
// console.log("TAGS",_key, _tags);
if (info.title == "group" && info.text == _key) return true;
}
return false;
};
@ -651,6 +657,7 @@ var find_first_members = function (_parent, _clss) {
return members;
};
global.typedefs = {};
/**
@param {TAFFY} taffyData See <http://taffydb.com/>.
@ -710,7 +717,16 @@ exports.publish = function(taffyData, opts, tutorials) {
data.sort('longname, version, since');
helper.addEventListeners(data);
data().each(function(doclet){
// console.log(doclet);
if(doclet.kind == "typedef") {
typedefs[doclet.longname] = doclet;
}
});
data().each(function(doclet) {
var sourcePath;
doclet.attribs = '';
@ -855,6 +871,7 @@ exports.publish = function(taffyData, opts, tutorials) {
// add template helpers
view.find = find;
view.linkto = linkto;
view.replace_enters_to_br = replace_enters_to_br;
view.resolveAuthorLinks = resolveAuthorLinks;
view.tutoriallink = tutoriallink;
view.htmlsafe = htmlsafe;

View File

@ -45,7 +45,9 @@ var recursive = function (_str, _class, _alias) {
var rx = /(.*?)\((.*)\)/im;
var res = _id.match(rx);
if(res == null) return helper.linkto(_id, (_alias ? _alias : _id), _class);
var _full_id = replace_type_def(_id);
if(res == null) return helper.linkto(_full_id, (_alias ? _alias : _id), _class);
//if (res == null) return _id;
var first = res[1];
@ -72,19 +74,30 @@ var recursive = function (_str, _class, _alias) {
};
var linkto = function (_id, _alias, _class) {
//console.log(_id, _alias)
// ns.longname, ns.name, "menu-title"
// remove all whitespaces
var res = recursive(_id, _class, _alias);
//console.log("result")
//console.log(res)
// /_id.match(rx);
return res;
return recursive(_id, _class, _alias);
};
var replace_type_def = function(_ln){
var td = typedefs[_ln];
if(!td) return _ln;
var link = td.type.names[0];
return link;
}
var replace_enters_to_br = function(_str){
// console.log(_str)
var out = _str;
while(out.match("\n")) out = out.replace("\n", "<br>");
// console.log(out);
return out;
}
module.exports = {
linkto: linkto
linkto: linkto,
replace_enters_to_br: replace_enters_to_br,
replace_type_def: replace_type_def
};

View File

@ -3,6 +3,13 @@
var isGlobalPage;
docs.forEach(function(doc, i) {
var replaces_description = doc.description ? self.replace_enters_to_br(doc.description): "";
//if(doc.longname == "Models.Model"){
console.log(replaces_description);
//}
?>
<?js
@ -45,7 +52,7 @@
<div class="container-overview">
<?js if (doc.kind === 'module' && doc.modules) { ?>
<?js if (doc.description) { ?>
<div class="description"><?js= doc.description ?></div>
<div class="description"><?js= replaces_description ?></div>
<?js } ?>
<?js doc.modules.forEach(function(module) { ?>
@ -55,7 +62,7 @@
<?js= self.partial('method.tmpl', doc) ?>
<?js } else { ?>
<?js if (doc.description) { ?>
<div class="description"><?js= doc.description ?></div>
<div class="description"><?js= replaces_description ?></div>
<?js } ?>
<?js= self.partial('details.tmpl', doc) ?>

View File

@ -11,7 +11,7 @@ var ryba = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eius
<div class="title"><span><?js= method.name ?></span></div>
<?js if(method.description) { ?>
<div class="description part bdotted"><?js= method.description ?></div>
<div class="description part bdotted"><?js= self.replace_enters_to_br(method.description) ?></div>
<?js } ?>
<div class="short bdotted part">