├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── eclipse-formatter.xml ├── ncms-docs ├── README.md ├── artwork │ ├── fonts │ │ └── fira │ │ │ ├── 8162.ttf │ │ │ ├── 8163.ttf │ │ │ ├── 8165.ttf │ │ │ └── 8170.ttf │ ├── ncms-logo.svg │ ├── ncms-logo2.svg │ ├── ncms-logo3.png │ ├── ncms-logo4.png │ ├── ncms-logo5.png │ ├── ncms-logo6.png │ └── ncms-logo7.png ├── ncms-docs-en │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── _static │ │ └── images │ │ │ └── .gitkeep │ ├── _templates │ │ └── layout.html │ ├── conf.py │ ├── doc │ │ ├── conf │ │ │ └── conf.rst │ │ ├── cookbook │ │ │ └── cookbook.rst │ │ ├── db │ │ │ ├── db.rst │ │ │ ├── db2.rst │ │ │ └── postgresql.rst │ │ ├── deployments │ │ │ ├── deployments.rst │ │ │ ├── onpath │ │ │ │ ├── img │ │ │ │ │ └── ncms-onpath-deployment.png │ │ │ │ └── index.rst │ │ │ └── onvhost │ │ │ │ └── index.rst │ │ ├── extending │ │ │ └── extending.rst │ │ ├── features.rst │ │ ├── gettingstarted │ │ │ ├── arch.rst │ │ │ ├── gettingstarted.rst │ │ │ ├── img │ │ │ │ ├── footer.png │ │ │ │ ├── ncms_arch1.png │ │ │ │ ├── ncms_arch2.png │ │ │ │ ├── preview.png │ │ │ │ ├── step1.png │ │ │ │ ├── step10.png │ │ │ │ ├── step11.png │ │ │ │ ├── step2.png │ │ │ │ ├── step3.png │ │ │ │ ├── step4.png │ │ │ │ ├── step5.png │ │ │ │ ├── step6.png │ │ │ │ ├── step7.png │ │ │ │ ├── step8.png │ │ │ │ └── step9.png │ │ │ └── newproject.rst │ │ ├── httl │ │ │ ├── httl.rst │ │ │ ├── httl_advanced.rst │ │ │ ├── httl_basics.rst │ │ │ ├── httl_lib.rst │ │ │ └── httl_ncms.rst │ │ ├── misc │ │ │ ├── img │ │ │ │ ├── tstyles_img1.png │ │ │ │ └── tstyles_img2.png │ │ │ ├── misc.rst │ │ │ └── tstyles.rst │ │ ├── soclinks │ │ │ ├── ogmeta.rst │ │ │ └── soclinks.rst │ │ └── ui │ │ │ ├── am │ │ │ ├── alias │ │ │ │ └── alias.rst │ │ │ ├── am.rst │ │ │ ├── asmref │ │ │ │ ├── asmref.rst │ │ │ │ └── img │ │ │ │ │ ├── asmref_img1.png │ │ │ │ │ ├── asmref_img2.png │ │ │ │ │ ├── asmref_img3.png │ │ │ │ │ ├── asmref_img4.png │ │ │ │ │ └── asmref_img5.png │ │ │ ├── attributes_access.rst │ │ │ ├── boolean │ │ │ │ ├── boolean.rst │ │ │ │ └── img │ │ │ │ │ └── boolean_img1.png │ │ │ ├── breadcrumbs │ │ │ │ ├── breadcrumbs.rst │ │ │ │ └── img │ │ │ │ │ └── breadcrumbs_img1.png │ │ │ ├── core │ │ │ │ ├── core.rst │ │ │ │ └── img │ │ │ │ │ └── core_img1.png │ │ │ ├── date │ │ │ │ ├── date.rst │ │ │ │ └── img │ │ │ │ │ ├── date_img1.png │ │ │ │ │ └── date_img2.png │ │ │ ├── fileref │ │ │ │ ├── fileref.rst │ │ │ │ └── img │ │ │ │ │ ├── fileref_img1.png │ │ │ │ │ ├── fileref_img2.png │ │ │ │ │ └── fileref_img3.png │ │ │ ├── image │ │ │ │ ├── image.rst │ │ │ │ └── img │ │ │ │ │ ├── image_img1.png │ │ │ │ │ ├── image_img2.png │ │ │ │ │ ├── image_img3.png │ │ │ │ │ └── image_img4.png │ │ │ ├── mainpage │ │ │ │ ├── img │ │ │ │ │ └── mainpage_img1.png │ │ │ │ └── mainpage.rst │ │ │ ├── pageref │ │ │ │ ├── img │ │ │ │ │ ├── pageref_img1.png │ │ │ │ │ ├── pageref_img2.png │ │ │ │ │ └── pageref_img3.png │ │ │ │ └── pageref.rst │ │ │ ├── richref │ │ │ │ ├── img │ │ │ │ │ ├── richref_img1.png │ │ │ │ │ ├── richref_img2.png │ │ │ │ │ └── richref_img3.png │ │ │ │ └── richref.rst │ │ │ ├── select │ │ │ │ ├── img │ │ │ │ │ ├── select_img1.png │ │ │ │ │ └── select_img2.png │ │ │ │ └── select.rst │ │ │ ├── string │ │ │ │ ├── img │ │ │ │ │ └── string_img1.png │ │ │ │ └── string.rst │ │ │ ├── table │ │ │ │ ├── img │ │ │ │ │ ├── table_img1.png │ │ │ │ │ ├── table_img2.png │ │ │ │ │ ├── table_img3.png │ │ │ │ │ ├── table_img4.png │ │ │ │ │ ├── table_img5.png │ │ │ │ │ └── table_img6.png │ │ │ │ └── table.rst │ │ │ ├── tree │ │ │ │ ├── img │ │ │ │ │ ├── tree_img1.png │ │ │ │ │ ├── tree_img2.png │ │ │ │ │ ├── tree_img3.png │ │ │ │ │ ├── tree_img4.png │ │ │ │ │ └── tree_img5.png │ │ │ │ └── tree.rst │ │ │ ├── webref │ │ │ │ ├── img │ │ │ │ │ ├── webref_img1.png │ │ │ │ │ ├── webref_img2.png │ │ │ │ │ └── webref_img3.png │ │ │ │ └── webref.rst │ │ │ └── wiki │ │ │ │ ├── img │ │ │ │ ├── wiki_img1.png │ │ │ │ ├── wiki_img10.png │ │ │ │ ├── wiki_img11.png │ │ │ │ ├── wiki_img12.png │ │ │ │ ├── wiki_img13.png │ │ │ │ ├── wiki_img14.png │ │ │ │ ├── wiki_img15.png │ │ │ │ ├── wiki_img16.png │ │ │ │ ├── wiki_img17.png │ │ │ │ ├── wiki_img18.png │ │ │ │ ├── wiki_img19.png │ │ │ │ ├── wiki_img2.png │ │ │ │ ├── wiki_img20.png │ │ │ │ ├── wiki_img21.png │ │ │ │ ├── wiki_img22.png │ │ │ │ ├── wiki_img23.png │ │ │ │ ├── wiki_img24.png │ │ │ │ ├── wiki_img25.png │ │ │ │ ├── wiki_img26.png │ │ │ │ ├── wiki_img28.png │ │ │ │ ├── wiki_img29.png │ │ │ │ ├── wiki_img3.png │ │ │ │ ├── wiki_img30.png │ │ │ │ ├── wiki_img31.png │ │ │ │ ├── wiki_img32.png │ │ │ │ ├── wiki_img33.png │ │ │ │ ├── wiki_img34.png │ │ │ │ ├── wiki_img4.png │ │ │ │ ├── wiki_img5.png │ │ │ │ ├── wiki_img6.png │ │ │ │ ├── wiki_img7.png │ │ │ │ ├── wiki_img8.png │ │ │ │ └── wiki_img9.png │ │ │ │ └── wiki.rst │ │ │ ├── amgr │ │ │ ├── amgr.rst │ │ │ └── img │ │ │ │ ├── amgr_img1.png │ │ │ │ ├── amgr_img10.png │ │ │ │ ├── amgr_img11.png │ │ │ │ ├── amgr_img2.png │ │ │ │ ├── amgr_img3.png │ │ │ │ ├── amgr_img4.png │ │ │ │ ├── amgr_img5.png │ │ │ │ ├── amgr_img6.png │ │ │ │ ├── amgr_img7.png │ │ │ │ ├── amgr_img8.png │ │ │ │ ├── amgr_img9.png │ │ │ │ ├── amgr_news.png │ │ │ │ ├── amgr_other.png │ │ │ │ ├── amgr_page.png │ │ │ │ └── amgr_template.png │ │ │ ├── img │ │ │ └── ui_img1.png │ │ │ ├── mmgr │ │ │ ├── img │ │ │ │ ├── mmgr_img1.png │ │ │ │ ├── mmgr_img10.png │ │ │ │ ├── mmgr_img2.png │ │ │ │ ├── mmgr_img3.png │ │ │ │ ├── mmgr_img4.png │ │ │ │ ├── mmgr_img5.png │ │ │ │ ├── mmgr_img6.png │ │ │ │ ├── mmgr_img7.png │ │ │ │ ├── mmgr_img8.png │ │ │ │ └── mmgr_img9.png │ │ │ └── mmgr.rst │ │ │ ├── mtt │ │ │ ├── abt │ │ │ │ ├── sample1 │ │ │ │ │ ├── img │ │ │ │ │ │ ├── screen1.png │ │ │ │ │ │ ├── screen10.png │ │ │ │ │ │ ├── screen11.png │ │ │ │ │ │ ├── screen12.png │ │ │ │ │ │ ├── screen2.png │ │ │ │ │ │ ├── screen3.png │ │ │ │ │ │ ├── screen4.png │ │ │ │ │ │ ├── screen5.png │ │ │ │ │ │ ├── screen6.png │ │ │ │ │ │ ├── screen7.png │ │ │ │ │ │ ├── screen8.png │ │ │ │ │ │ └── screen9.png │ │ │ │ │ └── index.rst │ │ │ │ └── sample2 │ │ │ │ │ ├── img │ │ │ │ │ ├── screen1.png │ │ │ │ │ ├── screen2.png │ │ │ │ │ ├── screen3.png │ │ │ │ │ ├── screen4.png │ │ │ │ │ ├── screen5.png │ │ │ │ │ ├── screen6.png │ │ │ │ │ └── screen8.png │ │ │ │ │ └── index.rst │ │ │ ├── mtt.rst │ │ │ └── tp │ │ │ │ ├── img │ │ │ │ ├── tp_img1.png │ │ │ │ ├── tp_img10.png │ │ │ │ ├── tp_img11.png │ │ │ │ ├── tp_img12.png │ │ │ │ ├── tp_img13.png │ │ │ │ ├── tp_img14.png │ │ │ │ ├── tp_img15.png │ │ │ │ ├── tp_img16.png │ │ │ │ ├── tp_img18.png │ │ │ │ ├── tp_img4.png │ │ │ │ ├── tp_img5.png │ │ │ │ ├── tp_img6.png │ │ │ │ ├── tp_img7.png │ │ │ │ ├── tp_img8.png │ │ │ │ └── tp_img9.png │ │ │ │ └── index.rst │ │ │ ├── news │ │ │ ├── img │ │ │ │ ├── add.png │ │ │ │ ├── news_img10.png │ │ │ │ ├── news_img11.png │ │ │ │ ├── news_img12.png │ │ │ │ ├── news_img13.png │ │ │ │ ├── news_img15.png │ │ │ │ ├── news_img16.png │ │ │ │ ├── news_img2.png │ │ │ │ ├── news_img3.png │ │ │ │ ├── news_img4.png │ │ │ │ ├── news_img5.png │ │ │ │ ├── news_img6.png │ │ │ │ ├── news_img7.png │ │ │ │ ├── news_img8.png │ │ │ │ └── news_img9.png │ │ │ └── news.rst │ │ │ ├── pmgr │ │ │ ├── img │ │ │ │ ├── pmgr_img1.png │ │ │ │ ├── pmgr_img2.png │ │ │ │ ├── pmgr_img3.png │ │ │ │ ├── pmgr_img4.png │ │ │ │ ├── pmgr_img5.png │ │ │ │ ├── pmgr_img6.png │ │ │ │ └── pmgr_img7.png │ │ │ └── pmgr.rst │ │ │ ├── ui.rst │ │ │ ├── umgr │ │ │ ├── img │ │ │ │ ├── umgr_img1.png │ │ │ │ └── umgr_img2.png │ │ │ └── umgr.rst │ │ │ └── visual │ │ │ ├── img │ │ │ ├── visual_img1.png │ │ │ ├── visual_img2.png │ │ │ └── visual_img3.png │ │ │ └── visual.rst │ ├── files │ │ └── .gitkeep │ ├── images │ │ └── .gitkeep │ ├── index.rst │ ├── ncms.png │ ├── pom.xml │ └── sphinxext │ │ ├── sphinx_material_theme │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── analytics.html │ │ ├── config.rb │ │ ├── defindex.html │ │ ├── domainindex.html │ │ ├── genindex-single.html │ │ ├── genindex-split.html │ │ ├── genindex.html │ │ ├── globaltoc.html │ │ ├── layout.html │ │ ├── localtoc.html │ │ ├── opensearch.xml │ │ ├── page.html │ │ ├── relations.html │ │ ├── scss │ │ │ ├── _admonitions.scss │ │ │ ├── _btt.scss │ │ │ ├── _code.scss │ │ │ ├── _figures.scss │ │ │ ├── _fonts.scss │ │ │ ├── _index.scss │ │ │ ├── _lists.scss │ │ │ ├── _search.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme_variables.scss │ │ │ ├── materialize │ │ │ │ └── components │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _cards.scss │ │ │ │ │ ├── _collapsible.scss │ │ │ │ │ ├── _color.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ ├── _global.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _icons-material-design.scss │ │ │ │ │ ├── _materialbox.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modal.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _normalize.scss │ │ │ │ │ ├── _prefixer.scss │ │ │ │ │ ├── _preloader.scss │ │ │ │ │ ├── _roboto.scss │ │ │ │ │ ├── _sideNav.scss │ │ │ │ │ ├── _slider.scss │ │ │ │ │ ├── _table_of_contents.scss │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ ├── _toast.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _typography.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── _waves.scss │ │ │ │ │ └── date_picker │ │ │ │ │ ├── _default.date.scss │ │ │ │ │ ├── _default.scss │ │ │ │ │ └── _default.time.scss │ │ │ └── theme.scss │ │ ├── search.html │ │ ├── searchbox.html │ │ ├── searchresults.html │ │ ├── sourcelink.html │ │ ├── static │ │ │ ├── debug.addIndicators.js │ │ │ ├── doctools.js │ │ │ ├── file.png │ │ │ ├── font │ │ │ │ ├── material-design-icons │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Material-Design-Icons.eot │ │ │ │ │ ├── Material-Design-Icons.svg │ │ │ │ │ ├── Material-Design-Icons.ttf │ │ │ │ │ ├── Material-Design-Icons.woff │ │ │ │ │ └── Material-Design-Icons.woff2 │ │ │ │ ├── mt-sphinx │ │ │ │ │ ├── mt-sphinx.eot │ │ │ │ │ ├── mt-sphinx.svg │ │ │ │ │ ├── mt-sphinx.ttf │ │ │ │ │ └── mt-sphinx.woff │ │ │ │ └── roboto │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ ├── Roboto-Light.woff │ │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ │ └── Roboto-Thin.woff2 │ │ │ ├── jquery.js │ │ │ ├── materialize.js │ │ │ ├── materialize.min.js │ │ │ ├── scrollmagic.js │ │ │ ├── scrollmagic.min.js │ │ │ ├── searchtools.js_t │ │ │ ├── theme.css │ │ │ ├── theme.js_t │ │ │ ├── underscore.js │ │ │ └── websupport.js │ │ └── theme.conf │ │ └── youtube │ │ └── youtube.py ├── ncms-docs-ru │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── _static │ │ └── images │ │ │ └── .gitkeep │ ├── _templates │ │ └── layout.html │ ├── conf.py │ ├── doc │ │ ├── conf │ │ │ └── conf.rst │ │ ├── cookbook │ │ │ └── cookbook.rst │ │ ├── db │ │ │ ├── db.rst │ │ │ ├── db2.rst │ │ │ └── postgresql.rst │ │ ├── deployments │ │ │ ├── deployments.rst │ │ │ ├── onpath │ │ │ │ ├── img │ │ │ │ │ └── ncms-onpath-deployment.png │ │ │ │ └── index.rst │ │ │ └── onvhost │ │ │ │ └── index.rst │ │ ├── extending │ │ │ └── extending.rst │ │ ├── features.rst │ │ ├── gettingstarted │ │ │ ├── arch.rst │ │ │ ├── gettingstarted.rst │ │ │ ├── img │ │ │ │ ├── ncms_arch1.png │ │ │ │ ├── ncms_arch2.png │ │ │ │ ├── step1.png │ │ │ │ ├── step10.png │ │ │ │ ├── step11.png │ │ │ │ ├── step2.png │ │ │ │ ├── step3.png │ │ │ │ ├── step4.png │ │ │ │ ├── step5.png │ │ │ │ ├── step6.png │ │ │ │ ├── step7.png │ │ │ │ ├── step8.png │ │ │ │ └── step9.png │ │ │ └── newproject.rst │ │ ├── httl │ │ │ ├── httl.rst │ │ │ ├── httl_advanced.rst │ │ │ ├── httl_basics.rst │ │ │ ├── httl_lib.rst │ │ │ └── httl_ncms.rst │ │ ├── misc │ │ │ ├── dadata.rst │ │ │ ├── img │ │ │ │ ├── dadata_suggestions.png │ │ │ │ ├── tstyles_img1.png │ │ │ │ └── tstyles_img2.png │ │ │ ├── misc.rst │ │ │ └── tstyles.rst │ │ ├── soclinks │ │ │ ├── ogmeta.rst │ │ │ ├── soclinks.rst │ │ │ └── uptolike.rst │ │ └── ui │ │ │ ├── am │ │ │ ├── alias │ │ │ │ └── alias.rst │ │ │ ├── am.rst │ │ │ ├── asmref │ │ │ │ ├── asmref.rst │ │ │ │ └── img │ │ │ │ │ ├── asmref_img1.png │ │ │ │ │ ├── asmref_img2.png │ │ │ │ │ ├── asmref_img3.png │ │ │ │ │ ├── asmref_img4.png │ │ │ │ │ └── asmref_img5.png │ │ │ ├── attributes_access.rst │ │ │ ├── boolean │ │ │ │ ├── boolean.rst │ │ │ │ └── img │ │ │ │ │ └── boolean_img1.png │ │ │ ├── breadcrumbs │ │ │ │ ├── breadcrumbs.rst │ │ │ │ └── img │ │ │ │ │ └── breadcrumbs_img1.png │ │ │ ├── core │ │ │ │ ├── core.rst │ │ │ │ └── img │ │ │ │ │ └── core_img1.png │ │ │ ├── date │ │ │ │ ├── date.rst │ │ │ │ └── img │ │ │ │ │ ├── date_img1.png │ │ │ │ │ └── date_img2.png │ │ │ ├── fileref │ │ │ │ ├── fileref.rst │ │ │ │ └── img │ │ │ │ │ ├── fileref_img1.png │ │ │ │ │ ├── fileref_img2.png │ │ │ │ │ └── fileref_img3.png │ │ │ ├── image │ │ │ │ ├── image.rst │ │ │ │ └── img │ │ │ │ │ ├── image_img1.png │ │ │ │ │ ├── image_img2.png │ │ │ │ │ ├── image_img3.png │ │ │ │ │ └── image_img4.png │ │ │ ├── mainpage │ │ │ │ ├── img │ │ │ │ │ └── mainpage_img1.png │ │ │ │ └── mainpage.rst │ │ │ ├── pageref │ │ │ │ ├── img │ │ │ │ │ ├── pageref_img1.png │ │ │ │ │ ├── pageref_img2.png │ │ │ │ │ ├── pageref_img3.png │ │ │ │ │ └── pageref_img4.png │ │ │ │ └── pageref.rst │ │ │ ├── richref │ │ │ │ ├── img │ │ │ │ │ ├── richref_img1.png │ │ │ │ │ ├── richref_img2.png │ │ │ │ │ └── richref_img3.png │ │ │ │ └── richref.rst │ │ │ ├── select │ │ │ │ ├── img │ │ │ │ │ ├── select_img1.png │ │ │ │ │ └── select_img2.png │ │ │ │ └── select.rst │ │ │ ├── string │ │ │ │ ├── img │ │ │ │ │ └── string_img1.png │ │ │ │ └── string.rst │ │ │ ├── table │ │ │ │ ├── img │ │ │ │ │ ├── table_img1.png │ │ │ │ │ ├── table_img2.png │ │ │ │ │ ├── table_img3.png │ │ │ │ │ ├── table_img4.png │ │ │ │ │ ├── table_img5.png │ │ │ │ │ └── table_img6.png │ │ │ │ └── table.rst │ │ │ ├── tree │ │ │ │ ├── img │ │ │ │ │ ├── tree_img1.png │ │ │ │ │ ├── tree_img2.png │ │ │ │ │ ├── tree_img3.png │ │ │ │ │ ├── tree_img4.png │ │ │ │ │ └── tree_img5.png │ │ │ │ └── tree.rst │ │ │ ├── webref │ │ │ │ ├── img │ │ │ │ │ ├── webref_img1.png │ │ │ │ │ ├── webref_img2.png │ │ │ │ │ └── webref_img3.png │ │ │ │ └── webref.rst │ │ │ └── wiki │ │ │ │ ├── img │ │ │ │ ├── wiki_img1.png │ │ │ │ ├── wiki_img10.png │ │ │ │ ├── wiki_img11.png │ │ │ │ ├── wiki_img12.png │ │ │ │ ├── wiki_img13.png │ │ │ │ ├── wiki_img14.png │ │ │ │ ├── wiki_img15.png │ │ │ │ ├── wiki_img16.png │ │ │ │ ├── wiki_img17.png │ │ │ │ ├── wiki_img18.png │ │ │ │ ├── wiki_img19.png │ │ │ │ ├── wiki_img2.png │ │ │ │ ├── wiki_img20.png │ │ │ │ ├── wiki_img21.png │ │ │ │ ├── wiki_img22.png │ │ │ │ ├── wiki_img23.png │ │ │ │ ├── wiki_img24.png │ │ │ │ ├── wiki_img25.png │ │ │ │ ├── wiki_img26.png │ │ │ │ ├── wiki_img28.png │ │ │ │ ├── wiki_img29.png │ │ │ │ ├── wiki_img3.png │ │ │ │ ├── wiki_img30.png │ │ │ │ ├── wiki_img31.png │ │ │ │ ├── wiki_img32.png │ │ │ │ ├── wiki_img33.png │ │ │ │ ├── wiki_img34.png │ │ │ │ ├── wiki_img4.png │ │ │ │ ├── wiki_img5.png │ │ │ │ ├── wiki_img6.png │ │ │ │ ├── wiki_img7.png │ │ │ │ ├── wiki_img8.png │ │ │ │ └── wiki_img9.png │ │ │ │ └── wiki.rst │ │ │ ├── amgr │ │ │ ├── amgr.rst │ │ │ └── img │ │ │ │ ├── amgr_img1.png │ │ │ │ ├── amgr_img10.png │ │ │ │ ├── amgr_img11.png │ │ │ │ ├── amgr_img2.png │ │ │ │ ├── amgr_img3.png │ │ │ │ ├── amgr_img4.png │ │ │ │ ├── amgr_img5.png │ │ │ │ ├── amgr_img6.png │ │ │ │ ├── amgr_img7.png │ │ │ │ ├── amgr_img8.png │ │ │ │ ├── amgr_img9.png │ │ │ │ ├── amgr_news.png │ │ │ │ ├── amgr_other.png │ │ │ │ ├── amgr_page.png │ │ │ │ └── amgr_template.png │ │ │ ├── img │ │ │ └── ui_img1.png │ │ │ ├── mmgr │ │ │ ├── img │ │ │ │ ├── mmgr_img1.png │ │ │ │ ├── mmgr_img10.png │ │ │ │ ├── mmgr_img2.png │ │ │ │ ├── mmgr_img3.png │ │ │ │ ├── mmgr_img4.png │ │ │ │ ├── mmgr_img5.png │ │ │ │ ├── mmgr_img6.png │ │ │ │ ├── mmgr_img7.png │ │ │ │ ├── mmgr_img8.png │ │ │ │ └── mmgr_img9.png │ │ │ └── mmgr.rst │ │ │ ├── mtt │ │ │ ├── abt │ │ │ │ ├── sample1 │ │ │ │ │ ├── img │ │ │ │ │ │ ├── screen1.png │ │ │ │ │ │ ├── screen10.png │ │ │ │ │ │ ├── screen11.png │ │ │ │ │ │ ├── screen12.png │ │ │ │ │ │ ├── screen2.png │ │ │ │ │ │ ├── screen3.png │ │ │ │ │ │ ├── screen4.png │ │ │ │ │ │ ├── screen5.png │ │ │ │ │ │ ├── screen6.png │ │ │ │ │ │ ├── screen7.png │ │ │ │ │ │ ├── screen8.png │ │ │ │ │ │ └── screen9.png │ │ │ │ │ └── index.rst │ │ │ │ └── sample2 │ │ │ │ │ ├── img │ │ │ │ │ ├── screen1.png │ │ │ │ │ ├── screen2.png │ │ │ │ │ ├── screen3.png │ │ │ │ │ ├── screen4.png │ │ │ │ │ ├── screen5.png │ │ │ │ │ ├── screen6.png │ │ │ │ │ ├── screen7.png │ │ │ │ │ └── screen8.png │ │ │ │ │ └── index.rst │ │ │ ├── mtt.rst │ │ │ └── tp │ │ │ │ ├── img │ │ │ │ ├── tp_img1.png │ │ │ │ ├── tp_img10.png │ │ │ │ ├── tp_img11.png │ │ │ │ ├── tp_img12.png │ │ │ │ ├── tp_img13.png │ │ │ │ ├── tp_img14.png │ │ │ │ ├── tp_img15.png │ │ │ │ ├── tp_img16.png │ │ │ │ ├── tp_img18.png │ │ │ │ ├── tp_img4.png │ │ │ │ ├── tp_img5.png │ │ │ │ ├── tp_img6.png │ │ │ │ ├── tp_img7.png │ │ │ │ ├── tp_img8.png │ │ │ │ └── tp_img9.png │ │ │ │ └── index.rst │ │ │ ├── news │ │ │ ├── img │ │ │ │ ├── news_img1.png │ │ │ │ ├── news_img10.png │ │ │ │ ├── news_img11.png │ │ │ │ ├── news_img12.png │ │ │ │ ├── news_img13.png │ │ │ │ ├── news_img15.png │ │ │ │ ├── news_img16.png │ │ │ │ ├── news_img2.png │ │ │ │ ├── news_img3.png │ │ │ │ ├── news_img4.png │ │ │ │ ├── news_img5.png │ │ │ │ ├── news_img6.png │ │ │ │ ├── news_img7.png │ │ │ │ ├── news_img8.png │ │ │ │ └── news_img9.png │ │ │ └── news.rst │ │ │ ├── pmgr │ │ │ ├── img │ │ │ │ ├── pmgr_img1.png │ │ │ │ ├── pmgr_img2.png │ │ │ │ ├── pmgr_img3.png │ │ │ │ ├── pmgr_img4.png │ │ │ │ ├── pmgr_img5.png │ │ │ │ ├── pmgr_img6.png │ │ │ │ └── pmgr_img7.png │ │ │ └── pmgr.rst │ │ │ ├── ui.rst │ │ │ ├── umgr │ │ │ ├── img │ │ │ │ ├── umgr_img1.png │ │ │ │ └── umgr_img2.png │ │ │ └── umgr.rst │ │ │ └── visual │ │ │ ├── img │ │ │ ├── visual_img1.png │ │ │ ├── visual_img2.png │ │ │ └── visual_img3.png │ │ │ └── visual.rst │ ├── files │ │ └── .gitkeep │ ├── images │ │ └── .gitkeep │ ├── index.rst │ ├── ncms.png │ ├── pom.xml │ └── sphinxext │ │ ├── sphinx_material_theme │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── __init__.py │ │ ├── analytics.html │ │ ├── config.rb │ │ ├── defindex.html │ │ ├── domainindex.html │ │ ├── genindex-single.html │ │ ├── genindex-split.html │ │ ├── genindex.html │ │ ├── globaltoc.html │ │ ├── layout.html │ │ ├── localtoc.html │ │ ├── opensearch.xml │ │ ├── page.html │ │ ├── relations.html │ │ ├── scss │ │ │ ├── _admonitions.scss │ │ │ ├── _btt.scss │ │ │ ├── _code.scss │ │ │ ├── _figures.scss │ │ │ ├── _fonts.scss │ │ │ ├── _index.scss │ │ │ ├── _lists.scss │ │ │ ├── _search.scss │ │ │ ├── _tables.scss │ │ │ ├── _theme_variables.scss │ │ │ ├── materialize │ │ │ │ └── components │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _cards.scss │ │ │ │ │ ├── _collapsible.scss │ │ │ │ │ ├── _color.scss │ │ │ │ │ ├── _dropdown.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ ├── _global.scss │ │ │ │ │ ├── _grid.scss │ │ │ │ │ ├── _icons-material-design.scss │ │ │ │ │ ├── _materialbox.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _modal.scss │ │ │ │ │ ├── _navbar.scss │ │ │ │ │ ├── _normalize.scss │ │ │ │ │ ├── _prefixer.scss │ │ │ │ │ ├── _preloader.scss │ │ │ │ │ ├── _roboto.scss │ │ │ │ │ ├── _sideNav.scss │ │ │ │ │ ├── _slider.scss │ │ │ │ │ ├── _table_of_contents.scss │ │ │ │ │ ├── _tabs.scss │ │ │ │ │ ├── _toast.scss │ │ │ │ │ ├── _tooltip.scss │ │ │ │ │ ├── _typography.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ ├── _waves.scss │ │ │ │ │ └── date_picker │ │ │ │ │ ├── _default.date.scss │ │ │ │ │ ├── _default.scss │ │ │ │ │ └── _default.time.scss │ │ │ └── theme.scss │ │ ├── search.html │ │ ├── searchbox.html │ │ ├── searchresults.html │ │ ├── sourcelink.html │ │ ├── static │ │ │ ├── debug.addIndicators.js │ │ │ ├── doctools.js │ │ │ ├── file.png │ │ │ ├── font │ │ │ │ ├── material-design-icons │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── Material-Design-Icons.eot │ │ │ │ │ ├── Material-Design-Icons.svg │ │ │ │ │ ├── Material-Design-Icons.ttf │ │ │ │ │ ├── Material-Design-Icons.woff │ │ │ │ │ └── Material-Design-Icons.woff2 │ │ │ │ ├── mt-sphinx │ │ │ │ │ ├── mt-sphinx.eot │ │ │ │ │ ├── mt-sphinx.svg │ │ │ │ │ ├── mt-sphinx.ttf │ │ │ │ │ └── mt-sphinx.woff │ │ │ │ └── roboto │ │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ │ ├── Roboto-Bold.woff │ │ │ │ │ ├── Roboto-Bold.woff2 │ │ │ │ │ ├── Roboto-Light.ttf │ │ │ │ │ ├── Roboto-Light.woff │ │ │ │ │ ├── Roboto-Light.woff2 │ │ │ │ │ ├── Roboto-Medium.ttf │ │ │ │ │ ├── Roboto-Medium.woff │ │ │ │ │ ├── Roboto-Medium.woff2 │ │ │ │ │ ├── Roboto-Regular.ttf │ │ │ │ │ ├── Roboto-Regular.woff │ │ │ │ │ ├── Roboto-Regular.woff2 │ │ │ │ │ ├── Roboto-Thin.ttf │ │ │ │ │ ├── Roboto-Thin.woff │ │ │ │ │ └── Roboto-Thin.woff2 │ │ │ ├── jquery.js │ │ │ ├── materialize.js │ │ │ ├── materialize.min.js │ │ │ ├── scrollmagic.js │ │ │ ├── scrollmagic.min.js │ │ │ ├── searchtools.js_t │ │ │ ├── theme.css │ │ │ ├── theme.js_t │ │ │ ├── underscore.js │ │ │ └── websupport.js │ │ └── theme.conf │ │ └── youtube │ │ └── youtube.py └── pom.xml ├── ncms-engine ├── ncms-engine-core │ ├── .gitignore │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ ├── com │ │ │ └── softmotions │ │ │ │ └── ncms │ │ │ │ ├── NcmsBoot.java │ │ │ │ ├── NcmsCoreModule.java │ │ │ │ ├── NcmsEnvironment.java │ │ │ │ ├── NcmsModuleDescriptor.java │ │ │ │ ├── NcmsModuleDescriptorSupport.java │ │ │ │ ├── NcmsWBIntegrationModule.java │ │ │ │ ├── adm │ │ │ │ ├── AdmModule.kt │ │ │ │ ├── AdmUIResourcesRS.kt │ │ │ │ └── WorkspaceRS.kt │ │ │ │ ├── asm │ │ │ │ ├── Asm.java │ │ │ │ ├── AsmAttribute.java │ │ │ │ ├── AsmAttributeManagerContext.java │ │ │ │ ├── AsmCore.java │ │ │ │ ├── AsmCriteria.java │ │ │ │ ├── AsmDAO.java │ │ │ │ ├── AsmDAO.xml │ │ │ │ ├── AsmEventsListener.java │ │ │ │ ├── AsmEventsListener.xml │ │ │ │ ├── AsmModule.java │ │ │ │ ├── AsmOptions.java │ │ │ │ ├── AsmRS.java │ │ │ │ ├── AsmRS.xml │ │ │ │ ├── CachedPage.java │ │ │ │ ├── CriteriaBase.java │ │ │ │ ├── IndexPage.java │ │ │ │ ├── PageCriteria.java │ │ │ │ ├── PageRS.java │ │ │ │ ├── PageRS.xml │ │ │ │ ├── PageSecurityService.java │ │ │ │ ├── PageSecurityService.xml │ │ │ │ ├── PageService.java │ │ │ │ ├── am │ │ │ │ │ ├── AsmAliasAM.java │ │ │ │ │ ├── AsmAttributeManager.java │ │ │ │ │ ├── AsmAttributeManagerContext.xml │ │ │ │ │ ├── AsmAttributeManagerSupport.java │ │ │ │ │ ├── AsmAttributeManagersRegistry.java │ │ │ │ │ ├── AsmBooleanAM.java │ │ │ │ │ ├── AsmBreadCrumbsAM.java │ │ │ │ │ ├── AsmBumpOrdinalAM.java │ │ │ │ │ ├── AsmCoreAM.java │ │ │ │ │ ├── AsmDateAM.java │ │ │ │ │ ├── AsmFileAttributeManagerSupport.java │ │ │ │ │ ├── AsmFileRefAM.java │ │ │ │ │ ├── AsmImageAM.java │ │ │ │ │ ├── AsmMainPageAM.java │ │ │ │ │ ├── AsmMedialineAM.java │ │ │ │ │ ├── AsmMedialineAM.xml │ │ │ │ │ ├── AsmPageRefAM.java │ │ │ │ │ ├── AsmRefAM.java │ │ │ │ │ ├── AsmRichRefAM.java │ │ │ │ │ ├── AsmSelectAM.java │ │ │ │ │ ├── AsmStringAM.java │ │ │ │ │ ├── AsmTableAM.java │ │ │ │ │ ├── AsmTreeAM.java │ │ │ │ │ ├── AsmVisualEditorAM.java │ │ │ │ │ ├── AsmWebRefAM.java │ │ │ │ │ ├── AsmWikiAM.java │ │ │ │ │ └── DefaultAsmAttributeManagersRegistry.java │ │ │ │ ├── events │ │ │ │ │ ├── AsmCreatedEvent.java │ │ │ │ │ ├── AsmLockedEvent.java │ │ │ │ │ ├── AsmModifiedEvent.java │ │ │ │ │ ├── AsmRemovedEvent.java │ │ │ │ │ ├── AsmUnlockedEvent.java │ │ │ │ │ └── PagesCacheInvalidateEvent.java │ │ │ │ └── render │ │ │ │ │ ├── AsmAttributesHandler.java │ │ │ │ │ ├── AsmController.java │ │ │ │ │ ├── AsmFilter.java │ │ │ │ │ ├── AsmMissingCoreException.java │ │ │ │ │ ├── AsmRenderer.java │ │ │ │ │ ├── AsmRendererContext.java │ │ │ │ │ ├── AsmRendererContextFactory.java │ │ │ │ │ ├── AsmRendererContextImpl.java │ │ │ │ │ ├── AsmRendererHelper.java │ │ │ │ │ ├── AsmRenderingException.java │ │ │ │ │ ├── AsmResourceLoader.java │ │ │ │ │ ├── AsmResourceNotFoundException.java │ │ │ │ │ ├── AsmTemplateEngineAdapter.java │ │ │ │ │ ├── AsmTemplateEvaluationException.java │ │ │ │ │ ├── DefaultAsmRenderer.java │ │ │ │ │ ├── httl │ │ │ │ │ ├── AsmTemplateEngineHttlAdapter.java │ │ │ │ │ ├── AsmTemplateEngineHttlModule.java │ │ │ │ │ ├── AsmTemplateSyntaxException.java │ │ │ │ │ └── HttlLoaderAdapter.java │ │ │ │ │ └── ldrs │ │ │ │ │ ├── AsmClasspathResourceLoader.java │ │ │ │ │ ├── AsmMediaServiceResourceLoader.java │ │ │ │ │ └── HttlMediaResourceAdapter.java │ │ │ │ ├── atm │ │ │ │ ├── AdminUIWS.kt │ │ │ │ ├── NcmsAtmosphereFramework.java │ │ │ │ ├── NcmsAtmosphereObjectFactory.java │ │ │ │ ├── OnMessageAtmosphereHandler.java │ │ │ │ ├── ServerMessageEvent.java │ │ │ │ ├── UIUserDisconnectedEvent.java │ │ │ │ ├── UIUserMessageEvent.java │ │ │ │ ├── WSMessage.java │ │ │ │ └── info.txt │ │ │ │ ├── db │ │ │ │ ├── DevDBInitializerModule.java │ │ │ │ ├── MybatisEhcacheCache.java │ │ │ │ ├── asm-cache-mapper.xml │ │ │ │ ├── changelog │ │ │ │ │ ├── db-changelog-1.xml │ │ │ │ │ ├── db-changelog-10.xml │ │ │ │ │ ├── db-changelog-11.xml │ │ │ │ │ ├── db-changelog-12.xml │ │ │ │ │ ├── db-changelog-3.xml │ │ │ │ │ ├── db-changelog-4.xml │ │ │ │ │ ├── db-changelog-5.xml │ │ │ │ │ ├── db-changelog-6.xml │ │ │ │ │ ├── db-changelog-7.xml │ │ │ │ │ ├── db-changelog-8.xml │ │ │ │ │ ├── db-changelog-9-pgsql-1.xml │ │ │ │ │ ├── db-changelog-master.xml │ │ │ │ │ └── db2-16240182711-all.xml │ │ │ │ └── mybatis-config.xml │ │ │ │ ├── events │ │ │ │ ├── BasicEvent.java │ │ │ │ ├── EnsureResizedImageJobEvent.java │ │ │ │ ├── EventsModule.java │ │ │ │ └── NcmsEventBus.java │ │ │ │ ├── hrs │ │ │ │ ├── HrsModule.java │ │ │ │ ├── NewsHelperRS.java │ │ │ │ └── info.txt │ │ │ │ ├── jaxrs │ │ │ │ ├── BadRequestException.java │ │ │ │ ├── NcmsMessageException.java │ │ │ │ ├── NcmsNotificationException.java │ │ │ │ └── NcmsRSExceptionMapper.java │ │ │ │ ├── media │ │ │ │ ├── MediaModule.java │ │ │ │ ├── MediaRS.java │ │ │ │ ├── MediaRS.xml │ │ │ │ ├── MediaRSLocalRequest.java │ │ │ │ ├── MediaReader.java │ │ │ │ ├── MediaRepository.java │ │ │ │ ├── MediaResource.java │ │ │ │ ├── MediaResourceImpl.java │ │ │ │ └── events │ │ │ │ │ ├── MediaDeleteEvent.java │ │ │ │ │ ├── MediaMoveEvent.java │ │ │ │ │ └── MediaUpdateEvent.java │ │ │ │ ├── mediawiki │ │ │ │ ├── ExternalImageTag.java │ │ │ │ ├── GMapTag.java │ │ │ │ ├── HtmlSnippetTag.java │ │ │ │ ├── IndentTag.java │ │ │ │ ├── MediaWikiConfiguration.java │ │ │ │ ├── MediaWikiConverter.java │ │ │ │ ├── MediaWikiModule.java │ │ │ │ ├── MediaWikiRS.java │ │ │ │ ├── MediaWikiRenderer.java │ │ │ │ ├── MediaWikiServices.java │ │ │ │ ├── NoteTag.java │ │ │ │ ├── SlideSharePresentationTag.java │ │ │ │ ├── TreeTag.java │ │ │ │ ├── VimeoTag.java │ │ │ │ ├── WikiModel.java │ │ │ │ ├── YoutubeTag.java │ │ │ │ └── events │ │ │ │ │ └── MediaWikiHTMLRenderEvent.java │ │ │ │ ├── mhttl │ │ │ │ ├── HttlAsmMethods.java │ │ │ │ ├── HttlMttMethods.java │ │ │ │ ├── HttlUtilsMethods.java │ │ │ │ ├── Image.java │ │ │ │ ├── ImageMeta.java │ │ │ │ ├── Medialine.java │ │ │ │ ├── RichRef.java │ │ │ │ ├── SelectNode.java │ │ │ │ ├── Table.java │ │ │ │ └── Tree.java │ │ │ │ ├── mtt │ │ │ │ ├── MttModule.java │ │ │ │ ├── MttRule.java │ │ │ │ ├── MttRuleAction.java │ │ │ │ ├── MttRuleCreatedEvent.kt │ │ │ │ ├── MttRuleDeletedEvent.kt │ │ │ │ ├── MttRuleFilter.java │ │ │ │ ├── MttRuleRS.xml │ │ │ │ ├── MttRuleReorderedEvent.kt │ │ │ │ ├── MttRuleUpdatedEvent.kt │ │ │ │ ├── MttRulesRS.kt │ │ │ │ ├── http │ │ │ │ │ ├── AbstractMttParametersFilter.kt │ │ │ │ │ ├── MttABMarksAction.kt │ │ │ │ │ ├── MttActionHandler.kt │ │ │ │ │ ├── MttActionHandlerContext.kt │ │ │ │ │ ├── MttCompositeAction.kt │ │ │ │ │ ├── MttCookieAction.kt │ │ │ │ │ ├── MttCookiesFilter.kt │ │ │ │ │ ├── MttFilterHandler.kt │ │ │ │ │ ├── MttFilterHandlerContext.kt │ │ │ │ │ ├── MttGroupAction.kt │ │ │ │ │ ├── MttHeadersFilter.kt │ │ │ │ │ ├── MttHttpFilter.kt │ │ │ │ │ ├── MttHttpFilter.xml │ │ │ │ │ ├── MttHttpModule.java │ │ │ │ │ ├── MttLogAction.kt │ │ │ │ │ ├── MttPageFilter.kt │ │ │ │ │ ├── MttParametersFilter.kt │ │ │ │ │ ├── MttRememberOriginAction.kt │ │ │ │ │ ├── MttRequestModificationContext.kt │ │ │ │ │ ├── MttRequestParametersAction.kt │ │ │ │ │ ├── MttResourceFilter.kt │ │ │ │ │ ├── MttRouteAction.kt │ │ │ │ │ ├── MttUserAgentFilter.kt │ │ │ │ │ └── MttVHostsFilter.kt │ │ │ │ ├── info.txt │ │ │ │ └── tp │ │ │ │ │ ├── MttActivatedTp.kt │ │ │ │ │ ├── MttTp.java │ │ │ │ │ ├── MttTpDeletedEvent.kt │ │ │ │ │ ├── MttTpRS.kt │ │ │ │ │ ├── MttTpRS.xml │ │ │ │ │ ├── MttTpService.kt │ │ │ │ │ ├── MttTpUpdatedEvent.kt │ │ │ │ │ └── info.txt │ │ │ │ ├── rds │ │ │ │ ├── RefDataAcceptor.java │ │ │ │ ├── RefDataStore.java │ │ │ │ ├── RefDataStore.xml │ │ │ │ └── RefDataStoreModule.java │ │ │ │ ├── security │ │ │ │ ├── NcmsGuardFilter.java │ │ │ │ ├── NcmsSecurityRS.java │ │ │ │ └── SecurityModule.java │ │ │ │ ├── shiro │ │ │ │ ├── NcmsShiroWebEnvironment.java │ │ │ │ ├── ShiroFormAuthenticationFilter.java │ │ │ │ ├── ShiroRestModificationRolesFilter.java │ │ │ │ └── ShiroWBJVMObjectFactory.java │ │ │ │ ├── update │ │ │ │ ├── HotFix.java │ │ │ │ ├── UpdateInitializer.xml │ │ │ │ └── UpdateModule.java │ │ │ │ ├── user │ │ │ │ ├── UserEnvRS.java │ │ │ │ ├── UserEnvRS.xml │ │ │ │ └── UserModule.java │ │ │ │ ├── utils │ │ │ │ ├── BrowserFilter.java │ │ │ │ ├── Digest.java │ │ │ │ ├── FTSUtils.java │ │ │ │ ├── GzipFilter.java │ │ │ │ ├── MetadataDetector.java │ │ │ │ ├── MimeTypeDetector.java │ │ │ │ ├── RandomUUID.java │ │ │ │ └── ZipUtils.java │ │ │ │ └── vedit │ │ │ │ ├── HttlVisualEditorFilter.kt │ │ │ │ ├── HttlVisualEditorMethods.java │ │ │ │ ├── VisualEditorModule.java │ │ │ │ └── info.txt │ │ └── ehcache.xml │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.atmosphere.cpr.AtmosphereFramework │ │ └── com │ │ └── softmotions │ │ └── ncms │ │ ├── Messages.properties │ │ ├── Messages_en.properties │ │ ├── Messages_ru.properties │ │ ├── core │ │ └── Core.properties │ │ └── login.html ├── ncms-engine-qx │ ├── pom.xml │ └── src │ │ └── main │ │ └── qooxdoo │ │ ├── classes │ │ └── ncms │ │ │ ├── Actions.js │ │ │ ├── Application.js │ │ │ ├── Atmosphere.js │ │ │ ├── Events.js │ │ │ ├── Toolbar.js │ │ │ ├── Utils.js │ │ │ ├── asm │ │ │ ├── AsmAttrEditorDlg.js │ │ │ ├── AsmAttributeTypeSelectorDlg.js │ │ │ ├── AsmAttrsTable.js │ │ │ ├── AsmEditor.js │ │ │ ├── AsmNav.js │ │ │ ├── AsmNewDlg.js │ │ │ ├── AsmParentsTable.js │ │ │ ├── AsmRenameDlg.js │ │ │ ├── AsmSelector.js │ │ │ ├── AsmSelectorDlg.js │ │ │ ├── AsmTable.js │ │ │ ├── IAsmAttributeManager.js │ │ │ └── am │ │ │ │ ├── AMWrapperDlg.js │ │ │ │ ├── AliasAM.js │ │ │ │ ├── AsmAttrManagersRegistry.js │ │ │ │ ├── AsmCoreAM.js │ │ │ │ ├── AsmRefAM.js │ │ │ │ ├── BooleanAM.js │ │ │ │ ├── BreadCrumbsAM.js │ │ │ │ ├── BumpOrdinalAM.js │ │ │ │ ├── DateAM.js │ │ │ │ ├── FaviconWidget.js │ │ │ │ ├── FileRefAM.js │ │ │ │ ├── IValueWidget.js │ │ │ │ ├── ImageAM.js │ │ │ │ ├── ImageAMValueWidget.js │ │ │ │ ├── MAttributeManager.js │ │ │ │ ├── MValueWidget.js │ │ │ │ ├── MainPageAM.js │ │ │ │ ├── MainPageAMOptionsWidget.js │ │ │ │ ├── MedialineAM.js │ │ │ │ ├── MedialineAMValueWidget.js │ │ │ │ ├── PageRefAM.js │ │ │ │ ├── RichRefAM.js │ │ │ │ ├── RichRefAMValueWidget.js │ │ │ │ ├── SelectAM.js │ │ │ │ ├── SelectAMTable.js │ │ │ │ ├── StringAM.js │ │ │ │ ├── TableAM.js │ │ │ │ ├── TableAMValueWidget.js │ │ │ │ ├── TreeAM.js │ │ │ │ ├── TreeAMFoldersDlg.js │ │ │ │ ├── TreeAMItem.js │ │ │ │ ├── TreeAMNewFolderDlg.js │ │ │ │ ├── TreeAMValueWidget.js │ │ │ │ ├── WebRefAM.js │ │ │ │ └── WikiAM.js │ │ │ ├── cc │ │ │ ├── AlertBlocker.js │ │ │ ├── MCommands.js │ │ │ ├── TypesSelectorDlg.js │ │ │ ├── WidgetHighlighter.js │ │ │ ├── info.txt │ │ │ ├── table │ │ │ │ └── TableHeaderCRenderer.js │ │ │ └── tree │ │ │ │ └── MFolderTree.js │ │ │ ├── mmgr │ │ │ ├── MediaFileEditor.js │ │ │ ├── MediaFileNewDlg.js │ │ │ ├── MediaFilesSelector.js │ │ │ ├── MediaFilesTable.js │ │ │ ├── MediaFilesUtils.js │ │ │ ├── MediaFolderEditor.js │ │ │ ├── MediaFolderNewDlg.js │ │ │ ├── MediaItemRenameDlg.js │ │ │ ├── MediaItemTreeSelector.js │ │ │ ├── MediaNav.js │ │ │ ├── MediaSelectFileDlg.js │ │ │ ├── MediaSelectFolderDlg.js │ │ │ ├── MediaTextFileEditor.js │ │ │ ├── MediaTextFileEditorDlg.js │ │ │ ├── PageFilesSelector.js │ │ │ └── PageFilesSelectorDlg.js │ │ │ ├── mtt │ │ │ ├── MttEditor.js │ │ │ ├── MttNav.js │ │ │ ├── MttRuleNewDlg.js │ │ │ ├── MttRuleRenameDlg.js │ │ │ ├── MttRulesSelector.js │ │ │ ├── MttRulesTable.js │ │ │ ├── actions │ │ │ │ ├── IMttAction.js │ │ │ │ ├── MttABMarksAction.js │ │ │ │ ├── MttActionDlg.js │ │ │ │ ├── MttActionGroupDlg.js │ │ │ │ ├── MttActionTypeSelectorDlg.js │ │ │ │ ├── MttActionsRegistry.js │ │ │ │ ├── MttActionsTree.js │ │ │ │ ├── MttActionsTreeItem.js │ │ │ │ ├── MttLogAction.js │ │ │ │ ├── MttRememberOriginAction.js │ │ │ │ ├── MttRouteAction.js │ │ │ │ ├── MttSetCookieAction.js │ │ │ │ └── MttSetRequestParametersAction.js │ │ │ ├── filters │ │ │ │ ├── IMttFilter.js │ │ │ │ ├── MttCookiesFilter.js │ │ │ │ ├── MttFilterDlg.js │ │ │ │ ├── MttFilterTypeSelectorDlg.js │ │ │ │ ├── MttFiltersRegistry.js │ │ │ │ ├── MttFiltersTable.js │ │ │ │ ├── MttHeadersFilter.js │ │ │ │ ├── MttPageFilter.js │ │ │ │ ├── MttParametersFilter.js │ │ │ │ ├── MttResourceFilter.js │ │ │ │ ├── MttUserAgentFilter.js │ │ │ │ └── MttVHostFilter.js │ │ │ ├── info.txt │ │ │ └── tp │ │ │ │ ├── MttTpEditor.js │ │ │ │ ├── MttTpNav.js │ │ │ │ ├── MttTpNewDlg.js │ │ │ │ ├── MttTpRenameDlg.js │ │ │ │ ├── MttTpSelector.js │ │ │ │ ├── MttTpTable.js │ │ │ │ └── info.txt │ │ │ ├── news │ │ │ ├── NewsEditor.js │ │ │ ├── NewsNav.js │ │ │ ├── NewsNewDlg.js │ │ │ └── NewsRenameDlg.js │ │ │ ├── pgs │ │ │ ├── LinkSelectorDlg.js │ │ │ ├── MPageEditorPane.js │ │ │ ├── PageChangeOrRenameDlg.js │ │ │ ├── PageDuplicateDlg.js │ │ │ ├── PageEditor.js │ │ │ ├── PageEditorAccessPane.js │ │ │ ├── PageEditorAccessTable.js │ │ │ ├── PageEditorEditPage.js │ │ │ ├── PageEditorInfoPage.js │ │ │ ├── PageLocker.js │ │ │ ├── PageNewDlg.js │ │ │ ├── PagesCollectionDlg.js │ │ │ ├── PagesCollectionTable.js │ │ │ ├── PagesNav.js │ │ │ ├── PagesSearchSelector.js │ │ │ ├── PagesSelector.js │ │ │ ├── PagesSelectorDlg.js │ │ │ ├── PagesTable.js │ │ │ ├── PagesTreeSelector.js │ │ │ └── referrers │ │ │ │ ├── PageReferrersAttributesTable.js │ │ │ │ ├── PageReferrersDlg.js │ │ │ │ ├── PageReferrersFrom.js │ │ │ │ ├── PageReferrersNav.js │ │ │ │ ├── PageReferrersSelector.js │ │ │ │ ├── PageReferrersTab.js │ │ │ │ ├── PageReferrersTable.js │ │ │ │ └── PageReferrersTo.js │ │ │ ├── theme │ │ │ ├── Appearance.js │ │ │ ├── Color.js │ │ │ ├── Decoration.js │ │ │ ├── Font.js │ │ │ └── Theme.js │ │ │ ├── usr │ │ │ ├── UserEditForm.js │ │ │ ├── UserEditor.js │ │ │ ├── UserNewDlg.js │ │ │ ├── UserRolesTable.js │ │ │ ├── UserSelector.js │ │ │ ├── UserSelectorDlg.js │ │ │ ├── UsersNav.js │ │ │ └── UsersTable.js │ │ │ ├── wiki │ │ │ ├── InsertGMapDlg.js │ │ │ ├── InsertImageDlg.js │ │ │ ├── InsertSlideSharePresentationDlg.js │ │ │ ├── InsertVimeoDlg.js │ │ │ ├── InsertYoutubeDlg.js │ │ │ ├── TableDlg.js │ │ │ ├── TreeDlg.js │ │ │ └── WikiEditor.js │ │ │ └── wsa │ │ │ └── WSAPlaceholder.js │ │ ├── configuration │ │ └── ncms │ │ │ ├── Manifest.json │ │ │ ├── config.json │ │ │ └── generate.py │ │ ├── resources │ │ └── ncms │ │ │ ├── css │ │ │ └── medium-editor.css │ │ │ ├── icon │ │ │ ├── 16 │ │ │ │ ├── actions │ │ │ │ │ ├── add.png │ │ │ │ │ ├── application_form_edit.png │ │ │ │ │ ├── auction-hammer.png │ │ │ │ │ ├── core_link.png │ │ │ │ │ ├── delete.png │ │ │ │ │ ├── edit-document.png │ │ │ │ │ └── search.png │ │ │ │ ├── asm │ │ │ │ │ ├── news.png │ │ │ │ │ ├── other.png │ │ │ │ │ ├── page.png │ │ │ │ │ └── template.png │ │ │ │ ├── help │ │ │ │ │ ├── help.png │ │ │ │ │ └── information-button.png │ │ │ │ ├── misc │ │ │ │ │ ├── application-form.png │ │ │ │ │ ├── application-pencil.png │ │ │ │ │ ├── arrow-transition-270.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── asterisk.png │ │ │ │ │ ├── block.png │ │ │ │ │ ├── blog-exclamation.png │ │ │ │ │ ├── blog.png │ │ │ │ │ ├── blue-document-exclamation.png │ │ │ │ │ ├── blue-document.png │ │ │ │ │ ├── box.png │ │ │ │ │ ├── briefcase-bw.png │ │ │ │ │ ├── briefcase.png │ │ │ │ │ ├── chain-plus.png │ │ │ │ │ ├── chain.png │ │ │ │ │ ├── color-swatch.png │ │ │ │ │ ├── cross-script.png │ │ │ │ │ ├── cross-small-circle.png │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── disk.png │ │ │ │ │ ├── document-exclamation.png │ │ │ │ │ ├── document-import.png │ │ │ │ │ ├── document-plus.png │ │ │ │ │ ├── document-template.png │ │ │ │ │ ├── document-text-image.png │ │ │ │ │ ├── document-text.png │ │ │ │ │ ├── document.png │ │ │ │ │ ├── door_in.png │ │ │ │ │ ├── exclamation.png │ │ │ │ │ ├── file-move.png │ │ │ │ │ ├── film-plus.png │ │ │ │ │ ├── flow_block.png │ │ │ │ │ ├── folder-tree-bw.png │ │ │ │ │ ├── folder-tree.png │ │ │ │ │ ├── funnel-plus.png │ │ │ │ │ ├── funnel.png │ │ │ │ │ ├── game.png │ │ │ │ │ ├── gear.png │ │ │ │ │ ├── globe.png │ │ │ │ │ ├── home-bw.png │ │ │ │ │ ├── home.png │ │ │ │ │ ├── image-plus.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── images-stack.png │ │ │ │ │ ├── images.png │ │ │ │ │ ├── light-bulb-off.png │ │ │ │ │ ├── light-bulb.png │ │ │ │ │ ├── monitor.png │ │ │ │ │ ├── puzzle.png │ │ │ │ │ ├── sort.png │ │ │ │ │ ├── tick-button.png │ │ │ │ │ └── tick.png │ │ │ │ ├── mtt │ │ │ │ │ ├── .gitkeep │ │ │ │ │ └── route.png │ │ │ │ ├── settings │ │ │ │ │ └── preferences-system.png │ │ │ │ ├── user │ │ │ │ │ ├── user-blue.png │ │ │ │ │ ├── user-red.png │ │ │ │ │ ├── user-yellow.png │ │ │ │ │ └── users.png │ │ │ │ └── wiki │ │ │ │ │ ├── document_add.png │ │ │ │ │ ├── gmap.png │ │ │ │ │ ├── google.png │ │ │ │ │ ├── image_add.png │ │ │ │ │ ├── link_add.png │ │ │ │ │ ├── note.png │ │ │ │ │ ├── note_add.png │ │ │ │ │ ├── note_exclamation.png │ │ │ │ │ ├── slideshare.png │ │ │ │ │ ├── table_add.png │ │ │ │ │ ├── text_bold.png │ │ │ │ │ ├── text_code.png │ │ │ │ │ ├── text_heading_1.png │ │ │ │ │ ├── text_heading_2.png │ │ │ │ │ ├── text_heading_3.png │ │ │ │ │ ├── text_italic.png │ │ │ │ │ ├── text_list_bullets.png │ │ │ │ │ ├── text_list_numbers.png │ │ │ │ │ ├── text_underline.png │ │ │ │ │ ├── tree_add.png │ │ │ │ │ ├── vimeo.png │ │ │ │ │ └── youtube.png │ │ │ ├── 22 │ │ │ │ ├── misc │ │ │ │ │ ├── box.png │ │ │ │ │ ├── document-exclamation.png │ │ │ │ │ ├── document-text-image.png │ │ │ │ │ ├── document-text.png │ │ │ │ │ ├── document.png │ │ │ │ │ └── globe.png │ │ │ │ ├── mtt │ │ │ │ │ ├── abmarks.png │ │ │ │ │ ├── composite-open.png │ │ │ │ │ ├── composite.png │ │ │ │ │ ├── cookie.png │ │ │ │ │ ├── log.png │ │ │ │ │ ├── parameters.png │ │ │ │ │ ├── remember.png │ │ │ │ │ └── route.png │ │ │ │ ├── places │ │ │ │ │ ├── folder-exclamation-open.png │ │ │ │ │ ├── folder-exclamation.png │ │ │ │ │ ├── folder-open.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── system-folder-open.png │ │ │ │ │ └── system-folder.png │ │ │ │ └── state │ │ │ │ │ └── loading.gif │ │ │ └── 32 │ │ │ │ ├── balloon.png │ │ │ │ ├── error.png │ │ │ │ ├── exclamation.png │ │ │ │ ├── home-page.png │ │ │ │ ├── information.png │ │ │ │ ├── question.png │ │ │ │ ├── sticky-note.png │ │ │ │ └── tick.png │ │ │ └── script │ │ │ ├── ace_all.js │ │ │ ├── ace_update.sh │ │ │ ├── atmosphere.js │ │ │ ├── clipboard.min.js │ │ │ ├── medium-editor.js │ │ │ ├── ncms-preview.js │ │ │ ├── worker-css.js │ │ │ ├── worker-html.js │ │ │ ├── worker-javascript.js │ │ │ ├── worker-json.js │ │ │ └── worker-xml.js │ │ └── translation │ │ ├── README │ │ └── ru.po ├── ncms-engine-tests-qx │ ├── pom.xml │ └── src │ │ └── main │ │ └── qooxdoo │ │ ├── classes │ │ └── tqx │ │ │ ├── Actions.js │ │ │ ├── Application.js │ │ │ └── theme │ │ │ ├── Appearance.js │ │ │ ├── Color.js │ │ │ ├── Decoration.js │ │ │ ├── Font.js │ │ │ └── Theme.js │ │ ├── configuration │ │ └── tqx │ │ │ ├── Manifest.json │ │ │ ├── config.json │ │ │ └── generate.py │ │ ├── resources │ │ └── siteroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── images │ │ │ └── load_progress.gif │ │ │ └── index.html │ │ └── translation │ │ ├── README │ │ └── en.po ├── ncms-engine-tests │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── softmotions │ │ │ │ └── ncms │ │ │ │ ├── BaseTest.kt │ │ │ │ ├── DB2TestRunner.kt │ │ │ │ ├── DatabaseTestRunner.kt │ │ │ │ ├── DbBaseTest.kt │ │ │ │ ├── DbTestsFactory.java │ │ │ │ ├── GuiceBaseTest.kt │ │ │ │ ├── PostgresTestRunner.kt │ │ │ │ ├── TestNGSuiteListener.java │ │ │ │ ├── UIWebBaseTest.kt │ │ │ │ ├── WebBaseTest.kt │ │ │ │ └── ui │ │ │ │ └── BaseQXTest.kt │ │ └── resources │ │ │ ├── .gitkeep │ │ │ └── DB2JccConfiguration.properties │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── softmotions │ │ │ └── ncms │ │ │ ├── asm │ │ │ ├── TestAsmRenderer.kt │ │ │ └── cfg │ │ │ │ ├── logging.xml │ │ │ │ └── test-ncms-asm-conf.xml │ │ │ ├── db │ │ │ ├── TestDBs.kt │ │ │ ├── _TestAsmDAO.kt │ │ │ ├── _TestAsmRSDB.kt │ │ │ ├── _TestDBSpecificQueries.kt │ │ │ └── cfg │ │ │ │ ├── logging.xml │ │ │ │ └── test-ncms-db-conf.xml │ │ │ ├── rs │ │ │ ├── BaseRSTest.kt │ │ │ ├── TestRS.kt │ │ │ ├── _TestAsmRS.kt │ │ │ ├── _TestMediaRS.kt │ │ │ ├── _TestMttRulesRS.kt │ │ │ ├── _TestPageRS.kt │ │ │ ├── _TestWorkspaceRS.kt │ │ │ ├── cfg │ │ │ │ ├── logging.xml │ │ │ │ ├── shiro.test.ini │ │ │ │ ├── test-ncms-rs-conf.xml │ │ │ │ └── users.xml │ │ │ └── data │ │ │ │ ├── file.png │ │ │ │ ├── file.svg │ │ │ │ └── file.txt │ │ │ ├── ui │ │ │ ├── BaseAdminUITest.kt │ │ │ ├── TestAsmsUI.kt │ │ │ ├── _TestSimpleSiteUI.kt │ │ │ └── cfg │ │ │ │ ├── logging.xml │ │ │ │ ├── shiro.test.ini │ │ │ │ ├── test-ncms-ui-conf.xml │ │ │ │ └── users.xml │ │ │ └── vedit │ │ │ └── TestVEditFilter.kt │ │ ├── resources │ │ └── META-INF │ │ │ └── services │ │ │ └── org.testng.ITestNGListener │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml └── pom.xml ├── ncms-extensions ├── ncms-js-converter │ ├── README.md │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── com │ │ │ └── softmotions │ │ │ └── ncms │ │ │ └── js │ │ │ ├── ClosureLoggerErrorManager.java │ │ │ ├── HttlJsMethods.java │ │ │ ├── JsServiceRS.java │ │ │ ├── JsServiceRS.xml │ │ │ ├── NcmsJsModule.java │ │ │ └── x-js-db-changelog-16354140621.xml │ │ └── test │ │ ├── java │ │ └── com │ │ │ └── softmotions │ │ │ └── ncms │ │ │ └── js │ │ │ ├── TestRS.java │ │ │ ├── _TestJsServiceRS.java │ │ │ └── cfg │ │ │ ├── logging.xml │ │ │ ├── shiro.test.ini │ │ │ ├── test-ncms-js-conf.xml │ │ │ └── users.xml │ │ ├── resources │ │ └── META-INF │ │ │ └── services │ │ │ └── org.testng.ITestNGListener │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── ncms-sass-converter │ ├── README.md │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── com │ │ └── softmotions │ │ └── ncms │ │ └── sass │ │ └── NcmsSassModule.java └── pom.xml ├── ncms-site-archetype ├── pom.xml └── src │ ├── main │ └── resources │ │ ├── META-INF │ │ └── maven │ │ │ └── archetype-metadata.xml │ │ └── archetype-resources │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build-distr.sh │ │ ├── pom.xml │ │ ├── qx │ │ ├── pom.xml │ │ └── src │ │ │ └── main │ │ │ └── qooxdoo │ │ │ ├── classes │ │ │ └── __rootArtifactId__ │ │ │ │ ├── Actions.js │ │ │ │ ├── Application.js │ │ │ │ └── theme │ │ │ │ ├── Appearance.js │ │ │ │ ├── Color.js │ │ │ │ ├── Decoration.js │ │ │ │ ├── Font.js │ │ │ │ └── Theme.js │ │ │ ├── configuration │ │ │ └── __rootArtifactId__ │ │ │ │ ├── Manifest.json │ │ │ │ ├── config.json │ │ │ │ └── generate.py │ │ │ ├── resources │ │ │ └── siteroot │ │ │ │ ├── css │ │ │ │ └── __rootArtifactId__.css │ │ │ │ ├── images │ │ │ │ └── .gitkeep │ │ │ │ └── index.html │ │ │ └── translation │ │ │ ├── README │ │ │ ├── en.po │ │ │ └── ru.po │ │ ├── run-prerelease.sh │ │ ├── tomcat │ │ ├── context.xml │ │ ├── logging.properties │ │ └── server.xml │ │ └── web │ │ ├── pom.xml │ │ └── src │ │ └── main │ │ ├── java │ │ ├── AppBoot.java │ │ ├── AppHttlMethods.java │ │ └── AppModule.java │ │ ├── resources │ │ ├── DB2JccConfiguration.properties │ │ ├── Messages.properties │ │ └── conf │ │ │ ├── __rootArtifactId__-dev-configuration.xml │ │ │ ├── __rootArtifactId__-logging.xml │ │ │ └── __rootArtifactId__-users.xml │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── README.txt │ │ └── WEB-INF │ │ ├── shiro.ini │ │ └── web.xml │ └── test │ └── resources │ └── projects │ └── gettingstarted │ ├── archetype.properties │ └── goal.txt ├── ncms-site-pom └── pom.xml ├── pom.xml └── proposals └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- 1 | # Maven 2 | target/ 3 | 4 | __pycache__ 5 | 6 | # IDEA 7 | .idea/ 8 | *.iml 9 | 10 | # NCMS 11 | .cache/ 12 | /ncms-engine/ncms-engine-qx/target/ 13 | /ncms-engine/ncms-engine-web/target/ 14 | /ncms-engine/ncms-engine-solr/target/ 15 | 16 | # Logs 17 | logs/ 18 | 19 | 20 | .bin/ 21 | *.log 22 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/.gitmodules -------------------------------------------------------------------------------- /ncms-docs/README.md: -------------------------------------------------------------------------------- 1 | # nCMS documentation 2 | 3 | ## Prerequisites 4 | 5 | * Sphinx v1.5.x (http://sphinx-doc.org) 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ncms-docs/artwork/fonts/fira/8162.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/fonts/fira/8162.ttf -------------------------------------------------------------------------------- /ncms-docs/artwork/fonts/fira/8163.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/fonts/fira/8163.ttf -------------------------------------------------------------------------------- /ncms-docs/artwork/fonts/fira/8165.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/fonts/fira/8165.ttf -------------------------------------------------------------------------------- /ncms-docs/artwork/fonts/fira/8170.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/fonts/fira/8170.ttf -------------------------------------------------------------------------------- /ncms-docs/artwork/ncms-logo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/ncms-logo3.png -------------------------------------------------------------------------------- /ncms-docs/artwork/ncms-logo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/ncms-logo4.png -------------------------------------------------------------------------------- /ncms-docs/artwork/ncms-logo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/ncms-logo5.png -------------------------------------------------------------------------------- /ncms-docs/artwork/ncms-logo6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/ncms-logo6.png -------------------------------------------------------------------------------- /ncms-docs/artwork/ncms-logo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/artwork/ncms-logo7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | httl.github.com -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/README.md: -------------------------------------------------------------------------------- 1 | pip3 install sphinx 2 | make clean html 3 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/_static/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/_static/images/.gitkeep -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/db/db.rst: -------------------------------------------------------------------------------- 1 | .. _db: 2 | 3 | Supported databases 4 | =================== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | db2 10 | postgresql 11 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/deployments/deployments.rst: -------------------------------------------------------------------------------- 1 | 2 | .. _deployments: 3 | 4 | Deployment options 5 | ================== 6 | 7 | 8 | .. toctree:: 9 | :maxdepth: 1 10 | 11 | onvhost/index.rst 12 | onpath/index.rst 13 | 14 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/deployments/onpath/img/ncms-onpath-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/deployments/onpath/img/ncms-onpath-deployment.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/gettingstarted.rst: -------------------------------------------------------------------------------- 1 | .. _gettingstarted: 2 | 3 | Getting started 4 | =============== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | arch 10 | newproject -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/footer.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/ncms_arch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/ncms_arch1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/ncms_arch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/ncms_arch2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/preview.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/gettingstarted/img/step9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/gettingstarted/img/step9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/misc/img/tstyles_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/misc/img/tstyles_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/misc/img/tstyles_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/misc/img/tstyles_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/misc/misc.rst: -------------------------------------------------------------------------------- 1 | .. _misc: 2 | 3 | Misc 4 | ==== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | tstyles 10 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/soclinks/soclinks.rst: -------------------------------------------------------------------------------- 1 | .. _soclinks: 2 | 3 | Social networks integration 4 | =========================== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | ogmeta 10 | 11 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/asmref/img/asmref_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/boolean/img/boolean_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/boolean/img/boolean_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/breadcrumbs/img/breadcrumbs_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/breadcrumbs/img/breadcrumbs_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/core/img/core_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/core/img/core_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/date/img/date_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/date/img/date_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/date/img/date_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/date/img/date_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/fileref/img/fileref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/fileref/img/fileref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/fileref/img/fileref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/fileref/img/fileref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/fileref/img/fileref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/fileref/img/fileref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/image/img/image_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/mainpage/img/mainpage_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/mainpage/img/mainpage_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/pageref/img/pageref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/pageref/img/pageref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/pageref/img/pageref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/pageref/img/pageref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/pageref/img/pageref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/pageref/img/pageref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/richref/img/richref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/richref/img/richref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/richref/img/richref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/richref/img/richref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/richref/img/richref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/richref/img/richref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/select/img/select_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/select/img/select_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/select/img/select_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/select/img/select_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/string/img/string_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/string/img/string_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/table/img/table_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/tree/img/tree_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/webref/img/webref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/webref/img/webref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/webref/img/webref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/webref/img/webref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/webref/img/webref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/webref/img/webref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img13.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img14.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img15.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img16.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img17.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img18.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img19.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img20.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img21.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img22.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img23.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img24.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img25.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img26.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img28.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img29.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img30.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img31.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img32.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img33.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img34.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/am/wiki/img/wiki_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_news.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_other.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_page.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/amgr/img/amgr_template.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/img/ui_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/img/ui_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mmgr/img/mmgr_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample1/img/screen9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/abt/sample2/img/screen8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img13.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img14.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img15.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img16.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img18.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/mtt/tp/img/tp_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/add.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img13.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img15.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img16.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/news/img/news_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/news/img/news_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/pmgr/img/pmgr_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/umgr/img/umgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/umgr/img/umgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/umgr/img/umgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/umgr/img/umgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/visual/img/visual_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/visual/img/visual_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/visual/img/visual_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/visual/img/visual_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/doc/ui/visual/img/visual_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/doc/ui/visual/img/visual_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/files/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/files/.gitkeep -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/images/.gitkeep -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/ncms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/ncms.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | __pycache__/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/Makefile: -------------------------------------------------------------------------------- 1 | 2 | static/theme.css_t: FORCE 3 | touch scss/theme.scss 4 | compass compile -s compressed 5 | #compass compile 6 | FORCE:; 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/README.md: -------------------------------------------------------------------------------- 1 | # Sphinx material theme. 2 | 3 | This theme based on http://materializecss.com CSS framework 4 | 5 | Theme showcase: http://ejdb.org + site sources: https://github.com/Softmotions/ejdb-website 6 | 7 | **NOTE:** Developed for Sphinx v1.3.x only 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/__init__.pyc -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/globaltoc.html: -------------------------------------------------------------------------------- 1 |
2 | {{ toctree(maxdepth=2, collapse=False, includehidden=True) }} 3 |
-------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/page.html: -------------------------------------------------------------------------------- 1 | {# 2 | basic/page.html 3 | ~~~~~~~~~~~~~~~ 4 | 5 | Master template for simple pages. 6 | 7 | :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. 8 | :license: BSD, see LICENSE for details. 9 | #} 10 | {%- extends "layout.html" %} 11 | {% block body %} 12 | {{ body }} 13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/scss/_figures.scss: -------------------------------------------------------------------------------- 1 | div.figure { 2 | margin: 0.5em; 3 | padding: 0.5em; 4 | 5 | p.caption { 6 | padding: 0.3em; 7 | 8 | span.caption-number { 9 | font-style: italic; 10 | } 11 | 12 | span.caption-text { 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/scss/materialize/components/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow-2($args1, $args2) { 2 | -webkit-box-shadow: $args1, $args2; 3 | -moz-box-shadow: $args1, $args2; 4 | box-shadow: $args1, $args2; 5 | } -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/file.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.eot -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-en/sphinxext/sphinx_material_theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = none 3 | stylesheet = theme.css 4 | pygments_style = none 5 | 6 | [options] 7 | top_nav_links = [] 8 | analytics_id = 9 | 10 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | httl.github.com -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/README.md: -------------------------------------------------------------------------------- 1 | pip3 install sphinx 2 | make clean html 3 | 4 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/_static/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/_static/images/.gitkeep -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/db/db.rst: -------------------------------------------------------------------------------- 1 | .. _db: 2 | 3 | Поддерживаемые СУБД 4 | =================== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | db2 10 | postgresql 11 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/deployments/deployments.rst: -------------------------------------------------------------------------------- 1 | 2 | .. _deployments: 3 | 4 | Варианты развертывания 5 | ====================== 6 | 7 | 8 | .. toctree:: 9 | :maxdepth: 1 10 | 11 | onvhost/index.rst 12 | onpath/index.rst 13 | 14 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/deployments/onpath/img/ncms-onpath-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/deployments/onpath/img/ncms-onpath-deployment.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/gettingstarted.rst: -------------------------------------------------------------------------------- 1 | .. _gettingstarted: 2 | 3 | Начало работы 4 | ============= 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | arch 10 | newproject -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/ncms_arch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/ncms_arch1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/ncms_arch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/ncms_arch2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/gettingstarted/img/step9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/misc/img/dadata_suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/misc/img/dadata_suggestions.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/misc/img/tstyles_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/misc/img/tstyles_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/misc/img/tstyles_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/misc/img/tstyles_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/misc/misc.rst: -------------------------------------------------------------------------------- 1 | .. _misc: 2 | 3 | Разное 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | tstyles 10 | dadata 11 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/soclinks/soclinks.rst: -------------------------------------------------------------------------------- 1 | .. _soclinks: 2 | 3 | Интеграция с социальными сетями 4 | =============================== 5 | 6 | .. toctree:: 7 | :maxdepth: 1 8 | 9 | ogmeta 10 | uptolike 11 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/asmref/img/asmref_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/boolean/img/boolean_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/boolean/img/boolean_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/breadcrumbs/img/breadcrumbs_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/breadcrumbs/img/breadcrumbs_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/core/img/core_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/core/img/core_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/date/img/date_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/date/img/date_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/date/img/date_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/date/img/date_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/fileref/img/fileref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/fileref/img/fileref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/fileref/img/fileref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/fileref/img/fileref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/fileref/img/fileref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/fileref/img/fileref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/image/img/image_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/mainpage/img/mainpage_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/mainpage/img/mainpage_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/pageref/img/pageref_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/richref/img/richref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/richref/img/richref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/richref/img/richref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/richref/img/richref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/richref/img/richref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/richref/img/richref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/select/img/select_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/select/img/select_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/select/img/select_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/select/img/select_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/string/img/string_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/string/img/string_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/table/img/table_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/tree/img/tree_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/webref/img/webref_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/webref/img/webref_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/webref/img/webref_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/webref/img/webref_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/webref/img/webref_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/webref/img/webref_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img13.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img14.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img15.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img16.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img17.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img18.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img19.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img20.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img21.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img22.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img23.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img24.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img25.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img26.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img28.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img29.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img30.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img31.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img32.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img33.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img34.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/am/wiki/img/wiki_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_news.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_other.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_page.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/amgr/img/amgr_template.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/img/ui_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/img/ui_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mmgr/img/mmgr_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample1/img/screen9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/abt/sample2/img/screen8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img13.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img14.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img15.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img16.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img18.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/mtt/tp/img/tp_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img10.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img11.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img12.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img13.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img15.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img16.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img8.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/news/img/news_img9.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img4.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img5.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img6.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/pmgr/img/pmgr_img7.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/umgr/img/umgr_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/umgr/img/umgr_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/umgr/img/umgr_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/umgr/img/umgr_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/visual/img/visual_img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/visual/img/visual_img1.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/visual/img/visual_img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/visual/img/visual_img2.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/doc/ui/visual/img/visual_img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/doc/ui/visual/img/visual_img3.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/files/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/files/.gitkeep -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/images/.gitkeep -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/ncms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/ncms.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache/ 2 | __pycache__/ 3 | 4 | 5 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/Makefile: -------------------------------------------------------------------------------- 1 | 2 | static/theme.css_t: FORCE 3 | touch scss/theme.scss 4 | compass compile -s compressed 5 | #compass compile 6 | FORCE:; 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/README.md: -------------------------------------------------------------------------------- 1 | # Sphinx material theme. 2 | 3 | This theme based on http://materializecss.com CSS framework 4 | 5 | Theme showcase: http://ejdb.org + site sources: https://github.com/Softmotions/ejdb-website 6 | 7 | **NOTE:** Developed for Sphinx v1.3.x only 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/globaltoc.html: -------------------------------------------------------------------------------- 1 |
2 | {{ toctree(maxdepth=2, collapse=False, includehidden=True) }} 3 |
-------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/page.html: -------------------------------------------------------------------------------- 1 | {# 2 | basic/page.html 3 | ~~~~~~~~~~~~~~~ 4 | 5 | Master template for simple pages. 6 | 7 | :copyright: Copyright 2007-2015 by the Sphinx team, see AUTHORS. 8 | :license: BSD, see LICENSE for details. 9 | #} 10 | {%- extends "layout.html" %} 11 | {% block body %} 12 | {{ body }} 13 | {% endblock %} 14 | -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/scss/_figures.scss: -------------------------------------------------------------------------------- 1 | div.figure { 2 | margin: 0.5em; 3 | padding: 0.5em; 4 | 5 | p.caption { 6 | padding: 0.3em; 7 | 8 | span.caption-number { 9 | font-style: italic; 10 | } 11 | 12 | span.caption-text { 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/scss/materialize/components/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin box-shadow-2($args1, $args2) { 2 | -webkit-box-shadow: $args1, $args2; 3 | -moz-box-shadow: $args1, $args2; 4 | box-shadow: $args1, $args2; 5 | } -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/file.png -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.eot -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/material-design-icons/Material-Design-Icons.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.eot -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/mt-sphinx/mt-sphinx.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Bold.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Light.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Medium.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Regular.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.ttf -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/static/font/roboto/Roboto-Thin.woff2 -------------------------------------------------------------------------------- /ncms-docs/ncms-docs-ru/sphinxext/sphinx_material_theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = none 3 | stylesheet = theme.css 4 | pygments_style = none 5 | 6 | [options] 7 | top_nav_links = [] 8 | analytics_id = 9 | 10 | -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/asm/events/PagesCacheInvalidateEvent.java: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.asm.events; 2 | 3 | /** 4 | * @author Adamansky Anton (adamansky@softmotions.com) 5 | */ 6 | public class PagesCacheInvalidateEvent { 7 | 8 | } 9 | -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/atm/info.txt: -------------------------------------------------------------------------------- 1 | Atmosphere (https://github.com/Atmosphere/atmosphere) framework integration. -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/hrs/info.txt: -------------------------------------------------------------------------------- 1 | Various REST helpers 2 | -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/MttRuleCreatedEvent.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt 2 | 3 | /** 4 | * Mtt rule create event 5 | */ 6 | data class MttRuleCreatedEvent(val ruleId: Long) { 7 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/MttRuleDeletedEvent.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt 2 | 3 | /** 4 | * Rule deleted. 5 | * 6 | * @author Adamansky Anton (adamansky@softmotions.com) 7 | */ 8 | data class MttRuleDeletedEvent(val ruleId: Long) { 9 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/MttRuleReorderedEvent.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt 2 | 3 | /** 4 | * Mtt rule reordered event 5 | * 6 | * @author Adamansky Anton (adamansky@softmotions.com) 7 | */ 8 | data class MttRuleReorderedEvent(val ordinal1:Long?, val ordinal2:Long?) { 9 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/MttRuleUpdatedEvent.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt 2 | 3 | /** 4 | * Mtt rule update event 5 | * 6 | * @author Adamansky Anton (adamansky@softmotions.com) 7 | */ 8 | data class MttRuleUpdatedEvent(val ruleId: Long, val hint: String = "") { 9 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/info.txt: -------------------------------------------------------------------------------- 1 | Marketing Transfer Tools (MTT) -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/tp/MttActivatedTp.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt.tp 2 | 3 | /** 4 | * @author Adamansky Anton (adamansky@softmotions.com) 5 | */ 6 | data class MttActivatedTp(val url: String?, val script: String?) { 7 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/tp/MttTpDeletedEvent.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt.tp 2 | 3 | /** 4 | * @author Adamansky Anton (adamansky@softmotions.com) 5 | */ 6 | data class MttTpDeletedEvent(val tpId: Long) -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/tp/MttTpUpdatedEvent.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.mtt.tp 2 | 3 | /** 4 | * Tracking pixel updated event. 5 | * 6 | * @author Adamansky Anton (adamansky@softmotions.com) 7 | */ 8 | data class MttTpUpdatedEvent(val tpId: Long, val hint: String = "") -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/mtt/tp/info.txt: -------------------------------------------------------------------------------- 1 | MTT Tracking pixels support -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/java/com/softmotions/ncms/vedit/info.txt: -------------------------------------------------------------------------------- 1 | Visual editor. -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/resources/META-INF/services/org.atmosphere.cpr.AtmosphereFramework: -------------------------------------------------------------------------------- 1 | com.softmotions.ncms.atm.NcmsAtmosphereFramework -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-core/src/main/resources/com/softmotions/ncms/core/Core.properties: -------------------------------------------------------------------------------- 1 | project.version=${project.version} 2 | branch.name=${scmBranch} 3 | commit.hash=${buildNumber} -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/classes/ncms/cc/info.txt: -------------------------------------------------------------------------------- 1 | Common code shared by packages. -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/classes/ncms/mtt/info.txt: -------------------------------------------------------------------------------- 1 | Margeting Traffic Tools (mtt) -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/classes/ncms/mtt/tp/info.txt: -------------------------------------------------------------------------------- 1 | Tracking pixel managing -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/application_form_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/application_form_edit.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/auction-hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/auction-hammer.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/core_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/core_link.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/delete.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/edit-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/edit-document.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/actions/search.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/news.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/other.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/page.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/asm/template.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/help/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/help/help.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/help/information-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/help/information-button.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/application-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/application-form.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/application-pencil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/application-pencil.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/arrow-transition-270.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/arrow-transition-270.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/arrow_down.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/arrow_up.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/asterisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/asterisk.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/block.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blog-exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blog-exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blog.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blue-document-exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blue-document-exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blue-document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/blue-document.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/box.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/briefcase-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/briefcase-bw.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/briefcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/briefcase.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/chain-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/chain-plus.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/chain.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/color-swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/color-swatch.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/cross-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/cross-script.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/cross-small-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/cross-small-circle.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/cross.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/disk.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-import.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-plus.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-template.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-text-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-text-image.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document-text.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/document.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/door_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/door_in.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/file-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/file-move.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/film-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/film-plus.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/flow_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/flow_block.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/folder-tree-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/folder-tree-bw.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/folder-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/folder-tree.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/funnel-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/funnel-plus.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/funnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/funnel.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/game.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/gear.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/globe.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/home-bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/home-bw.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/home.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/image-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/image-plus.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/image.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/images-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/images-stack.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/images.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/light-bulb-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/light-bulb-off.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/light-bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/light-bulb.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/monitor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/monitor.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/puzzle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/puzzle.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/sort.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/tick-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/tick-button.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/misc/tick.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/mtt/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/mtt/.gitkeep -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/mtt/route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/mtt/route.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/settings/preferences-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/settings/preferences-system.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/user-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/user-blue.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/user-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/user-red.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/user-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/user-yellow.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/users.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/user/users.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/document_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/document_add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/gmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/gmap.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/google.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/image_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/image_add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/link_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/link_add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/note.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/note_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/note_add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/note_exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/note_exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/slideshare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/slideshare.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/table_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/table_add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_bold.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_code.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_heading_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_heading_1.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_heading_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_heading_2.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_heading_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_heading_3.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_italic.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_list_bullets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_list_bullets.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_list_numbers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_list_numbers.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_underline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/text_underline.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/tree_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/tree_add.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/vimeo.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/16/wiki/youtube.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/box.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document-exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document-exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document-text-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document-text-image.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document-text.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/document.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/misc/globe.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/abmarks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/abmarks.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/composite-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/composite-open.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/composite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/composite.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/cookie.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/log.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/parameters.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/remember.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/remember.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/route.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/mtt/route.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder-exclamation-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder-exclamation-open.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder-exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder-exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder-open.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/folder.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/system-folder-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/system-folder-open.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/system-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/places/system-folder.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/state/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/22/state/loading.gif -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/balloon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/balloon.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/error.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/exclamation.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/home-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/home-page.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/information.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/question.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/sticky-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/sticky-note.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/resources/ncms/icon/32/tick.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-qx/src/main/qooxdoo/translation/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-qx/src/main/qooxdoo/translation/README -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/classes/tqx/Actions.js: -------------------------------------------------------------------------------- 1 | qx.Class.define("tqx.Actions", { 2 | extend: ncms.Actions, 3 | 4 | construct: function () { 5 | this.base(arguments); 6 | }, 7 | 8 | destruct: function () { 9 | //this._disposeObjects("__field_name"); 10 | } 11 | }); -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/classes/tqx/theme/Appearance.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @asset(qx/icon/${qx.icontheme}/16/actions/edit-clear.png) 3 | */ 4 | 5 | qx.Theme.define("tqx.theme.Appearance", { 6 | extend : ncms.theme.Appearance, 7 | 8 | appearances : { 9 | } 10 | }); -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/classes/tqx/theme/Color.js: -------------------------------------------------------------------------------- 1 | /* ************************************************************************ 2 | 3 | ************************************************************************ */ 4 | 5 | qx.Theme.define("tqx.theme.Color", { 6 | extend : ncms.theme.Color, 7 | 8 | colors : { 9 | } 10 | }); -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/classes/tqx/theme/Decoration.js: -------------------------------------------------------------------------------- 1 | /* ************************************************************************ 2 | 3 | ************************************************************************ */ 4 | 5 | qx.Theme.define("tqx.theme.Decoration", { 6 | extend : ncms.theme.Decoration, 7 | 8 | decorations : { 9 | } 10 | }); -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/classes/tqx/theme/Font.js: -------------------------------------------------------------------------------- 1 | /* ************************************************************************ 2 | 3 | ************************************************************************ */ 4 | 5 | qx.Theme.define("tqx.theme.Font", { 6 | extend : ncms.theme.Font, 7 | 8 | fonts : { 9 | } 10 | }); -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/resources/siteroot/css/site.css: -------------------------------------------------------------------------------- 1 | .atopnav a, .atopnav a:link, .atopnav a:visited { 2 | font-family: Arial, sans-serif; 3 | text-decoration: none; 4 | color: #314a6e; 5 | } 6 | 7 | .atopnav a.selected { 8 | font-weight: bold; 9 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/resources/siteroot/images/load_progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/resources/siteroot/images/load_progress.gif -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests-qx/src/main/qooxdoo/translation/en.po: -------------------------------------------------------------------------------- 1 | # 2 | msgid "" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/main/java/com/softmotions/ncms/DatabaseTestRunner.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms 2 | 3 | /** 4 | * @author Adamansky Anton (adamansky@softmotions.com) 5 | */ 6 | interface DatabaseTestRunner { 7 | 8 | fun setupDb(props: Map = emptyMap()) 9 | 10 | fun shutdownDb() 11 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/main/resources/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-tests/src/main/resources/.gitkeep -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/main/resources/DB2JccConfiguration.properties: -------------------------------------------------------------------------------- 1 | db2.jcc.override.progressiveStreaming=2 2 | db2.jcc.charsetDecoderEncoder=3 3 | #db2.jcc.override.traceDirectory=/tmp/spool 4 | #db2.jcc.override.traceFile=trace 5 | #db2.jcc.override.traceFileAppend=false 6 | #db2.jcc.override.traceLevel=-1 7 | -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/test/java/com/softmotions/ncms/asm/TestAsmRenderer.kt: -------------------------------------------------------------------------------- 1 | package com.softmotions.ncms.asm 2 | 3 | /** 4 | * @author Adamansky Anton (adamansky@softmotions.com) 5 | */ 6 | class TestAsmRenderer { 7 | 8 | } -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/test/java/com/softmotions/ncms/rs/data/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-engine/ncms-engine-tests/src/test/java/com/softmotions/ncms/rs/data/file.png -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/test/java/com/softmotions/ncms/rs/data/file.txt: -------------------------------------------------------------------------------- 1 | I'm 2 | test 3 | your 4 | rest 5 | service -------------------------------------------------------------------------------- /ncms-engine/ncms-engine-tests/src/test/resources/META-INF/services/org.testng.ITestNGListener: -------------------------------------------------------------------------------- 1 | com.softmotions.ncms.TestNGSuiteListener -------------------------------------------------------------------------------- /ncms-extensions/ncms-js-converter/src/test/resources/META-INF/services/org.testng.ITestNGListener: -------------------------------------------------------------------------------- 1 | com.softmotions.ncms.TestNGSuiteListener -------------------------------------------------------------------------------- /ncms-extensions/ncms-sass-converter/README.md: -------------------------------------------------------------------------------- 1 | Automatic sass to css converter and syntax checker 2 | ================================================== 3 | 4 | This module performs automatic on the fly `.scss` to `.css` conversion 5 | for files in nCMS media-repository. 6 | 7 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/.gitignore: -------------------------------------------------------------------------------- 1 | .bin/ 2 | .cache/ 3 | target/ 4 | 5 | # IDEA 6 | .idea/ 7 | *.iml 8 | 9 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-site-archetype/src/main/resources/archetype-resources/README.md -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/classes/__rootArtifactId__/Actions.js: -------------------------------------------------------------------------------- 1 | qx.Class.define("${rootArtifactId}.Actions", { 2 | extend: ncms.Actions, 3 | construct: function () { 4 | this.base(arguments); 5 | } 6 | }); -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/classes/__rootArtifactId__/theme/Appearance.js: -------------------------------------------------------------------------------- 1 | #set($dollar = '$') 2 | /** 3 | * @asset(qx/icon/${dollar}{qx.icontheme}/16/actions/edit-clear.png) 4 | */ 5 | qx.Theme.define("${rootArtifactId}.theme.Appearance", { 6 | extend : ncms.theme.Appearance, 7 | 8 | appearances : { 9 | } 10 | }); -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/resources/siteroot/css/__rootArtifactId__.css: -------------------------------------------------------------------------------- 1 | .atopnav a, .atopnav a:link, .atopnav a:visited { 2 | font-family: Arial, sans-serif; 3 | text-decoration: none; 4 | color: #314a6e; 5 | } 6 | 7 | .atopnav a.selected { 8 | font-weight: bold; 9 | } -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/resources/siteroot/images/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/resources/siteroot/images/.gitkeep -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/translation/en.po: -------------------------------------------------------------------------------- 1 | # 2 | msgid "" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/qx/src/main/qooxdoo/translation/ru.po: -------------------------------------------------------------------------------- 1 | # 2 | msgid "" 3 | msgstr "" 4 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/run-prerelease.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | mvn -Pprerelease clean verify && mvn -Pprerelease,cargo.run -Dcargo.debug.suspend=n 3 | 4 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/tomcat/context.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/web/src/main/java/AppBoot.java: -------------------------------------------------------------------------------- 1 | package ${package}; 2 | 3 | import com.softmotions.ncms.NcmsBoot; 4 | 5 | /** 6 | * Applicaton starting point. 7 | */ 8 | public class AppBoot extends NcmsBoot { 9 | } 10 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/web/src/main/java/AppHttlMethods.java: -------------------------------------------------------------------------------- 1 | package ${package}; 2 | 3 | public class AppHttlMethods { 4 | 5 | private AppHttlMethods() { 6 | } 7 | 8 | public static String helloFromHttl(String name) { 9 | return "Hello " + name; 10 | } 11 | } -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/web/src/main/resources/DB2JccConfiguration.properties: -------------------------------------------------------------------------------- 1 | db2.jcc.override.progressiveStreaming=2 2 | db2.jcc.charsetDecoderEncoder=3 3 | #db2.jcc.override.traceDirectory=/tmp/spool 4 | #db2.jcc.override.traceFile=trace 5 | #db2.jcc.override.traceFileAppend=false 6 | #db2.jcc.override.traceLevel=-1 7 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/web/src/main/resources/Messages.properties: -------------------------------------------------------------------------------- 1 | # Here is a localized application messages bundle (See com.softmotions.weboot.i18n.I18n class) 2 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/web/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- 1 | #set($dollar = '$') 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/main/resources/archetype-resources/web/src/main/webapp/README.txt: -------------------------------------------------------------------------------- 1 | Here is public web resources. -------------------------------------------------------------------------------- /ncms-site-archetype/src/test/resources/projects/gettingstarted/archetype.properties: -------------------------------------------------------------------------------- 1 | archetypeVersion=${project.version} 2 | groupId=${gettingstarted.app.groupId} 3 | package=${gettingstarted.app.groupId} 4 | artifactId=${gettingstarted.app.artifactId} 5 | version=${gettingstarted.app.version} 6 | projectName=${gettingstarted.app.name} 7 | serverPort=8080 8 | -------------------------------------------------------------------------------- /ncms-site-archetype/src/test/resources/projects/gettingstarted/goal.txt: -------------------------------------------------------------------------------- 1 | package -DskipTests 2 | -------------------------------------------------------------------------------- /proposals/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Softmotions/ncms/126bc812bb819de8e2a6d0bed662d545a9aafffe/proposals/.gitkeep --------------------------------------------------------------------------------