Commit graph

4826 commits

Author SHA1 Message Date
Translation updater bot 2d97abf5f2 Localisation updates from http://translatewiki.net.
Change-Id: Ifb6549de0c76411c316d5dca773ab8a8fa2613a6
2013-04-29 20:00:33 +00:00
Subramanya Sastry 6b7425b5f7 Set end-tsr on references section to enable accurate DSR on it
* Fixes rt error of <references/> section on ko:담티역

Change-Id: I8eb1c82e5ff7ba021b2d347a76102d68486cdaf3
2013-04-26 09:20:26 +05:30
C. Scott Ananian c97d363f6a Remove unused variables.
'jshint --show-non-errors' shows unused variables.  Some of these are unused
function arguments, which are rarely bugs.  But try to fix the ones which
are forgotten/dead code and unnecessary require()s.

Change-Id: I685ccd8e388fd3acf75053a07e2f729398fa2855
2013-04-25 15:33:09 -04:00
Subramanya Sastry e3d8c0c4e6 Cleanup: Fixed some comments, formatting, removed dead code
* No change in functionality or parser test results.

Change-Id: I66a7b1f2a1618d0809d6783156fcc6bc89b44885
2013-04-25 16:10:33 +05:30
Subramanya Sastry 3c88b3109b Moved ref-index generation to DOM post-pass
* When I last fixed Cite in commit 0164b846, I didn't take it
  all the way through. I was assigning ref indexes in the
  async pipeline which is incorrect since ref-tokens and
  references-tokens should be processed in the same order
  as they show up in the input.

* I now moved ref-index assignment to the DOM post processor
  phase where they always belonged.

* Fixed references and cite reset functions to only reset a
  specific group, if necessary.

* Pipelines processing template transclusions should propagate
  the extension tag if the transclusion showed up in the context of
  extension source so that any extension-specific constraints are
  respected. (Ex: ref-tags in reference-extension context are handled
  differently -- and this should continue to be true even when the
  tags show up via transcluded content)

* These fixes were tested on the following snippet from 0164b846.
  Where this snippet was generating buggy output earlier, it is now
  being handled correctly.

---------------------------
X1<ref name="x" /> X2<ref name="x" />
<references>
<ref name="x">x</ref>
</references>

Y<ref name="y">{{echo|y}}</ref>
Z<ref name="z" />
<references>
{{echo|<ref name="z">z</ref>}}
</references>

A<ref name="a">a</ref>
B<ref name="b" />
<references>
{{echo|<ref name="b">b</ref>}}
</references>

C<ref name="c">c</ref>
D<ref name="d" />
<references>
<ref name="d">{{echo|d}}</ref>
</references>
---------------------------
X1<ref name="x" /> X2<ref name="x" />

Change-Id: I838d188c90b526878a72e4baf1e54cac644aadfc
2013-04-25 01:09:55 +05:30
C. Scott Ananian 80c29be19f Fix crasher on 🇫🇷126e_méridien_ouest
This code is being run on:
  <meta property="mw:PageProp/categorydefaultsort" content="0 126">
which doesn't have a 'typeof' attribute, and so the match is crashing
with a null pointer dereference.

Turn the expression around. RegExp.test is more efficient, and it handles
a null argument with no problems.  Add start/end anchors to the regexp
while we're at it.

Change-Id: I11bc9fdc902a21ce0bc1c05f08d3b615d5483e2e
2013-04-24 10:50:11 -04:00
Translation updater bot 5c404fc692 Localisation updates from http://translatewiki.net.
Change-Id: I8a2a27d5ec8447526b72db254e70350bf4ad0222
2013-04-23 20:04:23 +00:00
C. Scott Ananian dca9f9d8c3 Fix a bunch of jshint warnings.
Most of these warnings are globals defined in mediawiki.parser.defines.js,
which we turn into proper local variables.  But there are a grab page of
other use-before-def, missing semicolon, bad line break, and other minor
warnings.

No tricky stuff attempted in this patch, this should be safe obvious
fixes only... although there is a nasty circular dependency between
Util and parser.defines which had to be broken.

