Skip to content

Commit 27964d0

Browse files
committed
Version 0.7.1
Added shortcuts to phpMyAdmin patches. Reorganised the way Default Server paths work. Turn of spell checking in text area.
1 parent 416185a commit 27964d0

File tree

7 files changed

+371
-241
lines changed

7 files changed

+371
-241
lines changed

data/data.txt

Whitespace-only changes.

data/sample-php.txt

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?php
2+
$size = ' 23 x 45';
3+
$pattern = '/^\s*(\d+)\s*[xX]\s*(\d+)\s*$/';
4+
preg_match($pattern, $size, $matches);
5+
print_r($matches);
6+
[,$width,$height] = $matches;
7+
print "width: $width\nheight: $height";
8+
?>
9+
<?php $a = 12 * 3; ?>
10+
I got <?= $a; ?>
11+
hohoho
12+
Good, innit?
13+
14+
<?php $sent = false; ?>
15+
Testing
16+
<?php if($sent): ?>
17+
plan a
18+
<?php else: ?>
19+
plan b
20+
<?php endif; ?>
21+
Finally
22+

data/servers.json

+12-6
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"mysql": "/xamppfiles/var/mysql",
1414
"phpini": "/xamppfiles/etc/php.ini",
1515
"phpmyadmin": "/xamppfiles/phpmyadmin/",
16-
"phpcli": "/xamppfiles/bin/php"
16+
"phpcli": "/xamppfiles/bin/php",
17+
"phpmyadmin-config": "//\tAdditional Settings\n\t$cfg['AllowUserDropDatabase'] = true;\n\t$cfg['RetainQueryBox'] = true;\n"
1718
},
1819
"win32": {
1920
"root": "C:/xampp",
@@ -23,9 +24,11 @@
2324
"mysql": "/mysql/data",
2425
"phpini": "/php/php.ini",
2526
"phpmyadmin": "/phpMyAdmin/",
26-
"phpcli": "/php/php.exe"
27+
"phpcli": "/php/php.exe",
28+
"phpmyadmin-config": "<?php\n\t//\tAdditional Settings\n\t\t$cfg['AllowUserDropDatabase'] = true;\n\t\t$cfg['RetainQueryBox'] = true;\n?>\n"
2729
},
28-
"vhost": ""
30+
"vhost": "",
31+
"phpmyadmin-css": "/*\tAdditional Settings\n\t================================================ */\n\tform#sqlqueryform div.CodeMirror pre,\n\tform#sqlqueryform div.CodeMirror-linenumber {\n\t\tfont-size: 1.25rem;\n\t}\n"
2932
},
3033
"mamp": {
3134
"darwin": {
@@ -36,7 +39,8 @@
3639
"mysql": "/db/mysql57",
3740
"phpini": "/bin/php/php{version}/conf/php.ini",
3841
"phpmyadmin": "/bin/phpmyadmin/",
39-
"phpcli": "/bin/php/php{version}/bin/php"
42+
"phpcli": "/bin/php/php{version}/bin/php",
43+
"phpmyadmin-config": "<?php\n\t//\tAdditional Settings\n\t\t$cfg['AllowUserDropDatabase'] = true;\n\t\t$cfg['RetainQueryBox'] = true;\n?>\n"
4044
},
4145
"win32": {
4246
"root": "C:/MAMP",
@@ -46,9 +50,11 @@
4650
"mysql": "/db/mysql",
4751
"phpini": "/conf/php{version}/php.ini",
4852
"phpmyadmin": "/bin/phpMyAdmin/",
49-
"phpcli": "/bin/php/php{version}/php.exe"
53+
"phpcli": "/bin/php/php{version}/php.exe",
54+
"phpmyadmin-config": "<?php\n\t//\tAdditional Settings\n\t\t$cfg['AllowUserDropDatabase'] = true;\n\t\t$cfg['RetainQueryBox'] = true;\n?>\n"
5055
},
51-
"vhost": ""
56+
"vhost": "",
57+
"phpmyadmin-css": "/*\tAdditional Settings\n\t================================================ */\n\tform#sqlqueryform div.CodeMirror pre,\n\tform#sqlqueryform div.CodeMirror-linenumber {\n\t\tfont-size: 1.25rem;\n\t}\n"
5258
},
5359
"ampps": {
5460
"darwin": {

index.html

+18-15
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ <h3>Virtual Host Settings</h3>
4141
<li>Choose a Web Server Package</li>
4242
<li>If you have installed the Web Server in a non-default location, select the folder.</li>
4343
<li>If you prefer to use a different PHP Interpreter, choose the alternative interpreter executable.</li>
44+
<li>Save the Settings for next time …</li>
4445
</ol>
4546
</div>
4647
<div id="misc">
@@ -61,6 +62,7 @@ <h4>Choose a Web Server Root Folder</h4>
6162
-->
6263
<output type="text" name="server-root" value="" placeholder="Leave empty for default" title="Full Path to Server Folder"></output>
6364
<button name="server-path">Select Folder …</button>
65+
<button name="server-path-default">Default</button>
6466
</div>
6567
<div id="choose-php-interpreter">
6668
<h4>Choose a PHP Interpreter</h4>
@@ -70,6 +72,10 @@ <h4>Choose a PHP Interpreter</h4>
7072
-->
7173
<output name="php-interpreter" value="" placeholder="Leave empty for default" title="Full Path to PHP Interpreter"></output>
7274
<button name="php-interpreter-path">Select Interpreter …</button>
75+
<button name="php-interpreter-path-default">Default …</button>
76+
</div>
77+
<div id="save-settings">
78+
<button name="save-settings">Save</button>
7379
</div>
7480
</form>
7581
<form id="hosts-file">
@@ -82,7 +88,7 @@ <h3>Hosts File (etc/host)</h3>
8288
</ol>
8389
</div>
8490
<div class="textarea etc">
85-
<textarea name="content">Open hosts file or Select Platform</textarea>
91+
<textarea name="content" spellcheck="false">Open hosts file or Select Platform</textarea>
8692
</div>
8793
</form>
8894
<form id="httpd-conf">
@@ -103,7 +109,7 @@ <h3>Apache Configuration File (httpd.conf)</h3>
103109
</ol>
104110
</div>
105111
<div class="textarea etc">
106-
<textarea name="content">Open httpd.conf file or Select Platform</textarea>
112+
<textarea name="content" spellcheck="false">Open httpd.conf file or Select Platform</textarea>
107113
</div>
108114
</form>
109115
<form id="virtual-hosts">
@@ -117,7 +123,7 @@ <h3>Virtual Hosts File (httpd-vhosts.conf)</h3>
117123
</ol>
118124
</div>
119125
<div class="textarea etc">
120-
<textarea name="content">Open vhosts.conf file or Select Platform</textarea>
126+
<textarea name="content" spellcheck="false">Open vhosts.conf file or Select Platform</textarea>
121127
</div>
122128
</form>
123129
<form id="generator">
@@ -135,7 +141,7 @@ <h3>Hosts Generator</h3>
135141
<p><label for="root">Document Root</label><input type="text" id="root" name="root" value="…/…/example" placeholder="…/…/example" title="Full Path to Root Folder"><button name="path">Select Folder …</button></p>
136142
<button name="generate">Generate</button>
137143
</div>
138-
<div class="textarea"><textarea name="content" class="textarea">The cat sat on the mat</textarea></div>
144+
<div class="textarea"><textarea name="content" class="textarea" spellcheck="false">The cat sat on the mat</textarea></div>
139145
</form>
140146
<form id="php-ini">
141147
<div class="help">
@@ -154,15 +160,15 @@ <h3>PHP Configuration File (php.ini)</h3>
154160
</ol>
155161
</div>
156162
<div class="textarea etc">
157-
<textarea name="content">Open php.ini file or Select Platform</textarea>
163+
<textarea name="content" spellcheck="false">Open php.ini file or Select Platform</textarea>
158164
</div>
159165
</form>
160166
<form id="misc-text">
161167
<div class="help">
162168
<h3>Miscellaeous Text File</h3>
163169
</div>
164170
<div class="textarea etc">
165-
<textarea name="content">Open any file</textarea>
171+
<textarea name="content" spellcheck="false">Open any file</textarea>
166172
</div>
167173
</form>
168174
<form id="misc-actions">
@@ -172,24 +178,21 @@ <h3>Miscellaeous Actions</h3>
172178
<div class="etc">
173179
<p><button type="button" name="reset-mysql">Reset MySQL</button></p>
174180
<p><button type="button" name="phpmyadmin-css">PHPMyAdmin CSS</button><button type="button" name="phpmyadmin-css-append">Append CSS Settings</button></p>
175-
<p><button type="button" name="phpmyadmin-config">PHPMyAdmin Config</button><button type="button" name="phpmyadmin-config-pappend">Append Config Settings</button></p>
181+
<p><button type="button" name="phpmyadmin-config">PHPMyAdmin Config</button><button type="button" name="phpmyadmin-config-append">Append Config Settings</button></p>
176182
</div>
177183
</form>
178184
<form id="php-runner">
179185
<div class="help" id="php-help">
180186
<h3>PHP Runner</h3>
181187
</div>
182188
<div id="php-code">
183-
<textarea name="code" placeholder="Enter your PHP"></textarea>
189+
<textarea name="code" placeholder="Enter your PHP" spellcheck="false"></textarea>
184190
<code class="language-php" contenteditable="true">Content</code>
185-
<button name="doit">Run</button>
186-
</div>
187-
<!--
188-
<div id="php-control">
189-
<label><input type="checkbox" name="html"> HTML Mode</label>
190-
<button name="doit">Run</button>
191+
<div id="php-control">
192+
<label><input type="checkbox" name="php-tags"> HTML Mode</label>
193+
<button name="doit">Run</button>
194+
</div>
191195
</div>
192-
-->
193196
<div id="php-result">
194197

195198
</div>

main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
submenu: [
2929
{ label: `New Document`, accelerator: 'CmdOrCtrl+N', id:'NEW', click: send },
3030
{ label: `Open …`, accelerator: 'CmdOrCtrl+O', id:'OPEN', click: send },
31-
{ label: `Reload`, accelerator: 'CmdOrCtrl+R', id:'LOAD', click: send },
31+
{ label: `Reload`, accelerator: 'CmdOrCtrl+R', id:'RELOAD', click: send },
3232
{ label: `Save`, accelerator: 'CmdOrCtrl+S', id:'SAVE', click: send },
3333
{ label: `Save As …`, accelerator: 'CmdOrCtrl+Shift+S', id:'SAVEAS', click: send },
3434
{ type:'separator' },

0 commit comments

Comments
 (0)