Help:Editing: Difference between revisions

From ced Wiki
Jump to navigation Jump to search
(Replacing page with 'Please go [http://meta.wikimedia.org/wiki/Help:Editing here] until full help is copied.')
No edit summary
Line 1: Line 1:
Please go [http://meta.wikimedia.org/wiki/Help:Editing here] until full help is copied.
== A note about content ==
 
{{Policy:Disclaimer}}
 
== Editing the wiki ==
 
Wikis are typically designed to allow participation in development of the site to all users, through easy creation of new pages, links and categories. We're using the same software Wikipedia uses, along with the Semantic Mediawiki extensions. You must have an account to create and edit pages. [[Intwiki:About | Contact an admin]] if you need an account or some assistance.
 
Once you're signed in, you'll see an edit tab on the top of most pages. Use that link, or section edit links if present, to edit content. To avoid the problems of rich text editors and keep entered text focused on content and meaning, pages use wiki markup. The most important markup is as follows:
 
* <nowiki>[[a link]]</nowiki> - create a link to another page
* <nowiki>== heading ==</nowiki> create a section heading, in this case, heading level two
* <nowiki>'''boldtext'''</nowiki> and <nowiki>''italic text''</nowiki>
* * to start a bullet point, ** for second level, etc.
 
Otherwise, just enter your text, leaving a blank line between paragraphs. Remember you can view the wiki markup of any page to see how it was created.
 
An effective workflow is to create pages with links, then go back later and click on the undefined (red) links to fill them in. Often sections get turned into their own pages over time as part of "wiki gardening."
 
You can practice editing pages by creating your own link off the [[Sandbox]]. It's a good practice to preview your pages before saving, and to add summary contents to help others understand your changes.
 
All pages maintain a complete edit history, so we can always tell who edited a page and revert pages when required. It's a good idea to check the page's history to see who's been editing it.
 
Further editing help is available at [http://meta.wikimedia.org/wiki/Help:Editing wikimedia.org].
 
== Feel free to carve out your own project wiki pages ==
 
When naming pages, keep in mind the wiki is used for multiple projects so use distinct names. Also keep in mind anyone can edit most pages, so your page may be changed by others including 'bureaucrats' trying to keep things organized. Monitor important pages to keep them relevant, using the [http://en.wikipedia.org/wiki/Wikipedia:Neutral_point_of_view Neutral point of view] principles. Comments and suggestions should be entered in the Discussion of a page, which can often contain the most interesting content, so keep an eye out for active Discussion links.
 
Each user has their own "namespace" where you can keep pages editable only by yourself. Those page names have this form:  <nowiki>[[User:Some Person/My own page]]</nowiki>.
 
{{#forminput:User page|||Add a new personal page|User page[User]={{CURRENTUSER}}&super_page=User:{{CURRENTUSER}}&namespace=User}}
 
 
Use categories to group pages. Simply add <nowiki>[[Category:My category]]</nowiki> to the end of page content, and it can be viewed on the category index page, for example [[:Category:Wiki documentation]] or via queries (see below).
 
[http://www.mediawiki.org/wiki/Help:Templates Templates] can also be used for consistent content presentation.
 
Keep an eye out for extra help on pages such as your User page.
 
== Semantic wiki facilities ==
 
Semantic Mediawiki (SMW) add database-like features to the free form functionality of wikis. Annotations, properties, templates, forms and queries can be used to more consistently create content, suitable for re-use.
 
An annotation is a simple discrete markup of information, with a corresponding property, which describes the data type. Annotations can appear anywhere in text, except in values of other properties. They look like this: <nowiki>[[birthday::November 25, 2009]]</nowiki>.
 
Once annotations are entered, they can be reused in queries and views, like this one:
 
<nowiki>{{ #ask: [[birthday::+]] | format=timeline}}</nowiki>
 
Which means ask for all pages with birthdays, and display them in timeline format, including links to page names ({{PAGENAME}} in this case).
 
{{ #set: birthday=November 25, 2009}}
{{ #ask: [[birthday::+]] |?birthday | format=timeline}}
 
Other formats include [[Facilities|graphs]], maps, facet browsers, tables and charts. The property type is often a page, so the annotation provides a link type. This corresponds to [http://en.wikipedia.org/wiki/Resource_Description_Framework RDF] triples - object (the page), predicate (the link), subject (the destination link). SMW has RDF features to support interaction with other software.
 
Properties are commonly assigned in templates and used with forms to provide consistent data using fields and categories. [[Special:CreateClass]] provides functionality to create a template and form in one step.
 
See also: [[How to annotate]].
 
[[Category: Wiki documentation]]

Revision as of 15:55, 25 January 2010

A note about content

Template:Policy:Disclaimer

Editing the wiki

Wikis are typically designed to allow participation in development of the site to all users, through easy creation of new pages, links and categories. We're using the same software Wikipedia uses, along with the Semantic Mediawiki extensions. You must have an account to create and edit pages. Contact an admin if you need an account or some assistance.

Once you're signed in, you'll see an edit tab on the top of most pages. Use that link, or section edit links if present, to edit content. To avoid the problems of rich text editors and keep entered text focused on content and meaning, pages use wiki markup. The most important markup is as follows:

  • [[a link]] - create a link to another page
  • == heading == create a section heading, in this case, heading level two
  • '''boldtext''' and ''italic text''
  • * to start a bullet point, ** for second level, etc.

Otherwise, just enter your text, leaving a blank line between paragraphs. Remember you can view the wiki markup of any page to see how it was created.

An effective workflow is to create pages with links, then go back later and click on the undefined (red) links to fill them in. Often sections get turned into their own pages over time as part of "wiki gardening."

You can practice editing pages by creating your own link off the Sandbox. It's a good practice to preview your pages before saving, and to add summary contents to help others understand your changes.

All pages maintain a complete edit history, so we can always tell who edited a page and revert pages when required. It's a good idea to check the page's history to see who's been editing it.

Further editing help is available at wikimedia.org.

Feel free to carve out your own project wiki pages

When naming pages, keep in mind the wiki is used for multiple projects so use distinct names. Also keep in mind anyone can edit most pages, so your page may be changed by others including 'bureaucrats' trying to keep things organized. Monitor important pages to keep them relevant, using the Neutral point of view principles. Comments and suggestions should be entered in the Discussion of a page, which can often contain the most interesting content, so keep an eye out for active Discussion links.

Each user has their own "namespace" where you can keep pages editable only by yourself. Those page names have this form: [[User:Some Person/My own page]].


Use categories to group pages. Simply add [[Category:My category]] to the end of page content, and it can be viewed on the category index page, for example Category:Wiki documentation or via queries (see below).

Templates can also be used for consistent content presentation.

Keep an eye out for extra help on pages such as your User page.

Semantic wiki facilities

Semantic Mediawiki (SMW) add database-like features to the free form functionality of wikis. Annotations, properties, templates, forms and queries can be used to more consistently create content, suitable for re-use.

An annotation is a simple discrete markup of information, with a corresponding property, which describes the data type. Annotations can appear anywhere in text, except in values of other properties. They look like this: [[birthday::November 25, 2009]].

Once annotations are entered, they can be reused in queries and views, like this one:

{{ #ask: [[birthday::+]] | format=timeline}}

Which means ask for all pages with birthdays, and display them in timeline format, including links to page names (Editing in this case).


Other formats include graphs, maps, facet browsers, tables and charts. The property type is often a page, so the annotation provides a link type. This corresponds to RDF triples - object (the page), predicate (the link), subject (the destination link). SMW has RDF features to support interaction with other software.

Properties are commonly assigned in templates and used with forms to provide consistent data using fields and categories. Special:CreateClass provides functionality to create a template and form in one step.

See also: How to annotate.