├── .babelrc ├── .bowerrc ├── .dockerignore ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── DONATION-TRANSPARENCY.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README-EN.md ├── README.md ├── TESTING.md ├── batch.png ├── bin └── stf ├── bower.json ├── gulpfile.js ├── lib ├── cli │ ├── api │ │ └── index.js │ ├── app │ │ └── index.js │ ├── auth-ldap │ │ └── index.js │ ├── auth-mock │ │ └── index.js │ ├── auth-oauth2 │ │ └── index.js │ ├── auth-openid │ │ └── index.js │ ├── auth-saml2 │ │ └── index.js │ ├── device │ │ └── index.js │ ├── doctor │ │ └── index.js │ ├── generate-fake-device │ │ └── index.js │ ├── generate-fake-group │ │ └── index.js │ ├── generate-fake-user │ │ └── index.js │ ├── groups-engine │ │ └── index.js │ ├── index.js │ ├── ios-device │ │ └── index.js │ ├── ios-provider │ │ └── index.js │ ├── local │ │ └── index.js │ ├── log-rethinkdb │ │ └── index.js │ ├── migrate │ │ └── index.js │ ├── notify-hipchat │ │ └── index.js │ ├── notify-slack │ │ └── index.js │ ├── please.js │ ├── poorxy │ │ └── index.js │ ├── processor │ │ └── index.js │ ├── provider │ │ └── index.js │ ├── reaper │ │ └── index.js │ ├── storage-plugin-apk │ │ └── index.js │ ├── storage-plugin-image │ │ └── index.js │ ├── storage-s3 │ │ └── index.js │ ├── storage-temp │ │ └── index.js │ ├── triproxy │ │ └── index.js │ └── websocket │ │ └── index.js ├── db │ ├── api.js │ ├── index.js │ ├── setup.js │ └── tables.js ├── units │ ├── api │ │ ├── config │ │ │ └── default.yaml │ │ ├── controllers │ │ │ ├── devices.js │ │ │ ├── groups.js │ │ │ ├── user.js │ │ │ └── users.js │ │ ├── helpers │ │ │ └── securityHandlers.js │ │ ├── index.js │ │ └── swagger │ │ │ ├── api_v1.yaml │ │ │ └── api_v1_generated.json │ ├── app │ │ ├── index.js │ │ └── middleware │ │ │ ├── appstore-icons.js │ │ │ ├── auth.js │ │ │ ├── browser-icons.js │ │ │ ├── device-icons.js │ │ │ └── webpack.js │ ├── auth │ │ ├── ldap.js │ │ ├── mock.js │ │ ├── oauth2 │ │ │ ├── index.js │ │ │ └── strategy.js │ │ ├── openid.js │ │ └── saml2.js │ ├── device │ │ ├── index.js │ │ ├── plugins │ │ │ ├── account.js │ │ │ ├── browser.js │ │ │ ├── cleanup.js │ │ │ ├── clipboard.js │ │ │ ├── connect.js │ │ │ ├── filesystem.js │ │ │ ├── forward │ │ │ │ ├── index.js │ │ │ │ └── util │ │ │ │ │ ├── manager.js │ │ │ │ │ ├── reader.js │ │ │ │ │ └── writer.js │ │ │ ├── group.js │ │ │ ├── heartbeat.js │ │ │ ├── install.js │ │ │ ├── logcat.js │ │ │ ├── logger.js │ │ │ ├── mute.js │ │ │ ├── package.json │ │ │ ├── reboot.js │ │ │ ├── ringer.js │ │ │ ├── screen │ │ │ │ ├── capture.js │ │ │ │ ├── options.js │ │ │ │ ├── stream.js │ │ │ │ └── util │ │ │ │ │ ├── banner.js │ │ │ │ │ ├── broadcastset.js │ │ │ │ │ ├── frameconfig.js │ │ │ │ │ └── frameparser.js │ │ │ ├── sd.js │ │ │ ├── service.js │ │ │ ├── shell.js │ │ │ ├── solo.js │ │ │ ├── store.js │ │ │ ├── touch │ │ │ │ └── index.js │ │ │ ├── util │ │ │ │ ├── data.js │ │ │ │ ├── display.js │ │ │ │ ├── flags.js │ │ │ │ ├── identity.js │ │ │ │ ├── phone.js │ │ │ │ └── urlformat.js │ │ │ ├── vnc │ │ │ │ ├── index.js │ │ │ │ └── util │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── pixelformat.js │ │ │ │ │ ├── pointertranslator.js │ │ │ │ │ └── server.js │ │ │ └── wifi.js │ │ ├── resources │ │ │ ├── minicap.js │ │ │ ├── minirev.js │ │ │ ├── minitouch.js │ │ │ ├── service.js │ │ │ └── util │ │ │ │ └── resource.js │ │ └── support │ │ │ ├── abi.js │ │ │ ├── adb.js │ │ │ ├── channels.js │ │ │ ├── properties.js │ │ │ ├── push.js │ │ │ ├── router.js │ │ │ ├── sdk.js │ │ │ ├── storage.js │ │ │ └── sub.js │ ├── groups-engine │ │ ├── index.js │ │ ├── scheduler │ │ │ └── index.js │ │ └── watchers │ │ │ ├── devices.js │ │ │ ├── groups.js │ │ │ └── users.js │ ├── ios-device │ │ ├── index.js │ │ ├── plugins │ │ │ ├── connect.js │ │ │ ├── forward │ │ │ │ ├── index.js │ │ │ │ └── util │ │ │ │ │ ├── manager.js │ │ │ │ │ ├── reader.js │ │ │ │ │ └── writer.js │ │ │ ├── group.js │ │ │ ├── heartbeat.js │ │ │ ├── idevice.js │ │ │ ├── install.js │ │ │ ├── ios-deploy.js │ │ │ ├── logcat.js │ │ │ ├── logger.js │ │ │ ├── screen │ │ │ │ ├── capture.js │ │ │ │ ├── options.js │ │ │ │ ├── stream.js │ │ │ │ └── util │ │ │ │ │ ├── banner.js │ │ │ │ │ ├── broadcastset.js │ │ │ │ │ ├── frameconfig.js │ │ │ │ │ └── frameparser.js │ │ │ ├── service.js │ │ │ ├── solo.js │ │ │ ├── touch │ │ │ │ └── index.js │ │ │ ├── util │ │ │ │ ├── data.js │ │ │ │ ├── display.js │ │ │ │ ├── flags.js │ │ │ │ ├── identity.js │ │ │ │ ├── phone.js │ │ │ │ └── urlformat.js │ │ │ ├── vnc │ │ │ │ ├── index.js │ │ │ │ └── util │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── pixelformat.js │ │ │ │ │ ├── pointertranslator.js │ │ │ │ │ └── server.js │ │ │ ├── wdaCommands.js │ │ │ └── wdaProxy.js │ │ └── support │ │ │ ├── TypeToModel.js │ │ │ ├── channels.js │ │ │ ├── deviceinfo.js │ │ │ ├── push.js │ │ │ ├── router.js │ │ │ ├── simctl.js │ │ │ ├── storage.js │ │ │ └── sub.js │ ├── ios-provider │ │ └── index.js │ ├── log │ │ └── rethinkdb.js │ ├── notify │ │ ├── hipchat.js │ │ └── slack.js │ ├── poorxy │ │ └── index.js │ ├── processor │ │ └── index.js │ ├── provider │ │ └── index.js │ ├── reaper │ │ └── index.js │ ├── storage │ │ ├── plugins │ │ │ ├── apk │ │ │ │ ├── index.js │ │ │ │ └── task │ │ │ │ │ └── manifest.js │ │ │ └── image │ │ │ │ ├── index.js │ │ │ │ ├── param │ │ │ │ ├── crop.js │ │ │ │ └── gravity.js │ │ │ │ └── task │ │ │ │ ├── get.js │ │ │ │ └── transform.js │ │ ├── s3.js │ │ └── temp.js │ ├── triproxy │ │ └── index.js │ └── websocket │ │ ├── index.js │ │ └── middleware │ │ ├── auth.js │ │ ├── cookie-session.js │ │ └── remote-ip.js ├── util │ ├── apiutil.js │ ├── datautil.js │ ├── deviceutil.js │ ├── devutil.js │ ├── download.js │ ├── failcounter.js │ ├── fakedevice.js │ ├── fakegroup.js │ ├── fakeuser.js │ ├── grouputil.js │ ├── ipareader.js │ ├── jwtutil.js │ ├── keyutil.js │ ├── ldaputil.js │ ├── lifecycle.js │ ├── lockutil.js │ ├── logger.js │ ├── pathutil.js │ ├── procutil.js │ ├── promiseutil.js │ ├── refresh.js │ ├── requtil.js │ ├── riskystream.js │ ├── srv.js │ ├── statequeue.js │ ├── storage.js │ ├── streamutil.js │ ├── timeutil.js │ ├── ttlset.js │ ├── urlutil.js │ ├── vncauth.js │ └── zmqutil.js └── wire │ ├── channelmanager.js │ ├── index.js │ ├── messagestream.js │ ├── router.js │ ├── seqqueue.js │ ├── util.js │ └── wire.proto ├── package.json ├── res ├── .eslintrc ├── app │ ├── app.js │ ├── batch-control-panes │ │ ├── batch-control-controller.js │ │ ├── batch-control.css │ │ ├── batch-control.pug │ │ ├── batch.pug │ │ ├── core-batch-control-directive.js │ │ └── index.js │ ├── components │ │ └── stf │ │ │ ├── admin-mode │ │ │ ├── admin-mode-directive.js │ │ │ ├── admin-mode-spec.js │ │ │ └── index.js │ │ │ ├── angular-draggabilly │ │ │ ├── angular-draggabilly-directive.js │ │ │ ├── angular-draggabilly-spec.js │ │ │ └── index.js │ │ │ ├── angular-packery │ │ │ ├── angular-packery-directive.js │ │ │ ├── angular-packery-spec.js │ │ │ ├── angular-packery.css │ │ │ └── index.js │ │ │ ├── app-state │ │ │ ├── app-state-provider.js │ │ │ └── index.js │ │ │ ├── basic-mode │ │ │ ├── basic-mode-directive.js │ │ │ ├── basic-mode-spec.js │ │ │ ├── basic-mode.css │ │ │ └── index.js │ │ │ ├── batch-control │ │ │ ├── batch-control-service.js │ │ │ └── index.js │ │ │ ├── browser-info │ │ │ ├── browser-info-service.js │ │ │ ├── browser-info-spec.js │ │ │ └── index.js │ │ │ ├── column-choice │ │ │ ├── column-choice-directive.js │ │ │ ├── column-choice.css │ │ │ ├── column-choice.pug │ │ │ └── index.js │ │ │ ├── common-ui │ │ │ ├── badge-icon │ │ │ │ ├── badge-icon-directive.js │ │ │ │ ├── badge-icon-spec.js │ │ │ │ ├── badge-icon.css │ │ │ │ ├── badge-icon.pug │ │ │ │ └── index.js │ │ │ ├── blur-element │ │ │ │ ├── blur-element-directive.js │ │ │ │ ├── blur-element-spec.js │ │ │ │ └── index.js │ │ │ ├── clear-button │ │ │ │ ├── clear-button-directive.js │ │ │ │ ├── clear-button-spec.js │ │ │ │ ├── clear-button.pug │ │ │ │ └── index.js │ │ │ ├── counter │ │ │ │ ├── counter-directive.js │ │ │ │ ├── counter-spec.js │ │ │ │ └── index.js │ │ │ ├── enable-autofill │ │ │ │ ├── README.md │ │ │ │ ├── enable-autofill-directive.js │ │ │ │ ├── enable-autofill-spec.js │ │ │ │ └── index.js │ │ │ ├── error-message │ │ │ │ ├── error-message-directive.js │ │ │ │ ├── error-message-spec.js │ │ │ │ ├── error-message.css │ │ │ │ ├── error-message.pug │ │ │ │ └── index.js │ │ │ ├── fallback-image │ │ │ │ ├── fallback-image-directive.js │ │ │ │ ├── fallback-image-spec.js │ │ │ │ └── index.js │ │ │ ├── filter-button │ │ │ │ ├── filter-button-directive.js │ │ │ │ ├── filter-button-spec.js │ │ │ │ ├── filter-button.pug │ │ │ │ └── index.js │ │ │ ├── focus-element │ │ │ │ ├── focus-element-directive.js │ │ │ │ ├── focus-element-spec.js │ │ │ │ └── index.js │ │ │ ├── help-icon │ │ │ │ ├── help-icon-directive.js │ │ │ │ ├── help-icon.pug │ │ │ │ └── index.js │ │ │ ├── icon-inside-input │ │ │ │ ├── icon-inside-input-directive.js │ │ │ │ ├── icon-inside-input-spec.js │ │ │ │ └── index.js │ │ │ ├── include-cached │ │ │ │ ├── compile-cache-service.js │ │ │ │ ├── include-cached-directive.js │ │ │ │ ├── include-cached-spec.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── modals │ │ │ │ ├── add-adb-key-modal │ │ │ │ │ ├── add-adb-key-modal-service.js │ │ │ │ │ ├── add-adb-key-modal-spec.js │ │ │ │ │ ├── add-adb-key-modal.pug │ │ │ │ │ └── index.js │ │ │ │ ├── common │ │ │ │ │ ├── index.js │ │ │ │ │ └── modals.css │ │ │ │ ├── external-url-modal │ │ │ │ │ ├── external-url-modal-service.js │ │ │ │ │ ├── external-url-modal-spec.js │ │ │ │ │ ├── external-url-modal.css │ │ │ │ │ ├── external-url-modal.pug │ │ │ │ │ ├── index.js │ │ │ │ │ └── on-load-event-directive.js │ │ │ │ ├── fatal-message │ │ │ │ │ ├── fatal-message-service.js │ │ │ │ │ ├── fatal-message-spec.js │ │ │ │ │ ├── fatal-message.pug │ │ │ │ │ └── index.js │ │ │ │ ├── generic-modal │ │ │ │ │ ├── generic-modal-service.js │ │ │ │ │ ├── generic-modal-spec.js │ │ │ │ │ ├── generic-modal.pug │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ ├── lightbox-image │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lightbox-image-service.js │ │ │ │ │ ├── lightbox-image-spec.js │ │ │ │ │ ├── lightbox-image.css │ │ │ │ │ └── lightbox-image.pug │ │ │ │ ├── save-log-modal │ │ │ │ │ ├── index.js │ │ │ │ │ ├── save-log-service.js │ │ │ │ │ ├── save-log-spec.js │ │ │ │ │ ├── save-log.css │ │ │ │ │ └── save-log.pug │ │ │ │ ├── socket-disconnected │ │ │ │ │ ├── index.js │ │ │ │ │ ├── socket-disconnected-service.js │ │ │ │ │ ├── socket-disconnected-spec.js │ │ │ │ │ └── socket-disconnected.pug │ │ │ │ └── version-update │ │ │ │ │ ├── index.js │ │ │ │ │ ├── version-update-service.js │ │ │ │ │ ├── version-update-spec.js │ │ │ │ │ └── version-update.pug │ │ │ ├── ng-enter │ │ │ │ ├── index.js │ │ │ │ ├── ng-enter-directive.js │ │ │ │ └── ng-enter-spec.js │ │ │ ├── nice-tabs │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── nice-tab-directive.js │ │ │ │ ├── nice-tab.pug │ │ │ │ ├── nice-tabs-directive.js │ │ │ │ ├── nice-tabs-spec.js │ │ │ │ └── nice-tabs.pug │ │ │ ├── nothing-to-show │ │ │ │ ├── index.js │ │ │ │ ├── nothing-to-show-directive.js │ │ │ │ ├── nothing-to-show.css │ │ │ │ └── nothing-to-show.html │ │ │ ├── notifications │ │ │ │ ├── growl.css │ │ │ │ └── index.js │ │ │ ├── pagination │ │ │ │ ├── index.js │ │ │ │ ├── pagination-directive.js │ │ │ │ ├── pagination-filter.js │ │ │ │ ├── pagination-service.js │ │ │ │ ├── pagination.css │ │ │ │ └── pagination.pug │ │ │ ├── refresh-page │ │ │ │ ├── index.js │ │ │ │ ├── refresh-page-directive.js │ │ │ │ ├── refresh-page-spec.js │ │ │ │ └── refresh-page.pug │ │ │ ├── safe-apply │ │ │ │ └── index.js │ │ │ ├── stacked-icon │ │ │ │ ├── index.js │ │ │ │ ├── stacked-icon-directive.js │ │ │ │ ├── stacked-icon.css │ │ │ │ └── stacked-icon.pug │ │ │ ├── table │ │ │ │ ├── index.js │ │ │ │ └── table.css │ │ │ ├── text-focus-select │ │ │ │ ├── index.js │ │ │ │ ├── text-focus-select-directive.js │ │ │ │ └── text-focus-select-spec.js │ │ │ └── tooltips │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── tooltips-directive.js │ │ │ │ └── tooltips-spec.js │ │ │ ├── control │ │ │ ├── control-service.js │ │ │ └── index.js │ │ │ ├── device-context-menu │ │ │ ├── device-context-menu-directive.js │ │ │ ├── device-context-menu-spec.js │ │ │ ├── device-context-menu.css │ │ │ ├── device-context-menu.pug │ │ │ └── index.js │ │ │ ├── device │ │ │ ├── device-info-filter │ │ │ │ └── index.js │ │ │ ├── device-service.js │ │ │ ├── enhance-device │ │ │ │ ├── enhance-device-service.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── state-classes-service.js │ │ │ ├── devices │ │ │ ├── devices-service.js │ │ │ └── index.js │ │ │ ├── filter-string │ │ │ ├── filter-string-service.js │ │ │ ├── filter-string-spec.js │ │ │ └── index.js │ │ │ ├── groups │ │ │ ├── groups-service.js │ │ │ └── index.js │ │ │ ├── image-onload │ │ │ ├── image-onload-animate-directive.js │ │ │ ├── image-onload-directive.js │ │ │ ├── image-onload-spec.js │ │ │ └── index.js │ │ │ ├── install │ │ │ ├── index.js │ │ │ ├── install-error-filter.js │ │ │ ├── install-service.js │ │ │ └── install-spec.js │ │ │ ├── keycodes │ │ │ ├── android │ │ │ │ └── index.json │ │ │ ├── index.js │ │ │ ├── js │ │ │ │ └── index.json │ │ │ ├── keycodes-service.js │ │ │ ├── keycodes-spec.js │ │ │ └── mapped │ │ │ │ └── index.json │ │ │ ├── keys │ │ │ ├── add-adb-key │ │ │ │ ├── adb-keys-service.js │ │ │ │ ├── add-adb-key-directive.js │ │ │ │ ├── add-adb-key-spec.js │ │ │ │ ├── add-adb-key.css │ │ │ │ ├── add-adb-key.pug │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ ├── landscape │ │ │ ├── index.js │ │ │ ├── landscape-directive.js │ │ │ └── landscape-spec.js │ │ │ ├── language │ │ │ ├── index.js │ │ │ ├── language-provider.js │ │ │ └── language-service.js │ │ │ ├── logcat-table │ │ │ ├── index.js │ │ │ ├── logcat-table-directive.js │ │ │ ├── logcat-table-spec.js │ │ │ ├── logcat-table.css │ │ │ └── logcat-table.pug │ │ │ ├── logcat │ │ │ ├── index.js │ │ │ ├── logcat-service.js │ │ │ └── logcat-spec.js │ │ │ ├── native-url │ │ │ ├── index.js │ │ │ ├── native-url-service.js │ │ │ └── native-url-spec.js │ │ │ ├── nav-menu │ │ │ ├── index.js │ │ │ ├── nav-menu-directive.js │ │ │ └── nav-menu-spec.js │ │ │ ├── page-visibility │ │ │ ├── index.js │ │ │ └── page-visibility-service.js │ │ │ ├── port-forwarding │ │ │ ├── index.js │ │ │ ├── port-forwarding-service.js │ │ │ └── port-forwarding-spec.js │ │ │ ├── scoped-hotkeys │ │ │ ├── index.js │ │ │ ├── scoped-hotkeys-service.js │ │ │ └── scoped-hotkeys-spec.js │ │ │ ├── screen │ │ │ ├── fast-image-render │ │ │ │ ├── canvas-render.js │ │ │ │ ├── index.js │ │ │ │ ├── test │ │ │ │ │ ├── images │ │ │ │ │ │ ├── screen.dds │ │ │ │ │ │ ├── screen.dds.gz │ │ │ │ │ │ ├── screen.jpg │ │ │ │ │ │ ├── screen.png │ │ │ │ │ │ ├── screen.webp │ │ │ │ │ │ └── texture24.crn │ │ │ │ │ ├── index.html │ │ │ │ │ ├── performance_test.js │ │ │ │ │ └── results.md │ │ │ │ └── webgl-render.js │ │ │ ├── imagepool.js │ │ │ ├── index.js │ │ │ ├── rotator-test.js │ │ │ ├── rotator.js │ │ │ ├── scaling │ │ │ │ ├── index.js │ │ │ │ └── scaling-service.js │ │ │ ├── screen-controller.js │ │ │ ├── screen-directive.js │ │ │ ├── screen-keyboard │ │ │ │ ├── index.js │ │ │ │ ├── screen-keyboard-directive.js │ │ │ │ ├── screen-keyboard-spec.js │ │ │ │ ├── screen-keyboard.css │ │ │ │ └── screen-keyboard.pug │ │ │ ├── screen-touch │ │ │ │ ├── index.js │ │ │ │ ├── screen-touch-directive.js │ │ │ │ └── screen-touch-spec.js │ │ │ ├── screen.css │ │ │ └── screen.pug │ │ │ ├── settings │ │ │ ├── index.js │ │ │ └── settings-service.js │ │ │ ├── socket │ │ │ ├── index.js │ │ │ ├── socket-service.js │ │ │ └── socket-state │ │ │ │ ├── index.js │ │ │ │ ├── socket-state-directive.js │ │ │ │ └── socket-state.pug │ │ │ ├── standalone │ │ │ ├── index.js │ │ │ ├── standalone-controller.js │ │ │ ├── standalone-directive.js │ │ │ ├── standalone-service.js │ │ │ ├── standalone.css │ │ │ └── standalone.pug │ │ │ ├── storage │ │ │ ├── index.js │ │ │ └── storage-service.js │ │ │ ├── text-history │ │ │ ├── index.js │ │ │ ├── text-history-directive.js │ │ │ └── text-history-spec.js │ │ │ ├── timeline │ │ │ ├── index.js │ │ │ ├── timeline-service.js │ │ │ └── timeline-spec.js │ │ │ ├── timelines │ │ │ ├── index.js │ │ │ ├── timeline-message │ │ │ │ ├── index.js │ │ │ │ ├── timeline-message-directive.js │ │ │ │ └── timeline-message-spec.js │ │ │ ├── timelines-directive.js │ │ │ ├── timelines-spec.js │ │ │ ├── timelines.css │ │ │ └── timelines.pug │ │ │ ├── tokens │ │ │ ├── access-token-service.js │ │ │ ├── generate-access-token │ │ │ │ ├── generate-access-token-directive.js │ │ │ │ ├── generate-access-token-spec.js │ │ │ │ ├── generate-access-token.css │ │ │ │ ├── generate-access-token.pug │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ ├── transaction │ │ │ ├── index.js │ │ │ ├── transaction-error.js │ │ │ └── transaction-service.js │ │ │ ├── upload │ │ │ ├── index.js │ │ │ ├── upload-error-filter.js │ │ │ └── upload-spec.js │ │ │ ├── user │ │ │ ├── group │ │ │ │ ├── group-service.js │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── user-service.js │ │ │ ├── users │ │ │ ├── index.js │ │ │ └── users-service.js │ │ │ └── util │ │ │ ├── common │ │ │ ├── common-service.js │ │ │ └── index.js │ │ │ └── vendor │ │ │ ├── index.js │ │ │ └── vendor-util.js │ ├── control-panes │ │ ├── activity │ │ │ ├── activity-controller.js │ │ │ ├── activity-spec.js │ │ │ ├── activity.css │ │ │ ├── activity.pug │ │ │ └── index.js │ │ ├── advanced │ │ │ ├── advanced-controller.js │ │ │ ├── advanced-spec.js │ │ │ ├── advanced.css │ │ │ ├── advanced.pug │ │ │ ├── index.js │ │ │ ├── input │ │ │ │ ├── index.js │ │ │ │ ├── input-controller.js │ │ │ │ ├── input-spec.js │ │ │ │ ├── input.css │ │ │ │ └── input.pug │ │ │ ├── maintenance │ │ │ │ ├── index.js │ │ │ │ ├── maintenance-controller.js │ │ │ │ ├── maintenance-spec.js │ │ │ │ └── maintenance.pug │ │ │ ├── port-forwarding │ │ │ │ ├── index.js │ │ │ │ ├── port-forwarding-controller.js │ │ │ │ ├── port-forwarding-spec.js │ │ │ │ ├── port-forwarding.css │ │ │ │ └── port-forwarding.pug │ │ │ ├── run-js │ │ │ │ ├── index.js │ │ │ │ ├── run-js-controller.js │ │ │ │ ├── run-js-spec.js │ │ │ │ ├── run-js.css │ │ │ │ └── run-js.pug │ │ │ ├── usb │ │ │ │ ├── index.js │ │ │ │ ├── usb-controller.js │ │ │ │ ├── usb-spec.js │ │ │ │ ├── usb.css │ │ │ │ └── usb.pug │ │ │ └── vnc │ │ │ │ ├── index.js │ │ │ │ ├── vnc-controller.js │ │ │ │ ├── vnc-spec.js │ │ │ │ ├── vnc.css │ │ │ │ └── vnc.pug │ │ ├── automation │ │ │ ├── automation.pug │ │ │ ├── device-settings │ │ │ │ ├── device-settings-controller.js │ │ │ │ ├── device-settings-spec.js │ │ │ │ ├── device-settings.css │ │ │ │ ├── device-settings.pug │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── store-account │ │ │ │ ├── index.js │ │ │ │ ├── store-account-controller.js │ │ │ │ ├── store-account-spec.js │ │ │ │ ├── store-account.css │ │ │ │ └── store-account.pug │ │ ├── control-panes-controller.js │ │ ├── control-panes-hotkeys-controller.js │ │ ├── control-panes-no-device-controller.js │ │ ├── control-panes-service.js │ │ ├── control-panes.pug │ │ ├── cpu │ │ │ ├── cpu-controller.js │ │ │ ├── cpu-spec.js │ │ │ ├── cpu.css │ │ │ ├── cpu.pug │ │ │ └── index.js │ │ ├── dashboard │ │ │ ├── apps │ │ │ │ ├── apps-controller.js │ │ │ │ ├── apps.css │ │ │ │ ├── apps.pug │ │ │ │ └── index.js │ │ │ ├── clipboard │ │ │ │ ├── clipboard-controller.js │ │ │ │ ├── clipboard-spec.js │ │ │ │ ├── clipboard.css │ │ │ │ ├── clipboard.pug │ │ │ │ └── index.js │ │ │ ├── dashboard-controller.js │ │ │ ├── dashboard-spec.js │ │ │ ├── dashboard.pug │ │ │ ├── index.js │ │ │ ├── install │ │ │ │ ├── activities │ │ │ │ │ ├── activities-controller.js │ │ │ │ │ ├── activities-spec.js │ │ │ │ │ ├── activities.css │ │ │ │ │ ├── activities.pug │ │ │ │ │ ├── index.js │ │ │ │ │ └── test │ │ │ │ │ │ └── manifest-1.json │ │ │ │ ├── index.js │ │ │ │ ├── install-controller.js │ │ │ │ ├── install-spec.js │ │ │ │ ├── install.css │ │ │ │ └── install.pug │ │ │ ├── navigation │ │ │ │ ├── default-favicon.png │ │ │ │ ├── index.js │ │ │ │ ├── navigation-controller.js │ │ │ │ ├── navigation-spec.js │ │ │ │ ├── navigation.css │ │ │ │ └── navigation.pug │ │ │ ├── remote-debug │ │ │ │ ├── index.js │ │ │ │ ├── remote-debug-controller.js │ │ │ │ ├── remote-debug-spec.js │ │ │ │ ├── remote-debug.css │ │ │ │ └── remote-debug.pug │ │ │ └── shell │ │ │ │ ├── index.js │ │ │ │ ├── shell-controller.js │ │ │ │ ├── shell-spec.js │ │ │ │ ├── shell.css │ │ │ │ └── shell.pug │ │ ├── device-control │ │ │ ├── device-control-controller.js │ │ │ ├── device-control-key-directive.js │ │ │ ├── device-control-standalone.pug │ │ │ ├── device-control.css │ │ │ ├── device-control.pug │ │ │ └── index.js │ │ ├── explorer │ │ │ ├── explorer-controller.js │ │ │ ├── explorer-spec.js │ │ │ ├── explorer.css │ │ │ ├── explorer.pug │ │ │ └── index.js │ │ ├── index.js │ │ ├── info │ │ │ ├── index.js │ │ │ ├── info-controller.js │ │ │ ├── info-spec.js │ │ │ ├── info.css │ │ │ └── info.pug │ │ ├── inspect │ │ │ ├── index.js │ │ │ ├── inspect-controller.js │ │ │ ├── inspect-spec.js │ │ │ ├── inspect.css │ │ │ └── inspect.pug │ │ ├── logs │ │ │ ├── index.js │ │ │ ├── logs-controller.js │ │ │ ├── logs-spec.js │ │ │ ├── logs.less │ │ │ └── logs.pug │ │ ├── performance │ │ │ ├── cpu │ │ │ │ ├── cpu-controller.js │ │ │ │ ├── cpu-spec.js │ │ │ │ ├── cpu.css │ │ │ │ ├── cpu.pug │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── performance-controller.js │ │ │ ├── performance-spec.js │ │ │ ├── performance.css │ │ │ └── performance.pug │ │ ├── resources │ │ │ ├── index.js │ │ │ ├── resources-controller.js │ │ │ ├── resources-spec.js │ │ │ ├── resources.css │ │ │ └── resources.pug │ │ └── screenshots │ │ │ ├── index.js │ │ │ ├── screenshots-controller.js │ │ │ ├── screenshots-spec.js │ │ │ ├── screenshots.css │ │ │ └── screenshots.pug │ ├── device-list │ │ ├── column │ │ │ ├── device-column-service.js │ │ │ └── index.js │ │ ├── customize │ │ │ ├── device-list-customize.css │ │ │ └── index.js │ │ ├── details │ │ │ ├── device-list-details-directive.js │ │ │ ├── device-list-details.css │ │ │ ├── device-list-details.pug │ │ │ └── index.js │ │ ├── device-list-controller.js │ │ ├── device-list.css │ │ ├── device-list.pug │ │ ├── empty │ │ │ ├── device-list-empty-directive.js │ │ │ ├── device-list-empty.pug │ │ │ └── index.js │ │ ├── icons │ │ │ ├── device-list-icons-directive.js │ │ │ ├── device-list-icons.css │ │ │ ├── device-list-icons.pug │ │ │ └── index.js │ │ ├── index.js │ │ ├── search │ │ │ ├── device-list-search.css │ │ │ └── index.js │ │ ├── stats │ │ │ ├── device-list-stats-directive.js │ │ │ ├── device-list-stats.css │ │ │ ├── device-list-stats.pug │ │ │ └── index.js │ │ └── util │ │ │ ├── patch-array │ │ │ ├── index.js │ │ │ └── patch-array-test.js │ │ │ └── query-parser │ │ │ ├── index.js │ │ │ └── query-parser-test.js │ ├── docs │ │ ├── docs-controller.js │ │ ├── docs.css │ │ └── index.js │ ├── group-list │ │ ├── group-list-controller.js │ │ ├── group-list.css │ │ ├── group-list.pug │ │ ├── groups │ │ │ └── groups.pug │ │ ├── index.js │ │ └── stats │ │ │ ├── group-quota-stats.pug │ │ │ └── group-stats.pug │ ├── layout │ │ ├── cursor.css │ │ ├── index.js │ │ ├── layout-controller.js │ │ ├── small.css │ │ └── stf-styles.css │ ├── menu │ │ ├── index.js │ │ ├── menu-controller.js │ │ ├── menu-spec.js │ │ ├── menu.css │ │ └── menu.pug │ ├── settings │ │ ├── devices │ │ │ ├── devices-controller.js │ │ │ ├── devices-spec.js │ │ │ ├── devices.css │ │ │ ├── devices.pug │ │ │ └── index.js │ │ ├── general │ │ │ ├── date-format │ │ │ │ ├── date-format-controller.js │ │ │ │ ├── date-format.pug │ │ │ │ └── index.js │ │ │ ├── email-address-separator │ │ │ │ ├── email-address-separator-controller.js │ │ │ │ ├── email-address-separator.pug │ │ │ │ └── index.js │ │ │ ├── general-controller.js │ │ │ ├── general-spec.js │ │ │ ├── general.css │ │ │ ├── general.pug │ │ │ ├── index.js │ │ │ ├── language │ │ │ │ ├── index.js │ │ │ │ ├── language-controller.js │ │ │ │ └── language.pug │ │ │ └── local │ │ │ │ ├── index.js │ │ │ │ ├── local-settings-controller.js │ │ │ │ └── local-settings.pug │ │ ├── groups │ │ │ ├── conflicts │ │ │ │ └── conflicts.pug │ │ │ ├── devices │ │ │ │ └── devices.pug │ │ │ ├── filters │ │ │ │ ├── available-objects-filter.js │ │ │ │ └── group-objects-filter.js │ │ │ ├── groups-controller.js │ │ │ ├── groups-spec.js │ │ │ ├── groups.css │ │ │ ├── groups.pug │ │ │ ├── index.js │ │ │ ├── schedule │ │ │ │ └── schedule.pug │ │ │ └── users │ │ │ │ └── users.pug │ │ ├── index.js │ │ ├── keys │ │ │ ├── access-tokens │ │ │ │ ├── access-tokens-controller.js │ │ │ │ ├── access-tokens-spec.js │ │ │ │ ├── access-tokens.css │ │ │ │ ├── access-tokens.pug │ │ │ │ └── index.js │ │ │ ├── adb-keys │ │ │ │ ├── adb-keys-controller.js │ │ │ │ ├── adb-keys-service.js │ │ │ │ ├── adb-keys-spec.js │ │ │ │ ├── adb-keys.css │ │ │ │ ├── adb-keys.pug │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── keys-controller.js │ │ │ ├── keys-spec.js │ │ │ ├── keys.css │ │ │ └── keys.pug │ │ ├── notifications │ │ │ ├── index.js │ │ │ ├── notifications-controller.js │ │ │ ├── notifications-service.js │ │ │ └── notifications.pug │ │ ├── settings-controller.js │ │ ├── settings.css │ │ ├── settings.pug │ │ └── users │ │ │ ├── index.js │ │ │ ├── users-controller.js │ │ │ ├── users-spec.js │ │ │ ├── users.css │ │ │ └── users.pug │ ├── terminal │ │ └── terminal.css │ ├── user │ │ ├── index.js │ │ ├── user-controller.js │ │ └── user.pug │ └── views │ │ ├── docs.pug │ │ ├── index.pug │ │ └── rejected-email.pug ├── auth │ ├── ldap │ │ ├── scripts │ │ │ ├── entry.js │ │ │ └── signin │ │ │ │ ├── index.js │ │ │ │ ├── signin-controller.js │ │ │ │ ├── signin.css │ │ │ │ └── signin.pug │ │ └── views │ │ │ └── index.pug │ └── mock │ │ ├── scripts │ │ ├── entry.js │ │ └── signin │ │ │ ├── index.js │ │ │ ├── signin-controller.js │ │ │ ├── signin.css │ │ │ └── signin.pug │ │ └── views │ │ └── index.pug ├── common │ ├── img │ │ ├── close.png │ │ ├── no_switch.png │ │ ├── plus-active.png │ │ ├── plus.png │ │ └── switch.png │ ├── lang │ │ ├── index.js │ │ ├── langs.json │ │ ├── po │ │ │ ├── stf.es.po │ │ │ ├── stf.fr.po │ │ │ ├── stf.ja.po │ │ │ ├── stf.ko_KR.po │ │ │ ├── stf.pl.po │ │ │ ├── stf.pot │ │ │ ├── stf.pt_BR.po │ │ │ ├── stf.ru_RU.po │ │ │ ├── stf.zh-Hant.po │ │ │ └── stf.zh_CN.po │ │ └── translations │ │ │ ├── stf.es.json │ │ │ ├── stf.fr.json │ │ │ ├── stf.ja.json │ │ │ ├── stf.ko_KR.json │ │ │ ├── stf.pl.json │ │ │ ├── stf.pt_BR.json │ │ │ ├── stf.ru_RU.json │ │ │ ├── stf.zh-Hant.json │ │ │ └── stf.zh_CN.json │ ├── logo │ │ ├── STF.ai │ │ └── exports │ │ │ ├── STF-128.png │ │ │ ├── STF-512.png │ │ │ └── STF-outlined.ai │ └── status │ │ ├── scripts │ │ └── entry.js │ │ ├── views │ │ ├── 404.pug │ │ ├── maintenance.pug │ │ └── partials │ │ │ └── styles.pug │ │ └── webpack.config.js ├── test │ ├── .eslintrc │ ├── e2e │ │ ├── control │ │ │ └── control-spec.js │ │ ├── devices │ │ │ ├── devices-spec.js │ │ │ └── index.js │ │ ├── help │ │ │ └── help-spec.js │ │ ├── helpers │ │ │ ├── browser-logs.js │ │ │ ├── fail-fast.js │ │ │ ├── gulp-protractor-adv.js │ │ │ └── wait-url.js │ │ ├── login │ │ │ ├── index.js │ │ │ └── login-spec.js │ │ ├── settings │ │ │ └── settings-spec.js │ │ └── widget-container │ │ │ ├── index.js │ │ │ └── widget-container-spec.js │ ├── helpers │ │ └── helper.js │ ├── karma.conf.js │ ├── protractor-appium.conf.js │ ├── protractor-multi.conf.js │ └── protractor.conf.js └── web_modules │ ├── angular-borderlayout │ ├── index.js │ └── style.css │ ├── angular-growl │ └── index.js │ ├── angular-hotkeys │ ├── hotkeys.css │ └── index.js │ ├── angular-ladda │ └── index.js │ ├── angular-xeditable │ ├── index.js │ └── style.css │ ├── epoch │ └── index.js │ ├── gettext │ └── index.js │ ├── ladda │ └── index.js │ ├── ng-context-menu │ ├── context-menu.css │ └── index.js │ ├── ng-file-upload │ └── index.js │ ├── nine-bootstrap │ ├── README.md │ ├── index.js │ └── nine-bootstrap.scss │ └── ui-bootstrap │ └── index.js ├── test ├── .eslintrc ├── fixt │ ├── Virtual.kcm │ └── Virtual.kcm.json ├── util │ ├── keyutil.js │ ├── logger.js │ └── ttlset.js └── wire │ ├── messagestream.js │ └── seqqueue.js ├── vendor ├── STFService │ ├── STFService.apk │ └── wire.proto └── minirev │ ├── arm64-v8a │ ├── minirev │ └── minirev-nopie │ ├── armeabi-v7a │ ├── minirev │ └── minirev-nopie │ ├── armeabi │ ├── minirev │ └── minirev-nopie │ ├── mips │ ├── minirev │ └── minirev-nopie │ ├── mips64 │ ├── minirev │ └── minirev-nopie │ ├── x86 │ ├── minirev │ └── minirev-nopie │ └── x86_64 │ ├── minirev │ └── minirev-nopie ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.babelrc -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "res/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DONATION-TRANSPARENCY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/DONATION-TRANSPARENCY.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/LICENSE -------------------------------------------------------------------------------- /README-EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/README-EN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/README.md -------------------------------------------------------------------------------- /TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/TESTING.md -------------------------------------------------------------------------------- /batch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/batch.png -------------------------------------------------------------------------------- /bin/stf: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/cli/please') 3 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/bower.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/cli/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/api/index.js -------------------------------------------------------------------------------- /lib/cli/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/app/index.js -------------------------------------------------------------------------------- /lib/cli/auth-ldap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/auth-ldap/index.js -------------------------------------------------------------------------------- /lib/cli/auth-mock/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/auth-mock/index.js -------------------------------------------------------------------------------- /lib/cli/auth-oauth2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/auth-oauth2/index.js -------------------------------------------------------------------------------- /lib/cli/auth-openid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/auth-openid/index.js -------------------------------------------------------------------------------- /lib/cli/auth-saml2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/auth-saml2/index.js -------------------------------------------------------------------------------- /lib/cli/device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/device/index.js -------------------------------------------------------------------------------- /lib/cli/doctor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/doctor/index.js -------------------------------------------------------------------------------- /lib/cli/generate-fake-device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/generate-fake-device/index.js -------------------------------------------------------------------------------- /lib/cli/generate-fake-group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/generate-fake-group/index.js -------------------------------------------------------------------------------- /lib/cli/generate-fake-user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/generate-fake-user/index.js -------------------------------------------------------------------------------- /lib/cli/groups-engine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/groups-engine/index.js -------------------------------------------------------------------------------- /lib/cli/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/index.js -------------------------------------------------------------------------------- /lib/cli/ios-device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/ios-device/index.js -------------------------------------------------------------------------------- /lib/cli/ios-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/ios-provider/index.js -------------------------------------------------------------------------------- /lib/cli/local/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/local/index.js -------------------------------------------------------------------------------- /lib/cli/log-rethinkdb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/log-rethinkdb/index.js -------------------------------------------------------------------------------- /lib/cli/migrate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/migrate/index.js -------------------------------------------------------------------------------- /lib/cli/notify-hipchat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/notify-hipchat/index.js -------------------------------------------------------------------------------- /lib/cli/notify-slack/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/notify-slack/index.js -------------------------------------------------------------------------------- /lib/cli/please.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/please.js -------------------------------------------------------------------------------- /lib/cli/poorxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/poorxy/index.js -------------------------------------------------------------------------------- /lib/cli/processor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/processor/index.js -------------------------------------------------------------------------------- /lib/cli/provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/provider/index.js -------------------------------------------------------------------------------- /lib/cli/reaper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/reaper/index.js -------------------------------------------------------------------------------- /lib/cli/storage-plugin-apk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/storage-plugin-apk/index.js -------------------------------------------------------------------------------- /lib/cli/storage-plugin-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/storage-plugin-image/index.js -------------------------------------------------------------------------------- /lib/cli/storage-s3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/storage-s3/index.js -------------------------------------------------------------------------------- /lib/cli/storage-temp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/storage-temp/index.js -------------------------------------------------------------------------------- /lib/cli/triproxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/triproxy/index.js -------------------------------------------------------------------------------- /lib/cli/websocket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/cli/websocket/index.js -------------------------------------------------------------------------------- /lib/db/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/db/api.js -------------------------------------------------------------------------------- /lib/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/db/index.js -------------------------------------------------------------------------------- /lib/db/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/db/setup.js -------------------------------------------------------------------------------- /lib/db/tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/db/tables.js -------------------------------------------------------------------------------- /lib/units/api/config/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/config/default.yaml -------------------------------------------------------------------------------- /lib/units/api/controllers/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/controllers/devices.js -------------------------------------------------------------------------------- /lib/units/api/controllers/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/controllers/groups.js -------------------------------------------------------------------------------- /lib/units/api/controllers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/controllers/user.js -------------------------------------------------------------------------------- /lib/units/api/controllers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/controllers/users.js -------------------------------------------------------------------------------- /lib/units/api/helpers/securityHandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/helpers/securityHandlers.js -------------------------------------------------------------------------------- /lib/units/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/index.js -------------------------------------------------------------------------------- /lib/units/api/swagger/api_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/swagger/api_v1.yaml -------------------------------------------------------------------------------- /lib/units/api/swagger/api_v1_generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/api/swagger/api_v1_generated.json -------------------------------------------------------------------------------- /lib/units/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/app/index.js -------------------------------------------------------------------------------- /lib/units/app/middleware/appstore-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/app/middleware/appstore-icons.js -------------------------------------------------------------------------------- /lib/units/app/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/app/middleware/auth.js -------------------------------------------------------------------------------- /lib/units/app/middleware/browser-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/app/middleware/browser-icons.js -------------------------------------------------------------------------------- /lib/units/app/middleware/device-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/app/middleware/device-icons.js -------------------------------------------------------------------------------- /lib/units/app/middleware/webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/app/middleware/webpack.js -------------------------------------------------------------------------------- /lib/units/auth/ldap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/auth/ldap.js -------------------------------------------------------------------------------- /lib/units/auth/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/auth/mock.js -------------------------------------------------------------------------------- /lib/units/auth/oauth2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/auth/oauth2/index.js -------------------------------------------------------------------------------- /lib/units/auth/oauth2/strategy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/auth/oauth2/strategy.js -------------------------------------------------------------------------------- /lib/units/auth/openid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/auth/openid.js -------------------------------------------------------------------------------- /lib/units/auth/saml2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/auth/saml2.js -------------------------------------------------------------------------------- /lib/units/device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/index.js -------------------------------------------------------------------------------- /lib/units/device/plugins/account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/account.js -------------------------------------------------------------------------------- /lib/units/device/plugins/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/browser.js -------------------------------------------------------------------------------- /lib/units/device/plugins/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/cleanup.js -------------------------------------------------------------------------------- /lib/units/device/plugins/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/clipboard.js -------------------------------------------------------------------------------- /lib/units/device/plugins/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/connect.js -------------------------------------------------------------------------------- /lib/units/device/plugins/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/filesystem.js -------------------------------------------------------------------------------- /lib/units/device/plugins/forward/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/forward/index.js -------------------------------------------------------------------------------- /lib/units/device/plugins/forward/util/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/forward/util/manager.js -------------------------------------------------------------------------------- /lib/units/device/plugins/forward/util/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/forward/util/reader.js -------------------------------------------------------------------------------- /lib/units/device/plugins/forward/util/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/forward/util/writer.js -------------------------------------------------------------------------------- /lib/units/device/plugins/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/group.js -------------------------------------------------------------------------------- /lib/units/device/plugins/heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/heartbeat.js -------------------------------------------------------------------------------- /lib/units/device/plugins/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/install.js -------------------------------------------------------------------------------- /lib/units/device/plugins/logcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/logcat.js -------------------------------------------------------------------------------- /lib/units/device/plugins/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/logger.js -------------------------------------------------------------------------------- /lib/units/device/plugins/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/mute.js -------------------------------------------------------------------------------- /lib/units/device/plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/package.json -------------------------------------------------------------------------------- /lib/units/device/plugins/reboot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/reboot.js -------------------------------------------------------------------------------- /lib/units/device/plugins/ringer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/ringer.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/capture.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/options.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/stream.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/util/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/util/banner.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/util/broadcastset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/util/broadcastset.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/util/frameconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/util/frameconfig.js -------------------------------------------------------------------------------- /lib/units/device/plugins/screen/util/frameparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/screen/util/frameparser.js -------------------------------------------------------------------------------- /lib/units/device/plugins/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/sd.js -------------------------------------------------------------------------------- /lib/units/device/plugins/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/service.js -------------------------------------------------------------------------------- /lib/units/device/plugins/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/shell.js -------------------------------------------------------------------------------- /lib/units/device/plugins/solo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/solo.js -------------------------------------------------------------------------------- /lib/units/device/plugins/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/store.js -------------------------------------------------------------------------------- /lib/units/device/plugins/touch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/touch/index.js -------------------------------------------------------------------------------- /lib/units/device/plugins/util/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/util/data.js -------------------------------------------------------------------------------- /lib/units/device/plugins/util/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/util/display.js -------------------------------------------------------------------------------- /lib/units/device/plugins/util/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/util/flags.js -------------------------------------------------------------------------------- /lib/units/device/plugins/util/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/util/identity.js -------------------------------------------------------------------------------- /lib/units/device/plugins/util/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/util/phone.js -------------------------------------------------------------------------------- /lib/units/device/plugins/util/urlformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/util/urlformat.js -------------------------------------------------------------------------------- /lib/units/device/plugins/vnc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/vnc/index.js -------------------------------------------------------------------------------- /lib/units/device/plugins/vnc/util/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/vnc/util/connection.js -------------------------------------------------------------------------------- /lib/units/device/plugins/vnc/util/pixelformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/vnc/util/pixelformat.js -------------------------------------------------------------------------------- /lib/units/device/plugins/vnc/util/pointertranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/vnc/util/pointertranslator.js -------------------------------------------------------------------------------- /lib/units/device/plugins/vnc/util/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/vnc/util/server.js -------------------------------------------------------------------------------- /lib/units/device/plugins/wifi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/plugins/wifi.js -------------------------------------------------------------------------------- /lib/units/device/resources/minicap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/resources/minicap.js -------------------------------------------------------------------------------- /lib/units/device/resources/minirev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/resources/minirev.js -------------------------------------------------------------------------------- /lib/units/device/resources/minitouch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/resources/minitouch.js -------------------------------------------------------------------------------- /lib/units/device/resources/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/resources/service.js -------------------------------------------------------------------------------- /lib/units/device/resources/util/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/resources/util/resource.js -------------------------------------------------------------------------------- /lib/units/device/support/abi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/abi.js -------------------------------------------------------------------------------- /lib/units/device/support/adb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/adb.js -------------------------------------------------------------------------------- /lib/units/device/support/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/channels.js -------------------------------------------------------------------------------- /lib/units/device/support/properties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/properties.js -------------------------------------------------------------------------------- /lib/units/device/support/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/push.js -------------------------------------------------------------------------------- /lib/units/device/support/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/router.js -------------------------------------------------------------------------------- /lib/units/device/support/sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/sdk.js -------------------------------------------------------------------------------- /lib/units/device/support/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/storage.js -------------------------------------------------------------------------------- /lib/units/device/support/sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/device/support/sub.js -------------------------------------------------------------------------------- /lib/units/groups-engine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/groups-engine/index.js -------------------------------------------------------------------------------- /lib/units/groups-engine/scheduler/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/groups-engine/scheduler/index.js -------------------------------------------------------------------------------- /lib/units/groups-engine/watchers/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/groups-engine/watchers/devices.js -------------------------------------------------------------------------------- /lib/units/groups-engine/watchers/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/groups-engine/watchers/groups.js -------------------------------------------------------------------------------- /lib/units/groups-engine/watchers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/groups-engine/watchers/users.js -------------------------------------------------------------------------------- /lib/units/ios-device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/index.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/connect.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/forward/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/forward/index.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/forward/util/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/forward/util/manager.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/forward/util/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/forward/util/reader.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/forward/util/writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/forward/util/writer.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/group.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/heartbeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/heartbeat.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/idevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/idevice.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/install.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/ios-deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/ios-deploy.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/logcat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/logcat.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/logger.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/capture.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/options.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/stream.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/util/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/util/banner.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/util/broadcastset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/util/broadcastset.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/util/frameconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/util/frameconfig.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/screen/util/frameparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/screen/util/frameparser.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/service.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/solo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/solo.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/touch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/touch/index.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/util/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/util/data.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/util/display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/util/display.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/util/flags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/util/flags.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/util/identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/util/identity.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/util/phone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/util/phone.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/util/urlformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/util/urlformat.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/vnc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/vnc/index.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/vnc/util/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/vnc/util/connection.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/vnc/util/pixelformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/vnc/util/pixelformat.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/vnc/util/pointertranslator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/vnc/util/pointertranslator.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/vnc/util/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/vnc/util/server.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/wdaCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/wdaCommands.js -------------------------------------------------------------------------------- /lib/units/ios-device/plugins/wdaProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/plugins/wdaProxy.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/TypeToModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/TypeToModel.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/channels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/channels.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/deviceinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/deviceinfo.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/push.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/router.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/simctl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/simctl.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/storage.js -------------------------------------------------------------------------------- /lib/units/ios-device/support/sub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-device/support/sub.js -------------------------------------------------------------------------------- /lib/units/ios-provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/ios-provider/index.js -------------------------------------------------------------------------------- /lib/units/log/rethinkdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/log/rethinkdb.js -------------------------------------------------------------------------------- /lib/units/notify/hipchat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/notify/hipchat.js -------------------------------------------------------------------------------- /lib/units/notify/slack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/notify/slack.js -------------------------------------------------------------------------------- /lib/units/poorxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/poorxy/index.js -------------------------------------------------------------------------------- /lib/units/processor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/processor/index.js -------------------------------------------------------------------------------- /lib/units/provider/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/provider/index.js -------------------------------------------------------------------------------- /lib/units/reaper/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/reaper/index.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/apk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/apk/index.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/apk/task/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/apk/task/manifest.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/image/index.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/image/param/crop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/image/param/crop.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/image/param/gravity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/image/param/gravity.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/image/task/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/image/task/get.js -------------------------------------------------------------------------------- /lib/units/storage/plugins/image/task/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/plugins/image/task/transform.js -------------------------------------------------------------------------------- /lib/units/storage/s3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/s3.js -------------------------------------------------------------------------------- /lib/units/storage/temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/storage/temp.js -------------------------------------------------------------------------------- /lib/units/triproxy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/triproxy/index.js -------------------------------------------------------------------------------- /lib/units/websocket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/websocket/index.js -------------------------------------------------------------------------------- /lib/units/websocket/middleware/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/websocket/middleware/auth.js -------------------------------------------------------------------------------- /lib/units/websocket/middleware/cookie-session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/websocket/middleware/cookie-session.js -------------------------------------------------------------------------------- /lib/units/websocket/middleware/remote-ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/units/websocket/middleware/remote-ip.js -------------------------------------------------------------------------------- /lib/util/apiutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/apiutil.js -------------------------------------------------------------------------------- /lib/util/datautil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/datautil.js -------------------------------------------------------------------------------- /lib/util/deviceutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/deviceutil.js -------------------------------------------------------------------------------- /lib/util/devutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/devutil.js -------------------------------------------------------------------------------- /lib/util/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/download.js -------------------------------------------------------------------------------- /lib/util/failcounter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/failcounter.js -------------------------------------------------------------------------------- /lib/util/fakedevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/fakedevice.js -------------------------------------------------------------------------------- /lib/util/fakegroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/fakegroup.js -------------------------------------------------------------------------------- /lib/util/fakeuser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/fakeuser.js -------------------------------------------------------------------------------- /lib/util/grouputil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/grouputil.js -------------------------------------------------------------------------------- /lib/util/ipareader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/ipareader.js -------------------------------------------------------------------------------- /lib/util/jwtutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/jwtutil.js -------------------------------------------------------------------------------- /lib/util/keyutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/keyutil.js -------------------------------------------------------------------------------- /lib/util/ldaputil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/ldaputil.js -------------------------------------------------------------------------------- /lib/util/lifecycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/lifecycle.js -------------------------------------------------------------------------------- /lib/util/lockutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/lockutil.js -------------------------------------------------------------------------------- /lib/util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/logger.js -------------------------------------------------------------------------------- /lib/util/pathutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/pathutil.js -------------------------------------------------------------------------------- /lib/util/procutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/procutil.js -------------------------------------------------------------------------------- /lib/util/promiseutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/promiseutil.js -------------------------------------------------------------------------------- /lib/util/refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/refresh.js -------------------------------------------------------------------------------- /lib/util/requtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/requtil.js -------------------------------------------------------------------------------- /lib/util/riskystream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/riskystream.js -------------------------------------------------------------------------------- /lib/util/srv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/srv.js -------------------------------------------------------------------------------- /lib/util/statequeue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/statequeue.js -------------------------------------------------------------------------------- /lib/util/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/storage.js -------------------------------------------------------------------------------- /lib/util/streamutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/streamutil.js -------------------------------------------------------------------------------- /lib/util/timeutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/timeutil.js -------------------------------------------------------------------------------- /lib/util/ttlset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/ttlset.js -------------------------------------------------------------------------------- /lib/util/urlutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/urlutil.js -------------------------------------------------------------------------------- /lib/util/vncauth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/vncauth.js -------------------------------------------------------------------------------- /lib/util/zmqutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/util/zmqutil.js -------------------------------------------------------------------------------- /lib/wire/channelmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/channelmanager.js -------------------------------------------------------------------------------- /lib/wire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/index.js -------------------------------------------------------------------------------- /lib/wire/messagestream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/messagestream.js -------------------------------------------------------------------------------- /lib/wire/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/router.js -------------------------------------------------------------------------------- /lib/wire/seqqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/seqqueue.js -------------------------------------------------------------------------------- /lib/wire/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/util.js -------------------------------------------------------------------------------- /lib/wire/wire.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/lib/wire/wire.proto -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/package.json -------------------------------------------------------------------------------- /res/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/.eslintrc -------------------------------------------------------------------------------- /res/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/app.js -------------------------------------------------------------------------------- /res/app/batch-control-panes/batch-control-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/batch-control-panes/batch-control-controller.js -------------------------------------------------------------------------------- /res/app/batch-control-panes/batch-control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/batch-control-panes/batch-control.css -------------------------------------------------------------------------------- /res/app/batch-control-panes/batch-control.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/batch-control-panes/batch-control.pug -------------------------------------------------------------------------------- /res/app/batch-control-panes/batch.pug: -------------------------------------------------------------------------------- 1 | core-bath-control 2 | -------------------------------------------------------------------------------- /res/app/batch-control-panes/core-batch-control-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/batch-control-panes/core-batch-control-directive.js -------------------------------------------------------------------------------- /res/app/batch-control-panes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/batch-control-panes/index.js -------------------------------------------------------------------------------- /res/app/components/stf/admin-mode/admin-mode-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/admin-mode/admin-mode-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/admin-mode/admin-mode-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/admin-mode/admin-mode-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/admin-mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/admin-mode/index.js -------------------------------------------------------------------------------- /res/app/components/stf/angular-draggabilly/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/angular-draggabilly/index.js -------------------------------------------------------------------------------- /res/app/components/stf/angular-packery/angular-packery-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/angular-packery/angular-packery-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/angular-packery/angular-packery.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/angular-packery/angular-packery.css -------------------------------------------------------------------------------- /res/app/components/stf/angular-packery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/angular-packery/index.js -------------------------------------------------------------------------------- /res/app/components/stf/app-state/app-state-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/app-state/app-state-provider.js -------------------------------------------------------------------------------- /res/app/components/stf/app-state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/app-state/index.js -------------------------------------------------------------------------------- /res/app/components/stf/basic-mode/basic-mode-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/basic-mode/basic-mode-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/basic-mode/basic-mode-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/basic-mode/basic-mode-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/basic-mode/basic-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/basic-mode/basic-mode.css -------------------------------------------------------------------------------- /res/app/components/stf/basic-mode/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/basic-mode/index.js -------------------------------------------------------------------------------- /res/app/components/stf/batch-control/batch-control-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/batch-control/batch-control-service.js -------------------------------------------------------------------------------- /res/app/components/stf/batch-control/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/batch-control/index.js -------------------------------------------------------------------------------- /res/app/components/stf/browser-info/browser-info-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/browser-info/browser-info-service.js -------------------------------------------------------------------------------- /res/app/components/stf/browser-info/browser-info-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/browser-info/browser-info-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/browser-info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/browser-info/index.js -------------------------------------------------------------------------------- /res/app/components/stf/column-choice/column-choice-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/column-choice/column-choice-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/column-choice/column-choice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/column-choice/column-choice.css -------------------------------------------------------------------------------- /res/app/components/stf/column-choice/column-choice.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/column-choice/column-choice.pug -------------------------------------------------------------------------------- /res/app/components/stf/column-choice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/column-choice/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/badge-icon/badge-icon-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/badge-icon/badge-icon-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/badge-icon/badge-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/badge-icon/badge-icon.css -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/badge-icon/badge-icon.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/badge-icon/badge-icon.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/badge-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/badge-icon/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/blur-element/blur-element-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/blur-element/blur-element-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/blur-element/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/blur-element/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/clear-button/clear-button-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/clear-button/clear-button-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/clear-button/clear-button.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/clear-button/clear-button.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/clear-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/clear-button/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/counter/counter-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/counter/counter-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/counter/counter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/counter/counter-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/counter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/counter/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/enable-autofill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/enable-autofill/README.md -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/enable-autofill/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/enable-autofill/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/error-message/error-message.css: -------------------------------------------------------------------------------- 1 | .stf-error-message { 2 | padding-bottom: 15px; 3 | } 4 | -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/error-message/error-message.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/error-message/error-message.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/error-message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/error-message/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/fallback-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/fallback-image/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/filter-button/filter-button.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/filter-button/filter-button.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/filter-button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/filter-button/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/focus-element/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/focus-element/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/help-icon/help-icon-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/help-icon/help-icon-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/help-icon/help-icon.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/help-icon/help-icon.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/help-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/help-icon/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/icon-inside-input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/icon-inside-input/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/include-cached/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/include-cached/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/add-adb-key-modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/add-adb-key-modal/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/common/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/common/modals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/common/modals.css -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/external-url-modal/external-url-modal.css: -------------------------------------------------------------------------------- 1 | .stf-external-url-modal { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/fatal-message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/fatal-message/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/generic-modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/generic-modal/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/lightbox-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/lightbox-image/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/save-log-modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/save-log-modal/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/modals/version-update/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/modals/version-update/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/ng-enter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/ng-enter/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/ng-enter/ng-enter-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/ng-enter/ng-enter-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/ng-enter/ng-enter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/ng-enter/ng-enter-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nice-tabs/README.md -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nice-tabs/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/nice-tab-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nice-tabs/nice-tab-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/nice-tab.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/nice-tabs-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nice-tabs/nice-tabs-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/nice-tabs-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nice-tabs/nice-tabs-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nice-tabs/nice-tabs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nice-tabs/nice-tabs.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/nothing-to-show/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/nothing-to-show/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/notifications/growl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/notifications/growl.css -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/notifications/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/pagination/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/pagination/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/pagination/pagination-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/pagination/pagination-filter.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/pagination/pagination-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/pagination/pagination-service.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/pagination/pagination.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/pagination/pagination.css -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/pagination/pagination.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/pagination/pagination.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/refresh-page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/refresh-page/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/refresh-page/refresh-page.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/refresh-page/refresh-page.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/safe-apply/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/safe-apply/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/stacked-icon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/stacked-icon/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/stacked-icon/stacked-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/stacked-icon/stacked-icon.css -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/stacked-icon/stacked-icon.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/stacked-icon/stacked-icon.pug -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/table/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/table/table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/table/table.css -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/text-focus-select/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/text-focus-select/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/tooltips/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/tooltips/README.md -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/tooltips/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/tooltips/index.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/tooltips/tooltips-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/tooltips/tooltips-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/common-ui/tooltips/tooltips-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/common-ui/tooltips/tooltips-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/control/control-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/control/control-service.js -------------------------------------------------------------------------------- /res/app/components/stf/control/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/control/index.js -------------------------------------------------------------------------------- /res/app/components/stf/device-context-menu/device-context-menu.css: -------------------------------------------------------------------------------- 1 | .stf-device-context-menu { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/components/stf/device-context-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/device-context-menu/index.js -------------------------------------------------------------------------------- /res/app/components/stf/device/device-info-filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/device/device-info-filter/index.js -------------------------------------------------------------------------------- /res/app/components/stf/device/device-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/device/device-service.js -------------------------------------------------------------------------------- /res/app/components/stf/device/enhance-device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/device/enhance-device/index.js -------------------------------------------------------------------------------- /res/app/components/stf/device/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/device/index.js -------------------------------------------------------------------------------- /res/app/components/stf/device/state-classes-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/device/state-classes-service.js -------------------------------------------------------------------------------- /res/app/components/stf/devices/devices-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/devices/devices-service.js -------------------------------------------------------------------------------- /res/app/components/stf/devices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/devices/index.js -------------------------------------------------------------------------------- /res/app/components/stf/filter-string/filter-string-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/filter-string/filter-string-service.js -------------------------------------------------------------------------------- /res/app/components/stf/filter-string/filter-string-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/filter-string/filter-string-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/filter-string/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/filter-string/index.js -------------------------------------------------------------------------------- /res/app/components/stf/groups/groups-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/groups/groups-service.js -------------------------------------------------------------------------------- /res/app/components/stf/groups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/groups/index.js -------------------------------------------------------------------------------- /res/app/components/stf/image-onload/image-onload-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/image-onload/image-onload-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/image-onload/image-onload-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/image-onload/image-onload-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/image-onload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/image-onload/index.js -------------------------------------------------------------------------------- /res/app/components/stf/install/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/install/index.js -------------------------------------------------------------------------------- /res/app/components/stf/install/install-error-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/install/install-error-filter.js -------------------------------------------------------------------------------- /res/app/components/stf/install/install-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/install/install-service.js -------------------------------------------------------------------------------- /res/app/components/stf/install/install-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/install/install-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/keycodes/android/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keycodes/android/index.json -------------------------------------------------------------------------------- /res/app/components/stf/keycodes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keycodes/index.js -------------------------------------------------------------------------------- /res/app/components/stf/keycodes/js/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keycodes/js/index.json -------------------------------------------------------------------------------- /res/app/components/stf/keycodes/keycodes-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keycodes/keycodes-service.js -------------------------------------------------------------------------------- /res/app/components/stf/keycodes/keycodes-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keycodes/keycodes-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/keycodes/mapped/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keycodes/mapped/index.json -------------------------------------------------------------------------------- /res/app/components/stf/keys/add-adb-key/adb-keys-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/add-adb-key/adb-keys-service.js -------------------------------------------------------------------------------- /res/app/components/stf/keys/add-adb-key/add-adb-key-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/add-adb-key/add-adb-key-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/keys/add-adb-key/add-adb-key-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/add-adb-key/add-adb-key-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/keys/add-adb-key/add-adb-key.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/add-adb-key/add-adb-key.css -------------------------------------------------------------------------------- /res/app/components/stf/keys/add-adb-key/add-adb-key.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/add-adb-key/add-adb-key.pug -------------------------------------------------------------------------------- /res/app/components/stf/keys/add-adb-key/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/add-adb-key/index.js -------------------------------------------------------------------------------- /res/app/components/stf/keys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/keys/index.js -------------------------------------------------------------------------------- /res/app/components/stf/landscape/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/landscape/index.js -------------------------------------------------------------------------------- /res/app/components/stf/landscape/landscape-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/landscape/landscape-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/landscape/landscape-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/landscape/landscape-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/language/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/language/index.js -------------------------------------------------------------------------------- /res/app/components/stf/language/language-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/language/language-provider.js -------------------------------------------------------------------------------- /res/app/components/stf/language/language-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/language/language-service.js -------------------------------------------------------------------------------- /res/app/components/stf/logcat-table/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat-table/index.js -------------------------------------------------------------------------------- /res/app/components/stf/logcat-table/logcat-table-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat-table/logcat-table-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/logcat-table/logcat-table-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat-table/logcat-table-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/logcat-table/logcat-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat-table/logcat-table.css -------------------------------------------------------------------------------- /res/app/components/stf/logcat-table/logcat-table.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat-table/logcat-table.pug -------------------------------------------------------------------------------- /res/app/components/stf/logcat/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat/index.js -------------------------------------------------------------------------------- /res/app/components/stf/logcat/logcat-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat/logcat-service.js -------------------------------------------------------------------------------- /res/app/components/stf/logcat/logcat-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/logcat/logcat-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/native-url/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/native-url/index.js -------------------------------------------------------------------------------- /res/app/components/stf/native-url/native-url-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/native-url/native-url-service.js -------------------------------------------------------------------------------- /res/app/components/stf/native-url/native-url-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/native-url/native-url-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/nav-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/nav-menu/index.js -------------------------------------------------------------------------------- /res/app/components/stf/nav-menu/nav-menu-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/nav-menu/nav-menu-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/nav-menu/nav-menu-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/nav-menu/nav-menu-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/page-visibility/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/page-visibility/index.js -------------------------------------------------------------------------------- /res/app/components/stf/port-forwarding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/port-forwarding/index.js -------------------------------------------------------------------------------- /res/app/components/stf/port-forwarding/port-forwarding-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/port-forwarding/port-forwarding-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/scoped-hotkeys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/scoped-hotkeys/index.js -------------------------------------------------------------------------------- /res/app/components/stf/scoped-hotkeys/scoped-hotkeys-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/scoped-hotkeys/scoped-hotkeys-service.js -------------------------------------------------------------------------------- /res/app/components/stf/scoped-hotkeys/scoped-hotkeys-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/scoped-hotkeys/scoped-hotkeys-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/fast-image-render/canvas-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/fast-image-render/canvas-render.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/fast-image-render/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/fast-image-render/index.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/fast-image-render/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/fast-image-render/test/index.html -------------------------------------------------------------------------------- /res/app/components/stf/screen/fast-image-render/test/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/fast-image-render/test/results.md -------------------------------------------------------------------------------- /res/app/components/stf/screen/fast-image-render/webgl-render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/fast-image-render/webgl-render.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/imagepool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/imagepool.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/index.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/rotator-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/rotator-test.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/rotator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/rotator.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/scaling/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/scaling/index.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/scaling/scaling-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/scaling/scaling-service.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen-controller.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen-keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen-keyboard/index.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen-keyboard/screen-keyboard.css: -------------------------------------------------------------------------------- 1 | .stf-screen-keyboard { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen-touch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen-touch/index.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen-touch/screen-touch-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen-touch/screen-touch-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen.css -------------------------------------------------------------------------------- /res/app/components/stf/screen/screen.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/screen/screen.pug -------------------------------------------------------------------------------- /res/app/components/stf/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/settings/index.js -------------------------------------------------------------------------------- /res/app/components/stf/settings/settings-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/settings/settings-service.js -------------------------------------------------------------------------------- /res/app/components/stf/socket/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/socket/index.js -------------------------------------------------------------------------------- /res/app/components/stf/socket/socket-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/socket/socket-service.js -------------------------------------------------------------------------------- /res/app/components/stf/socket/socket-state/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/socket/socket-state/index.js -------------------------------------------------------------------------------- /res/app/components/stf/socket/socket-state/socket-state.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/app/components/stf/standalone/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/standalone/index.js -------------------------------------------------------------------------------- /res/app/components/stf/standalone/standalone-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function StandaloneCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/components/stf/standalone/standalone-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/standalone/standalone-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/standalone/standalone-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/standalone/standalone-service.js -------------------------------------------------------------------------------- /res/app/components/stf/standalone/standalone.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/app/components/stf/standalone/standalone.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/app/components/stf/storage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/storage/index.js -------------------------------------------------------------------------------- /res/app/components/stf/storage/storage-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/storage/storage-service.js -------------------------------------------------------------------------------- /res/app/components/stf/text-history/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/text-history/index.js -------------------------------------------------------------------------------- /res/app/components/stf/text-history/text-history-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/text-history/text-history-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/text-history/text-history-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/text-history/text-history-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/timeline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timeline/index.js -------------------------------------------------------------------------------- /res/app/components/stf/timeline/timeline-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timeline/timeline-service.js -------------------------------------------------------------------------------- /res/app/components/stf/timeline/timeline-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timeline/timeline-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/timelines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timelines/index.js -------------------------------------------------------------------------------- /res/app/components/stf/timelines/timeline-message/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timelines/timeline-message/index.js -------------------------------------------------------------------------------- /res/app/components/stf/timelines/timelines-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timelines/timelines-directive.js -------------------------------------------------------------------------------- /res/app/components/stf/timelines/timelines-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timelines/timelines-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/timelines/timelines.css: -------------------------------------------------------------------------------- 1 | .stf-timelines { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/components/stf/timelines/timelines.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/timelines/timelines.pug -------------------------------------------------------------------------------- /res/app/components/stf/tokens/access-token-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/tokens/access-token-service.js -------------------------------------------------------------------------------- /res/app/components/stf/tokens/generate-access-token/generate-access-token-spec.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/app/components/stf/tokens/generate-access-token/generate-access-token.css: -------------------------------------------------------------------------------- 1 | .stf-generate-access-token { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/components/stf/tokens/generate-access-token/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/tokens/generate-access-token/index.js -------------------------------------------------------------------------------- /res/app/components/stf/tokens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/tokens/index.js -------------------------------------------------------------------------------- /res/app/components/stf/transaction/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/transaction/index.js -------------------------------------------------------------------------------- /res/app/components/stf/transaction/transaction-error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/transaction/transaction-error.js -------------------------------------------------------------------------------- /res/app/components/stf/transaction/transaction-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/transaction/transaction-service.js -------------------------------------------------------------------------------- /res/app/components/stf/upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/upload/index.js -------------------------------------------------------------------------------- /res/app/components/stf/upload/upload-error-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/upload/upload-error-filter.js -------------------------------------------------------------------------------- /res/app/components/stf/upload/upload-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/upload/upload-spec.js -------------------------------------------------------------------------------- /res/app/components/stf/user/group/group-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/user/group/group-service.js -------------------------------------------------------------------------------- /res/app/components/stf/user/group/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/user/group/index.js -------------------------------------------------------------------------------- /res/app/components/stf/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/user/index.js -------------------------------------------------------------------------------- /res/app/components/stf/user/user-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/user/user-service.js -------------------------------------------------------------------------------- /res/app/components/stf/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/users/index.js -------------------------------------------------------------------------------- /res/app/components/stf/users/users-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/users/users-service.js -------------------------------------------------------------------------------- /res/app/components/stf/util/common/common-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/util/common/common-service.js -------------------------------------------------------------------------------- /res/app/components/stf/util/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/util/common/index.js -------------------------------------------------------------------------------- /res/app/components/stf/util/vendor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/util/vendor/index.js -------------------------------------------------------------------------------- /res/app/components/stf/util/vendor/vendor-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/components/stf/util/vendor/vendor-util.js -------------------------------------------------------------------------------- /res/app/control-panes/activity/activity-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/activity/activity-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/activity/activity-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/activity/activity-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/activity/activity.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/activity/activity.css -------------------------------------------------------------------------------- /res/app/control-panes/activity/activity.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/activity/activity.pug -------------------------------------------------------------------------------- /res/app/control-panes/activity/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/activity/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/advanced-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function AdvancedCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/advanced/advanced-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/advanced-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/advanced.css: -------------------------------------------------------------------------------- 1 | .stf-advanced { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/advanced/advanced.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/advanced.pug -------------------------------------------------------------------------------- /res/app/control-panes/advanced/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/input/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/input/input-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/input/input-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/input/input-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/input/input-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/input/input.css: -------------------------------------------------------------------------------- 1 | .stf-input { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/advanced/input/input.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/input/input.pug -------------------------------------------------------------------------------- /res/app/control-panes/advanced/maintenance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/maintenance/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/maintenance/maintenance-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/maintenance/maintenance-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/maintenance/maintenance.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/maintenance/maintenance.pug -------------------------------------------------------------------------------- /res/app/control-panes/advanced/port-forwarding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/port-forwarding/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/run-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/run-js/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/run-js/run-js-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function RunJsCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/advanced/run-js/run-js-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/run-js/run-js-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/run-js/run-js.css: -------------------------------------------------------------------------------- 1 | .stf-run-js { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/advanced/run-js/run-js.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/run-js/run-js.pug -------------------------------------------------------------------------------- /res/app/control-panes/advanced/usb/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/usb/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/usb/usb-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function UsbCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/advanced/usb/usb-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/usb/usb-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/usb/usb.css: -------------------------------------------------------------------------------- 1 | .stf-usb { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/advanced/usb/usb.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/usb/usb.pug -------------------------------------------------------------------------------- /res/app/control-panes/advanced/vnc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/vnc/index.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/vnc/vnc-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/vnc/vnc-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/vnc/vnc-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/vnc/vnc-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/advanced/vnc/vnc.css: -------------------------------------------------------------------------------- 1 | .stf-vnc { 2 | 3 | } 4 | 5 | -------------------------------------------------------------------------------- /res/app/control-panes/advanced/vnc/vnc.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/advanced/vnc/vnc.pug -------------------------------------------------------------------------------- /res/app/control-panes/automation/automation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/automation/automation.pug -------------------------------------------------------------------------------- /res/app/control-panes/automation/device-settings/device-settings.css: -------------------------------------------------------------------------------- 1 | .stf-device-settings { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/automation/device-settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/automation/device-settings/index.js -------------------------------------------------------------------------------- /res/app/control-panes/automation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/automation/index.js -------------------------------------------------------------------------------- /res/app/control-panes/automation/store-account/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/automation/store-account/index.js -------------------------------------------------------------------------------- /res/app/control-panes/automation/store-account/store-account.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/automation/store-account/store-account.css -------------------------------------------------------------------------------- /res/app/control-panes/automation/store-account/store-account.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/automation/store-account/store-account.pug -------------------------------------------------------------------------------- /res/app/control-panes/control-panes-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/control-panes-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/control-panes-hotkeys-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/control-panes-hotkeys-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/control-panes-no-device-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/control-panes-no-device-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/control-panes-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/control-panes-service.js -------------------------------------------------------------------------------- /res/app/control-panes/control-panes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/control-panes.pug -------------------------------------------------------------------------------- /res/app/control-panes/cpu/cpu-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function CpuCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/cpu/cpu-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/cpu/cpu-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/cpu/cpu.css: -------------------------------------------------------------------------------- 1 | .stf-cpu { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/cpu/cpu.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/cpu/cpu.pug -------------------------------------------------------------------------------- /res/app/control-panes/cpu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/cpu/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/apps/apps-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/apps/apps-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/apps/apps.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/apps/apps.css -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/apps/apps.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/apps/apps.pug -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/apps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/apps/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/clipboard/clipboard-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/clipboard/clipboard-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/clipboard/clipboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/clipboard/clipboard.css -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/clipboard/clipboard.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/clipboard/clipboard.pug -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/clipboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/clipboard/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/dashboard-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function DashboardCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/dashboard-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/dashboard-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/dashboard.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/dashboard.pug -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/activities/activities.css: -------------------------------------------------------------------------------- 1 | .stf-activities { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/activities/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/install/activities/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/install/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/install-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/install/install-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/install-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/install/install-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/install.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/install/install.css -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/install/install.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/install/install.pug -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/navigation/default-favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/navigation/default-favicon.png -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/navigation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/navigation/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/navigation/navigation-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/navigation/navigation-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/navigation/navigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/navigation/navigation.css -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/navigation/navigation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/navigation/navigation.pug -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/remote-debug/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/remote-debug/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/remote-debug/remote-debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/remote-debug/remote-debug.css -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/remote-debug/remote-debug.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/remote-debug/remote-debug.pug -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/shell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/shell/index.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/shell/shell-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/shell/shell-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/shell/shell-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/shell/shell-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/shell/shell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/shell/shell.css -------------------------------------------------------------------------------- /res/app/control-panes/dashboard/shell/shell.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/dashboard/shell/shell.pug -------------------------------------------------------------------------------- /res/app/control-panes/device-control/device-control.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/device-control/device-control.css -------------------------------------------------------------------------------- /res/app/control-panes/device-control/device-control.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/device-control/device-control.pug -------------------------------------------------------------------------------- /res/app/control-panes/device-control/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/device-control/index.js -------------------------------------------------------------------------------- /res/app/control-panes/explorer/explorer-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/explorer/explorer-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/explorer/explorer-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/explorer/explorer-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/explorer/explorer.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/app/control-panes/explorer/explorer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/explorer/explorer.pug -------------------------------------------------------------------------------- /res/app/control-panes/explorer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/explorer/index.js -------------------------------------------------------------------------------- /res/app/control-panes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/index.js -------------------------------------------------------------------------------- /res/app/control-panes/info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/info/index.js -------------------------------------------------------------------------------- /res/app/control-panes/info/info-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/info/info-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/info/info-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/info/info-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/info/info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/info/info.css -------------------------------------------------------------------------------- /res/app/control-panes/info/info.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/info/info.pug -------------------------------------------------------------------------------- /res/app/control-panes/inspect/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/inspect/index.js -------------------------------------------------------------------------------- /res/app/control-panes/inspect/inspect-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function InspectCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/inspect/inspect-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/inspect/inspect-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/inspect/inspect.css: -------------------------------------------------------------------------------- 1 | .stf-inspect { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/inspect/inspect.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/inspect/inspect.pug -------------------------------------------------------------------------------- /res/app/control-panes/logs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/logs/index.js -------------------------------------------------------------------------------- /res/app/control-panes/logs/logs-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/logs/logs-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/logs/logs-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/logs/logs-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/logs/logs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/logs/logs.less -------------------------------------------------------------------------------- /res/app/control-panes/logs/logs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/logs/logs.pug -------------------------------------------------------------------------------- /res/app/control-panes/performance/cpu/cpu-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function CpuCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/performance/cpu/cpu-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/performance/cpu/cpu-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/performance/cpu/cpu.css: -------------------------------------------------------------------------------- 1 | .stf-cpu { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/performance/cpu/cpu.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/performance/cpu/cpu.pug -------------------------------------------------------------------------------- /res/app/control-panes/performance/cpu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/performance/cpu/index.js -------------------------------------------------------------------------------- /res/app/control-panes/performance/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/performance/index.js -------------------------------------------------------------------------------- /res/app/control-panes/performance/performance-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function PerformanceCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/performance/performance-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/performance/performance-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/performance/performance.css: -------------------------------------------------------------------------------- 1 | .stf-performance { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/performance/performance.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/performance/performance.pug -------------------------------------------------------------------------------- /res/app/control-panes/resources/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/resources/index.js -------------------------------------------------------------------------------- /res/app/control-panes/resources/resources-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function ResourcesCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/control-panes/resources/resources-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/resources/resources-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/resources/resources.css: -------------------------------------------------------------------------------- 1 | .stf-resources { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/control-panes/resources/resources.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/resources/resources.pug -------------------------------------------------------------------------------- /res/app/control-panes/screenshots/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/screenshots/index.js -------------------------------------------------------------------------------- /res/app/control-panes/screenshots/screenshots-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/screenshots/screenshots-controller.js -------------------------------------------------------------------------------- /res/app/control-panes/screenshots/screenshots-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/screenshots/screenshots-spec.js -------------------------------------------------------------------------------- /res/app/control-panes/screenshots/screenshots.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/screenshots/screenshots.css -------------------------------------------------------------------------------- /res/app/control-panes/screenshots/screenshots.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/control-panes/screenshots/screenshots.pug -------------------------------------------------------------------------------- /res/app/device-list/column/device-column-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/column/device-column-service.js -------------------------------------------------------------------------------- /res/app/device-list/column/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/column/index.js -------------------------------------------------------------------------------- /res/app/device-list/customize/device-list-customize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/customize/device-list-customize.css -------------------------------------------------------------------------------- /res/app/device-list/customize/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/customize/index.js -------------------------------------------------------------------------------- /res/app/device-list/details/device-list-details-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/details/device-list-details-directive.js -------------------------------------------------------------------------------- /res/app/device-list/details/device-list-details.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/details/device-list-details.css -------------------------------------------------------------------------------- /res/app/device-list/details/device-list-details.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/details/device-list-details.pug -------------------------------------------------------------------------------- /res/app/device-list/details/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/details/index.js -------------------------------------------------------------------------------- /res/app/device-list/device-list-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/device-list-controller.js -------------------------------------------------------------------------------- /res/app/device-list/device-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/device-list.css -------------------------------------------------------------------------------- /res/app/device-list/device-list.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/device-list.pug -------------------------------------------------------------------------------- /res/app/device-list/empty/device-list-empty-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/empty/device-list-empty-directive.js -------------------------------------------------------------------------------- /res/app/device-list/empty/device-list-empty.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/empty/device-list-empty.pug -------------------------------------------------------------------------------- /res/app/device-list/empty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/empty/index.js -------------------------------------------------------------------------------- /res/app/device-list/icons/device-list-icons-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/icons/device-list-icons-directive.js -------------------------------------------------------------------------------- /res/app/device-list/icons/device-list-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/icons/device-list-icons.css -------------------------------------------------------------------------------- /res/app/device-list/icons/device-list-icons.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/icons/device-list-icons.pug -------------------------------------------------------------------------------- /res/app/device-list/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/icons/index.js -------------------------------------------------------------------------------- /res/app/device-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/index.js -------------------------------------------------------------------------------- /res/app/device-list/search/device-list-search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/search/device-list-search.css -------------------------------------------------------------------------------- /res/app/device-list/search/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/search/index.js -------------------------------------------------------------------------------- /res/app/device-list/stats/device-list-stats-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/stats/device-list-stats-directive.js -------------------------------------------------------------------------------- /res/app/device-list/stats/device-list-stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/stats/device-list-stats.css -------------------------------------------------------------------------------- /res/app/device-list/stats/device-list-stats.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/stats/device-list-stats.pug -------------------------------------------------------------------------------- /res/app/device-list/stats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/stats/index.js -------------------------------------------------------------------------------- /res/app/device-list/util/patch-array/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/util/patch-array/index.js -------------------------------------------------------------------------------- /res/app/device-list/util/patch-array/patch-array-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/util/patch-array/patch-array-test.js -------------------------------------------------------------------------------- /res/app/device-list/util/query-parser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/util/query-parser/index.js -------------------------------------------------------------------------------- /res/app/device-list/util/query-parser/query-parser-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/device-list/util/query-parser/query-parser-test.js -------------------------------------------------------------------------------- /res/app/docs/docs-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/docs/docs-controller.js -------------------------------------------------------------------------------- /res/app/docs/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/docs/docs.css -------------------------------------------------------------------------------- /res/app/docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/docs/index.js -------------------------------------------------------------------------------- /res/app/group-list/group-list-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/group-list-controller.js -------------------------------------------------------------------------------- /res/app/group-list/group-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/group-list.css -------------------------------------------------------------------------------- /res/app/group-list/group-list.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/group-list.pug -------------------------------------------------------------------------------- /res/app/group-list/groups/groups.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/groups/groups.pug -------------------------------------------------------------------------------- /res/app/group-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/index.js -------------------------------------------------------------------------------- /res/app/group-list/stats/group-quota-stats.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/stats/group-quota-stats.pug -------------------------------------------------------------------------------- /res/app/group-list/stats/group-stats.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/group-list/stats/group-stats.pug -------------------------------------------------------------------------------- /res/app/layout/cursor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/layout/cursor.css -------------------------------------------------------------------------------- /res/app/layout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/layout/index.js -------------------------------------------------------------------------------- /res/app/layout/layout-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/layout/layout-controller.js -------------------------------------------------------------------------------- /res/app/layout/small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/layout/small.css -------------------------------------------------------------------------------- /res/app/layout/stf-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/layout/stf-styles.css -------------------------------------------------------------------------------- /res/app/menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/menu/index.js -------------------------------------------------------------------------------- /res/app/menu/menu-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/menu/menu-controller.js -------------------------------------------------------------------------------- /res/app/menu/menu-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/menu/menu-spec.js -------------------------------------------------------------------------------- /res/app/menu/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/menu/menu.css -------------------------------------------------------------------------------- /res/app/menu/menu.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/menu/menu.pug -------------------------------------------------------------------------------- /res/app/settings/devices/devices-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/devices/devices-controller.js -------------------------------------------------------------------------------- /res/app/settings/devices/devices-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/devices/devices-spec.js -------------------------------------------------------------------------------- /res/app/settings/devices/devices.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/devices/devices.css -------------------------------------------------------------------------------- /res/app/settings/devices/devices.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/devices/devices.pug -------------------------------------------------------------------------------- /res/app/settings/devices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/devices/index.js -------------------------------------------------------------------------------- /res/app/settings/general/date-format/date-format-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/date-format/date-format-controller.js -------------------------------------------------------------------------------- /res/app/settings/general/date-format/date-format.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/date-format/date-format.pug -------------------------------------------------------------------------------- /res/app/settings/general/date-format/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/date-format/index.js -------------------------------------------------------------------------------- /res/app/settings/general/email-address-separator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/email-address-separator/index.js -------------------------------------------------------------------------------- /res/app/settings/general/general-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function GeneralCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/settings/general/general-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/general-spec.js -------------------------------------------------------------------------------- /res/app/settings/general/general.css: -------------------------------------------------------------------------------- 1 | .stf-general { 2 | 3 | } -------------------------------------------------------------------------------- /res/app/settings/general/general.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/general.pug -------------------------------------------------------------------------------- /res/app/settings/general/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/index.js -------------------------------------------------------------------------------- /res/app/settings/general/language/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/language/index.js -------------------------------------------------------------------------------- /res/app/settings/general/language/language-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/language/language-controller.js -------------------------------------------------------------------------------- /res/app/settings/general/language/language.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/language/language.pug -------------------------------------------------------------------------------- /res/app/settings/general/local/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/local/index.js -------------------------------------------------------------------------------- /res/app/settings/general/local/local-settings-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/local/local-settings-controller.js -------------------------------------------------------------------------------- /res/app/settings/general/local/local-settings.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/general/local/local-settings.pug -------------------------------------------------------------------------------- /res/app/settings/groups/conflicts/conflicts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/conflicts/conflicts.pug -------------------------------------------------------------------------------- /res/app/settings/groups/devices/devices.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/devices/devices.pug -------------------------------------------------------------------------------- /res/app/settings/groups/filters/available-objects-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/filters/available-objects-filter.js -------------------------------------------------------------------------------- /res/app/settings/groups/filters/group-objects-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/filters/group-objects-filter.js -------------------------------------------------------------------------------- /res/app/settings/groups/groups-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/groups-controller.js -------------------------------------------------------------------------------- /res/app/settings/groups/groups-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/groups-spec.js -------------------------------------------------------------------------------- /res/app/settings/groups/groups.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/groups.css -------------------------------------------------------------------------------- /res/app/settings/groups/groups.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/groups.pug -------------------------------------------------------------------------------- /res/app/settings/groups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/index.js -------------------------------------------------------------------------------- /res/app/settings/groups/schedule/schedule.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/schedule/schedule.pug -------------------------------------------------------------------------------- /res/app/settings/groups/users/users.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/groups/users/users.pug -------------------------------------------------------------------------------- /res/app/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/index.js -------------------------------------------------------------------------------- /res/app/settings/keys/access-tokens/access-tokens-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/access-tokens/access-tokens-controller.js -------------------------------------------------------------------------------- /res/app/settings/keys/access-tokens/access-tokens-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/access-tokens/access-tokens-spec.js -------------------------------------------------------------------------------- /res/app/settings/keys/access-tokens/access-tokens.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/access-tokens/access-tokens.css -------------------------------------------------------------------------------- /res/app/settings/keys/access-tokens/access-tokens.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/access-tokens/access-tokens.pug -------------------------------------------------------------------------------- /res/app/settings/keys/access-tokens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/access-tokens/index.js -------------------------------------------------------------------------------- /res/app/settings/keys/adb-keys/adb-keys-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/adb-keys/adb-keys-controller.js -------------------------------------------------------------------------------- /res/app/settings/keys/adb-keys/adb-keys-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/adb-keys/adb-keys-service.js -------------------------------------------------------------------------------- /res/app/settings/keys/adb-keys/adb-keys-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/adb-keys/adb-keys-spec.js -------------------------------------------------------------------------------- /res/app/settings/keys/adb-keys/adb-keys.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/adb-keys/adb-keys.css -------------------------------------------------------------------------------- /res/app/settings/keys/adb-keys/adb-keys.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/adb-keys/adb-keys.pug -------------------------------------------------------------------------------- /res/app/settings/keys/adb-keys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/adb-keys/index.js -------------------------------------------------------------------------------- /res/app/settings/keys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/index.js -------------------------------------------------------------------------------- /res/app/settings/keys/keys-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = function KeysCtrl() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /res/app/settings/keys/keys-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/keys-spec.js -------------------------------------------------------------------------------- /res/app/settings/keys/keys.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/keys.css -------------------------------------------------------------------------------- /res/app/settings/keys/keys.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/keys/keys.pug -------------------------------------------------------------------------------- /res/app/settings/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/notifications/index.js -------------------------------------------------------------------------------- /res/app/settings/notifications/notifications-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/notifications/notifications-controller.js -------------------------------------------------------------------------------- /res/app/settings/notifications/notifications-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/notifications/notifications-service.js -------------------------------------------------------------------------------- /res/app/settings/notifications/notifications.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/notifications/notifications.pug -------------------------------------------------------------------------------- /res/app/settings/settings-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/settings-controller.js -------------------------------------------------------------------------------- /res/app/settings/settings.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/settings.css -------------------------------------------------------------------------------- /res/app/settings/settings.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/settings.pug -------------------------------------------------------------------------------- /res/app/settings/users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/users/index.js -------------------------------------------------------------------------------- /res/app/settings/users/users-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/users/users-controller.js -------------------------------------------------------------------------------- /res/app/settings/users/users-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/users/users-spec.js -------------------------------------------------------------------------------- /res/app/settings/users/users.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/users/users.css -------------------------------------------------------------------------------- /res/app/settings/users/users.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/settings/users/users.pug -------------------------------------------------------------------------------- /res/app/terminal/terminal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/terminal/terminal.css -------------------------------------------------------------------------------- /res/app/user/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/user/index.js -------------------------------------------------------------------------------- /res/app/user/user-controller.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | function UserCtrl() { 3 | 4 | 5 | } 6 | -------------------------------------------------------------------------------- /res/app/user/user.pug: -------------------------------------------------------------------------------- 1 | h1 User 2 | -------------------------------------------------------------------------------- /res/app/views/docs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/views/docs.pug -------------------------------------------------------------------------------- /res/app/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/views/index.pug -------------------------------------------------------------------------------- /res/app/views/rejected-email.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/app/views/rejected-email.pug -------------------------------------------------------------------------------- /res/auth/ldap/scripts/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/ldap/scripts/entry.js -------------------------------------------------------------------------------- /res/auth/ldap/scripts/signin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/ldap/scripts/signin/index.js -------------------------------------------------------------------------------- /res/auth/ldap/scripts/signin/signin-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/ldap/scripts/signin/signin-controller.js -------------------------------------------------------------------------------- /res/auth/ldap/scripts/signin/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/ldap/scripts/signin/signin.css -------------------------------------------------------------------------------- /res/auth/ldap/scripts/signin/signin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/ldap/scripts/signin/signin.pug -------------------------------------------------------------------------------- /res/auth/ldap/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/ldap/views/index.pug -------------------------------------------------------------------------------- /res/auth/mock/scripts/entry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/mock/scripts/entry.js -------------------------------------------------------------------------------- /res/auth/mock/scripts/signin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/mock/scripts/signin/index.js -------------------------------------------------------------------------------- /res/auth/mock/scripts/signin/signin-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/mock/scripts/signin/signin-controller.js -------------------------------------------------------------------------------- /res/auth/mock/scripts/signin/signin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/mock/scripts/signin/signin.css -------------------------------------------------------------------------------- /res/auth/mock/scripts/signin/signin.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/mock/scripts/signin/signin.pug -------------------------------------------------------------------------------- /res/auth/mock/views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/auth/mock/views/index.pug -------------------------------------------------------------------------------- /res/common/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/img/close.png -------------------------------------------------------------------------------- /res/common/img/no_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/img/no_switch.png -------------------------------------------------------------------------------- /res/common/img/plus-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/img/plus-active.png -------------------------------------------------------------------------------- /res/common/img/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/img/plus.png -------------------------------------------------------------------------------- /res/common/img/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/img/switch.png -------------------------------------------------------------------------------- /res/common/lang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/index.js -------------------------------------------------------------------------------- /res/common/lang/langs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/langs.json -------------------------------------------------------------------------------- /res/common/lang/po/stf.es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.es.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.fr.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.ja.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.ko_KR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.ko_KR.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.pl.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.pot -------------------------------------------------------------------------------- /res/common/lang/po/stf.pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.pt_BR.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.ru_RU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.ru_RU.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.zh-Hant.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.zh-Hant.po -------------------------------------------------------------------------------- /res/common/lang/po/stf.zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/po/stf.zh_CN.po -------------------------------------------------------------------------------- /res/common/lang/translations/stf.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.es.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.fr.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.ja.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.ko_KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.ko_KR.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.pl.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.pt_BR.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.ru_RU.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.zh-Hant.json -------------------------------------------------------------------------------- /res/common/lang/translations/stf.zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/lang/translations/stf.zh_CN.json -------------------------------------------------------------------------------- /res/common/logo/STF.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/logo/STF.ai -------------------------------------------------------------------------------- /res/common/logo/exports/STF-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/logo/exports/STF-128.png -------------------------------------------------------------------------------- /res/common/logo/exports/STF-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/logo/exports/STF-512.png -------------------------------------------------------------------------------- /res/common/logo/exports/STF-outlined.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/logo/exports/STF-outlined.ai -------------------------------------------------------------------------------- /res/common/status/scripts/entry.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/common/status/views/404.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/status/views/404.pug -------------------------------------------------------------------------------- /res/common/status/views/maintenance.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/status/views/maintenance.pug -------------------------------------------------------------------------------- /res/common/status/views/partials/styles.pug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/common/status/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/common/status/webpack.config.js -------------------------------------------------------------------------------- /res/test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/.eslintrc -------------------------------------------------------------------------------- /res/test/e2e/control/control-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/control/control-spec.js -------------------------------------------------------------------------------- /res/test/e2e/devices/devices-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/devices/devices-spec.js -------------------------------------------------------------------------------- /res/test/e2e/devices/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/devices/index.js -------------------------------------------------------------------------------- /res/test/e2e/help/help-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/help/help-spec.js -------------------------------------------------------------------------------- /res/test/e2e/helpers/browser-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/helpers/browser-logs.js -------------------------------------------------------------------------------- /res/test/e2e/helpers/fail-fast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/helpers/fail-fast.js -------------------------------------------------------------------------------- /res/test/e2e/helpers/gulp-protractor-adv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/helpers/gulp-protractor-adv.js -------------------------------------------------------------------------------- /res/test/e2e/helpers/wait-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/helpers/wait-url.js -------------------------------------------------------------------------------- /res/test/e2e/login/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/login/index.js -------------------------------------------------------------------------------- /res/test/e2e/login/login-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/login/login-spec.js -------------------------------------------------------------------------------- /res/test/e2e/settings/settings-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/settings/settings-spec.js -------------------------------------------------------------------------------- /res/test/e2e/widget-container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/widget-container/index.js -------------------------------------------------------------------------------- /res/test/e2e/widget-container/widget-container-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/e2e/widget-container/widget-container-spec.js -------------------------------------------------------------------------------- /res/test/helpers/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/helpers/helper.js -------------------------------------------------------------------------------- /res/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/karma.conf.js -------------------------------------------------------------------------------- /res/test/protractor-appium.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/protractor-appium.conf.js -------------------------------------------------------------------------------- /res/test/protractor-multi.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/protractor-multi.conf.js -------------------------------------------------------------------------------- /res/test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/test/protractor.conf.js -------------------------------------------------------------------------------- /res/web_modules/angular-borderlayout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-borderlayout/index.js -------------------------------------------------------------------------------- /res/web_modules/angular-borderlayout/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-borderlayout/style.css -------------------------------------------------------------------------------- /res/web_modules/angular-growl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-growl/index.js -------------------------------------------------------------------------------- /res/web_modules/angular-hotkeys/hotkeys.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/web_modules/angular-hotkeys/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-hotkeys/index.js -------------------------------------------------------------------------------- /res/web_modules/angular-ladda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-ladda/index.js -------------------------------------------------------------------------------- /res/web_modules/angular-xeditable/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-xeditable/index.js -------------------------------------------------------------------------------- /res/web_modules/angular-xeditable/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/angular-xeditable/style.css -------------------------------------------------------------------------------- /res/web_modules/epoch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/epoch/index.js -------------------------------------------------------------------------------- /res/web_modules/gettext/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/gettext/index.js -------------------------------------------------------------------------------- /res/web_modules/ladda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/ladda/index.js -------------------------------------------------------------------------------- /res/web_modules/ng-context-menu/context-menu.css: -------------------------------------------------------------------------------- 1 | .context-menu { 2 | position: fixed; 3 | z-index: 1000; 4 | } 5 | -------------------------------------------------------------------------------- /res/web_modules/ng-context-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/ng-context-menu/index.js -------------------------------------------------------------------------------- /res/web_modules/ng-file-upload/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/ng-file-upload/index.js -------------------------------------------------------------------------------- /res/web_modules/nine-bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/nine-bootstrap/README.md -------------------------------------------------------------------------------- /res/web_modules/nine-bootstrap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/nine-bootstrap/index.js -------------------------------------------------------------------------------- /res/web_modules/nine-bootstrap/nine-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/nine-bootstrap/nine-bootstrap.scss -------------------------------------------------------------------------------- /res/web_modules/ui-bootstrap/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/res/web_modules/ui-bootstrap/index.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixt/Virtual.kcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/fixt/Virtual.kcm -------------------------------------------------------------------------------- /test/fixt/Virtual.kcm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/fixt/Virtual.kcm.json -------------------------------------------------------------------------------- /test/util/keyutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/util/keyutil.js -------------------------------------------------------------------------------- /test/util/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/util/logger.js -------------------------------------------------------------------------------- /test/util/ttlset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/util/ttlset.js -------------------------------------------------------------------------------- /test/wire/messagestream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/wire/messagestream.js -------------------------------------------------------------------------------- /test/wire/seqqueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/test/wire/seqqueue.js -------------------------------------------------------------------------------- /vendor/STFService/STFService.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/STFService/STFService.apk -------------------------------------------------------------------------------- /vendor/STFService/wire.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/STFService/wire.proto -------------------------------------------------------------------------------- /vendor/minirev/arm64-v8a/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/arm64-v8a/minirev -------------------------------------------------------------------------------- /vendor/minirev/arm64-v8a/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/arm64-v8a/minirev-nopie -------------------------------------------------------------------------------- /vendor/minirev/armeabi-v7a/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/armeabi-v7a/minirev -------------------------------------------------------------------------------- /vendor/minirev/armeabi-v7a/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/armeabi-v7a/minirev-nopie -------------------------------------------------------------------------------- /vendor/minirev/armeabi/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/armeabi/minirev -------------------------------------------------------------------------------- /vendor/minirev/armeabi/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/armeabi/minirev-nopie -------------------------------------------------------------------------------- /vendor/minirev/mips/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/mips/minirev -------------------------------------------------------------------------------- /vendor/minirev/mips/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/mips/minirev-nopie -------------------------------------------------------------------------------- /vendor/minirev/mips64/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/mips64/minirev -------------------------------------------------------------------------------- /vendor/minirev/mips64/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/mips64/minirev-nopie -------------------------------------------------------------------------------- /vendor/minirev/x86/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/x86/minirev -------------------------------------------------------------------------------- /vendor/minirev/x86/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/x86/minirev-nopie -------------------------------------------------------------------------------- /vendor/minirev/x86_64/minirev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/x86_64/minirev -------------------------------------------------------------------------------- /vendor/minirev/x86_64/minirev-nopie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/vendor/minirev/x86_64/minirev-nopie -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasilyTest/stf/HEAD/yarn.lock --------------------------------------------------------------------------------