<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wikisphere.org/w/index.php?action=history&amp;feed=atom&amp;title=Template%3APath_stripper_Dave</id>
	<title>Template:Path stripper Dave - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wikisphere.org/w/index.php?action=history&amp;feed=atom&amp;title=Template%3APath_stripper_Dave"/>
	<link rel="alternate" type="text/html" href="https://wikisphere.org/w/index.php?title=Template:Path_stripper_Dave&amp;action=history"/>
	<updated>2026-05-16T07:33:01Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.45.1</generator>
	<entry>
		<id>https://wikisphere.org/w/index.php?title=Template:Path_stripper_Dave&amp;diff=163&amp;oldid=prev</id>
		<title>Admin: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://wikisphere.org/w/index.php?title=Template:Path_stripper_Dave&amp;diff=163&amp;oldid=prev"/>
		<updated>2021-12-04T14:41:15Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 14:41, 4 December 2021&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key wiki_wikisphere:diff:1.41:old-162:rev-163 --&gt;
&lt;/table&gt;</summary>
		<author><name>Admin</name></author>
	</entry>
	<entry>
		<id>https://wikisphere.org/w/index.php?title=Template:Path_stripper_Dave&amp;diff=162&amp;oldid=prev</id>
		<title>en&gt;Admin: Admin moved page Template:Path Stripper to Template:Path stripper Dave without leaving a redirect</title>
		<link rel="alternate" type="text/html" href="https://wikisphere.org/w/index.php?title=Template:Path_stripper_Dave&amp;diff=162&amp;oldid=prev"/>
		<updated>2021-12-03T07:30:26Z</updated>

		<summary type="html">&lt;p&gt;Admin moved page &lt;a href=&quot;/w/index.php?title=Template:Path_Stripper&amp;amp;action=edit&amp;amp;redlink=1&quot; class=&quot;new&quot; title=&quot;Template:Path Stripper (page does not exist)&quot;&gt;Template:Path Stripper&lt;/a&gt; to &lt;a href=&quot;/wiki/Template:Path_stripper_Dave&quot; title=&quot;Template:Path stripper Dave&quot;&gt;Template:Path stripper Dave&lt;/a&gt; without leaving a redirect&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
see here https://sourceforge.net/p/semediawiki/mailman/semediawiki-user/?viewmonth=202107&lt;br /&gt;
(Dave)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I figured it out.… to close the loop, I’m offering my solution. Not because I think this is better/easier that your extension, but just because I wanted to learn how (as this may solve other issue).&lt;br /&gt;
&lt;br /&gt;
Assuming I have a {PATH} = /Animals/Pets/Dogs/&lt;br /&gt;
And 3 articles under it = Snoopy, Goofy, Toto&lt;br /&gt;
&lt;br /&gt;
For the query: {{#ask: [[Category: {PATH} }}&lt;br /&gt;
I’m getting back full path names in #ask:  [[{{FULLPAGENAME}}|FULLPAGENAME}}]]&lt;br /&gt;
&lt;br /&gt;
The default result was:&lt;br /&gt;
[[/Animals/Pets/Dogs/Snoopy|/Animals/Pets/Dogs/Snoopy]]&lt;br /&gt;
[[/Animals/Pets/Dogs/Goofy |/Animals/Pets/Dogs/Goofy]]&lt;br /&gt;
[[/Animals/Pets/Dogs/Toto |/Animals/Pets/Dogs/Toto]]&lt;br /&gt;
&lt;br /&gt;
And what I want it in the [[ {{FULLPAGENAME}} | {{SUBPAGENAME}} ]] (comma delimited)— without installing extensions, etc.&lt;br /&gt;
&lt;br /&gt;
So here’s my hack… er solution.&lt;br /&gt;
&lt;br /&gt;
This query will get a list of links for all things in the Category {PATH} and pass them to the template Path_Stripper&lt;br /&gt;
&lt;br /&gt;
{{#ask: [[Category: {PATH} ]]&lt;br /&gt;
| ?=&lt;br /&gt;
| format=plainlist&lt;br /&gt;
| template=Path_Stripper&lt;br /&gt;
| userparam= {PATH}&lt;br /&gt;
| sep=,&amp;amp;thinsp;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The Template:Path_Stripper strips out the path (after the pipe character, and makes sure to return it) using the following:&lt;br /&gt;
&lt;br /&gt;
{{#replace:{{{1|}}}|{{!}}{{{#userparam}}}|{{!}}}}&lt;br /&gt;
&lt;br /&gt;
The new results were: [[/Animals/Pets/Dogs/Snoopy|Snoopy]], [[/Animals/Pets/Dogs/Goofy |Goofy]], [[/Animals/Pets/Dogs/Toto |Toto]]&lt;br /&gt;
&lt;br /&gt;
Thanks again for offering a suggestion.&lt;br /&gt;
&lt;br /&gt;
Dave&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{#replace:{{{1|}}}|{{!}}{{{#userparam}}}|{{!}}}}&lt;/div&gt;</summary>
		<author><name>en&gt;Admin</name></author>
	</entry>
</feed>