PluginProbe
WPIDE – File Manager & Code Editor / 2.0.7
WPIDE – File Manager & Code Editor v2.0.7
3.5.8 3.5.7 2.0.14 2.0.15 2.0.16 2.0.2 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1 2.2 2.3 2.3.1 2.3.2 2.4.0 2.5 2.6 3.0 3.1 3.2 3.3 3.4 All 54 releases
wpide / readme.txt

readme.txt in WPIDE – File Manager & Code Editor 2.0.7, at readme.txt

139 lines 7.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === WPide ===
2 Contributors: WPsites, Thomas Wieczorek
3 Tags: code, theme editor, plugin editor, code editor
4 Requires at least: 3.0
5 Tested up to: 3.3.2
6 Stable tag: 2.0.7
7
8 WordPress code editor with auto completion of both WordPress and PHP functions with reference, syntax highlighting, line numbers, tabbed editing, automatic backup.
9
10 == Description ==
11
12 WPide 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. Edit multiple concurrent files with the tabbed editor.
13
14 Please come forward (either on github or the WordPress support forum) with any bugs, annoyances or any improvements you can suggest. I'd like this plugin to be the best it can be and that's only going to happen if users chip in with their feedback. Code contributions welcome, over on Github.
15
16 This plugin would not be possible without the Ajax.org Cloud9 Editor (http://ace.ajax.org/) which is the embedded code editor that powers much of the functionality.
17
18 = Current Features: =
19
20 * Syntax highlighting
21 * Line numbers
22 * Code autocomplete for WordPress and PHP functions along with function description, arguments and return value where applicable
23 * Automatic backup of every file you edit. (one daily backup and one hourly backup of each file stored in plugins/WPide/backups/filepath)
24 * File tree allowing you to access and edit any file in your wp-content folder (plugins, themes, uploads etc)
25 * Create new files and directories
26 * Highlight matching parentheses
27 * Code folding
28 * Auto indentation
29 * Tabbed interface for editing multiple files (editing both plugin and theme files at the same time)
30 * Using the WordPress filesystem API, although currently direct access is forced (edit WPide.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.
31 * Image editing/drawing (requires Flash - will move over to HTML5 when there is a decent alternative)
32
33 = Feature ideas and improvements: =
34
35 * 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.
36 * Add find and replace functionality
37 * Create an admin panel to choose between syntax highlighting themes and turn on/off other Ajax.org Cloud9 functionality
38 * Better automated file backup process
39 * Templates/shortcuts for frequently used code snippets, maybe even with an interface to accept variables that could be injected into code snippet templates.
40 * Integration with version control systems such as Git
41
42
43 As with most plugins this one 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 https://github.com/WPsites/WPide
44
45 == Contributors ==
46
47 Simon Dunton - http://www.wpsites.co.uk
48 Thomas Wieczorek - http://www.wieczo.net
49
50
51 == Installation ==
52
53 1. Upload the WPide folder to the `/wp-content/plugins/` directory
54 1. Activate the plugin through the 'Plugins' menu in WordPress
55 1. Access WPide by clicking the WPide menu item in your main administration menu
56
57 == Frequently Asked Questions ==
58
59 = Can I override the default file permissions when creating files/directories on the local filesystem =
60
61 Yes you can using the below WordPress settings in wp-config.php which will effect files created with WPide and files added during the WordPress upgrade process.
62
63 define('FS_CHMOD_DIR', (0755 & ~ umask()));
64 define('FS_CHMOD_FILE', (0644 & ~ umask()));
65
66 = Whenever I try to edit an image the application says that it could not load the image =
67 Either the image contains no image data (its a new empty file) or the image is not accessible to the image editor. Your images need to be accessible to the web. i.e. if you're developing a site on your local machine behind a router/firewall your local web server could not be accessible to the web.
68
69 == Screenshots ==
70
71 1. Editor view, showing line numbers and syntax highlighting.
72 2. Image editor in action
73 3. Showing auto complete, function reference and file tree.
74
75 == Changelog ==
76
77 = 2.0.7 =
78 * Fixing issue with closing tabs not focusing onto next tab once closed.
79 * Fixed issue with detecting ajax url correctly which was causing all WPide ajax requests to fail if WordPress was installed in a subdirectory.
80 * Stopped autocomplete from trying to work when a js/css file is being edited.
81
82 = 2.0.6 =
83 * Cleaned up the WPide class and modified the way the class is passed to WordPress actions/filters.
84
85 = 2.0.5 =
86 * On startup the editor page now shows extra debuggin information for the filesystem API initialisation.
87
88 = 2.0.4 =
89 * On startup the initial editor page now shows some startup info regarding file permissions to help with debugging.
90
91 = 2.0.3 =
92 * If WPide cannot access your files due to permissions then when it starts up it will give you an alert to say this.
93
94 = 2.0.2 =
95 * Image editing is now available using the SumoPaint image editor and drawing application http://www.sumopaint.com/
96
97 = 2.0.1 =
98 * You can now create new files/folders
99
100 = 2.0 =
101 * Recreated this plugin as a dedicated WPide section/app rather than extending the built in plugin/theme editor (just incase WP remove it)
102 * Now using the WP filesystem API (although currently restricted to local access)
103 * More security checks on file opening and editing
104 * Added new file tree for exploring the file system and opening files (any file in wp-content)
105 * Massive overhaul to code autocomplete functionality with the addition of function information right in the app
106 * Update the ajaxorg Ace Editor to the current branch
107 * Tabbed editing
108
109 = 1.0.6 =
110 * Added link to meta section of plugin list for easy install of V2 Dev version if you have dismissed the alert.
111
112 = 1.0.5 =
113 * Added the facility to download and run the cutting edge development version of WPide from the Github repository
114
115 = 1.0.4 =
116 * Implemented JavaScript and CSS mode for better syntax highlighing and checking (Thanks to Thomas Wieczorek)
117 * Organise and format source code
118
119 = 1.0.2 =
120 * Tidy and comment code
121 * Added message when backup file is generated
122 * Adjust code complete dropdown position
123 * Improved editor responsiveness when using delete or enter keys
124
125 = 1.0.1 =
126 * Fixed "Folder name case" issue.
127
128 = 1.0 =
129 * Initial release.
130
131 == DEV NOTES ==
132
133 Maybe some interesting things here we could implement to help with following the WordPress standard and more advanced code syntax checking
134
135 http://magp.ie/2011/01/10/tidy-and-format-your-php-and-meet-wordpress-standards-on-coda-and-textwrangler/
136
137 Checkout the following WordPress plugin "WP Live CSS Editor" to work out how to do LIVE css editing. Combining a LESS compiler with live CSS editing/compile would be a dream.
138
139