Changeset 14512 for misc/runpugs/data
- Timestamp:
- 10/24/06 18:30:58 (2 years ago)
- Location:
- misc/runpugs/data
- Files:
-
- 2 modified
-
runpugs.html (modified) (1 diff)
-
runpugs2.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
misc/runpugs/data/runpugs.html
r14380 r14512 27 27 <div id="mainwindow"> 28 28 <h1>Run Perl 6 now -- in your browser!</h1> 29 <p>This live web terminal runs the latest development snapshot of 30 the <a href="http://www.pugscode.org">pugs</a> interpreter for <a 29 <p>This live web terminal runs the <a href="http://www.pugscode.org">pugs</a> interpreter for <a 31 30 href="http://dev.perl.org/perl 6/">Perl 6</a>. For more details, read the <a 32 31 href="http://feather.perl6.nl/~andara/runpugs/">info page</a>. 33 32 </p> 34 <form style="text-align: center" id="term" name="terminal" action="/cgi-bin/runpugs" method="POST"> 33 <p>By default, the Pugs session will use the <a 34 href="http://search.cpan.org/search?query=perl6%3A%3Apugs&mode=module">latest 35 release</a>. To use the latest development snapshot, change the setting 36 below.</p> 37 38 <form id="term" name="terminal" action="/cgi-bin/runpugs" method="POST"> 35 39 36 40 <input type="hidden" name="testing" value="_TESTING_"> 37 41 <input type="hidden" name="sessionid" value=""> 38 42 <input type="hidden" name="action" value="runpugs"> 43 <!--<fieldset>--> 44 <input type="radio" id="rel" value="0" name="reldev" _REL_ ><label 45 for="rel">Release</label> 46 <input type="radio" id="dev" value="1" name="reldev" _DEV_ ><label for="dev">Development</label> 47 <!--</fieldset>--> 48 <h2>Interactive Pugs Session</h2> 39 49 <!--<textarea id="history" name="history" rows="1" cols="1" 40 50 style="overflow: hidden; border: 0px; width: 0px; 41 51 font-size:0px">_CMD_</textarea>--> 42 < label for="cmd">Interactive Pugs Session<br>52 <!--<label for="cmd">Interactive Pugs Session<br>--> 43 53 <textarea id="cmd" name="cmd" rows="24" cols="80" wrap="virtual" onKeyPress="return submitenter(this,event)"> 44 54 pugs> 45 55 </textarea> 46 < /label>56 <!--</label>--> 47 57 <br> 48 58 <input id="enter" type="submit" value="Submit"> -
misc/runpugs/data/runpugs2.html
r14449 r14512 50 50 <div id="mainwindow"> 51 51 <h1>Run Perl 6 now -- in your browser!</h1> 52 <p>This live web terminal runs the latest development snapshot of 53 the <a href="http://www.pugscode.org">pugs</a> interpreter for <a 52 <p>This live web terminal runs the <a href="http://www.pugscode.org">pugs</a> interpreter for <a 54 53 href="http://dev.perl.org/perl 6/">Perl 6</a>. For more details, read the <a 55 54 href="http://feather.perl6.nl/~andara/runpugs/">info page</a>. 56 55 </p> 57 <form style="text-align: left" id="term" name="terminal" 58 action="/cgi-bin/runpugs2" method="POST"> 56 <p>By default, the Pugs session will use the <a 57 href="http://search.cpan.org/search?query=perl6%3A%3Apugs&mode=module">latest 58 release</a>. To use the latest development snapshot, change the setting 59 below.</p> 59 60 60 < input type="hidden" name="testing" value="_TESTING_">61 <form id="term" name="terminal" action="/cgi-bin/runpugs2" method="POST"> 61 62 <input type="hidden" name="prompt" value="_PROMPTW_"> 62 63 <input type="hidden" name="sessionid" value=""> 64 <input type="hidden" name="ia" value="1"> 63 65 <input type="hidden" name="action" value="runpugs"> 64 <!--<label for="cmd">Interactive Pugs Session<br>--> 65 <h2>Interactive Pugs Session</h2> 66 <input type="radio" id="rel" value="0" name="reldev" _REL_ ><label 67 for="rel">Release</label> 68 <input type="radio" id="dev" value="1" name="reldev" _DEV_ ><label for="dev">Development</label> 69 <br><br> 70 <span class="tabon">Interactive Pugs Session</span> 71 <a class="taboff" href="/cgi-bin/runpugs2?ia=0">Run a Perl 6 Script</a> 66 72 <div id="termwindow"> 67 <select name="history" id="hist" onChange="select_enter()"><!--onKeyPress="return 68 select_enter(this,event)">--> 73 <select name="history" id="hist" onChange="select_enter()"> 69 74 <option value="">--- Recent commands ---</option> 70 75 _HIST_ 71 76 </select> 72 77 <br> 73 <!--74 <span class="prompt">75 _PROMPTW_76 </span>77 <span class="termfont">78 _CMDW_79 </span>80 <br>81 -->82 78 <textarea readonly id="output" name="output" rows="_NROWS_" cols="80" wrap="virtual"> 83 79 _REPLYW_
