Difference between revisions of "Notes"

From Critiques Of Libertarianism
Jump to: navigation, search
 
Line 6: Line 6:
 
# DPL -- Dynamic Page List, an extension that allows more complicated lists than mediawiki categories.
 
# DPL -- Dynamic Page List, an extension that allows more complicated lists than mediawiki categories.
 
# PHP -- mediawiki is implemented in and configured with PHP.
 
# PHP -- mediawiki is implemented in and configured with PHP.
 +
# MySQL -- the database I use for mediawiki.
 
# javascript -- I use it primarily for forms that generate wikitext for new articles.
 
# javascript -- I use it primarily for forms that generate wikitext for new articles.
 
# XML -- I use dumps from Delicious Library in XML.  Typing in hundreds of books is much more tedious than scanning them.
 
# XML -- I use dumps from Delicious Library in XML.  Typing in hundreds of books is much more tedious than scanning them.
Line 21: Line 22:
  
 
I solved these problems with several tricks.
 
I solved these problems with several tricks.
* Extensions ParserFunctions, StringFunctions, DynamicPageList.
+
* Extensions ParserFunctions, MyVariables, DynamicPageList.
 
* [[:Template:DES]] which allows me to associate descriptions with each page.
 
* [[:Template:DES]] which allows me to associate descriptions with each page.
 
* [[:Template:URL]] which allows me to optionally associate an external URL with a page.
 
* [[:Template:URL]] which allows me to optionally associate an external URL with a page.
Line 49: Line 50:
 
* External text can be searched within the wiki because it is in the database.
 
* External text can be searched within the wiki because it is in the database.
 
* Categories can be combined for listing by making them subcategories of each other.  Category:Friedrich Hayek is a subcategory of Category:Friedrich von Hayek, so listing the latter includes the former.
 
* Categories can be combined for listing by making them subcategories of each other.  Category:Friedrich Hayek is a subcategory of Category:Friedrich von Hayek, so listing the latter includes the former.
 +
 +
== Interwiki ==
 +
* http://www.mediawiki.org/wiki/Extension:SpecialInterwiki
 +
* [[Special:Interwiki]] to edit interwiki table
 +
* Use <nowiki>[[wikipedia:pagename]]</nowiki>
 +
* I use huben, hybridize, and critiques for mine
  
 
== Other Notes ==
 
== Other Notes ==
 +
 +
When upgraded to version > 1.17:
 +
* http://en.wikipedia.org/wiki/Wikipedia:NavFrame
 +
* http://en.wikipedia.org/wiki/Help:Collapsing
 +
* http://www.mediawiki.org/wiki/Manual:Collapsible_elements to revise structure to collapse and expand
 +
<code>
 +
<div class="toccolours mw-collapsible">
 +
Header
 +
<div class="mw-collapsible-content">
 +
<div class="toccolours mw-collapsible mw-collapsed">
 +
; First
 +
: test
 +
<div class="toccolours mw-collapsible-content">
 +
;sfgarg
 +
:sfwf
 +
;regregter
 +
:ertwert
 +
</div>
 +
</div>
 +
<div class="toccolours mw-collapsible mw-collapsed">
 +
; Second
 +
: test
 +
<div class="toccolours mw-collapsible-content">
 +
;sfgarg
 +
:sfwf
 +
;regregter
 +
:ertwert
 +
</div>
 +
</div>
 +
</div>
 +
</div>
 +
</code>
  
 
Investigate using:
 
Investigate using:

Latest revision as of 14:23, 29 January 2019