Old main page

From emboxit
Jump to: navigation, search

EDIT/CREATE ARTICLE USING FORMS

  • Writing articles(Pages) in Mediawiki is easy.
  • The standard way is to use the Mediawiki Markup
  • Usage of Markup language might be a problem for non technical users.
  • Using Forms is a very straightforward way to write an Article(Page) avoiding the markup
  • Click on a form from below list
  • Define a New or an existing Article(Page)
  • Start/Edit your article
  • Always use [Show preview] before [Save page], otherwise Form-Edit does not work :(

| Form:Article style 1 | Form:Idea | Form:Idea2



ARTICLES

| Innovation Voucher | TestSMW | Page test-form 1 | Article_2

Cite

According to scientists, the Sun is pretty big.<ref>E. Miller, The Sun, (New York: Academic Press, 2005), 23-5.</ref>

Notes

<references />

InputBox

Box types

The default location of the submit button(s) is below the input box. The submit button can be moved to the right by using the line break parameter to eliminate the line break between the input box and the submit button: break=no

Having the submit button to the right is useful for search boxes when search suggestions would otherwise cover up a search button below the search box.

Type Example Description
type=search

<inputbox> type=search </inputbox>

Creates a search box which has a default width of 50 characters. Information added in the text box is searched for.
type=create

<inputbox> type=create </inputbox>

Creates a new page. Information added in the text box is the name of the page which is edited.
type=comment

<inputbox> type=comment </inputbox>

Adds a new section to the bottom of the page specified in the text box.
type=commenttitle

<inputbox> type=commenttitle page=Talk:Old main page </inputbox>

Adds a new section with the section header typed into the text box. The page has to be specified with page= parameter. Added in rev:42703.
type=fulltext

<inputbox> type=fulltext </inputbox>

Search only with the fulltext search button, without the 'Go' button. Added in rev:45269.

For type=search2 the default location for the search button is to the right. Currently, it does not seem to be possible to add other parameters to this type of input box. This search box searches the entire wiki that it is placed on.

Type Example
type=search2

<inputbox> type=search2 </inputbox>




Download Images


Mindmap

<mindmap url="localhost:8080" ipath="/a" apath="/a">Main</mindmap> <mindmap url="en.wikipedia.org" ipath="/w" apath="/wiki">Sailing</mindmap>




GraphViz

Fatal error

Fatal error: Class 'COM' not found in C:\wiki2\extensions\Graphviz\GraphViz.php on line 377

It was working fine when the server (XAMPP) was running on a Windows XP system, but I've moved it to a Windows 7 system and now this error pops up. --Korby (talk) 12:07, 18 October 2012 (UTC)

You need dot-net in php.ini

   I had the same issue. It worked fine on one machine and it didn't work on another.
   You must install vcredist_x86 from Microsoft as suggested by the xampp-installer.
   Then you have to add extension=php_com_dotnet.dll to your php.ini

--Mosero (talk) 19:25, 20 February 2013 (UTC)


<graphviz>

  digraph NAME {
  # Ein einfacher cyclischer Graph.
  Knoten1 -> "Knoten 2";
  "Knoten 2" -> Knoten3;
  Knoten3 -> Knoten1;
  Knoten1 -> "Version 1.10.1";
}
</graphviz>

External images

$wgAllowExternalImages ="true";

https://en.wikipedia.org/upload/b/bc/Wiki.png


  • IMPORTANT
    • hAVE TO Use

http://www.mediawiki.org/wiki/Manual:$wgAllowExternalImagesFrom

  • to allow images from specific URL only, it is safe, but I do not know what is the right place for it in NIMBUS server