Trevor Parscal
541af6f940
Changed how namespace is injected into gallery and file example messages. We don't have template processing on the client (yet) so this will work for now.
2011-01-13 00:58:32 +00:00
Trevor Parscal
9cff4eb684
Removed ad-hoc rtl rules - CSSJanus out of the box is doing just fine.
2011-01-12 00:06:57 +00:00
Trevor Parscal
2c4ea9d393
Improved on r79973 re-resolves #25724 after #80057 re-broke it. Aparently Opera was choking on, and ignoring the following CSS rule after, a CSS rule that ended in "background-image: url(some url here) !important;" Removing the "!important" part fixed the problem, and in this case it didn't seem to be needed anyways. So much for unicorn tears...
2011-01-11 23:55:39 +00:00
Trevor Parscal
1ed22372ab
Removed more IE6 stuff.
2011-01-11 23:44:53 +00:00
Trevor Parscal
81bb906c99
Removed RTL rules and IE6 stuff from toolbar css, ResourceLoader uses CSSJanus to auto-flip the rules, and IE6 is blacklisted anyways.
2011-01-11 23:41:23 +00:00
Trevor Parscal
ada78c1546
Fixed annoying bug where the index would not highlight the current page the first time you open the booklet.
2011-01-10 23:45:03 +00:00
Trevor Parscal
47d4852f07
Resolved #25724 using evil black magic and unicorn tears.
2011-01-10 23:32:52 +00:00
Trevor Parscal
1f17742ba1
Changed the way the toolbar creates it's file tool - which inserts [[File:<selection>]] - now we are using the wgFormattedNamespaces configuration. wikieditor-toolbar-tool-file-pre is not needed anymore, and has been removed.
2011-01-10 22:41:17 +00:00
Roan Kattouw
c345140f63
WikiEditor: (bug 26621) References button was shown in all namespaces while it's only supposed to show in non-talk namespaces. Regression in r74114
2011-01-07 21:07:08 +00:00
Roan Kattouw
4b89c4440b
WikiEditor: Fix templateEditor dialogs, which were broken by lazy creation in the dialogs module, by allowing them to specify they need immediate creation. Also add a few missing var keywords and explicitly pass a variable that was previously passed by accident because it leaked into the global scope without the var on it.
2011-01-04 12:53:20 +00:00
Roan Kattouw
5c5897ef77
Followup r79570: fix the image paths up for real
2011-01-04 12:03:41 +00:00
Roan Kattouw
bc9fec6080
WikiEditor: Fix paths to images in jquery.wikiEditor.html , apparently these were never updated for the UsabilityInitiative->WikiEditor move
2011-01-04 11:58:31 +00:00
Sam Reed
c4dcd265e4
Fix syntax error from r77928
2010-12-08 19:20:44 +00:00
Sam Reed
d1c8a22f6d
Some more unterminated statements (bug 26265)
2010-12-06 22:51:54 +00:00
Sam Reed
a3cba4154c
Remove a couple of commas
2010-12-06 11:07:50 +00:00
Trevor Parscal
de04fce204
Prevent focus outline in webkit for textarea in editor.
2010-12-01 22:41:52 +00:00
Roan Kattouw
0d78534735
Remove RegExp.escape() in favor of String.prototype.escapeRE()
2010-10-28 15:32:43 +00:00
Roan Kattouw
947fe69c27
(bug 25339) Allow specifying separate base paths for local and remote paths in ResourceLoaderFileModule::__construct(). Extensions can use this to properly point the resource loader to their resources in a way that doesn't depend on the extensions/ directory being a subdirectory of phase3/ on the filesystem and that respects $wgExtensionAssetsPath. Also converted all extensions using ResourceLoader to use this approach, except MWEmbed which uses way more indirection building its module registrations than I can deal with after midnight.
...
What actually happens here
* Add $localBasePath, $remoteBasePath params to the FileModule constructor, defaulting to $IP and $wgScriptPath respectively
* Add getLocalPath() and getRemotePath(), which use this information to build a proper FS or URL path for a file
* Make readScriptFiles() non-static so it can use these functions
* Run every single file path we use through either getLocalPath() or getRemotePath() as appropriate
** Except file dependencies, these are already prefixed. Our inability to give them special treatment caused bugs earlier
* Kill prefixFilePathList() and resolveFilePath(), no longer needed
2010-10-27 22:22:10 +00:00
Trevor Parscal
bb88f087b4
Mostly reverted r75487, making use of a new version of mediaWiki.msg.
2010-10-27 00:16:32 +00:00
Trevor Parscal
55a8f66322
Updated use of mediaWiki.msg to mediaWiki.message
2010-10-26 23:42:23 +00:00
Roan Kattouw
4e9d2b26d2
WikiEditor: (bug 25460) Place cursor behind, not before, inserted signature
2010-10-11 08:24:04 +00:00
Trevor Parscal
da918a5d68
Made use of mediaWiki.loader for adding in mediawiki.legacy.diff for the change tab of jquery.wikiEditor.preview
2010-10-05 22:06:16 +00:00
Trevor Parscal
49eb154f2c
* Fixed mistake made in r74271 where some functions were moved from core jquery.wikiEditor into jquery.wikiEditor.iframe, causing errors for textarea mode. These changes properly split the functions, allowing the iframe to override the textarea functions, and using $.client to only execute them on IE. (tested in IE7)
...
* Also fixed IE bug, where "delete window.myThing;" fails but "delete myThing;" succeeds.
2010-10-05 20:54:38 +00:00
Trevor Parscal
c92c4436a5
Fixed autoMsg misusing mediaWiki.msg.get
2010-10-04 21:17:08 +00:00
Trevor Parscal
cb6ff96431
Got more dialogs working again
2010-10-04 21:08:41 +00:00
Trevor Parscal
0a71513db4
* Introduced the concept of context extensions
...
* Abstracted the requirements concept being used to hack in the iframe as a context extension requirement
* Removed some hardcoding for iframe stuff
* Moved about 60k of JavaScript code out of the main wikiEditor script, and into an iframe only context extension.
2010-10-04 20:12:30 +00:00
Trevor Parscal
0a0f6f6e8e
* Fixed the toolbar, where sprited buttons weren't receiving the correct classes.
...
* Changed the way dialogs toolbar buttons were being added
* Made dialog code load on the fly
2010-10-01 21:58:04 +00:00
Trevor Parscal
d5f8b1bc3a
Using new group feature of ResourceLoaderFileModule objects.
2010-09-20 23:31:56 +00:00
Trevor Parscal
089b73aa5d
* Moved ResourceLoader modules into the ext.* space - this is the convention that should be followed in the future
...
* Moved test resource to the modules folder and registered it
* Fixed tests file to use $ not $j
* Cleaned up syntax in module definitions
2010-09-20 20:06:18 +00:00
Trevor Parscal
0fd0380e20
Fixed bug that made preview not work with textarea. Also discontinued use of some globals.
2010-09-17 23:58:41 +00:00
Trevor Parscal
c3d1da7254
Added in conentCollector for paste-filtering support
2010-09-16 23:13:05 +00:00
Trevor Parscal
d35fddbda6
Added embed tags to CSS image URLs
2010-09-16 22:57:22 +00:00
Trevor Parscal
fd441d4b6d
Remapped image and html paths to new extension location.
2010-09-16 22:54:59 +00:00
Trevor Parscal
9862d7d871
Removed dependency on global variable "wgWikiEditorIconVersion"
2010-09-16 22:40:24 +00:00
Trevor Parscal
d555f70643
Removed unused code.
2010-09-16 22:20:43 +00:00
Trevor Parscal
ff8e204ccd
Table of contents is working now - fixed dependency issues and removed some globals that are no longer needed.
2010-09-16 22:20:17 +00:00
Trevor Parscal
94c8be537b
Moved one rule back.
2010-09-16 21:44:43 +00:00
Trevor Parscal
7d438b6006
Moving some CSS to the vector jquery ui skin, rather than keeping them here as WikiEditor only customizations
2010-09-16 21:43:11 +00:00
Trevor Parscal
81510294e1
Moved some images to the vector jquery ui skin, rather than keeping them here as WikiEditor only customizations
2010-09-16 21:40:56 +00:00
Trevor Parscal
6b8e5f2f54
This extension now functions. iframe dependendt modules need more work still.
2010-09-16 21:11:46 +00:00
Trevor Parscal
8be53e71af
Merged in changes from r73123
2010-09-16 17:22:23 +00:00
Trevor Parscal
a9c45c88e0
Lots of refactoring. This still does not work! But it's getting close.
2010-09-15 22:40:50 +00:00
Trevor Parscal
c45ca9a77e
Changed naming of files to follow new conventions.
2010-09-15 19:18:26 +00:00
Trevor Parscal
9d278e8dee
Copied over all the resources needed to make WikiEditor stand on it's own two feet. Lots more to do as far as organizing and fleshing out the extensions's PHP bits.
2010-09-15 03:08:35 +00:00