-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathHTML_ChoicesToModify.html
More file actions
48 lines (37 loc) · 1.66 KB
/
HTML_ChoicesToModify.html
File metadata and controls
48 lines (37 loc) · 1.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<div id="idHowToModifyFile">
<br/>
<br/>
<input type="checkbox" id="idRemoveLogger">Remove Logger_log lines from GS Code?
<br/>
<input type="checkbox" id="idDletLead">Remove leading spaces from lines in GS Code?
<br/>
<input type="checkbox" id="idDletTrail">Remove trailing spaces from lines in GS Code?
<br/>
<input type="checkbox" id="idRemoveComments">Remove Comments from GS Code?
<br/>
<input type="checkbox" id="idLinesBetweenGS">Remove all Empty Lines from GS Code?
<br/>
<input type="checkbox" id="idDletSpaces">Remove unneeded spaces in GS code before overwrite?
<br/>
<input type="checkbox" id="idConsolidateEnd">Consolidate Block Endings in GS code before overwrite?
<h4>NOTE: None of the above options changes the source file code</h4>
<input type="checkbox" id="idExportToTxt">Export final content to text file (Will be in your Root Google Drive)
<br/>
<br/>
<input type="radio" name="whichTypes" id="idBothFiles">Export both GS and html files
<br/>
<input type="radio" name="whichTypes" id="idExportGS_Files">Export only GS files
<br/>
<input type="radio" name="whichTypes" id="idExportHtmlFiles">Export only html files
<br/>
<h3>Which file type to overwrite</h3>
<input type="radio" name="whatToProcess" id="idOverWriteBoth">Process both GS and html files
<br/>
<input type="radio" name="whatToProcess" id="idOverWriteGS">Process only GS files
<br/>
<input type="radio" name="whatToProcess" id="idOverWriteHtml">Process only html files
<br/>
<br/>
<br/>
<input class="create" type="button" value="Overwrite" onmouseup="AlanWells_resetErr();callSrvrToUpdate();">
</div>