mediawiki-extensions-Visual.../modules/ve-mw/ce/nodes
Trevor Parscal be199c0bf2 Ultra-mega-hyper-citation editing on crack
Objectives:
* Allow users on-wiki to create tools and dialogs for citation templates
of their choosing
* Allow editing of citation templates directly, without having to go
through the reference dialog
* Provide citation template tools within reference editing that use the
same titles and icons as the citation tools do, but don't wrap the
inserted content in a ref tag

Changes:

* Reference list was cloning the DOM element it was inserting into its
view before the generated content node could finish rendering, so it
never ended up showing the finished rendering in the reference list
* Documenting hack about use of reference list node's destroy method,
and how we are depending on destroy not canceling generated content
rendering
* Introduced reference model
* Added saving/updating method to transclusion model
* Added getPartsList method to dm transclusion node, which caches the
result and invalidates the cache on update
* Added citation dialog, which extends transclusion dialog
* Added cite group to toolbars, cite-template in reference dialog toolbar
* Factored out getting the node to edit and saving changes procedures in
transclusion dialog so they could be extended in citation dialog
* Updated uses of autoAdd as per changes in oojs-ui (Ic353f91)
* Renamed MWDialogTool file since there was only one tool in it
* Expanded TransclusionDialogTool file out since there is now more logic
to it
* Switched to using ve.dm.MWReferenceModel instead of plain objects in
reference search widget

Configuration:

If you add to MediaWiki:Visualeditor-cite-tool-definition.json the
following code you will magically be presented with a delightful array
of citation options:

[
    { "name": "web", "icon": "ref-cite-web", "template": "Cite web" },
    { "name": "book", "icon": "ref-cite-book", "template": "Cite book" },
    { "name": "news", "icon": "ref-cite-news", "template": "Cite news" },
    { "name": "journal", "icon": "ref-cite-journal", "template": "Cite journal" }
]

...or...

[
    {
         "name": "any-name",
         "icon": "any-ooui-icon",
         "template": "Any template",
         "title": "Any title text"
     }
]

The title text is derived either from the title property or from the name
property by pre-pending the string 'visualeditor-cite-tool-name-' to
generate a message key. Titles for 'web', 'book', 'news' and 'journal' are
provided. The icon is a normal oo-ui-icon name, and more icons can be
added, as usual, by adding a class called .oo-ui-icon-{icon name} to
MediaWiki:Common.css. 'ref-cite-web', 'ref-cite-book', 'ref-cite-news'
and 'ref-cite-journal' are provided. The template name is simply the name
of the template without its namespace prefix.

Depends on Ic353f91 in oojs-ui

Bug: 50110
Bug: 50768
Change-Id: Id401d973b8d5fe2faec481cc777c17a24fd19dd4
2014-03-24 19:24:38 +00:00
..
ve.ce.MWAlienExtensionNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00
ve.ce.MWBlockImageNode.js Deal with 'none'/'border' and default size in media edit 2014-03-05 03:53:46 +00:00
ve.ce.MWEntityNode.js Bump copyright like it's 2014 2014-01-05 20:06:50 +08:00
ve.ce.MWExtensionNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00
ve.ce.MWGalleryNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00
ve.ce.MWHeadingNode.js Table of contents widget 2014-03-14 15:20:19 -07:00
ve.ce.MWHieroNode.js Bump copyright like it's 2014 2014-01-05 20:06:50 +08:00
ve.ce.MWImageCaptionNode.js Show/hide the magnify button on type change 2014-03-10 21:06:18 +00:00
ve.ce.MWImageNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00
ve.ce.MWInlineImageNode.js Only show non-anchored resize handles for MWBlock/InlineImages 2014-01-16 02:41:48 +00:00
ve.ce.MWNumberedExternalLinkNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00
ve.ce.MWPreformattedNode.js Bump copyright like it's 2014 2014-01-05 20:06:50 +08:00
ve.ce.MWReferenceListNode.js Ultra-mega-hyper-citation editing on crack 2014-03-24 19:24:38 +00:00
ve.ce.MWReferenceNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00
ve.ce.MWTransclusionNode.js Mixin ClickableNode and add primary command names 2014-03-20 00:33:38 +00:00