User:FrozenPlum/Sandbox/Issues: Difference between revisions

From DynamicPageList3 Manual
Content added Content deleted
imported>FrozenPlum
m (Add more information about issues I'm tracking for later reporting (I still need to test some other scenarios))
imported>FrozenPlum
m (Refine my findings here, two manual statements untrue, plus a note to myself to remember to add openreferences=missing at some point (first I'll get as many examples working as possible))
Line 10: Line 10:
|imagecontainer = Apple¦Orange
|imagecontainer = Apple¦Orange
|count=2
|count=2
|ordermethod=none
|openreferences=true
|openreferences=yes
}}
}}
</pre>
</pre>
The example was adapted from one given, that doesn't work. The {{DPL|openreferences}} section states that <code>|ordermethod=none</code> must be set for to use <code>|openreferences=yes</code> except, you can see in a lower example, that this is not currently the case.
<!-- for testing/reproducing
<!--
{{#dpl:
{{#dpl:
|imagecontainer = Apple¦Orange
|imagecontainer = Apple¦Orange
|count=2
|count=2
|ordermethod=none
|openreferences=yes
|openreferences=yes
}}
}}
-->
-->


Note: Tried with both "yes" and "true" since both examples were observed in different places in the old docs... neither worked, both resulted in fatal error.


'''Yet it works with this example:'''
'''It works with this example:'''
<pre>
<pre>
{{#dpl:
{{#dpl:
Line 50: Line 52:
-->
-->
This is broken, so it seems to be an issue when <code>{{DPL|imagecontainer}}</code> and <code>{{DPL|openreferences}}</code> are set together, since the removal of <code>{{DPL|openreferences}}</code> works fine.
This is broken, so it seems to be an issue when <code>{{DPL|imagecontainer}}</code> and <code>{{DPL|openreferences}}</code> are set together, since the removal of <code>{{DPL|openreferences}}</code> works fine.

Also, there's now <code>|openreferences=missing</code> that needs to be added to docs (later).


==Issue 2==
==Issue 2==

Revision as of 23:28, 3 April 2022

This is a space for me to track issues as I work through the examples to determine if what's stated to work as stated in the docs works as expected (or if they need adjustment).

Issue 1

The following causes an error (and page can't be saved):

[b337d46f656ee147c376d1de] 2022-04-03 02:31:36: Fatal exception of type "TypeError"
{{#dpl:
|imagecontainer = Apple¦Orange
|count=2
|ordermethod=none
|openreferences=yes
}}

The example was adapted from one given, that doesn't work. The openreferences section states that |ordermethod=none must be set for to use |openreferences=yes except, you can see in a lower example, that this is not currently the case.


It works with this example:

{{#dpl:
|titlematch=Apple%
|openreferences=yes
}}

{{#dpl: |titlematch=Apple% |openreferences=yes }}

Another test:

{{#dpl:
|imagecontainer = Apple
|openreferences=yes
}}

This is broken, so it seems to be an issue when imagecontainer and openreferences are set together, since the removal of openreferences works fine.

Also, there's now |openreferences=missing that needs to be added to docs (later).

Issue 2

{{#dpl:
|category=+Countries in Europe¦Countries in North America
|category=*Part of NATO
|headingmode=ordered
|ordermethod=category,pagetouched
|noresultsheader=<br>''no result returned''
}}

The docs state, that adding before the category "a '+' means that only the categories listed in that statement are allowed to appear as headings in the output," yet when this is done there are no category headings in the result (are these inverted or am I misunderstanding their docs?): Result:
{{#dpl: |category=+Countries in Europe¦Countries in North America |category=*Part of NATO |headingmode=ordered |ordermethod=category,pagetouched |noresultsheader=
no result returned }}


Where if a - dash is used instead, headings appear in the result, yet the documents state: "a '-' means that the categories listed in that statement are NOT allowed to appear as headings in the output (but all others)"

{{#dpl:
|category=-Countries in Europe¦Countries in North America
|category=*Part of NATO
|headingmode=ordered
|ordermethod=category,pagetouched
|noresultsheader=<br>''no result returned''
}}

Result:
{{#dpl: |category=-Countries in Europe¦Countries in North America |category=*Part of NATO |headingmode=ordered |ordermethod=category,pagetouched |noresultsheader=
no result returned }}

Issue 3