source: OpenRLabs-Git/deploy/rlabs-docker/web2py-rlabs/applications/admin/views/gae/deploy.html

main
Last change on this file was 42bd667, checked in by David Fuertes <dfuertes@…>, 4 years ago

Historial Limpio

  • Property mode set to 100755
File size: 1.3 KB
Line 
1{{extend 'layout.html'}}
2<script>$=jQuery</script>
3<link rel="stylesheet" type="text/css" href="{{=URL(r=request,c='static',f='css/jqueryMultiSelect.css')}}" />
4<script src="{{=URL(r=request,c='static',f='js/jqueryMultiSelect.js')}}"></script>
5<script>
6function callback() {
7  $.get('{{=URL(r=request,f='callback')}}','',function(data,status){ if(data!='<done/>') { $('#target').html($('#target').html()+data); callback(); } });
8}
9$(document).ready(function() {
10   $('#no_table_applications').multiSelect({selectAll: false});
11   callback();
12});
13</script>
14
15<h2>{{=T("Google App Engine Deployment Interface")}}</h2>
16
17<p class="help">{{=T("This page can upload your application to the Google App Engine computing cloud. Mind that you must first create indexes locally and this is done by installing the Google appserver and running the app locally with it once, or there will be errors when selecting records. Attention: deployment may take long time, depending on the network speed. Attention: it will overwrite your app.yaml. DO NOT SUBMIT TWICE.")}}</p>
18
19{{if command:}}
20<h3>Command</h3>
21<button onclick="$.get('{{=URL(r=request,f='kill')}}');">kill process</button>
22{{=CODE(command)}}
23<h3>{{=T("GAE Output")}}</h3>
24<pre id="target"></pre>
25{{else:}}
26<h3>{{=T("Deployment form")}}</h3>
27<div class="deploy_form form">
28{{=form}}
29</div>
30{{pass}}
31
Note: See TracBrowser for help on using the repository browser.