Repository: airavata-php-gateway Updated Branches: refs/heads/dreg-gateway 95decff37 -> b38e1fc13
Merge branch 'dreg-gateway' of https://github.com/apache/airavata-php-gateway into dreg-gateway Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/c6404a04 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/c6404a04 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/c6404a04 Branch: refs/heads/dreg-gateway Commit: c6404a0460fbe8028dd0f449258ff55bb20845ad Parents: ff9a184 e5286d2 Author: root <root@osboxes> Authored: Tue Jul 18 22:19:48 2017 +0100 Committer: root <root@osboxes> Committed: Tue Jul 18 22:19:48 2017 +0100 ---------------------------------------------------------------------- app/libraries/CommonUtilities.php | 33 +- app/libraries/ExperimentUtilities.php | 68 +- app/libraries/FileTransfer.php | 155 ++++ app/libraries/TusServer/Exception/Abort.php | 17 + app/libraries/TusServer/Exception/BadHeader.php | 18 + app/libraries/TusServer/Exception/Curl.php | 17 + app/libraries/TusServer/Exception/File.php | 17 + .../Exception/FileNotFoundException.php | 36 + .../TusServer/Exception/IOException.php | 41 + .../Exception/IOExceptionInterface.php | 29 + app/libraries/TusServer/Exception/Max.php | 17 + app/libraries/TusServer/Exception/Request.php | 18 + app/libraries/TusServer/Exception/Required.php | 18 + app/libraries/TusServer/FileToolsService.php | 247 +++++ app/libraries/TusServer/TusServer.php | 856 +++++++++++++++++ app/libraries/basecode.php | 35 + app/routes.php | 77 +- app/views/account/dashboard.blade.php | 39 +- app/views/experiment/create-complete.blade.php | 83 +- app/views/experiment/create.blade.php | 3 + app/views/partials/experiment-info.blade.php | 93 ++ app/views/partials/experiment-inputs.blade.php | 21 + .../partials/experiment-queue-block.blade.php | 0 public/css/tusupload.css | 49 + public/js/tus.js | 917 +++++++++++++++++++ public/themes/dreg/LICENSE | 201 ++++ public/themes/dreg/README.md | 2 + public/themes/dreg/assets/css/style.css | 304 ++++++ public/themes/dreg/assets/css/zoom.css | 87 ++ public/themes/dreg/assets/img/Twitter26x21.png | Bin 0 -> 3227 bytes public/themes/dreg/assets/img/airavata-logo.png | Bin 0 -> 19733 bytes public/themes/dreg/assets/img/baker-logo.png | Bin 0 -> 33980 bytes public/themes/dreg/assets/img/cornell-logo.png | Bin 0 -> 23321 bytes .../themes/dreg/assets/img/dREG-logo-muted.png | Bin 0 -> 42728 bytes public/themes/dreg/assets/img/dREG-model.png | Bin 0 -> 39864 bytes public/themes/dreg/assets/img/dREG-works.png | Bin 0 -> 139455 bytes public/themes/dreg/assets/img/dREG.Preprint.png | Bin 0 -> 3027 bytes public/themes/dreg/assets/img/dankolab-logo.png | Bin 0 -> 56271 bytes public/themes/dreg/assets/img/distributed.png | Bin 0 -> 11690 bytes .../themes/dreg/assets/img/dreg.create.exp.png | Bin 0 -> 27066 bytes .../themes/dreg/assets/img/dreg.create.exp2.png | Bin 0 -> 53061 bytes .../dreg/assets/img/dreg.create.project.png | Bin 0 -> 14208 bytes .../themes/dreg/assets/img/dreg.exp.folder.png | Bin 0 -> 25789 bytes public/themes/dreg/assets/img/dreg.exp.list.png | Bin 0 -> 33567 bytes .../themes/dreg/assets/img/dreg.exp.summary.png | Bin 0 -> 52211 bytes public/themes/dreg/assets/img/dreg.gbview.png | Bin 0 -> 110820 bytes public/themes/dreg/assets/img/dreg.login.png | Bin 0 -> 6381 bytes public/themes/dreg/assets/img/dreg.project.png | Bin 0 -> 24380 bytes public/themes/dreg/assets/img/nsf-logo.gif | Bin 0 -> 12384 bytes public/themes/dreg/assets/img/nsf-logo.png | Bin 0 -> 48920 bytes .../themes/dreg/assets/img/powered-by-xsede.gif | Bin 0 -> 2973 bytes .../dreg/assets/img/poweredby-airavata-logo.png | Bin 0 -> 20008 bytes public/themes/dreg/assets/img/scigap-logo.png | Bin 0 -> 40135 bytes .../dreg/assets/img/webdev-bullet-icon.png | Bin 0 -> 17598 bytes .../themes/dreg/assets/img/xsede-full-color.png | Bin 0 -> 57042 bytes public/themes/dreg/layouts/default.blade.php | 1 + public/themes/dreg/partials/about.blade.php | 51 ++ public/themes/dreg/partials/doc.blade.php | 162 ++++ public/themes/dreg/partials/faq.blade.php | 50 + public/themes/dreg/partials/footer.blade.php | 45 + public/themes/dreg/partials/header.blade.php | 54 ++ public/themes/dreg/partials/template.blade.php | 118 +++ public/themes/dreg/views/index.blade.php | 0 63 files changed, 3911 insertions(+), 68 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/c6404a04/app/views/account/dashboard.blade.php ----------------------------------------------------------------------