Change-Id: I8810da3a5ec287d7ae9078463ba01472a87a492e
2013-04-22 19:45:05 -04:00
Brad Jorsch e7de455f88 (bug 47291) Make sure cloned Cite is cleared
The cloned Cite object in the ParserCloned hook must be cleared, even if
the clone occurs inside a <ref> or <references> tag. The simple way to
do this is to set mInCite and mInReferences to false before calling
clearState().

While Cite could probably use a major cleanup, let's fix this bug now
instead of waiting for someone to get around to it.

Bug: 47291
Change-Id: Id3e91c41dc33a703b5326961fd57e1fe8ac61f5b
2013-04-16 15:52:49 -04:00
Translation updater bot f5e96b7613 Localisation updates from http://translatewiki.net.
Change-Id: Iaa2edeb8b76a6b3954249cbfddda5c05b6f61a58
2013-04-16 19:43:52 +00:00
Translation updater bot 664f9b2477 Localisation updates from http://translatewiki.net.
Change-Id: I823b656dd93bc2a28f31f1b66df7ff1247f6abe6
2013-04-15 20:55:57 +00:00
Translation updater bot 4b4300526e Localisation updates from http://translatewiki.net.
Change-Id: I7c778a06913e72bb0405bf2b5c7d5cf417580793
2013-04-09 20:28:34 +00:00
Subramanya Sastry 0164b84689 Updated native <ref> and <references> tag implementations.
* Updated native implementations of the <ref> and <references>
  tag implementations of the cite extension.

* <references> tag was not being processed properly by Parsoid.
  This led to lost references on the BO page.  This patch fixes
  it which fills out references and more closely matches output
  en:WP.

* Extracted extension content processing code into a helper and
  reused it for both <ref> and <references> handler.
  - Leading ws-only lines are unconditionally stripped. Is this
    accurate or is this extension-specific?  Given that this code
    is right now tied to <ref> and <references> tag, this is not
    yet a problem, but if made more generic, this issue has to
    be addressed.

* PreHandler should not run when processing the refs-tag. Right
  now, this is a hard check in the pre-handler.  Probably worth
  making this more generic by letting every stage in the pipeline
  get a chance at turning themselves on/off based on the extension
  being processed by the pipeline (can use the _applyToStage fn.
  on ParserPipeline). TO BE DONE.

* <ref> extension needs to be reset after each <references> tag
  is processed to duplicate behavior of existing cite extension.
  TO BE DONE.

* Updated refs group index to start at 1.

* No change in parser tests. References section output on the
  en:Barack Obama page now more closely matches the refs output
  on enwp.

* In addition to the en:BO page, the following wikitext was used to
  fix bugs and test the implementation.
  CMD: "node parse --extensions ref,references < /tmp/test"
----------------------------------------------
X1<ref name="x" /> X2<ref name="x" />
<references>
<ref name="x">x</ref>
</references>

Y<ref name="y">{{echo|y}}</ref>
Z<ref name="z" />
<references>
{{echo|<ref name="z">z</ref>}}
</references>

A<ref name="a">a</ref>
B<ref name="b" />
<references>
{{echo|<ref name="b">b</ref>}}
</references>

C<ref name="c">c</ref>
D<ref name="d" />
<references>
<ref name="d">{{echo|d}}</ref>
</references>
----------------------------------------------

Change-Id: I2d243656e9e903d8dadb55ee7c0630824c65cc01
2013-03-28 13:09:10 -05:00
Translation updater bot 191e1ac653 Localisation updates from http://translatewiki.net.
Change-Id: I1b4a1f887466b46e904dcb82f1715603a5bc4eee
2013-03-26 21:04:25 +00:00
Translation updater bot 114fec6b1c Localisation updates from http://translatewiki.net.
Change-Id: I0c060cf8efdb6669f40e81ef72de008edadcaeab
2013-03-16 21:25:05 +00:00
Subramanya Sastry b059502b3e Extension handling rewrite + cite extension refactoring.
Tokenization
------------
* Fixed tokenizer to correctly parse extension tags in different
  contexts: with start and end tags, in self-closing tag mode,
  and to correctly handle scenarios when the exension end-tag is
  followed by a '#' (the special char used to skip over extension
  content).

* Removed the distinction in the tokenizer between installed
  extensions and natively supported extension tags (<ref> and
  <references> for ex.).  They all tokenize and get processed
  identically and get handled by different paths in the extension
  handler.

