├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Readme.md ├── SECURITY.md ├── desktopContext.js ├── domUtil.js ├── pull_request_template.md ├── templates ├── django │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── models.py │ ├── static │ │ ├── javascripts │ │ │ ├── demo │ │ │ │ ├── createMenu.js │ │ │ │ └── demo.js │ │ │ ├── jquery │ │ │ │ └── jquery-ui-1.11.4.custom │ │ │ │ │ ├── external │ │ │ │ │ └── jquery │ │ │ │ │ │ └── jquery-1.12.4.min.js │ │ │ │ │ ├── images │ │ │ │ │ ├── ui-icons_444444_256x240.png │ │ │ │ │ ├── ui-icons_555555_256x240.png │ │ │ │ │ ├── ui-icons_777620_256x240.png │ │ │ │ │ ├── ui-icons_777777_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery-ui.css │ │ │ │ │ ├── jquery-ui.js │ │ │ │ │ ├── jquery-ui.min-1.11.4.js │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery-ui.structure.css │ │ │ │ │ ├── jquery-ui.structure.min.css │ │ │ │ │ ├── jquery-ui.theme.css │ │ │ │ │ └── jquery-ui.theme.min.css │ │ │ └── webRocketX │ │ │ │ └── v1_10_1 │ │ │ │ ├── LICENSE │ │ │ │ ├── desktopContext.js │ │ │ │ ├── domUtil.js │ │ │ │ ├── version.txt │ │ │ │ ├── webRocketXStyles.css │ │ │ │ └── webapi.js │ │ └── styles │ │ │ └── demo │ │ │ ├── menu.css │ │ │ └── styles.css │ ├── templates │ │ ├── includes │ │ │ ├── cssFileList.html │ │ │ └── javascriptFileList.html │ │ ├── json.html │ │ ├── json_go.html │ │ ├── modal10.html │ │ ├── modal10_go.html │ │ ├── modal20.html │ │ ├── modal20_go.html │ │ ├── newStartingPoint_go.html │ │ ├── noMeta_go.html │ │ ├── serverSideError.html │ │ ├── serverSideErrorTypeDataAndJsOnload_go.html │ │ ├── serverSideError_go.html │ │ ├── slowtest1_go.html │ │ ├── test1.html │ │ ├── test1_go.html │ │ ├── test2.html │ │ ├── test2_go.html │ │ ├── test3.html │ │ ├── test3_go.html │ │ ├── test4.html │ │ ├── test4_go.html │ │ ├── test5_go.html │ │ ├── welcome.html │ │ └── welcomeContent.html │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── welcome.html └── php │ ├── includes │ ├── cssFileList.php │ └── javascriptFileList.php │ ├── javascripts │ ├── demo │ │ ├── createMenu.js │ │ └── demo.js │ ├── jquery │ │ └── jquery-ui-1.11.4.custom │ │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery-1.12.4.min.js │ │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ ├── index.html │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.js │ │ │ ├── jquery-ui.min-1.11.4.js │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery-ui.structure.css │ │ │ ├── jquery-ui.structure.min.css │ │ │ ├── jquery-ui.theme.css │ │ │ └── jquery-ui.theme.min.css │ └── webRocketX │ │ └── v1_10_1 │ │ ├── LICENSE │ │ ├── desktopContext.js │ │ ├── domUtil.js │ │ ├── version.txt │ │ ├── webRocketXStyles.css │ │ └── webapi.js │ ├── json.php │ ├── json_go.php │ ├── modal10.php │ ├── modal10_go.php │ ├── modal20.php │ ├── modal20_go.php │ ├── newStartingPoint_go.php │ ├── noMeta_go.php │ ├── readme.txt │ ├── serverSideError.php │ ├── serverSideErrorTypeDataAndJsOnload_go.php │ ├── serverSideError_go.php │ ├── slowtest1_go.php │ ├── styles │ └── demo │ │ ├── menu.css │ │ └── styles.css │ ├── test1.php │ ├── test1_go.php │ ├── test2.php │ ├── test2_go.php │ ├── test3.php │ ├── test3_go.php │ ├── test4.php │ ├── test4_go.php │ ├── test5_go.php │ ├── welcome.php │ └── welcomeContent.php ├── version.txt ├── webRocketXStyles.css └── webapi.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/Readme.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/SECURITY.md -------------------------------------------------------------------------------- /desktopContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/desktopContext.js -------------------------------------------------------------------------------- /domUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/domUtil.js -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /templates/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/django/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/admin.py -------------------------------------------------------------------------------- /templates/django/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/apps.py -------------------------------------------------------------------------------- /templates/django/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/models.py -------------------------------------------------------------------------------- /templates/django/static/javascripts/demo/createMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/demo/createMenu.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/demo/demo.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/external/jquery/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/external/jquery/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/index.html -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min-1.11.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min-1.11.4.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/webRocketX/v1_10_1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/webRocketX/v1_10_1/LICENSE -------------------------------------------------------------------------------- /templates/django/static/javascripts/webRocketX/v1_10_1/desktopContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/webRocketX/v1_10_1/desktopContext.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/webRocketX/v1_10_1/domUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/webRocketX/v1_10_1/domUtil.js -------------------------------------------------------------------------------- /templates/django/static/javascripts/webRocketX/v1_10_1/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/webRocketX/v1_10_1/version.txt -------------------------------------------------------------------------------- /templates/django/static/javascripts/webRocketX/v1_10_1/webRocketXStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/webRocketX/v1_10_1/webRocketXStyles.css -------------------------------------------------------------------------------- /templates/django/static/javascripts/webRocketX/v1_10_1/webapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/javascripts/webRocketX/v1_10_1/webapi.js -------------------------------------------------------------------------------- /templates/django/static/styles/demo/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/styles/demo/menu.css -------------------------------------------------------------------------------- /templates/django/static/styles/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/static/styles/demo/styles.css -------------------------------------------------------------------------------- /templates/django/templates/includes/cssFileList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/includes/cssFileList.html -------------------------------------------------------------------------------- /templates/django/templates/includes/javascriptFileList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/includes/javascriptFileList.html -------------------------------------------------------------------------------- /templates/django/templates/json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/json.html -------------------------------------------------------------------------------- /templates/django/templates/json_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/json_go.html -------------------------------------------------------------------------------- /templates/django/templates/modal10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/modal10.html -------------------------------------------------------------------------------- /templates/django/templates/modal10_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/modal10_go.html -------------------------------------------------------------------------------- /templates/django/templates/modal20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/modal20.html -------------------------------------------------------------------------------- /templates/django/templates/modal20_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/modal20_go.html -------------------------------------------------------------------------------- /templates/django/templates/newStartingPoint_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/newStartingPoint_go.html -------------------------------------------------------------------------------- /templates/django/templates/noMeta_go.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /templates/django/templates/serverSideError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/serverSideError.html -------------------------------------------------------------------------------- /templates/django/templates/serverSideErrorTypeDataAndJsOnload_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/serverSideErrorTypeDataAndJsOnload_go.html -------------------------------------------------------------------------------- /templates/django/templates/serverSideError_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/serverSideError_go.html -------------------------------------------------------------------------------- /templates/django/templates/slowtest1_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/slowtest1_go.html -------------------------------------------------------------------------------- /templates/django/templates/test1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test1.html -------------------------------------------------------------------------------- /templates/django/templates/test1_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test1_go.html -------------------------------------------------------------------------------- /templates/django/templates/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test2.html -------------------------------------------------------------------------------- /templates/django/templates/test2_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test2_go.html -------------------------------------------------------------------------------- /templates/django/templates/test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test3.html -------------------------------------------------------------------------------- /templates/django/templates/test3_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test3_go.html -------------------------------------------------------------------------------- /templates/django/templates/test4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test4.html -------------------------------------------------------------------------------- /templates/django/templates/test4_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test4_go.html -------------------------------------------------------------------------------- /templates/django/templates/test5_go.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/test5_go.html -------------------------------------------------------------------------------- /templates/django/templates/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/welcome.html -------------------------------------------------------------------------------- /templates/django/templates/welcomeContent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/templates/welcomeContent.html -------------------------------------------------------------------------------- /templates/django/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/tests.py -------------------------------------------------------------------------------- /templates/django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/urls.py -------------------------------------------------------------------------------- /templates/django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/django/views.py -------------------------------------------------------------------------------- /templates/django/welcome.html: -------------------------------------------------------------------------------- 1 | Welcome 2 | -------------------------------------------------------------------------------- /templates/php/includes/cssFileList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/includes/cssFileList.php -------------------------------------------------------------------------------- /templates/php/includes/javascriptFileList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/includes/javascriptFileList.php -------------------------------------------------------------------------------- /templates/php/javascripts/demo/createMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/demo/createMenu.js -------------------------------------------------------------------------------- /templates/php/javascripts/demo/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/demo/demo.js -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/external/jquery/jquery-1.12.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/external/jquery/jquery-1.12.4.min.js -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/index.html -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.css -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.js -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min-1.11.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min-1.11.4.js -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.min.css -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.css -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.css -------------------------------------------------------------------------------- /templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/jquery/jquery-ui-1.11.4.custom/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /templates/php/javascripts/webRocketX/v1_10_1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/webRocketX/v1_10_1/LICENSE -------------------------------------------------------------------------------- /templates/php/javascripts/webRocketX/v1_10_1/desktopContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/webRocketX/v1_10_1/desktopContext.js -------------------------------------------------------------------------------- /templates/php/javascripts/webRocketX/v1_10_1/domUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/webRocketX/v1_10_1/domUtil.js -------------------------------------------------------------------------------- /templates/php/javascripts/webRocketX/v1_10_1/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/webRocketX/v1_10_1/version.txt -------------------------------------------------------------------------------- /templates/php/javascripts/webRocketX/v1_10_1/webRocketXStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/webRocketX/v1_10_1/webRocketXStyles.css -------------------------------------------------------------------------------- /templates/php/javascripts/webRocketX/v1_10_1/webapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/javascripts/webRocketX/v1_10_1/webapi.js -------------------------------------------------------------------------------- /templates/php/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/json.php -------------------------------------------------------------------------------- /templates/php/json_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/json_go.php -------------------------------------------------------------------------------- /templates/php/modal10.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/modal10.php -------------------------------------------------------------------------------- /templates/php/modal10_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/modal10_go.php -------------------------------------------------------------------------------- /templates/php/modal20.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/modal20.php -------------------------------------------------------------------------------- /templates/php/modal20_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/modal20_go.php -------------------------------------------------------------------------------- /templates/php/newStartingPoint_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/newStartingPoint_go.php -------------------------------------------------------------------------------- /templates/php/noMeta_go.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /templates/php/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/readme.txt -------------------------------------------------------------------------------- /templates/php/serverSideError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/serverSideError.php -------------------------------------------------------------------------------- /templates/php/serverSideErrorTypeDataAndJsOnload_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/serverSideErrorTypeDataAndJsOnload_go.php -------------------------------------------------------------------------------- /templates/php/serverSideError_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/serverSideError_go.php -------------------------------------------------------------------------------- /templates/php/slowtest1_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/slowtest1_go.php -------------------------------------------------------------------------------- /templates/php/styles/demo/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/styles/demo/menu.css -------------------------------------------------------------------------------- /templates/php/styles/demo/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/styles/demo/styles.css -------------------------------------------------------------------------------- /templates/php/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test1.php -------------------------------------------------------------------------------- /templates/php/test1_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test1_go.php -------------------------------------------------------------------------------- /templates/php/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test2.php -------------------------------------------------------------------------------- /templates/php/test2_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test2_go.php -------------------------------------------------------------------------------- /templates/php/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test3.php -------------------------------------------------------------------------------- /templates/php/test3_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test3_go.php -------------------------------------------------------------------------------- /templates/php/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test4.php -------------------------------------------------------------------------------- /templates/php/test4_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test4_go.php -------------------------------------------------------------------------------- /templates/php/test5_go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/test5_go.php -------------------------------------------------------------------------------- /templates/php/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/welcome.php -------------------------------------------------------------------------------- /templates/php/welcomeContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/templates/php/welcomeContent.php -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/version.txt -------------------------------------------------------------------------------- /webRocketXStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/webRocketXStyles.css -------------------------------------------------------------------------------- /webapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewekeller/WebRocketX/HEAD/webapi.js --------------------------------------------------------------------------------