├── README.md ├── application ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── config │ ├── autoload.php │ ├── cobbler.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── foreign_chars.php │ ├── hooks.php │ ├── index.html │ ├── ldap.php │ ├── migration.php │ ├── mimes.php │ ├── profiler.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── cmdb │ │ └── open.php │ ├── home.php │ ├── index.html │ └── sys │ │ ├── group_permission.php │ │ ├── module.php │ │ ├── user.php │ │ └── user_group.php ├── core │ ├── MY_Model.php │ └── index.html ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ ├── index.html │ └── util_helper.php ├── hooks │ └── index.html ├── index.html ├── language │ ├── english │ │ └── index.html │ └── index.html ├── libraries │ ├── cobbler │ │ ├── CobblerApiClient.php │ │ └── IXRLibrary.php │ ├── index.html │ └── ldap.php ├── logs │ └── index.html ├── models │ ├── cmdb │ │ ├── device_model.php │ │ ├── ip_model.php │ │ ├── level_tag_model.php │ │ ├── room_model.php │ │ ├── segment_ip_pool_model.php │ │ ├── segment_model.php │ │ ├── server_tag_model.php │ │ └── server_tag_user_model.php │ ├── index.html │ └── sys │ │ ├── group_model.php │ │ ├── group_permission_model.php │ │ ├── module_model.php │ │ ├── user_group_model.php │ │ └── user_model.php ├── third_party │ └── index.html └── views │ ├── build.php │ ├── error.php │ ├── footer.php │ ├── header.php │ ├── index.html │ ├── login.php │ ├── main.php │ ├── navbar.php │ ├── sidebar.php │ └── sys │ ├── group_permission.php │ ├── module_add.php │ ├── module_edit.php │ ├── module_list.php │ ├── user_group.php │ └── user_list.php ├── index.php ├── resources ├── assets │ ├── avatars │ │ ├── avatar.png │ │ ├── avatar1.png │ │ ├── avatar2.png │ │ ├── avatar3.png │ │ ├── avatar4.png │ │ ├── avatar5.png │ │ ├── profile-pic.jpg │ │ └── user.jpg │ ├── css │ │ ├── ace-fonts.css │ │ ├── ace-ie.min.css │ │ ├── ace-part2.min.css │ │ ├── ace-rtl.min.css │ │ ├── ace-skins.min.css │ │ ├── ace.min.css │ │ ├── ace.onpage-help.css │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-editable.css │ │ ├── bootstrap-timepicker.css │ │ ├── bootstrap.min.css │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ ├── colorbox.css │ │ ├── colorpicker.css │ │ ├── datepicker.css │ │ ├── daterangepicker.css │ │ ├── dropzone.css │ │ ├── font-awesome.min.css │ │ ├── fullcalendar.css │ │ ├── fullcalendar.print.css │ │ ├── images │ │ │ ├── border.png │ │ │ ├── border1.png │ │ │ ├── border2.png │ │ │ ├── controls.png │ │ │ ├── ie6 │ │ │ │ ├── borderBottomCenter.png │ │ │ │ ├── borderBottomLeft.png │ │ │ │ ├── borderBottomRight.png │ │ │ │ ├── borderMiddleLeft.png │ │ │ │ ├── borderMiddleRight.png │ │ │ │ ├── borderTopCenter.png │ │ │ │ ├── borderTopLeft.png │ │ │ │ └── borderTopRight.png │ │ │ ├── loading.gif │ │ │ ├── loading_background.png │ │ │ ├── meteorshower.jpg │ │ │ ├── meteorshower2.jpg │ │ │ ├── overlay.png │ │ │ ├── pattern.jpg │ │ │ ├── pattern.png │ │ │ ├── spritemap.png │ │ │ └── spritemap@2x.png │ │ ├── img │ │ │ ├── alpha.png │ │ │ ├── hue.png │ │ │ └── saturation.png │ │ ├── jquery-ui.custom.min.css │ │ ├── jquery-ui.min.css │ │ ├── jquery.gritter.css │ │ ├── less │ │ │ ├── ace-features.less │ │ │ ├── ace-nav.less │ │ │ ├── ace-responsive.less │ │ │ ├── ace-rtl.less │ │ │ ├── ace.less │ │ │ ├── basic.less │ │ │ ├── bootstrap │ │ │ │ ├── .csscomb.json │ │ │ │ ├── .csslintrc │ │ │ │ ├── alerts.less │ │ │ │ ├── badges.less │ │ │ │ ├── bootstrap.less │ │ │ │ ├── breadcrumbs.less │ │ │ │ ├── button-groups.less │ │ │ │ ├── buttons.less │ │ │ │ ├── carousel.less │ │ │ │ ├── close.less │ │ │ │ ├── code.less │ │ │ │ ├── component-animations.less │ │ │ │ ├── dropdowns.less │ │ │ │ ├── forms.less │ │ │ │ ├── glyphicons.less │ │ │ │ ├── grid.less │ │ │ │ ├── input-groups.less │ │ │ │ ├── jumbotron.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── media.less │ │ │ │ ├── mixins.less │ │ │ │ ├── mixins │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── background-variant.less │ │ │ │ │ ├── border-radius.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── center-block.less │ │ │ │ │ ├── clearfix.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── gradients.less │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── hide-text.less │ │ │ │ │ ├── image.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ ├── opacity.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ ├── resize.less │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ ├── size.less │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ ├── table-row.less │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ ├── modals.less │ │ │ │ ├── navbar.less │ │ │ │ ├── navs.less │ │ │ │ ├── normalize.less │ │ │ │ ├── pager.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── popovers.less │ │ │ │ ├── print.less │ │ │ │ ├── progress-bars.less │ │ │ │ ├── responsive-embed.less │ │ │ │ ├── responsive-utilities.less │ │ │ │ ├── scaffolding.less │ │ │ │ ├── tables.less │ │ │ │ ├── theme.less │ │ │ │ ├── thumbnails.less │ │ │ │ ├── tooltip.less │ │ │ │ ├── type.less │ │ │ │ ├── utilities.less │ │ │ │ ├── variables.less │ │ │ │ └── wells.less │ │ │ ├── breadcrumbs.less │ │ │ ├── bs3-reset.less │ │ │ ├── buttons.less │ │ │ ├── dropdown.less │ │ │ ├── dropdown │ │ │ │ ├── colorpicker.less │ │ │ │ ├── navbar-dropdown.less │ │ │ │ └── navbar-tabbed-dropdown.less │ │ │ ├── ext │ │ │ │ └── bootstrap-tag.less │ │ │ ├── fonts.less │ │ │ ├── footer.less │ │ │ ├── form.less │ │ │ ├── form │ │ │ │ ├── checkbox.less │ │ │ │ └── file.less │ │ │ ├── gallery.less │ │ │ ├── general.less │ │ │ ├── icon-animated.less │ │ │ ├── infobox.less │ │ │ ├── items.less │ │ │ ├── label-badge.less │ │ │ ├── mixins.less │ │ │ ├── navbar │ │ │ │ ├── collapsible.less │ │ │ │ ├── navbar-menu-form.less │ │ │ │ ├── toggle-button.less │ │ │ │ ├── user-buttons-move-down.less │ │ │ │ ├── user-buttons.less │ │ │ │ ├── user-dropdown-position.less │ │ │ │ └── user-menu.less │ │ │ ├── onpage-help.less │ │ │ ├── other.less │ │ │ ├── page.error.less │ │ │ ├── page.inbox.less │ │ │ ├── page.invoice.less │ │ │ ├── page.login.less │ │ │ ├── page.pricing.less │ │ │ ├── page.profile.less │ │ │ ├── page.timeline.less │ │ │ ├── print.less │ │ │ ├── progressbar.less │ │ │ ├── scroll.less │ │ │ ├── searchbox.less │ │ │ ├── sidebar.less │ │ │ ├── sidebar │ │ │ │ ├── active.less │ │ │ │ ├── compact.less │ │ │ │ ├── ff_fix.less │ │ │ │ ├── highlight.less │ │ │ │ ├── horizontal.less │ │ │ │ ├── hover.less │ │ │ │ ├── min.less │ │ │ │ ├── old-toggle-button.less │ │ │ │ ├── responsive-1.less │ │ │ │ ├── responsive-2.less │ │ │ │ ├── responsive-3.less │ │ │ │ ├── shortcuts-toggle.less │ │ │ │ ├── sidebar-fixed.less │ │ │ │ └── sub-arrow.less │ │ │ ├── skins │ │ │ │ ├── empty.less │ │ │ │ ├── no-skin.less │ │ │ │ ├── skin-1.less │ │ │ │ ├── skin-2.less │ │ │ │ ├── skin-3.less │ │ │ │ └── skins.less │ │ │ ├── tab-accordion.less │ │ │ ├── tables.less │ │ │ ├── thirdparty-calendar.less │ │ │ ├── thirdparty-chosen.less │ │ │ ├── thirdparty-colorbox.less │ │ │ ├── thirdparty-dataTables.less │ │ │ ├── thirdparty-date.less │ │ │ ├── thirdparty-dropzone.less │ │ │ ├── thirdparty-editable.less │ │ │ ├── thirdparty-fuelux.less │ │ │ ├── thirdparty-gritter.less │ │ │ ├── thirdparty-jqgrid.less │ │ │ ├── thirdparty-jquery-ui.less │ │ │ ├── thirdparty-nestable.less │ │ │ ├── thirdparty-select2.less │ │ │ ├── thirdparty-slider.less │ │ │ ├── thirdparty-typeahead.less │ │ │ ├── thirdparty-wysiwyg.less │ │ │ ├── tooltip-popover.less │ │ │ ├── utility.less │ │ │ ├── variables.less │ │ │ └── widget.less │ │ ├── prettify.css │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.png │ │ ├── select2x2.png │ │ ├── ui.jqgrid.css │ │ └── uncompressed │ │ │ ├── ace-ie.css │ │ │ ├── ace-part2.css │ │ │ ├── ace-rtl.css │ │ │ ├── ace-skins.css │ │ │ ├── ace.css │ │ │ ├── bootstrap.css │ │ │ ├── chosen.css │ │ │ ├── font-awesome.css │ │ │ ├── jquery-ui.css │ │ │ └── jquery-ui.custom.css │ ├── font │ │ ├── DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff │ │ ├── cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff │ │ └── readme │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── back_disabled.png │ │ ├── back_enabled.png │ │ ├── back_enabled_hover.png │ │ ├── email1.png │ │ ├── email2.png │ │ ├── email3.png │ │ ├── email4.png │ │ ├── forward_disabled.png │ │ ├── forward_enabled.png │ │ ├── forward_enabled_hover.png │ │ ├── gallery │ │ │ ├── image-1.jpg │ │ │ ├── image-2.jpg │ │ │ ├── image-3.jpg │ │ │ ├── image-4.jpg │ │ │ ├── image-5.jpg │ │ │ ├── image-6.jpg │ │ │ ├── thumb-1.jpg │ │ │ ├── thumb-2.jpg │ │ │ ├── thumb-3.jpg │ │ │ ├── thumb-4.jpg │ │ │ ├── thumb-5.jpg │ │ │ └── thumb-6.jpg │ │ ├── sort_asc.png │ │ ├── sort_asc_disabled.png │ │ ├── sort_both.png │ │ ├── sort_desc.png │ │ ├── sort_desc_disabled.png │ │ ├── spritemap.png │ │ └── spritemap@2x.png │ ├── img │ │ ├── clear.png │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── loading.gif │ └── js │ │ ├── ace-elements.min.js │ │ ├── ace-extra.min.js │ │ ├── ace.min.js │ │ ├── ace │ │ ├── ace.ajax-content.js │ │ ├── ace.auto-container.js │ │ ├── ace.auto-padding.js │ │ ├── ace.autohide-sidebar.js │ │ ├── ace.js │ │ ├── ace.onpage-help.js │ │ ├── ace.searchbox-autocomplete.js │ │ ├── ace.settings-rtl.js │ │ ├── ace.settings-skin.js │ │ ├── ace.settings.js │ │ ├── ace.sidebar-scroll-1.js │ │ ├── ace.sidebar-scroll-2.js │ │ ├── ace.sidebar.js │ │ ├── ace.submenu-1.js │ │ ├── ace.submenu-2.js │ │ ├── ace.submenu-hover.js │ │ ├── ace.touch-drag.js │ │ ├── ace.widget-box.js │ │ ├── ace.widget-on-reload.js │ │ ├── elements.colorpicker.js │ │ ├── elements.fileinput.js │ │ ├── elements.onpage-help.js │ │ ├── elements.scroller.js │ │ ├── elements.spinner.js │ │ ├── elements.treeview.js │ │ ├── elements.typeahead.js │ │ ├── elements.wizard.js │ │ ├── elements.wysiwyg.js │ │ ├── readme │ │ └── scripts.json │ │ ├── additional-methods.min.js │ │ ├── bootbox.min.js │ │ ├── bootstrap-colorpicker.min.js │ │ ├── bootstrap-tag.min.js │ │ ├── bootstrap-wysiwyg.min.js │ │ ├── bootstrap.min.js │ │ ├── chosen.jquery.min.js │ │ ├── date-time │ │ ├── bootstrap-datepicker.min.js │ │ ├── bootstrap-datetimepicker.min.js │ │ ├── bootstrap-timepicker.min.js │ │ ├── daterangepicker.min.js │ │ ├── locales │ │ │ ├── bootstrap-datepicker.ar.js │ │ │ ├── bootstrap-datepicker.az.js │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.cy.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.et.js │ │ │ ├── bootstrap-datepicker.fa.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.gl.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.ka.js │ │ │ ├── bootstrap-datepicker.kk.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.mk.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl-BE.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.no.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sq.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.ua.js │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ ├── bootstrap-datepicker.vi.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ └── moment.min.js │ │ ├── dropzone.min.js │ │ ├── excanvas.min.js │ │ ├── flot │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.pie.min.js │ │ └── jquery.flot.resize.min.js │ │ ├── fullcalendar.min.js │ │ ├── html5shiv.js │ │ ├── html5shiv.min.js │ │ ├── jquery-ui.custom.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.autosize.min.js │ │ ├── jquery.colorbox-min.js │ │ ├── jquery.dataTables.bootstrap.js │ │ ├── jquery.dataTables.min.js │ │ ├── jquery.easy-pie-chart-older.js │ │ ├── jquery.easy-pie-chart.min.js │ │ ├── jquery.easypiechart.min.js │ │ ├── jquery.gritter.min.js │ │ ├── jquery.hotkeys.min.js │ │ ├── jquery.inputlimiter.1.3.1.min.js │ │ ├── jquery.knob-older.min.js │ │ ├── jquery.knob.min.js │ │ ├── jquery.maskedinput.min.js │ │ ├── jquery.min.js │ │ ├── jquery.mobile.custom.min.js │ │ ├── jquery.nestable.min.js │ │ ├── jquery.slimscroll.min.js │ │ ├── jquery.sparkline.min.js │ │ ├── jquery.ui.touch-punch.min.js │ │ ├── jquery.validate.min.js │ │ ├── jquery1x.min.js │ │ ├── markdown │ │ ├── bootstrap-markdown.min.js │ │ ├── markdown.min.js │ │ └── to-markdown.min.js │ │ ├── prettify.js │ │ ├── respond.min.js │ │ ├── select2 │ │ ├── select2.min.css │ │ └── select2.min.js │ │ ├── spin.min.js │ │ ├── typeahead.jquery.min.js │ │ ├── uncompressed │ │ ├── ace-elements.js │ │ ├── ace-extra.js │ │ ├── ace.js │ │ ├── additional-methods.js │ │ ├── bootbox.js │ │ ├── bootstrap-colorpicker.js │ │ ├── bootstrap-tag.js │ │ ├── bootstrap-wysiwyg.js │ │ ├── bootstrap.js │ │ ├── chosen.jquery.js │ │ ├── date-time │ │ │ ├── bootstrap-datepicker.js │ │ │ ├── bootstrap-datetimepicker.js │ │ │ ├── bootstrap-timepicker.js │ │ │ ├── daterangepicker.js │ │ │ ├── locales │ │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ │ ├── bootstrap-datepicker.da.js │ │ │ │ ├── bootstrap-datepicker.de.js │ │ │ │ ├── bootstrap-datepicker.el.js │ │ │ │ ├── bootstrap-datepicker.es.js │ │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ │ ├── bootstrap-datepicker.he.js │ │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ │ ├── bootstrap-datepicker.id.js │ │ │ │ ├── bootstrap-datepicker.is.js │ │ │ │ ├── bootstrap-datepicker.it.js │ │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ │ ├── bootstrap-datepicker.th.js │ │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ │ └── moment.js │ │ ├── dropzone.js │ │ ├── excanvas.js │ │ ├── flot │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.pie.js │ │ │ └── jquery.flot.resize.js │ │ ├── fuelux │ │ │ ├── data │ │ │ │ └── fuelux.tree-sample-demo-data.js │ │ │ ├── fuelux.spinner.js │ │ │ ├── fuelux.tree.js │ │ │ └── fuelux.wizard.js │ │ ├── fullcalendar.js │ │ ├── html5shiv.js │ │ ├── jqGrid │ │ │ └── jquery.jqGrid.src.js │ │ ├── jquery-ui.custom.js │ │ ├── jquery-ui.js │ │ ├── jquery.autosize.js │ │ ├── jquery.colorbox.js │ │ ├── jquery.dataTables.js │ │ ├── jquery.easypiechart.js │ │ ├── jquery.gritter.js │ │ ├── jquery.hotkeys.js │ │ ├── jquery.inputlimiter.1.3.1.js │ │ ├── jquery.js │ │ ├── jquery.knob.js │ │ ├── jquery.maskedinput.js │ │ ├── jquery.mobile.custom.js │ │ ├── jquery.nestable.js │ │ ├── jquery.slimscroll.js │ │ ├── jquery.sparkline.js │ │ ├── jquery.ui.touch-punch.js │ │ ├── jquery.validate.js │ │ ├── jquery1x.js │ │ ├── markdown │ │ │ ├── bootstrap-markdown.js │ │ │ ├── markdown.js │ │ │ └── to-markdown.js │ │ ├── respond.src.js │ │ ├── select2.js │ │ ├── spin.js │ │ ├── typeahead.jquery.js │ │ └── x-editable │ │ │ ├── ace-editable.js │ │ │ └── bootstrap-editable.js │ │ └── x-editable │ │ ├── ace-editable.min.js │ │ └── bootstrap-editable.min.js ├── common │ ├── css │ │ └── common.css │ └── js │ │ ├── common.js │ │ └── pinyin.js └── plugins │ ├── bootstrap-dialog │ ├── css │ │ ├── bootstrap-dialog.css │ │ └── bootstrap-dialog.min.css │ └── js │ │ ├── bootstrap-dialog.js │ │ └── bootstrap-dialog.min.js │ ├── bootstrap-select │ ├── css │ │ ├── bootstrap-select.css │ │ ├── bootstrap-select.css.map │ │ └── bootstrap-select.min.css │ └── js │ │ ├── bootstrap-select.js │ │ ├── bootstrap-select.js.map │ │ ├── bootstrap-select.min.js │ │ └── i18n │ │ ├── defaults-cs_CZ.js │ │ ├── defaults-cs_CZ.min.js │ │ ├── defaults-de_DE.js │ │ ├── defaults-de_DE.min.js │ │ ├── defaults-en_US.js │ │ ├── defaults-en_US.min.js │ │ ├── defaults-es_CL.js │ │ ├── defaults-es_CL.min.js │ │ ├── defaults-eu.js │ │ ├── defaults-eu.min.js │ │ ├── defaults-fr_FR.js │ │ ├── defaults-fr_FR.min.js │ │ ├── defaults-it_IT.js │ │ ├── defaults-it_IT.min.js │ │ ├── defaults-nl_NL.js │ │ ├── defaults-nl_NL.min.js │ │ ├── defaults-pl_PL.js │ │ ├── defaults-pl_PL.min.js │ │ ├── defaults-pt_BR.js │ │ ├── defaults-pt_BR.min.js │ │ ├── defaults-ro_RO.js │ │ ├── defaults-ro_RO.min.js │ │ ├── defaults-ru_RU.js │ │ ├── defaults-ru_RU.min.js │ │ ├── defaults-ua_UA.js │ │ ├── defaults-ua_UA.min.js │ │ ├── defaults-zh_CN.js │ │ ├── defaults-zh_CN.min.js │ │ ├── defaults-zh_TW.js │ │ └── defaults-zh_TW.min.js │ ├── echarts │ └── echarts.min.js │ ├── fancytree │ ├── css │ │ └── skin-win7 │ │ │ ├── icons.gif │ │ │ ├── loading.gif │ │ │ ├── ui.fancytree.css │ │ │ └── ui.fancytree.min.css │ └── js │ │ └── jquery.fancytree-all.min.js │ ├── form.js │ ├── immybox-master │ ├── .gitignore │ ├── Gruntfile.coffee │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── demo.html │ ├── img │ │ └── immybox-arrow.png │ ├── immybox-arrow.png │ ├── immybox.css │ ├── immybox.less │ ├── jquery.immybox.coffee │ ├── jquery.immybox.js │ ├── jquery.immybox.min.js │ ├── knockout-immybox.coffee │ ├── knockout-immybox.js │ ├── knockout-immybox.min.js │ └── package.json │ ├── input │ ├── input.css │ ├── input.js │ ├── jquery.min.js │ └── t.php │ ├── jquery.form.js │ └── mmGrid-master │ ├── img │ ├── arrow_down.png │ ├── arrow_up.png │ ├── furley_bg.png │ ├── furley_bg_@2X.png │ ├── loading.gif │ ├── sort-asc.png │ └── sort-desc.png │ ├── mmGrid.css │ ├── mmGrid.js │ ├── mmPaginator.css │ ├── mmPaginator.js │ └── theme │ └── bootstrap │ ├── mmGrid-bootstrap.css │ └── mmPaginator-bootstrap.css ├── schema └── cmdb.sql └── system ├── .htaccess ├── core ├── Benchmark.php ├── CodeIgniter.php ├── Common.php ├── Config.php ├── Controller.php ├── Exceptions.php ├── Hooks.php ├── Input.php ├── Lang.php ├── Loader.php ├── Model.php ├── Output.php ├── Router.php ├── Security.php ├── URI.php ├── Utf8.php └── index.html ├── database ├── DB.php ├── DB_active_rec.php ├── DB_cache.php ├── DB_driver.php ├── DB_forge.php ├── DB_result.php ├── DB_utility.php ├── drivers │ ├── cubrid │ │ ├── cubrid_driver.php │ │ ├── cubrid_forge.php │ │ ├── cubrid_result.php │ │ ├── cubrid_utility.php │ │ └── index.html │ ├── index.html │ ├── mssql │ │ ├── index.html │ │ ├── mssql_driver.php │ │ ├── mssql_forge.php │ │ ├── mssql_result.php │ │ └── mssql_utility.php │ ├── mysql │ │ ├── index.html │ │ ├── mysql_driver.php │ │ ├── mysql_forge.php │ │ ├── mysql_result.php │ │ └── mysql_utility.php │ ├── mysqli │ │ ├── index.html │ │ ├── mysqli_driver.php │ │ ├── mysqli_forge.php │ │ ├── mysqli_result.php │ │ └── mysqli_utility.php │ ├── oci8 │ │ ├── index.html │ │ ├── oci8_driver.php │ │ ├── oci8_forge.php │ │ ├── oci8_result.php │ │ └── oci8_utility.php │ ├── odbc │ │ ├── index.html │ │ ├── odbc_driver.php │ │ ├── odbc_forge.php │ │ ├── odbc_result.php │ │ └── odbc_utility.php │ ├── pdo │ │ ├── index.html │ │ ├── pdo_driver.php │ │ ├── pdo_forge.php │ │ ├── pdo_result.php │ │ └── pdo_utility.php │ ├── postgre │ │ ├── index.html │ │ ├── postgre_driver.php │ │ ├── postgre_forge.php │ │ ├── postgre_result.php │ │ └── postgre_utility.php │ ├── sqlite │ │ ├── index.html │ │ ├── sqlite_driver.php │ │ ├── sqlite_forge.php │ │ ├── sqlite_result.php │ │ └── sqlite_utility.php │ └── sqlsrv │ │ ├── index.html │ │ ├── sqlsrv_driver.php │ │ ├── sqlsrv_forge.php │ │ ├── sqlsrv_result.php │ │ └── sqlsrv_utility.php └── index.html ├── fonts ├── index.html └── texb.ttf ├── helpers ├── array_helper.php ├── captcha_helper.php ├── cookie_helper.php ├── date_helper.php ├── directory_helper.php ├── download_helper.php ├── email_helper.php ├── file_helper.php ├── form_helper.php ├── html_helper.php ├── index.html ├── inflector_helper.php ├── language_helper.php ├── number_helper.php ├── path_helper.php ├── security_helper.php ├── smiley_helper.php ├── string_helper.php ├── text_helper.php ├── typography_helper.php ├── url_helper.php └── xml_helper.php ├── index.html ├── language ├── english │ ├── calendar_lang.php │ ├── date_lang.php │ ├── db_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── ftp_lang.php │ ├── imglib_lang.php │ ├── index.html │ ├── migration_lang.php │ ├── number_lang.php │ ├── profiler_lang.php │ ├── unit_test_lang.php │ └── upload_lang.php └── index.html └── libraries ├── Cache ├── Cache.php ├── drivers │ ├── Cache_apc.php │ ├── Cache_dummy.php │ ├── Cache_file.php │ ├── Cache_memcached.php │ └── index.html └── index.html ├── Calendar.php ├── Cart.php ├── Driver.php ├── Email.php ├── Encrypt.php ├── Form_validation.php ├── Ftp.php ├── Image_lib.php ├── Javascript.php ├── Log.php ├── Migration.php ├── Pagination.php ├── Parser.php ├── Profiler.php ├── Session.php ├── Sha1.php ├── Table.php ├── Trackback.php ├── Typography.php ├── Unit_test.php ├── Upload.php ├── User_agent.php ├── Xmlrpc.php ├── Xmlrpcs.php ├── Zip.php ├── index.html └── javascript ├── Jquery.php └── index.html /README.md: -------------------------------------------------------------------------------- 1 | # cmdb 2 | 3 | 业务树参考 4 | http://noops.me/?p=289 5 | -------------------------------------------------------------------------------- /application/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /application/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 | -------------------------------------------------------------------------------- /application/config/cobbler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeus911/cmdb/64104514638231f0932d83ac26b0687dd347635d/application/config/cobbler.php -------------------------------------------------------------------------------- /application/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |Directory access is forbidden.
8 | 9 | 10 |