mediawiki-extensions-Visual.../modules/ve-mw/ui/dialogs
Roan Kattouw eb64743436 Prevent naming collisions when generating unique reference names
Simply generating ':3' as the "unique" name for the 4th reference
doesn't work. Even if getUniqueListKey() had been used, that only
checks for conflicts with names that have already been encountered
(i.e. occur in <ref> tags that precede the current one), not for
conflicts with names that first occur further down in the document.

The solution is to generate names at serialization time, when we
have full knowledge of which names are in use. Internally, we use
'literal/<name>' for names that literally appeared in the source,
and 'auto/<number>' for unnamed references. Then at serialization
time, we translate 'auto/<number>' to 'literal/:<number>' if needed
(i.e. if the reference was reused).

ve.dm.MWReferenceNode.js:
* toDataElement()
** Prefix listKey with literal/ or auto/ as appropriate
* toDomElements()
** Map auto/ listKeys to unique names
** Don't try to unset the name if not present (was unsetting a property
   that didn't exist anyway)

ve.dm.InternalList.js:
* Remove now-unused isUniqueListKey()
* Rewrite getUniqueListKey()
** Make prefix configurable
** Take previously generated unique keys into account
** Map the same old key (auto/N) to the same generated key (literal/:M)
* Add getNextUniqueNumber() as a source for auto/N numbers: previously
  used the length of the itemHtmlQueue, but that only works during
  conversion, not from the UI dialog

ve.ui.MWReferenceDialog.js:
* For new references or conflicting names, generate an auto/N key and
  let toDomElements() deal with actually mapping that to name

ve.dm.InternalList.test.js:
* Rename listKeys to new style
* Split the test case into two groups so we can test multi-group cases
* Add tests for getUniqueListKey()

ve.dm.mwExample.js:
* Rename things to new style
* Modify the test case so it attempts to trigger bug 54341

Bug: 54341
Change-Id: I726fb83e6fb66ffec643d996768a854ec9474b3d
2013-09-19 21:03:15 -07:00
..
ve.ui.MWBetaWelcomeDialog.js Merge "Improve welcome dialog support for large fonts" 2013-09-04 23:02:05 +00:00
ve.ui.MWMediaEditDialog.js Exclude tools from catch-all menu in media and reference edit dialogs 2013-09-04 17:32:50 -07:00
ve.ui.MWMediaInsertDialog.js Merge "Insert images after selection, not in place of it" 2013-09-04 23:00:03 +00:00
ve.ui.MWMetaDialog.js Make tools generic and add fancy tool groups 2013-09-03 11:27:39 -07:00
ve.ui.MWReferenceDialog.js Prevent naming collisions when generating unique reference names 2013-09-19 21:03:15 -07:00
ve.ui.MWReferenceListDialog.js Make tools generic and add fancy tool groups 2013-09-03 11:27:39 -07:00
ve.ui.MWTransclusionDialog.js Make tools generic and add fancy tool groups 2013-09-03 11:27:39 -07:00