* Template and TemplateArg tokens now carry tpl. transclusion
  source alongwith them since tsr information will not be
  accurate when they show up in extension contexts that in turn
  showed up in template context that were expanded by the php
  preprocessor.

  Ex: {{echo|<ref>{{echo|foo}}</ref>}}

  The tsr for the ref-tag will correspond to the
  template-source of the echo-template, NOT the original top-level
  page. So, env.page.src.substring(..) will return incorrect
  source for the innermost {{echo|foo}}. This fix of carrying
  along tpl transclusion source in the token itself eliminates
  this problem.

Knowledge of native extensions
------------------------------
* Natively implemented extension tags (<ref> and <references>)
  are hardcoded in env.conf.parsoid.  At some point, it would
  be good to have a registration mechanism for parsoid-native
  extensions.

Extension handling
------------------
* Extracted extension handling out of the template handler into
  its own handler class. Right now, this class inherits from the
  template handler in order to be able to reuse a lot of the
  expansion and encapsulation functionality currently in the
  Template Handler.

* This handler now handles extensions that are:
  (a) natively implemented and registered with Parsoid.
  (b) implemented as a PHP extension and expanded by relying on
      the PHP preprocessor.

  For (a), it uses information from env.conf.parsoid to find
  ext-handlers for natively implemented ext-tags.  However, this
  can be cleaned up at some point by making available a registration
  mechanism.

Cite/Ref/References
-------------------
* Reworked the cite handler to split up ref-token processing
  and references token processing.
  * The handler now processes ref-tokens, parses content all
    the way to html output and encapsulates the html in an
    attribute of a meta-token that serves as a placeholder for
    where the ref-token occured.
  * References are handled as a DOM post-pass where these meta
    placeholder tokens are collected, content extracted from
    the attribute and spit out at the site of a references tag.
    The DOM walking is in DOMPostProcessor.js, but the actual
    processing is part of the Cite.js to keep all cite extension
    handling code in one place.

Parser pipeline
---------------
* Restructured parser pipeline recipes based on changes to Cite,
  TemplateHandler, and ExtensionHandler.

* Added a couple functions to the parser pipeline:
  1. resetState to reset state before starting a new top-level parse
     when pipelines are reused across top-level parses (ex: parser
     tests)
  2. setSourceOffsets to set start/end offsets of the source being
     handled by the pipeline.  This is required to correctly set tsr
     values when extension content (which is a substring of original
     top-level text) is parsed in its own pipeline.

Other fixes
-----------
* Removed env parameter from the Params object since it was not
  being used and seemed like unnecessary state propagation.
* Removed a FIXME in DOMUtils.buildTokensFromDOM by reusing code
  in the tokenizer that converts "\n" in text to NlTks.
* Cleanup of Util.shiftTokenTSR.
* ext.util.TokenCollection is now no longer used by anything.
  Added a FIXME and left around in case we are able to improve
  tokenizing and handling of *include* tags that can eliminate the
  need for the messy TokenAndAttrCollector.

Test results
------------
* No change in parser tests results.

* Tested with a few different files.
  - en:BO page seems to be parsed about 10% faster than before
    (needs verification).
  - Referencs on the en:BO page seem to be more accurate than
    before.

Change-Id: I8a095fa9fa976c7b3a2a4bd968dc9db4270b105f
2013-03-14 15:25:45 -05:00
Translation updater bot 77e8d943f2 Localisation updates from http://translatewiki.net.
Change-Id: I73521de4876114a79291bb21f4cb89d4a47d7aab
2013-03-08 17:03:48 +00:00
Translation updater bot e38f93866c Localisation updates from http://translatewiki.net.
Change-Id: I399e8e90e19a01f07199700c438c0231bb3dad21
2013-03-06 21:49:07 +00:00
Translation updater bot adfe9d972b Localisation updates from http://translatewiki.net.
Change-Id: I8be14e1d693a33d170cabf5b7e63a6e06a5209b6
2013-03-04 21:31:14 +00:00
Subramanya Sastry a2e817311d Clear refs for a group after references are emitted for the group.
* A references tag for a group can appear multiple times on a page.
  Ex: en:List_of_number-one_albums_from_the_1960s_%28UK%29 uses
  {{Reflist|group=lower-alpha}} more than once, and each reflist
  tag emits references accumulated since the previous references
  output.  This requires clearing the refs for the group after it
  is emitted.

