├── .babelrc ├── .bowerrc ├── .fontcustom-manifest.json ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmrc ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── bower.json ├── gulpfile.js ├── package.json ├── resources ├── font-glyphs │ ├── array.svg │ ├── boolean.svg │ ├── chevron-down.svg │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── chevron-up.svg │ ├── left-arrow.svg │ ├── minus.svg │ ├── null.svg │ ├── number.svg │ ├── object.svg │ ├── plus.svg │ ├── right-arrow.svg │ ├── server-plus.svg │ ├── server.svg │ ├── string.svg │ └── times.svg └── icon │ ├── logo_icon.icns │ └── logo_icon.ico ├── src ├── browser │ └── main.js ├── config │ └── appConfig.js ├── lib │ ├── entities │ │ ├── collection.js │ │ ├── connection.js │ │ └── database.js │ ├── errors │ │ ├── abstractError.js │ │ ├── connectionError.js │ │ ├── databaseError.js │ │ ├── index.js │ │ ├── internalServiceError.js │ │ ├── invalidArgumentError.js │ │ └── objectNotFoundError.js │ ├── libs │ │ └── githubApi.js │ ├── modules │ │ ├── autoupdater │ │ │ └── index.js │ │ ├── connection │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ ├── repository.js │ │ │ ├── service.js │ │ │ └── validator.js │ │ ├── expression │ │ │ └── index.js │ │ ├── keybindings │ │ │ ├── defaults.js │ │ │ └── index.js │ │ ├── logger │ │ │ └── index.js │ │ └── themes │ │ │ ├── defaults.js │ │ │ └── index.js │ └── utils │ │ ├── csvStream.js │ │ ├── fileUtils.js │ │ ├── keyValueUtils.js │ │ ├── mongoUtils.js │ │ ├── mongotronCursor.js │ │ └── typeUtils.js ├── mongotron.js └── ui │ ├── .jshintrc │ ├── app.js │ ├── components │ ├── about │ │ ├── about.html │ │ └── aboutCtrl.js │ ├── addCollection │ │ ├── addCollection.html │ │ └── addCollectionCtrl.js │ ├── addDatabase │ │ ├── addDatabase.html │ │ └── addDatabaseCtrl.js │ ├── connect │ │ ├── addConnection │ │ │ ├── addConnection.html │ │ │ └── addConnectionCtrl.js │ │ ├── connect.html │ │ ├── connectCtrl.js │ │ ├── listConnections │ │ │ ├── listConnections.html │ │ │ └── listConnectionsCtrl.js │ │ └── removeConnection │ │ │ ├── removeConnection.html │ │ │ └── removeConnectionCtrl.js │ ├── editDocument │ │ ├── editDocument.html │ │ └── editDocumentCtrl.js │ ├── logs │ │ ├── logs.html │ │ └── logsCtrl.js │ ├── queryResultsExportModal │ │ ├── queryResultsExportModal.html │ │ └── queryResultsExportModalCtrl.js │ └── settings │ │ ├── keybindings │ │ ├── keybindings.html │ │ └── keybindingsCtrl.js │ │ ├── preferences │ │ ├── preferences.html │ │ └── preferencesCtrl.js │ │ ├── settings.html │ │ ├── settingsCtrl.js │ │ ├── themes │ │ ├── themes.html │ │ └── themesCtrl.js │ │ └── updates │ │ ├── updates.html │ │ └── updatesCtrl.js │ ├── constants │ └── viewTypes.js │ ├── controllers │ └── appCtrl.js │ ├── directives │ ├── btnBoolean │ │ ├── btnBoolean.html │ │ └── btnBoolean.js │ ├── codemirror │ │ └── codemirror.js │ ├── footer │ │ ├── footer.html │ │ ├── footer.js │ │ └── footerCtrl.js │ ├── giveFocusAndSelect.js │ ├── hasConnections.js │ ├── imageSrc.js │ ├── inlineEditor │ │ ├── inlineEditor.html │ │ ├── inlineEditor.js │ │ └── inlineEditorCtrl.js │ ├── keyValueResult │ │ ├── keyValueResult.html │ │ ├── keyValueResult.js │ │ └── keyValueResultCtrl.js │ ├── keybindingContext.js │ ├── loading.js │ ├── markdown.js │ ├── notifications │ │ ├── notification.html │ │ ├── notification.js │ │ ├── notificationCtrl.js │ │ ├── notifications.html │ │ ├── notifications.js │ │ └── notificationsCtrl.js │ ├── query │ │ ├── query.html │ │ ├── query.js │ │ └── queryCtrl.js │ ├── queryResultsExport │ │ ├── queryResultsExport.html │ │ ├── queryResultsExport.js │ │ └── queryResultsExportCtrl.js │ ├── replicaSet │ │ ├── replicaSet.html │ │ └── replicaSet.js │ ├── rightClick.js │ ├── sidebar │ │ ├── sidebar.html │ │ ├── sidebar.js │ │ └── sidebarCtrl.js │ ├── sidenav │ │ ├── sidenav.html │ │ ├── sidenav.js │ │ └── sidenavCtrl.js │ ├── tabView │ │ ├── tabView.html │ │ ├── tabView.js │ │ └── tabViewCtrl.js │ ├── textResults │ │ └── textResults.js │ └── themeClass.js │ ├── filters │ └── trim.js │ ├── font-glyphs │ ├── fontcustom-preview.html │ ├── fontcustom.css │ ├── fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.eot │ ├── fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.svg │ ├── fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.ttf │ └── fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.woff │ ├── fonts │ ├── AvenirNextLTPro-Bold.otf │ ├── AvenirNextLTPro-Regular.otf │ └── AvenirNextLTPro-UltLtCn.otf │ ├── images │ └── logo.png │ ├── index.html │ ├── less │ ├── app.less │ ├── appAnimations.less │ ├── appComponents.less │ ├── appFonts.less │ ├── appGlobals.less │ ├── appUtils.less │ ├── appVariables.less │ ├── appVendorOverrides.less │ ├── components │ │ ├── about.less │ │ ├── alert.less │ │ ├── btn-hover-menu.less │ │ ├── button.less │ │ ├── collections.less │ │ ├── connect.less │ │ ├── editDocument.less │ │ ├── form.less │ │ ├── inline-editor.less │ │ ├── modal.less │ │ ├── notifications.less │ │ ├── query.less │ │ ├── queryEditor.less │ │ ├── queryResultViews.less │ │ ├── queryResultsExport.less │ │ ├── release.less │ │ ├── serverList.less │ │ ├── settings.less │ │ └── tabView.less │ ├── footer.less │ ├── main.less │ ├── sidebar.less │ ├── sidenav.less │ └── themes │ │ ├── atom-theme.less │ │ ├── default-theme.less │ │ └── isotope-ui-theme.less │ ├── services │ ├── connectionCache.js │ ├── dialogService.js │ ├── keypressHandlers │ │ ├── connectionManager-newConnection.js │ │ ├── tabManager-autoformat.js │ │ ├── tabManager-newTab.js │ │ ├── tabManager-nextTab.js │ │ ├── tabManager-previousTab.js │ │ └── tabManager-runQuery.js │ ├── keypressService.js │ ├── localStorageService.js │ ├── menuService.js │ ├── modalService.js │ ├── navUtils.js │ ├── notificationService.js │ ├── recursionHelper.js │ ├── tabCache.js │ ├── themeService.js │ ├── userPreferencesService.js │ └── utilsService.js │ └── vendorCustom │ ├── codemirror-formatting.js │ └── ng-bs-animated-button.js └── tests ├── integration ├── before-all.js ├── entities │ ├── connection │ │ └── connect-test.js │ └── database │ │ └── addCollection-test.js └── modules │ └── connection │ ├── create-test.js │ └── update-test.js ├── ui ├── karma.conf.js ├── karma.shim.js ├── protractor.conf.js └── services │ ├── localStorage │ ├── exists-test.js │ ├── get-test.js │ ├── remove-test.js │ └── set-test.js │ └── tabCache │ ├── activateById-test.js │ ├── activateNext-test.js │ ├── activatePrevious-test.js │ ├── activeByName-test.js │ ├── add-test.js │ ├── deactivateAll-test.js │ ├── exists-test.js │ ├── existsByName-test.js │ ├── getById-test.js │ ├── list-test.js │ ├── remove-test.js │ ├── removeActive-test.js │ └── removeAll-test.js ├── unit ├── before-all.js ├── libs │ └── githubApi │ │ └── listReleases-test.js ├── modules │ ├── autoUpdater │ │ └── checkForNewRelease-test.js │ ├── connection │ │ ├── repository │ │ │ ├── create-test.js │ │ │ ├── delete-test.js │ │ │ ├── findById-test.js │ │ │ ├── list-test.js │ │ │ └── update-test.js │ │ └── service │ │ │ ├── delete-test.js │ │ │ ├── findById-test.js │ │ │ └── list-test.js │ ├── expression │ │ ├── eval-test.js │ │ ├── getMongoCollectionName-test.js │ │ └── getMongoMethodName-test.js │ ├── keybindings │ │ └── list-test.js │ └── themes │ │ ├── changeActive-test.js │ │ └── list-test.js └── utils │ └── keyValueUtils │ └── convert-test.js └── utils └── testUtils.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "src/ui/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.fontcustom-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/.fontcustom-manifest.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | build 2 | src/ui/vendor 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/package.json -------------------------------------------------------------------------------- /resources/font-glyphs/array.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/array.svg -------------------------------------------------------------------------------- /resources/font-glyphs/boolean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/boolean.svg -------------------------------------------------------------------------------- /resources/font-glyphs/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/chevron-down.svg -------------------------------------------------------------------------------- /resources/font-glyphs/chevron-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/chevron-left.svg -------------------------------------------------------------------------------- /resources/font-glyphs/chevron-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/chevron-right.svg -------------------------------------------------------------------------------- /resources/font-glyphs/chevron-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/chevron-up.svg -------------------------------------------------------------------------------- /resources/font-glyphs/left-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/left-arrow.svg -------------------------------------------------------------------------------- /resources/font-glyphs/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/minus.svg -------------------------------------------------------------------------------- /resources/font-glyphs/null.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/null.svg -------------------------------------------------------------------------------- /resources/font-glyphs/number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/number.svg -------------------------------------------------------------------------------- /resources/font-glyphs/object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/object.svg -------------------------------------------------------------------------------- /resources/font-glyphs/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/plus.svg -------------------------------------------------------------------------------- /resources/font-glyphs/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/right-arrow.svg -------------------------------------------------------------------------------- /resources/font-glyphs/server-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/server-plus.svg -------------------------------------------------------------------------------- /resources/font-glyphs/server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/server.svg -------------------------------------------------------------------------------- /resources/font-glyphs/string.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/string.svg -------------------------------------------------------------------------------- /resources/font-glyphs/times.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/font-glyphs/times.svg -------------------------------------------------------------------------------- /resources/icon/logo_icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/icon/logo_icon.icns -------------------------------------------------------------------------------- /resources/icon/logo_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/resources/icon/logo_icon.ico -------------------------------------------------------------------------------- /src/browser/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/browser/main.js -------------------------------------------------------------------------------- /src/config/appConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/config/appConfig.js -------------------------------------------------------------------------------- /src/lib/entities/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/entities/collection.js -------------------------------------------------------------------------------- /src/lib/entities/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/entities/connection.js -------------------------------------------------------------------------------- /src/lib/entities/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/entities/database.js -------------------------------------------------------------------------------- /src/lib/errors/abstractError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/abstractError.js -------------------------------------------------------------------------------- /src/lib/errors/connectionError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/connectionError.js -------------------------------------------------------------------------------- /src/lib/errors/databaseError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/databaseError.js -------------------------------------------------------------------------------- /src/lib/errors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/index.js -------------------------------------------------------------------------------- /src/lib/errors/internalServiceError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/internalServiceError.js -------------------------------------------------------------------------------- /src/lib/errors/invalidArgumentError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/invalidArgumentError.js -------------------------------------------------------------------------------- /src/lib/errors/objectNotFoundError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/errors/objectNotFoundError.js -------------------------------------------------------------------------------- /src/lib/libs/githubApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/libs/githubApi.js -------------------------------------------------------------------------------- /src/lib/modules/autoupdater/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/autoupdater/index.js -------------------------------------------------------------------------------- /src/lib/modules/connection/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/connection/defaults.js -------------------------------------------------------------------------------- /src/lib/modules/connection/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/connection/index.js -------------------------------------------------------------------------------- /src/lib/modules/connection/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/connection/repository.js -------------------------------------------------------------------------------- /src/lib/modules/connection/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/connection/service.js -------------------------------------------------------------------------------- /src/lib/modules/connection/validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/connection/validator.js -------------------------------------------------------------------------------- /src/lib/modules/expression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/expression/index.js -------------------------------------------------------------------------------- /src/lib/modules/keybindings/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/keybindings/defaults.js -------------------------------------------------------------------------------- /src/lib/modules/keybindings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/keybindings/index.js -------------------------------------------------------------------------------- /src/lib/modules/logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/logger/index.js -------------------------------------------------------------------------------- /src/lib/modules/themes/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/themes/defaults.js -------------------------------------------------------------------------------- /src/lib/modules/themes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/modules/themes/index.js -------------------------------------------------------------------------------- /src/lib/utils/csvStream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/utils/csvStream.js -------------------------------------------------------------------------------- /src/lib/utils/fileUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/utils/fileUtils.js -------------------------------------------------------------------------------- /src/lib/utils/keyValueUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/utils/keyValueUtils.js -------------------------------------------------------------------------------- /src/lib/utils/mongoUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/utils/mongoUtils.js -------------------------------------------------------------------------------- /src/lib/utils/mongotronCursor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/utils/mongotronCursor.js -------------------------------------------------------------------------------- /src/lib/utils/typeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/lib/utils/typeUtils.js -------------------------------------------------------------------------------- /src/mongotron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/mongotron.js -------------------------------------------------------------------------------- /src/ui/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/.jshintrc -------------------------------------------------------------------------------- /src/ui/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/app.js -------------------------------------------------------------------------------- /src/ui/components/about/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/about/about.html -------------------------------------------------------------------------------- /src/ui/components/about/aboutCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/about/aboutCtrl.js -------------------------------------------------------------------------------- /src/ui/components/addCollection/addCollection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/addCollection/addCollection.html -------------------------------------------------------------------------------- /src/ui/components/addCollection/addCollectionCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/addCollection/addCollectionCtrl.js -------------------------------------------------------------------------------- /src/ui/components/addDatabase/addDatabase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/addDatabase/addDatabase.html -------------------------------------------------------------------------------- /src/ui/components/addDatabase/addDatabaseCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/addDatabase/addDatabaseCtrl.js -------------------------------------------------------------------------------- /src/ui/components/connect/addConnection/addConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/addConnection/addConnection.html -------------------------------------------------------------------------------- /src/ui/components/connect/addConnection/addConnectionCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/addConnection/addConnectionCtrl.js -------------------------------------------------------------------------------- /src/ui/components/connect/connect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/connect.html -------------------------------------------------------------------------------- /src/ui/components/connect/connectCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/connectCtrl.js -------------------------------------------------------------------------------- /src/ui/components/connect/listConnections/listConnections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/listConnections/listConnections.html -------------------------------------------------------------------------------- /src/ui/components/connect/listConnections/listConnectionsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/listConnections/listConnectionsCtrl.js -------------------------------------------------------------------------------- /src/ui/components/connect/removeConnection/removeConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/removeConnection/removeConnection.html -------------------------------------------------------------------------------- /src/ui/components/connect/removeConnection/removeConnectionCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/connect/removeConnection/removeConnectionCtrl.js -------------------------------------------------------------------------------- /src/ui/components/editDocument/editDocument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/editDocument/editDocument.html -------------------------------------------------------------------------------- /src/ui/components/editDocument/editDocumentCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/editDocument/editDocumentCtrl.js -------------------------------------------------------------------------------- /src/ui/components/logs/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/logs/logs.html -------------------------------------------------------------------------------- /src/ui/components/logs/logsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/logs/logsCtrl.js -------------------------------------------------------------------------------- /src/ui/components/queryResultsExportModal/queryResultsExportModal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/queryResultsExportModal/queryResultsExportModal.html -------------------------------------------------------------------------------- /src/ui/components/queryResultsExportModal/queryResultsExportModalCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/queryResultsExportModal/queryResultsExportModalCtrl.js -------------------------------------------------------------------------------- /src/ui/components/settings/keybindings/keybindings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/keybindings/keybindings.html -------------------------------------------------------------------------------- /src/ui/components/settings/keybindings/keybindingsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/keybindings/keybindingsCtrl.js -------------------------------------------------------------------------------- /src/ui/components/settings/preferences/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/preferences/preferences.html -------------------------------------------------------------------------------- /src/ui/components/settings/preferences/preferencesCtrl.js: -------------------------------------------------------------------------------- 1 | angular.module('app').controller('preferencesCtrl', [ 2 | function() {} 3 | ]); 4 | -------------------------------------------------------------------------------- /src/ui/components/settings/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/settings.html -------------------------------------------------------------------------------- /src/ui/components/settings/settingsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/settingsCtrl.js -------------------------------------------------------------------------------- /src/ui/components/settings/themes/themes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/themes/themes.html -------------------------------------------------------------------------------- /src/ui/components/settings/themes/themesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/themes/themesCtrl.js -------------------------------------------------------------------------------- /src/ui/components/settings/updates/updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/updates/updates.html -------------------------------------------------------------------------------- /src/ui/components/settings/updates/updatesCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/components/settings/updates/updatesCtrl.js -------------------------------------------------------------------------------- /src/ui/constants/viewTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/constants/viewTypes.js -------------------------------------------------------------------------------- /src/ui/controllers/appCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/controllers/appCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/btnBoolean/btnBoolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/btnBoolean/btnBoolean.html -------------------------------------------------------------------------------- /src/ui/directives/btnBoolean/btnBoolean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/btnBoolean/btnBoolean.js -------------------------------------------------------------------------------- /src/ui/directives/codemirror/codemirror.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/codemirror/codemirror.js -------------------------------------------------------------------------------- /src/ui/directives/footer/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/footer/footer.html -------------------------------------------------------------------------------- /src/ui/directives/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/footer/footer.js -------------------------------------------------------------------------------- /src/ui/directives/footer/footerCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/footer/footerCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/giveFocusAndSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/giveFocusAndSelect.js -------------------------------------------------------------------------------- /src/ui/directives/hasConnections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/hasConnections.js -------------------------------------------------------------------------------- /src/ui/directives/imageSrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/imageSrc.js -------------------------------------------------------------------------------- /src/ui/directives/inlineEditor/inlineEditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/inlineEditor/inlineEditor.html -------------------------------------------------------------------------------- /src/ui/directives/inlineEditor/inlineEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/inlineEditor/inlineEditor.js -------------------------------------------------------------------------------- /src/ui/directives/inlineEditor/inlineEditorCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/inlineEditor/inlineEditorCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/keyValueResult/keyValueResult.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/keyValueResult/keyValueResult.html -------------------------------------------------------------------------------- /src/ui/directives/keyValueResult/keyValueResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/keyValueResult/keyValueResult.js -------------------------------------------------------------------------------- /src/ui/directives/keyValueResult/keyValueResultCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/keyValueResult/keyValueResultCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/keybindingContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/keybindingContext.js -------------------------------------------------------------------------------- /src/ui/directives/loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/loading.js -------------------------------------------------------------------------------- /src/ui/directives/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/markdown.js -------------------------------------------------------------------------------- /src/ui/directives/notifications/notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/notifications/notification.html -------------------------------------------------------------------------------- /src/ui/directives/notifications/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/notifications/notification.js -------------------------------------------------------------------------------- /src/ui/directives/notifications/notificationCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/notifications/notificationCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/notifications/notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/notifications/notifications.html -------------------------------------------------------------------------------- /src/ui/directives/notifications/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/notifications/notifications.js -------------------------------------------------------------------------------- /src/ui/directives/notifications/notificationsCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/notifications/notificationsCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/query/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/query/query.html -------------------------------------------------------------------------------- /src/ui/directives/query/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/query/query.js -------------------------------------------------------------------------------- /src/ui/directives/query/queryCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/query/queryCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/queryResultsExport/queryResultsExport.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/queryResultsExport/queryResultsExport.html -------------------------------------------------------------------------------- /src/ui/directives/queryResultsExport/queryResultsExport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/queryResultsExport/queryResultsExport.js -------------------------------------------------------------------------------- /src/ui/directives/queryResultsExport/queryResultsExportCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/queryResultsExport/queryResultsExportCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/replicaSet/replicaSet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/replicaSet/replicaSet.html -------------------------------------------------------------------------------- /src/ui/directives/replicaSet/replicaSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/replicaSet/replicaSet.js -------------------------------------------------------------------------------- /src/ui/directives/rightClick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/rightClick.js -------------------------------------------------------------------------------- /src/ui/directives/sidebar/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/sidebar/sidebar.html -------------------------------------------------------------------------------- /src/ui/directives/sidebar/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/sidebar/sidebar.js -------------------------------------------------------------------------------- /src/ui/directives/sidebar/sidebarCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/sidebar/sidebarCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/sidenav/sidenav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/sidenav/sidenav.html -------------------------------------------------------------------------------- /src/ui/directives/sidenav/sidenav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/sidenav/sidenav.js -------------------------------------------------------------------------------- /src/ui/directives/sidenav/sidenavCtrl.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | angular.module('app').controller('sidenavCtrl', [ 4 | () => {} 5 | ]); 6 | -------------------------------------------------------------------------------- /src/ui/directives/tabView/tabView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/tabView/tabView.html -------------------------------------------------------------------------------- /src/ui/directives/tabView/tabView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/tabView/tabView.js -------------------------------------------------------------------------------- /src/ui/directives/tabView/tabViewCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/tabView/tabViewCtrl.js -------------------------------------------------------------------------------- /src/ui/directives/textResults/textResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/textResults/textResults.js -------------------------------------------------------------------------------- /src/ui/directives/themeClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/directives/themeClass.js -------------------------------------------------------------------------------- /src/ui/filters/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/filters/trim.js -------------------------------------------------------------------------------- /src/ui/font-glyphs/fontcustom-preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/font-glyphs/fontcustom-preview.html -------------------------------------------------------------------------------- /src/ui/font-glyphs/fontcustom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/font-glyphs/fontcustom.css -------------------------------------------------------------------------------- /src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.eot -------------------------------------------------------------------------------- /src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.svg -------------------------------------------------------------------------------- /src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.ttf -------------------------------------------------------------------------------- /src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/font-glyphs/fontcustom_4243f883ea5d5e1c7a51985d4bdef25e.woff -------------------------------------------------------------------------------- /src/ui/fonts/AvenirNextLTPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/fonts/AvenirNextLTPro-Bold.otf -------------------------------------------------------------------------------- /src/ui/fonts/AvenirNextLTPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/fonts/AvenirNextLTPro-Regular.otf -------------------------------------------------------------------------------- /src/ui/fonts/AvenirNextLTPro-UltLtCn.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/fonts/AvenirNextLTPro-UltLtCn.otf -------------------------------------------------------------------------------- /src/ui/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/images/logo.png -------------------------------------------------------------------------------- /src/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/index.html -------------------------------------------------------------------------------- /src/ui/less/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/app.less -------------------------------------------------------------------------------- /src/ui/less/appAnimations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appAnimations.less -------------------------------------------------------------------------------- /src/ui/less/appComponents.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appComponents.less -------------------------------------------------------------------------------- /src/ui/less/appFonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appFonts.less -------------------------------------------------------------------------------- /src/ui/less/appGlobals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appGlobals.less -------------------------------------------------------------------------------- /src/ui/less/appUtils.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appUtils.less -------------------------------------------------------------------------------- /src/ui/less/appVariables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appVariables.less -------------------------------------------------------------------------------- /src/ui/less/appVendorOverrides.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/appVendorOverrides.less -------------------------------------------------------------------------------- /src/ui/less/components/about.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/about.less -------------------------------------------------------------------------------- /src/ui/less/components/alert.less: -------------------------------------------------------------------------------- 1 | .alert { 2 | } 3 | -------------------------------------------------------------------------------- /src/ui/less/components/btn-hover-menu.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/btn-hover-menu.less -------------------------------------------------------------------------------- /src/ui/less/components/button.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/button.less -------------------------------------------------------------------------------- /src/ui/less/components/collections.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/collections.less -------------------------------------------------------------------------------- /src/ui/less/components/connect.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/connect.less -------------------------------------------------------------------------------- /src/ui/less/components/editDocument.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/editDocument.less -------------------------------------------------------------------------------- /src/ui/less/components/form.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/form.less -------------------------------------------------------------------------------- /src/ui/less/components/inline-editor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/inline-editor.less -------------------------------------------------------------------------------- /src/ui/less/components/modal.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/modal.less -------------------------------------------------------------------------------- /src/ui/less/components/notifications.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/notifications.less -------------------------------------------------------------------------------- /src/ui/less/components/query.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/query.less -------------------------------------------------------------------------------- /src/ui/less/components/queryEditor.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/queryEditor.less -------------------------------------------------------------------------------- /src/ui/less/components/queryResultViews.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/queryResultViews.less -------------------------------------------------------------------------------- /src/ui/less/components/queryResultsExport.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/queryResultsExport.less -------------------------------------------------------------------------------- /src/ui/less/components/release.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/release.less -------------------------------------------------------------------------------- /src/ui/less/components/serverList.less: -------------------------------------------------------------------------------- 1 | /* 2 | * Server List 3 | */ 4 | -------------------------------------------------------------------------------- /src/ui/less/components/settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/settings.less -------------------------------------------------------------------------------- /src/ui/less/components/tabView.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/components/tabView.less -------------------------------------------------------------------------------- /src/ui/less/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/footer.less -------------------------------------------------------------------------------- /src/ui/less/main.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/main.less -------------------------------------------------------------------------------- /src/ui/less/sidebar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/sidebar.less -------------------------------------------------------------------------------- /src/ui/less/sidenav.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/sidenav.less -------------------------------------------------------------------------------- /src/ui/less/themes/atom-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/themes/atom-theme.less -------------------------------------------------------------------------------- /src/ui/less/themes/default-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/themes/default-theme.less -------------------------------------------------------------------------------- /src/ui/less/themes/isotope-ui-theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/less/themes/isotope-ui-theme.less -------------------------------------------------------------------------------- /src/ui/services/connectionCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/connectionCache.js -------------------------------------------------------------------------------- /src/ui/services/dialogService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/dialogService.js -------------------------------------------------------------------------------- /src/ui/services/keypressHandlers/connectionManager-newConnection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressHandlers/connectionManager-newConnection.js -------------------------------------------------------------------------------- /src/ui/services/keypressHandlers/tabManager-autoformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressHandlers/tabManager-autoformat.js -------------------------------------------------------------------------------- /src/ui/services/keypressHandlers/tabManager-newTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressHandlers/tabManager-newTab.js -------------------------------------------------------------------------------- /src/ui/services/keypressHandlers/tabManager-nextTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressHandlers/tabManager-nextTab.js -------------------------------------------------------------------------------- /src/ui/services/keypressHandlers/tabManager-previousTab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressHandlers/tabManager-previousTab.js -------------------------------------------------------------------------------- /src/ui/services/keypressHandlers/tabManager-runQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressHandlers/tabManager-runQuery.js -------------------------------------------------------------------------------- /src/ui/services/keypressService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/keypressService.js -------------------------------------------------------------------------------- /src/ui/services/localStorageService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/localStorageService.js -------------------------------------------------------------------------------- /src/ui/services/menuService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/menuService.js -------------------------------------------------------------------------------- /src/ui/services/modalService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/modalService.js -------------------------------------------------------------------------------- /src/ui/services/navUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/navUtils.js -------------------------------------------------------------------------------- /src/ui/services/notificationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/notificationService.js -------------------------------------------------------------------------------- /src/ui/services/recursionHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/recursionHelper.js -------------------------------------------------------------------------------- /src/ui/services/tabCache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/tabCache.js -------------------------------------------------------------------------------- /src/ui/services/themeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/themeService.js -------------------------------------------------------------------------------- /src/ui/services/userPreferencesService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/userPreferencesService.js -------------------------------------------------------------------------------- /src/ui/services/utilsService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/services/utilsService.js -------------------------------------------------------------------------------- /src/ui/vendorCustom/codemirror-formatting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/vendorCustom/codemirror-formatting.js -------------------------------------------------------------------------------- /src/ui/vendorCustom/ng-bs-animated-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/src/ui/vendorCustom/ng-bs-animated-button.js -------------------------------------------------------------------------------- /tests/integration/before-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/integration/before-all.js -------------------------------------------------------------------------------- /tests/integration/entities/connection/connect-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/integration/entities/connection/connect-test.js -------------------------------------------------------------------------------- /tests/integration/entities/database/addCollection-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/integration/entities/database/addCollection-test.js -------------------------------------------------------------------------------- /tests/integration/modules/connection/create-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/integration/modules/connection/create-test.js -------------------------------------------------------------------------------- /tests/integration/modules/connection/update-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/integration/modules/connection/update-test.js -------------------------------------------------------------------------------- /tests/ui/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/karma.conf.js -------------------------------------------------------------------------------- /tests/ui/karma.shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/karma.shim.js -------------------------------------------------------------------------------- /tests/ui/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/protractor.conf.js -------------------------------------------------------------------------------- /tests/ui/services/localStorage/exists-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/localStorage/exists-test.js -------------------------------------------------------------------------------- /tests/ui/services/localStorage/get-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/localStorage/get-test.js -------------------------------------------------------------------------------- /tests/ui/services/localStorage/remove-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/localStorage/remove-test.js -------------------------------------------------------------------------------- /tests/ui/services/localStorage/set-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/localStorage/set-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/activateById-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/activateById-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/activateNext-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/activateNext-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/activatePrevious-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/activatePrevious-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/activeByName-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/activeByName-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/add-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/add-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/deactivateAll-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/deactivateAll-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/exists-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/exists-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/existsByName-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/existsByName-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/getById-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/getById-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/list-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/remove-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/remove-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/removeActive-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/removeActive-test.js -------------------------------------------------------------------------------- /tests/ui/services/tabCache/removeAll-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/ui/services/tabCache/removeAll-test.js -------------------------------------------------------------------------------- /tests/unit/before-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/before-all.js -------------------------------------------------------------------------------- /tests/unit/libs/githubApi/listReleases-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/libs/githubApi/listReleases-test.js -------------------------------------------------------------------------------- /tests/unit/modules/autoUpdater/checkForNewRelease-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/autoUpdater/checkForNewRelease-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/repository/create-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/repository/create-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/repository/delete-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/repository/delete-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/repository/findById-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/repository/findById-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/repository/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/repository/list-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/repository/update-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/repository/update-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/service/delete-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/service/delete-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/service/findById-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/service/findById-test.js -------------------------------------------------------------------------------- /tests/unit/modules/connection/service/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/connection/service/list-test.js -------------------------------------------------------------------------------- /tests/unit/modules/expression/eval-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/expression/eval-test.js -------------------------------------------------------------------------------- /tests/unit/modules/expression/getMongoCollectionName-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/expression/getMongoCollectionName-test.js -------------------------------------------------------------------------------- /tests/unit/modules/expression/getMongoMethodName-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/expression/getMongoMethodName-test.js -------------------------------------------------------------------------------- /tests/unit/modules/keybindings/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/keybindings/list-test.js -------------------------------------------------------------------------------- /tests/unit/modules/themes/changeActive-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/themes/changeActive-test.js -------------------------------------------------------------------------------- /tests/unit/modules/themes/list-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/modules/themes/list-test.js -------------------------------------------------------------------------------- /tests/unit/utils/keyValueUtils/convert-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/unit/utils/keyValueUtils/convert-test.js -------------------------------------------------------------------------------- /tests/utils/testUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/officert/mongotron/HEAD/tests/utils/testUtils.js --------------------------------------------------------------------------------