more wikis
 

Справка:Inputbox

Материал из Wikia

Inputbox — это новая возможность, которая позволяет вставлять окно поиска или окно создания статьи на любую страницу. С её помощью очень просто создавать новые страницы.

Последние изменения этого расширения. Функция actionCreate от участника Algorithm была добавлена в это расширение, и теперь Inputbox проверяет страницу на существование и отображает сообщение об ошибке, если существует.

Содержание

[править] Inputbox для создания новых страниц

Для создания новых страница достаточно ввести в поле inputbox заголовок создаваемой страницы.

Основной пример (просто разместите это где-нибудь на странице):

 <createbox>
  </createbox>

Будет открыта новая страница с заголовком, который ввёл участник. Если заголовок этой новой страницы будет совпадать с уже существующей, то откроется для редактирования эта статья.

Другой пример:

 <createbox>
  preload=Шаблон:Новая_страница
 editintro=Шаблон:Welcome
 width=25
 </createbox>

Если надо использовать стандартный шаблон статьи, то можно специально это обозначить в форме. При задании конструкции preload=Шаблон:Новая_страница будет загружено содержимое Шаблон:Новая страница в поле редактирования новой статьи. А при задании editintro=Шаблон:Welcome будет показан Шаблон:Welcome вверху страницы редактирования вместо MediaWiki:Newarticletext.

Текст «Создать статью» можно изменить в MediaWiki:Createarticle. Можно также изменить ширину поля. По-умолчанию ширина 45 символов.

[править] Поиск с inputbox

Добавить форму поиска можно следующим образом, как указано ниже. Можно изменить ширину поля по-умолчанию на width=50 или какую-нибудь другую. Также можно изменить надписи на кнопках, надо отредактировать соответсвующим образом MediaWiki:Tryexact и MediaWiki:Searchfulltext в своей вики.

 <inputbox>
 type=search
 width=50
 </inputbox>

[править] Другие URL

Можно также создавать ссылки, которые используют возможности данного расширения, но без самого поля на странице.

Например, http://www.wikia.com/index.php?title=Тестовая_страница&preload=Events&action=edit откроет новую страницу Тестовая страница и загрузит в неё содержимое страницы events.

Можно открывать страницы с настраиваемым сообщеним в верху страницы. Например: http://www.wikia.com/index.php?title=Тестовая_страница&editintro=Template:Policies&action=edit загрузит пустую страниц, с Template:Policies сверху окна редактирования.

Можно сочетать эти два параметра, и открыть новую страницу с сообщением policies вверху и содежимым events в загруженном окне: http://www.wikia.com/index.php?title=Тестовая_страница&preload=Events&action=edit&editintro=Template:Policies

[править] Ссылки

  • mw:Extension:Inputbox — полное описание расширения Inputbox на MediaWiki.org
This extension is enabled by default on Wikia.

Contents

An inputbox allows you to put a box on any page, which has a text field for users to fill and a customizable button for launching the action.

There are three types: the article creation box, the search box, and the comment box. The default width for all boxes is 50 characters.

How do I add an article creation box to a page?

An article creation box places a box on the page that lets the user create a new page by entering the page title. A new page will be opened at the title the user types in. Page creation is handled by a (deprecated) modification to the InputBox extension, or by the (preferred) CreateBox extension. CreateBox takes mostly the same arguments as InputBox when used with action=create. Both check if a page already exists and display an error message if it does.

To change the text on all Create buttons on your site, edit the MediaWiki message "MediaWiki:Create" on your Wikia.

Type this: To make this:
<createbox>
</createbox>

How do I add a search box to a page?

A search box provides an extra box for users to search Wikia, in addition to the one in the sidebar.

To change the text on all Search buttons on your site, edit the MediaWiki messages "MediaWiki:Tryexact" and "MediaWiki:Searchfulltext" on your Wikia.

Type this: To make this:
<inputbox>
type=search
</inputbox>

How do I add a comment box to a page?

This box adds a section to an existing page -- this can be helpful in adding a new discussion to a talk page, or new items to a news page.

The text typed in the box is the page where to start a new section header. If you use as type commenttitle instead of comment, the text typed in the box becomes the new section header, and is also used as the edit summary for the addition. In this case, you additionally need to define a pagename with the default parameter.

Type this: To make this:
<inputbox>
type=comment
</inputbox>

To change the text on all Comment buttons on your site, edit the MediaWiki message "MediaWiki:Postcomment" on your Wikia.

How can I customize the inputboxes?

There are several parameters you can use to customize the display of the inputboxes.

Background color:

bgcolor=#FFFFFF
Sets the background color using HTML color values. Do not use quotes. Make this the same as the page color (as specified in the skin) to make the background disappear.

Width:

width=##
Sets width of input field, where ## is a number of characters. (The default is 50.)

Default text:

default=any text
Default text to put in the inputbox, such as "enter page title here"

Button label:

buttonlabel=any text
This label will be used for the main button of the form.

Search button label:

searchbuttonlabel=any text
This label will be used for the "Search full text" button of the search form.

Line break:

break=no
Removes the default line break between the input box and the button(s), displaying them side by side. This is the default for the create box and changed with break=yes.
Type this: To make this:
<createbox>
bgcolor=#C0C0C0
width=15
default=Type here!
buttonlabel=Click here!
</createbox>

Using preloaded templates with an article creation box

See Help:Preloaded templates for more detail

If you want to use a standard article template, you can specify this in the form.

Preloaded text: preload=pagename For comment and create boxes, the text of the page under pagename will be preloaded (see below) into the blank editbox when a new page is created.

Example: By specifying "preload=Template:New_page", the content of "Template:New page" will be loaded into the edit box for the new article.

Edit introduction: editintro=pagename For comment and create boxes, the text of the page under pagename will be added, as instructions, before the submission form for new pages. It is displayed instead of the text of MediaWiki:Newarticletext

Example: By specifying "editintro=Template:Welcome", the content of Template:Welcome will be shown above the article.
Type this: To make this:
<createbox>
preload=Template:New_page
editintro=Template:Welcome
width=25
</createbox>

Article creation links

You can also create links that make use of the inputbox feature without inserting the box itself onto a page.

For example, http://www.wikia.com/index.php?title=Test_Page&preload=Events&action=edit will open a new page at "wikia:Test Page" and preload it with the text from the "wikia:Events" page.

You can also open a new page for editing with a custom message at the top. For example, http://www.wikia.com/index.php?title=Test_Page&editintro=Template:Policies&action=edit will load a blank page, with the wikia:Template:Policies displayed above the editing box.

You can combine these two, to give a page that opens with the "wikia:Template:Policies" message at the top, and the content of "wikia:Events" loaded into the edit box. http://www.wikia.com/index.php?title=Test_Page&preload=Events&action=edit&editintro=Template:Policies

See Help:Preloaded templates for more information.

Credits

Algorithm's actionCreate modification was added to this extension so the Inputbox could check whether a page already exists and displays an error message if it does.

This modification to InputBox is deprecated in favor of the more stable and actively developed CreateBox, this extension is installed at Wikia.

See also