* Parsoid wasn't clearing the group's refs.  This resulted in
  duplicate ref output which in turn crashed template encapsulation
  code that relies on template ids being unique.

* This patch fixes it which fixes the crasher on
  en:List_of_number-one_albums_from_the_1960s_%28UK%29

* No change in parser test results.

Change-Id: I48ba9c3fe2249c6ef1c1bf068c22c7985fa16e8f
2013-02-28 17:07:03 -06:00
Translation updater bot 96f4fe7cf1 Localisation updates from http://translatewiki.net.
Change-Id: I09dcc9bb5c411c0efa4a54cb5f2f0bf0989eb319
2013-02-24 20:35:18 +00:00
Translation updater bot 4b92551241 Localisation updates from http://translatewiki.net.
Change-Id: Ia5b0f6b971a781182505b9e89f7f2b88731d38cf
2013-02-23 20:33:49 +00:00
Brad Jorsch 73f856820e (bug 32368) Handle cloned parsers
If the parser is cloned, we need to clone our data object and
reassociate the hooks. Otherwise references may be lost when the clone
has ParserClearState called.

Change-Id: Ic1d75850e8d610ea890e34c38d062a358fd55178
Depends-On: Ieec65c908d71e89b9a66f83b9a626f842aadacbb
2013-02-22 21:24:14 +00:00
Translation updater bot 6e0187c9f3 Localisation updates from http://translatewiki.net.
Change-Id: Iec8a129309adc2f6e476b34fab5bb077044477ee
2013-02-22 20:10:43 +00:00
Subramanya Sastry fb27cd0b4a Handle multiply-referenced ref-tags without duplicate ref-content.
* When named-ref-tags are used multiple times in a document, the
  Cite.onReferences function was outputting the ref-content once
  for each use in the references section. While this is "harmless"
  for regular ref-content, when the ref-content has templates
  (ex: {[cite .. }}), that template content is duplicated several
  times -- this also means that template expansions seen in the
  output no longer has unique ids. Occasionally, this trips up
  DOM passes (template encapsulation) which make the reasonable
  assumption that template ids are unique. It introduced an
  infinite loop in the code that detects template range nestings
  and overlaps. This is not triggered always, but only in certain
  scenarios. en:Euphoria (Enrique Iglesias album) was a page that
  sent the parser into an infinite loop.

* Now fixed by outputting ref-content once.

* In addition, added an error-check in the DOM post-pass that might
  get stuck in an infinite loop to output an error message.

* No change in parser test results.

* en:Euphoria (Enrique Iglesias album) now parses and rts without
  getting stuck in an infinite loop.  Possibly other pages as well.

Change-Id: I81a055999eefe3ca36dfb8a9cda3fee538ae6c65
2013-02-20 17:50:52 -06:00
Translation updater bot a316acdf4b Localisation updates from http://translatewiki.net.
Change-Id: I263bb206970fee2dc754f423c681225d0d4cfa2b
2013-02-18 20:53:32 +00:00
C. Scott Ananian cade728dcb Replace jquery dependency with a minimal 'fakejquery'.
The 'fakejquery' module just defines the bits we use: $.each, $.map,
$.extend, $.isArray, $.isEmptyObject (and the internal functions required
to implement those).

