Andrew Ozz
5aa4902c7d
TinyMCE: fix initializing TinyMCE when the default editor in getUserSetting() is overridden from PHP by using the 'wp_default_editor' filter. See #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@27004 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 18:16:39 +00:00
azaozz
db64b3d951
Autosave: don't disable the buttons on previewing a post, see #25272 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@27003 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 17:57:13 +00:00
wonderboymusic
ba1c9e0c22
Add the @namespace
annotation where appropriate in media-editor.js
. Also indicate the default value of a few params via the [options={}] syntax.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@27000 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 17:16:56 +00:00
nacin
ce00f36ab7
Dashboard widgets: Don't link to Pages or Posts for Authors or Contributors respectively.
...
props mattheu.
see #26574 for trunk.
git-svn-id: https://develop.svn.wordpress.org/trunk@26999 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 16:51:07 +00:00
Nikolay Bachiyski
46bdc2c312
Excplitcly globalized call to $wp later in wp-settings.php
...
Props xknown, fixes #26867 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26997 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 14:47:58 +00:00
Nikolay Bachiyski
5eba2a13d8
Explicitly globalize some missing query globals in wp-settings.php
...
When WordPress is loaded in a function (e.g. unit tests) the variables initialized at the top level aren't globals, but we expect them to be.
Fixes #26867
git-svn-id: https://develop.svn.wordpress.org/trunk@26996 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 08:24:50 +00:00
Andrew Ozz
9aba880b53
Autosave: refactor autosave.js, use heartbeat for transport and move all "Add/Edit Post" related functionality to post.js. See #25272 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26995 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 04:55:37 +00:00
Andrew Ozz
df613abbec
TinyMCE: fix error trying to translate non-existent button "title" in the compat3x plugin. See #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26994 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-22 02:28:13 +00:00
Matt Thomas
275d589503
Eliminate the 1px padding adjustment on active buttons because it creates an un-clickable dead zone 1px high and spanning the entire width of the button. Modify the background color of active buttons for better contrast to make the active state more obvious.
...
See #26700 , props johnbillion.
git-svn-id: https://develop.svn.wordpress.org/trunk@26993 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-21 21:26:31 +00:00
Scott Taylor
2f60bcab82
Make some @param
types more specific in media-models.js
.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26991 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-21 17:36:24 +00:00
Scott Taylor
5a1a2e872e
Remove debug cruft.
...
Props nacin.
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26990 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-21 16:30:57 +00:00
Scott Taylor
de01111ae7
Disambiguate this
and use the @this
annotation in media-editor.js
. This will become way more necessary in other places, but a few examples here show how confusing it can be.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26989 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-21 16:29:30 +00:00
Scott Taylor
5c0a09ce40
Correct a type.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26988 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-21 15:56:49 +00:00
Scott Taylor
9ad06a2956
Elaborate on JSDoc blocks for media-editor.js
.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26987 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-21 15:54:27 +00:00
Scott Taylor
1d3061effc
Add initial JSDoc blocks to media-views.js
. The initial blocks are a baseline to work from and invite future iterations. Initial commit is to avoid commits this large in the future.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26986 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-20 23:41:42 +00:00
Scott Taylor
896e71271e
Add initial JSDoc blocks to media-models.js
. The initial blocks are a baseline to work from and invite future iterations. Initial commit is to avoid commits this large in the future.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26985 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-20 23:39:44 +00:00
Scott Taylor
673c615d87
Add initial JSDoc blocks to media-editor.js
. The initial blocks are a baseline to work from and invite future iterations. Initial commit is to avoid commits this large in the future.
...
See #26870 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26984 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-20 23:34:57 +00:00
Andrew Ozz
1bc97d1fe4
TinyMCE: add a custom jQuery event 'tinymce-editor-init' triggered on initialization of every editor instance. This makes it a lot more convenient to hook into the instance compared to the init.setup callback. See #24067 , see #26872 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26983 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-19 23:21:07 +00:00
Andrew Ozz
ae49162491
TinyMCE: fix 3.x callbacks added with init.setup as they run before the compat3x plugin is loaded. Ideally this will be fixed internally in TinyMCE, see #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26982 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-18 22:19:07 +00:00
Drew Jaynes
f2d4a6aa36
Hook docs spacing and standards fixes for wp-admin/includes/ajax-actions.php.
...
See #25374 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26981 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-18 17:05:38 +00:00
Drew Jaynes
f1bfee89f9
Use a docs-specific variable for the link_category
hook docs in wp-admin/bookmarks-template.php.
...
See #25364 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26980 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-18 16:58:01 +00:00
Andrew Ozz
89a63c8f43
TinyMCE: set the 'add_unload_trigger' option to false for the main editor. Prevents DOM problems in Firefox when reloading the page, see #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26979 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 20:34:12 +00:00
Andrew Nacin
d0bb9e8f86
Ensure that SSL YouTube URLs receive SSL embeds.
...
props adamsilverstein, Otto42, JayCC.
fixes #23149 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26978 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 19:45:51 +00:00
Scott Taylor
9b9de4ee1f
Add jsvalidate
as a dependency to the build. To get the new module, run npm install
in the root of the project.
...
Fixes #26615 .
Props jorbin.
git-svn-id: https://develop.svn.wordpress.org/trunk@26977 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 18:14:15 +00:00
Scott Taylor
1a4a017923
Add (Q)Unit Tests for the wp.shortcode
JS class.
...
Fixes #26514 .
Props jorbin.
git-svn-id: https://develop.svn.wordpress.org/trunk@26976 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 18:01:34 +00:00
Andrew Nacin
5d8627f6c9
Use the_title_attribute() in feed_links_extra(), rather than get_the_title().
...
props c3mdigital.
fixes #15046 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26975 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 09:52:05 +00:00
Andrew Nacin
5cb20092ce
make_clickable: When cleaning up accidental links within links, account for the tag being split by newlines.
...
props dd32.
fixes #19028 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26974 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 09:31:59 +00:00
Andrew Nacin
67d1c9fd6d
Add dfn, mark, and samp to kses.
...
props kraftbj.
fixes #24950 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26973 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 08:37:53 +00:00
Andrew Nacin
9f5c78b676
Unit tests for get_url_in_content(). Return false when no content is passed, to match the return value of no links being found.
...
props mdbitz.
#26171 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26972 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 07:46:33 +00:00
Andrew Nacin
238f9d2b0a
Add a contrasting border to admin feature pointers.
...
props iammattthomas.
see #26689 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26970 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 03:48:50 +00:00
Andrew Nacin
e1aeeacc43
Realign the oEmbed providers. see #26844 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26968 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 03:28:30 +00:00
Andrew Nacin
015b1398ca
Switch Twitter oEmbed to SSL due to a Twitter API change. Ah, the open web.
...
props yurivictor, cojennin.
see #26844 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26967 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 03:25:29 +00:00
Andrew Ozz
32b9c649cf
DFW: fix reference to off() when pressing Esc. Props kovshenin, see #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26966 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-17 00:12:21 +00:00
Andrew Ozz
5c1fe4033f
Widgets: fix scaling of extra-wide widgets on 480px and 320px devices, fixes #26701 for trunk.
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26963 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-16 21:55:29 +00:00
Matt Thomas
fc4c73feab
The comment screen hides the author column at narrow screen sizes; this adds back the author info above the comment content. Fixes #26618 , props SergeyBiryukov, nacin.
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26961 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-16 20:33:45 +00:00
Andrew Nacin
d375be7148
Don't let Quick Draft ignore default comment_status and ping_status.
...
props kovshenin.
fixes #26722 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26959 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-16 20:23:21 +00:00
Andrew Ozz
57a26d2e31
TinyMCE: remove the 'spellchecker' plugin. It has been disabled for a while and the back-end currently doesn't work. See #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26958 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-15 19:06:26 +00:00
Andrew Nacin
b119e5ff37
RTL: Flip half-star star ratings.
...
props SergeyBiryukov.
fixes #26814 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26952 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-15 08:18:59 +00:00
Andrew Ozz
de5ad05a48
TinyMCE: fix send_to_editor()
. It no longer needs to replace shortcode strings with html placeholers before inserting them in the editor. This is handled properly by the editor's 'BeforeSetContent'
event callbacks. See #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26945 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-14 23:34:23 +00:00
Andrew Nacin
b807bea28c
Test framework: Override PHPMailer during installation.
...
props bpetty.
fixes #26836 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26944 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-14 21:55:41 +00:00
Sergey Biryukov
3a1b1ba755
Remove unnecessary sprintf(). props jdgrimes. fixes #25489 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26943 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-14 11:17:10 +00:00
Andrew Ozz
e18603ce49
TinyMCE: add/remove the 'alignnone' class when aligning images without captions. See #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26942 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-14 05:51:41 +00:00
Andrew Ozz
76508ede28
TinyMCE: improve handling of Read More and Nextpage tags. See #24067 , fixes #16239 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26941 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-14 05:45:53 +00:00
Andrew Nacin
146bcccaa2
Update package.json. props TobiasBg. fixes #26629 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26940 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-13 18:20:38 +00:00
Andrew Nacin
8cbbc29e8a
Fix alignment and borders of plugin/theme updates on the Updates screen.
...
props morganestes, ocean90.
see #26699 , for trunk.
git-svn-id: https://develop.svn.wordpress.org/trunk@26935 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-13 15:59:23 +00:00
Andrew Ozz
1e3460cea3
TinyMCE: re-enable soft resizing of images inside the editor. See #24067 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26934 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-13 01:12:20 +00:00
Andrew Ozz
a6742e996a
Deprecate rich_edit_exists(). It doesn't make sense to support deleting the TinyMCE directory when we have auto-updates. Fixes #26786 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26933 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-13 00:00:00 +00:00
Sergey Biryukov
0938ef0815
Avoid a fatal error in wp_reset_postdata() if $wp_query global is not set.
...
see #26775 for trunk.
git-svn-id: https://develop.svn.wordpress.org/trunk@26932 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-11 23:56:43 +00:00
Drew Jaynes
0e6a9edaec
Update the wp-inclues/vars.php file header to include Nginx as a recognized web server.
...
Props netweb for the initial patch. Props markjaquith.
Fixes #26249 .
git-svn-id: https://develop.svn.wordpress.org/trunk@26931 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-10 18:14:20 +00:00
Andrew Ozz
5e58643c03
TinyMCE: update compat3x.min.js and bump $tinymce_version. See #24067 , fixes #26750 .
...
git-svn-id: https://develop.svn.wordpress.org/trunk@26930 602fd350-edb4-49c9-b593-d223f7449a82
2014-01-10 00:51:03 +00:00