-
Notifications
You must be signed in to change notification settings - Fork 12
/
readme.txt
236 lines (186 loc) · 12.3 KB
/
readme.txt
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
=== AceIDE ===
Contributors: shanept, WPsites, Thomas Wieczorek, x-raym, rdytogollc
Tags: code, theme editor, plugin editor, code editor
Requires at least: 3.0
Tested up to: 4.9.1
Stable tag: 2.6.2
A fork of the WPide project, AceIDE is a code editor with the long term goal of becoming the ultimate environment to develop themes and plugins.
== Description ==
AceIDE is a WordPress code editor with the long term goal of becoming the ultimate environment to code/develop WordPress themes and plugins. You can edit any files in your wp-content, not just plugins and themes. Code completion will help you remember your WordPress/PHP commands providing function reference along the way. AceIDE allows you to work with multiple files, with basic features such as the tabbed editor, syntax highlighting and line numbers. It also provides some more advanced features such as syntax verification and automatic backups upon saving.
Contributions and feedback is encouraged! If you find an issue, please let us know via the WordPress support forums, or the GitHub issue tracker. Code contributions are welcomed as a pull request to our GitHub repo.
This plugin would not be possible without the Ajax.org Cloud9 Editor which is the embedded code editor that powers much of the functionality.
This plugin performs best in the Chrome web browser.
= Current Features: =
- Syntax highlighting
- PHP syntax checking before saving to disk to try and banish white screen of death after uploading invalid PHP
- Line numbers
- Find+replace
- Code autocomplete for WordPress and PHP functions along with function description, arguments and return value where applicable
- Colour assist - a colour picker that only shows once you double click a hex colour code in the editor. You can also drag your own image into the colour picker to use instead of the default swatch (see other notes for info).
- Automatic backup of every file you edit. (one daily backup and one hourly backup of each file stored in plugins/AceIDE/backups/filepath)
- File tree allowing you to access and edit any file in your wp-content folder (plugins, themes, uploads etc)
- Use the file browser to rename, delete, download, zip and unzip files (so you can download a zipped version of your whole theme for example)
- Create new files and directories
- Highlight matching parentheses
- Code folding
- Auto indentation
- Tabbed interface for editing multiple files (editing both plugin and theme files at the same time)
- Using the WordPress filesystem API, although currently direct access is forced (edit AceIDE.php in the constructor to change this behaviour) ftp/ssh connections aren't setup yet, since WP will not remember a password need to work out how that will work. Maybe use modal to request password when you save but be able to click save all and save a batch with that password. Passwords defined in wp-config.php are persistent and would fix this problem but people don't generally add those details. Open to ideas here.
- Image editing/drawing
- WordPress Multisite support
= Future Ideas: =
- Improve the code autocomplete command information, providing more information on the commands, adding links through to the WordPress codex and PHP.net website for further info.
- Create an admin panel to choose between syntax highlighting themes and turn on/off other Ajax.org Cloud9 functionality
- Better automated file backup process
- Templates/shortcuts for frequently used code snippets, maybe even with an interface to accept variables that could be injected into code snippet templates.
- Integration with version control systems such as Git
== Contributing ==
AceIDE would not be the powerful tool it is without your contributions. Community contributions are essential to ensure the continued development of the editor.
As with most plugins, AceIDE is open source. For issue tracking, further information and anyone wishing to get involved and help contribute to this project can do so over on GitHub.
AceIDE on GitHub: https://github.com/AceIDE/editor/
*Please read CONTRIBUTING.md before submitting a pull request.*
== Installation ==
1. Install the plugin through the WordPress plugins Menu, OR upload and unzip to wp-content/plugins.
1. Activate the plugin through the 'Plugins' menu in WordPress
1. Access AceIDE by clicking the AceIDE menu item in your main administration menu
== Screenshots ==
1. Editor view, showing line numbers and syntax highlighting.
1. Image editor in action
1. Showing auto complete, function reference and file tree.
1. Default colour picker image
== Changelog ==
= 2.6.2 =
* See github issue #32. Adds precision to backup naming.
* Reverts breaking changes made by commit 80e8adf to fix #15.
= 2.6.1 =
* See github issue #27. Fixes issue introduced in 2.6.0, attempting to fix nois$
* See github issue #26. Fixes CSS highlighting not working.
* Bumped Ace version to 1.2.9.
* Fixed PHPParser_Error not being caught.
* Added 'aceide_parse_php' filter to allow disabling the inbuilt PHP syntax parser.
* See github issue #24. Fixes some resource URLs.
= 2.6.0 =
* See github issue #15. Removes AJAX noise from ALL other plugins/themes etc. Much more solid than previous solution for github issue #5.
* Resolves github issue #21. Better error output in the event the HTTP server will not process a file upload request.
* Added plugin license.
* Resolved github issue #22. AceIDE now supports PHP 7.
= 2.5.5 =
* Fixed github issue #11, where text would be replaced when clicking in replace field of the search box - Thanks to X-Raym
* Fixed shift line up/down hotkeys
* Added editor to Multisite's network admin menu - Thanks to X-Raym
* Added AceIDE logo - Thanks to Kevin Young (rdytogokev)
* Added Fullscreen editor
* Added confirmation to zipping operations
* Slightly modified some keyboard command handlers for usability
* Changed capability from 'create_users' to 'edit_plugins' (See GitHub issue #14)
= 2.5.4 =
* Fixed broken SumoPaint image manipulation functionality (see github issue #3)
* Strips noise from other plugins upon opening files (see github issue #5)
* Fixed broken zipping functionality with ZipArchive (see github issue #6)
= 2.5.3 =
* Added autocomplete for taxonomy functions add_term_meta, get_term_meta, update_term_meta and delete_term_meta
* Fixed broken zipping functionality (see github issue #2)
= 2.5.2 =
* Fixed AceIDE editor main class error on older versions of PHP for unknown shorthand array syntax - Thanks to X-Raym
= 2.5.1 =
* Fixed dialog issues with Z order of find, settings and git dialogs
* Fixed dialog close button mislocation
= 2.5.0 =
* WPide was forked into AceIDE!
* Introduced composer as a dependency management solution
* Massive code refactor to better follow Single Role Principle, and the WordPress PHP coding standards - introduces PHP namespacing into internal plugin code
* Fixed WPide admin_body_class filter issue
* Added multi-site support. (UNTESTED)
* Added Drag n' Drop file moving
* Added syntax highlighting for the Twig templating language (http://twig.sensiolabs.org)
* Added the Emmet plugin to create HTML nodes with CSS syntax (http://emmet.io)
* Upgraded Ace to v1.2.4
* Fixed SumoPaint link issues when the aceide_filesystem_root filter is not at default value
= 2.4.0 =
* Context menu option added to file browser to rename, delete, download, zip, unzip!! thanks to shanept https://github.com/shanept for the code behind this.
Right click on a folder/file in the file browser to see options (Thanks to https://github.com/shanept)
* find+replace
* Stopped using the full functionality of sanitize_file_name() and using a cut down version instead that allows period, dash and underscore at the beginning and end of filename.
* corrected invalid regex for determining image type
* Changed order of PHP4 compatible constructor in an attempt to stop a PHP Strict Standard error
* Update to Ace Editor 1.2.0
* Editor settings, so that it’s possible to change the theme and other editor features/behaviours
* New application icon in menu bar
= 2.3.2 =
* Update the Ace component to 1.1.1 which includes some bug fixes, a PHP worker (showing PHP errors as you work) and a greatly improved search box.
* Fixed issue with file save showing javascript alert as if there was a failure when there wasn't
* Order folders and files alphabetically
= 2.3.1 =
* As a quick fix I have commentted out the git functionality as the namespacing used is causing issues with old versions of PHP
= 2.3 =
* Added initial git functions using the following library: PHP-Stream-Wrapper-for-Git from https://github.com/teqneers/PHP-Stream-Wrapper-for-Git
* Initial Git functionality added - it's very experimental!
= 2.2 =
* Add restore recent backup facility - It's a primative implementation at this point but it does the job. See FAQ note.
* Turned on the LESS mode when a .LESS file is edited
* Made the autocomplete functionality only be enabled for PHP files otherwise it can be a pain to write txt files like this one!
= 2.1 =
* Ramped up the version number because the last one was just getting silly
* Interface changes to make the editor take up more screen space. Including hiding the WP admin menu and footer.
= 2.0.16 =
* Fixed problem saving PHP documents - PHP-Parser library wasn't included in the codebase correctly
= 2.0.15 =
* PHP syntax checking before saving to disk (Using: https://github.com/nikic/PHP-Parser)
= 2.0.14 =
* Fixed error Warning: Creating default object from empty value in WPide.php
* Updated the ace editor to current build
= 2.0.13 =
* Added colour assist - a colour picker that displays when you double click a hex colour code in the editor (see other notes for info).
* Added a confirm box to stop you exiting the editor by mistake and losing unsaved chnages.
* Added 'wpide_filesystem_root' filter (see other notes for info).
* A number of bug fixes.
= 2.0.12 =
* Added links to the WordPress codex and the PHP manual from within the function refrence for further info
= 2.0.11 =
* Newly created files use to contain a space, instead it now defaults to a blank file.
= 2.0.10 =
* Fixed a problem with file loading (ajax) indicator not showing.
= 2.0.9 =
* Upload snapshot of current ajaxorg editor (master/build/src) at 00:30 on the 22 May 2012. Which fixes some issues with selecting big blocks of text, code folding seems better with gutter interface hidden when not in use
= 2.0.8 =
* Fix browser compatibility issues
= 2.0.7 =
* Fixing issue with closing tabs not focusing onto next tab once closed.
* Fixed issue with detecting ajax url correctly which was causing all WPide ajax requests to fail if WordPress was installed in a subdirectory.
* Stopped autocomplete from trying to work when a js/css file is being edited.
= 2.0.6 =
* Cleaned up the WPide class and modified the way the class is passed to WordPress actions/filters.
= 2.0.5 =
* On startup the editor page now shows extra debuggin information for the filesystem API initialisation.
= 2.0.4 =
* On startup the initial editor page now shows some startup info regarding file permissions to help with debugging.
= 2.0.3 =
* If WPide cannot access your files due to permissions then when it starts up it will give you an alert to say this.
= 2.0.2 =
* Image editing is now available using the SumoPaint image editor and drawing application http://www.sumopaint.com/
= 2.0.1 =
* You can now create new files/folders
= 2.0 =
* Recreated this plugin as a dedicated WPide section/app rather than extending the built in plugin/theme editor (just incase WP remove it)
* Now using the WP filesystem API (although currently restricted to local access)
* More security checks on file opening and editing
* Added new file tree for exploring the file system and opening files (any file in wp-content)
* Massive overhaul to code autocomplete functionality with the addition of function information right in the app
* Update the ajaxorg Ace Editor to the current branch
* Tabbed editing
= 1.0.6 =
* Added link to meta section of plugin list for easy install of V2 Dev version if you have dismissed the alert.
= 1.0.5 =
* Added the facility to download and run the cutting edge development version of WPide from the Github repository
= 1.0.4 =
* Implemented JavaScript and CSS mode for better syntax highlighing and checking (Thanks to Thomas Wieczorek)
* Organise and format source code
= 1.0.2 =
* Tidy and comment code
* Added message when backup file is generated
* Adjust code complete dropdown position
* Improved editor responsiveness when using delete or enter keys
= 1.0.1 =
* Fixed "Folder name case" issue.
= 1.0 =
* Initial release.