Change-Id: I626b2f3a3d3a8d395d0c9679e01d3399403636dd
2013-02-15 17:54:43 -05:00
Translation updater bot b307789876 Localisation updates from http://translatewiki.net.
Change-Id: Iedd80dc6e0e8e1753bbac74c9e37e970f1d30fc5
2013-02-07 20:35:21 +00:00
Translation updater bot 497d251cfc Localisation updates from http://translatewiki.net.
Change-Id: Icff23879edabc68bdda874efd711493a40d5cbab
2013-02-04 22:17:43 +00:00
Translation updater bot f1b22c4be1 Localisation updates from http://translatewiki.net.
Change-Id: I6ac8cf10345de9a95a9fafaee6220488a2ab02d9
2013-02-01 22:13:19 +00:00
Translation updater bot 455c4b212f Localisation updates from http://translatewiki.net.
Change-Id: Ibf035c2006697bae904c4f008292d6f597a5451e
2013-01-28 21:51:27 +00:00
Translation updater bot f40d505b41 Localisation updates from http://translatewiki.net.
Change-Id: I077618edb570226e0b22e65b1256d89eea44ed70
2013-01-27 17:33:15 +00:00
Translation updater bot 1bbced41d9 Localisation updates from http://translatewiki.net.
Change-Id: I69e1474f633c5af68b08cc7aae14948e46e46c24
2013-01-25 20:34:34 +00:00
Translation updater bot 8db8d47416 Localisation updates from http://translatewiki.net.
Change-Id: I0d899e7bfeded94966a86edb231a56bd3e3993e8
2013-01-23 22:11:20 +00:00
Translation updater bot a1c6477183 Localisation updates from http://translatewiki.net.
Change-Id: If226676d5a558748425d088841b4dd5a4e6a443f
2013-01-21 20:46:09 +00:00
Siebrand 7dbc17812d Merge "Adapt the <gallery> parser test for $wgResponsiveImages" 2013-01-17 13:08:53 +00:00
Translation updater bot bfaec9aeb5 Localisation updates from http://translatewiki.net.
Change-Id: I9710053042c7438de43d44313300cdfe63998014
2013-01-15 21:30:46 +00:00
Translation updater bot 2d5c277dc2 Localisation updates from http://translatewiki.net.
Change-Id: Ic80366fb780795bf0f7cefdc6727e3e09998dcc9
2013-01-14 21:52:14 +00:00
Translation updater bot 5627eaedb8 Localisation updates from http://translatewiki.net.
Change-Id: Iabea5e9dfd37162ddb534465fbdc6d9ea1940cc4
2013-01-13 20:35:43 +00:00
Gabriel Wicke 2013cd72ea Eradicate env.text, only use env.page.src from now on.
Change-Id: Id87390a5d0e46f6bc1b713b04335cad43bc66baa
2013-01-09 18:07:21 -08:00
Translation updater bot c413fef398 Localisation updates from http://translatewiki.net.
Change-Id: I72cd6a070694a500f8850619aa83ab4508943f67
2013-01-06 20:07:51 +00:00
Translation updater bot a59cab5d01 Localisation updates from http://translatewiki.net.
Change-Id: Id2f9330a5bad14126a2ec12e4bec72d63ce4a966
2012-12-31 20:34:30 +00:00
Translation updater bot bdb77b3554 Localisation updates from http://translatewiki.net.
Change-Id: I2db5c268baae21659239f6f612d13b035c2afa0c
2012-12-30 19:33:38 +00:00
Translation updater bot 9c49217e01 Localisation updates from http://translatewiki.net.
Change-Id: I868795f07586fc1beb44aca7319935e2acd0992c
2012-12-29 19:36:42 +00:00
Translation updater bot 7a3a450292 Localisation updates from http://translatewiki.net.
Change-Id: I846440365511bad8f213fa6d8c699d594b97a9ae
2012-12-26 21:01:56 +00:00
Translation updater bot dbce1e38b8 Localisation updates from http://translatewiki.net.
Change-Id: I35f62de286acc7f050be896387e1154aa90ba67c
2012-12-23 21:45:48 +00:00
Translation updater bot 32319a28e4 Localisation updates from http://translatewiki.net.
Change-Id: I3ec65778ff092cae2a8a9f2e5c8c8a856d945cf7
2012-12-19 19:57:41 +00:00
Translation updater bot e1b491c988 Localisation updates from http://translatewiki.net.
Change-Id: If26dc6c1e0bae6789133a01d024c42326c8daf74
2012-12-16 20:48:04 +00:00
Translation updater bot 873323192a Localisation updates from http://translatewiki.net.
Change-Id: I737f3c188649cd0701fc47e1ccdd0a46ed883ce9
2012-12-13 20:27:19 +00:00
Translation updater bot 69c749334e Localisation updates from http://translatewiki.net.
Change-Id: Ifc9b9cc34690ca416d598a7202416cbc0eaf2228
2012-12-09 20:24:17 +00:00