Difference between revisions of "Template:ReplaceNumericCharEncoding"

From ChatWars Wiki
Jump to: navigation, search
(fixed a bug with hexadecimal encoding replacement)
(updated to a more easily extendable system)
Line 1: Line 1:
<includeonly>{{#if: {{#pos: {{{string|}}} | &#39; }}
+
<includeonly><!--{{#if: {{#pos: {{{string|}}} | &#39; }}
 
               | {{#sub: {{{string|}}} | 0 | {{#pos: {{{string|}}} | &#39; }} }}'{{#sub: {{{string|}}} | {{#expr: {{#pos: {{{string|}}} | &#39; }} + 5}} }}
 
               | {{#sub: {{{string|}}} | 0 | {{#pos: {{{string|}}} | &#39; }} }}'{{#sub: {{{string|}}} | {{#expr: {{#pos: {{{string|}}} | &#39; }} + 5}} }}
 
               | {{#if: {{#pos: {{{string|}}} | &#x0027; }}
 
               | {{#if: {{#pos: {{{string|}}} | &#x0027; }}
Line 5: Line 5:
 
                   | {{{string|}}}
 
                   | {{{string|}}}
 
                 }}
 
                 }}
             }}</includeonly><!--
+
             }}
 +
-->{{#switch: {{{string|}}}
 +
  | &#39; = {{#sub: {{{string|}}} | 0 | {{#pos: {{{string|}}} | &#39; }} }}'{{#sub: {{{string|}}} | {{#expr: {{#pos: {{{string|}}} | &#39; }} + 5}} }}
 +
  | &#x0027; = {{#sub: {{{string|}}} | 0 | {{#pos: {{{string|}}} | &#x0027; }} }}'{{#sub: {{{string|}}} | {{#expr: {{#pos: {{{string|}}} | &#x0027; }} + 8}} }}
 +
  | &gt; = {{#sub: {{{string|}}} | 0 | {{#pos: {{{string|}}} | &gt; }} }}>{{#sub: {{{string|}}} | {{#expr: {{#pos: {{{string|}}} | &gt; }} + 4}} }}
 +
  | #default = {{{string|}}}
 +
 
 +
}}</includeonly><!--
 
--><noinclude>
 
--><noinclude>
 
This template has the sole purpose to replace numeric char encoding (<code><nowiki>&#39 ;</nowiki></code> (decimal encoding) AND <code><nowiki>&#x0027 ;</nowiki></code> (hexadecimal encoding) ) with the actual character ("<code>'</code>") to circumvent a bug in mediawiki which makes queries for pagename break
 
This template has the sole purpose to replace numeric char encoding (<code><nowiki>&#39 ;</nowiki></code> (decimal encoding) AND <code><nowiki>&#x0027 ;</nowiki></code> (hexadecimal encoding) ) with the actual character ("<code>'</code>") to circumvent a bug in mediawiki which makes queries for pagename break
 
[[Category:Template]]
 
[[Category:Template]]
 
</noinclude>
 
</noinclude>

Revision as of 20:29, 19 March 2019

This template has the sole purpose to replace numeric char encoding (&#39 ; (decimal encoding) AND &#x0027 ; (hexadecimal encoding) ) with the actual character ("'") to circumvent a bug in mediawiki which makes queries for pagename break