Manual talk:Parameters to index.php

From MediaWiki.org

Jump to: navigation, search

Contents

[edit] To do

Edit:

  • wpScrolltop: what is this used for?
  • why wpLivePreview? is this used to allow two buttons "preview" and "live preview" to be present on the form at the same time?
  • metadata

Article.php

  • token (edit token used in deletetrackback())
  • tbid

ImagePage.php

  • image: 1. the alternate text of the image thumbnail in the image description page, and 2. the title of the image when deleting all its revisions (appears to be no longer used; deleting the image description page now effectively deletes all revisions of the image)

Feed.php

  • ctype

OutputPage.php:

  • returnto

Pager.php

  • asc

SkinTemplate.php

  • dontcountme

[edit] redirect.php

Argument wpDropdown (the page to go)

[edit] Cascading protection

Cascading protection does not "change" the protection level of the transcluded pages; these have their own protection level, but are protected indirectly by the cascading protection of the transcluding pages. Tizio 15:43, 17 January 2007 (UTC)

[edit] Obsolete parameters

"editredlink" has been replaced by "action=edit&redlink=1", so it's likely to be removed from Wiki.php at some point. When this is done, move to a separate "Obsolete parameter" section. Tizio 14:26, 26 February 2008 (UTC)

[edit] I could swear action=raw worked...

But now all I get is a forbidden message saying "Raw pages must be accessed through the primary script entry point." I'm fairly certain this worked before... 75.17.213.235 09:07, 8 March 2008 (UTC)

To clarify, I'm sending request like http://www.mediawiki.org/wiki/Manual:Parameters_to_index.php?action=raw this used to work (iirc)...I think...?

Do what the error messages tells you: use the primary script access point. http://www.mediawiki.org/w/index.php?title=Manual:Parameters_to_index.php&action=raw works. -- Duesentrieb 12:14, 8 March 2008 (UTC)
rev:29939. Splarka 07:08, 10 May 2008 (UTC)

[edit] AJAX

What should we do for using ajax in the search box? the description is not clear for me:

    if enabled, calls a php function registered via $wgAjaxExportList; see Manual:Ajax.
       * requires $wgUseAjax to be true; the only callable functions are those in the array $wgAjaxExportList (implicite if $wgAjaxSearch or $wgAjaxWatch is set)
       * additional parameters: rs is the function name (e.g., rs=wfSajaxSearch); the rsargs[] array is the list of arguments of this function (e.g., rsargs[]=abcd passes the abcd string to the function).
       * the JavaScript function sajax_do_call for calling Ajax functions is defined in ajax.js

What schould a do in the LocalSettings.php

$wgUseAjax = true;

$wgAjaxSearch = true;

$wgAjaxWatch = true;

how schould $wgAjaxExportList[] with rs=wfSajaxSearch or array( 'wfSajaxSearch' ) works

Thx.

Personal tools