Difference between revisions of "Help:Contents"

From Second Life Wiki
Jump to navigation Jump to search
(video centered and QWIs linked)
m (→‎LSL Script Highlighting & Indentation: getting tired of the LSL default script, lol)
(27 intermediate revisions by 8 users not shown)
Line 1: Line 1:
{{Multi-lang}}
{{Help|Wiki=*}}{{Navbox/Wiki}}


If you're searching for '''Second Life Help''' please have a look at [[Help]].
{{KBtip|New here and wondering what this is all about? Don't worry, '''[[Project:About|learn about this wiki!]]'''}}


<div align="center">This video tour will help you understand how to use this wiki:<br>
== Overview ==


<videoflash>dCpzZWH_mas</videoflash></div>
This article provides help on using the Second Life Wiki. If you're looking for '''Second Life Help''', see the official '''[[Old Knowledge Base]]''' or Resident-powered '''[[Help Portal]]'''.


{{KBcaution|The majority of this Wiki's content (like SL itself) is Resident-created and while it may be helpful, unless stated otherwise by an employee of Linden Lab, we can't vouch for its accuracy. For our official documentation on how to use Second Life, please see the '''[[Old Knowledge Base]]'''.}}


In case you prefer written instructions, have a look at the [[Quickie Wiki Intro]] for infos on how to log into the Wiki and how to create your userpage. The [[Quickie Wiki Intro Part II]] provides instructions on how to create new articles in general, how to upload and link pictures, how to track changes and much more! [[Quickie Wiki Intro Part II|Have a look =)]].
See the '''[[Quickie Wiki Intro]]''' for information on how to log into the Wiki and how to create your user page. It also provides a manual on how to create new articles in general, how to upload and link pictures, how to track changes and much more!


__NOTOC__
== Guidelines ==
==Basic Wikisyntax==
There are a few simple [[editing guidelines]] on this wiki:
 
* When contributing to official help or simply seeking sensible guidelines, see the '''[[Style Guide]]'''.
* Where possible, edit existing pages rather than creating new pages.
* Contribute to articles in the following categories:
** [[:Category:Articles with vital information missing|Articles with vital information missing]]
** [[:Category:Articles in need of updating|Articles in need of updating]]
** [[:Category:Articles in need of expansion|Articles in need of expansion]]
 
== Basic Wiki syntax ==
<div align="center">
<div align="center">
{| style="border:1px solid #A3B1BF; text-align:left; background:#f5faff"
{| style="border:1px solid #A3B1BF; text-align:left; background:#f5faff"
Line 109: Line 119:
|
|


==Level 1==
Headings of different levels. 
===Level 2===
 
====Level 3====
=====Level 4=====
|-
|-
|colspan="3" style="border-top:1px solid #cee0f2;"|
|colspan="3" style="border-top:1px solid #cee0f2;"|
Line 182: Line 190:
|Indentation
|Indentation
|
|
<tt><big>: ''italicized text (indented)''</big></tt><br />
<tt><big><nowiki>: ''italicized text (indented)''</nowiki></big></tt><br />
<tt><big>::* List item A (indented)</big></tt><br />
<tt><big>::* List item A (indented)</big></tt><br />
<tt><big>:# First List Item (indented)</big></tt><br />
<tt><big>:# First List Item (indented)</big></tt><br />
Line 200: Line 208:
|
|
  add a space at the beginning of the line<br />to create preformatted text in a box
  add a space at the beginning of the line<br />to create preformatted text in a box
|-
|colspan="3" style="border-top:1px solid #cee0f2;"|&nbsp;
|-
|Image Link
|
<tt><big><nowiki>[[Image:New-Snowstorm-icon.png|link=Project Snowstorm]]</nowiki></big></tt><br />
|
[[Image:New-Snowstorm-icon.png|link=Project Snowstorm]]
|-
|-
|colspan="3" style="border-top:1px solid #cee0f2;"|&nbsp;
|colspan="3" style="border-top:1px solid #cee0f2;"|&nbsp;
Line 205: Line 221:
|Thumbnail image
|Thumbnail image
|
|
<nowiki>[[Image:Wiki.png|thumb|Caption text]]</nowiki><br />
<tt><big><nowiki>[[Image:Wiki.png|thumb|Caption text]]</nowiki></big></tt><br />
|
|
[[Image:SP_map_chess_rook.jpg|thumb|Caption text]]
[[Image:SP_map_chess_rook.jpg|thumb|Caption text]]
|}
|}
</div>
</div>
== LSL Script Highlighting & Indentation ==
== LSL Script Highlighting & Indentation ==
Use <nowiki><lsl></nowiki> before the script & <nowiki></lsl></nowiki> after the script
Use <nowiki><lsl></nowiki> before the script & <nowiki></lsl></nowiki> after the script
<lsl>default
<lsl>
default
{
{
state_entry()
    state_entry()
{
    {
llSay(0, "Hello, Avatar!");
    //  PUBLIC_CHANNEL has the integer value 0
}
 
touch_start(integer total_number)
        llSay(PUBLIC_CHANNEL, "Hello, Avatar!");
{
    }
llSay(0, "Touched: "+(string)total_number);
 
}
    touch_start(integer num_detected)
}</lsl>
    {
        key id = llDetectedKey(0);
        string name = llKey2Name(id);
        integer spaceIndex = llSubStringIndex(name, " ");
        string firstName = llGetSubString(name, 0, spaceIndex - 1);
 
        llSay(PUBLIC_CHANNEL, firstName + " touched me.");
    }
}
</lsl>
 
Also see '''[[Code highlighting]]'''.


== Templates ==
== Templates ==
Line 234: Line 263:
| width="25%" style="background: #cee0f2; padding: 0.3em; text-align:center;"|'''Template'''
| width="25%" style="background: #cee0f2; padding: 0.3em; text-align:center;"|'''Template'''
| style="background: #cee0f2; padding: 0.3em; text-align:center;"|'''Usage'''
| style="background: #cee0f2; padding: 0.3em; text-align:center;"|'''Usage'''
|-
|[[Template:SL-Profile|<nowiki>{{SL-Profile|User Name}}</nowiki>]]
|Links the ''User Name'' to the Second Life Profile web page for that user
|-
|-
|[[Template:SL-hCard|<nowiki>{{SL-hCard}}</nowiki>]]
|[[Template:SL-hCard|<nowiki>{{SL-hCard}}</nowiki>]]
Line 250: Line 282:
|For [[Volunteer Portal|Second Life Volunteers]]
|For [[Volunteer Portal|Second Life Volunteers]]
|}
|}
</div>
* See [[Special:Prefixindex/Template:|Full List Of Existing Templates]]
* See [[Help:Editors Toolbox]] for a selection of helpful templates for editors.


'''[[Special:Prefixindex/Template:|Full List Of Existing Templates]]'''
== Extensions ==


</div>
See [[Help:Extensions]] for information on using wiki extensions.


== Editing Help ==
== Also see ==


TODO: Copy in the contents of this page:
* '''[http://www.mediawiki.org/wiki/Help:Contents General help from MediaWiki]'''
[http://www.mediawiki.org/wiki/Help:Contents]

Revision as of 13:56, 7 November 2012

KBtip2.png Tip: New here and wondering what this is all about? Don't worry, learn about this wiki!

Overview

This article provides help on using the Second Life Wiki. If you're looking for Second Life Help, see the official Old Knowledge Base or Resident-powered Help Portal.

KBcaution.png Important: The majority of this Wiki's content (like SL itself) is Resident-created and while it may be helpful, unless stated otherwise by an employee of Linden Lab, we can't vouch for its accuracy. For our official documentation on how to use Second Life, please see the Old Knowledge Base.

See the Quickie Wiki Intro for information on how to log into the Wiki and how to create your user page. It also provides a manual on how to create new articles in general, how to upload and link pictures, how to track changes and much more!

Guidelines

There are a few simple editing guidelines on this wiki:

Basic Wiki syntax

Description You type You get
Applies anywhere
Italic Writing

''italic''

italic

Bold text

'''bold'''

bold

Bold and italic

'''''bold & italic'''''

bold & italic

Internal link

(within SLwiki)

[[name of page]]
[[name of page|display text]]
[[#Editing Help|anchor link text]]

name of page
display text
anchor link text

Redirect to another page

#redirect [[Target page]]

1. redirect Target page

External link

(to other websites)

[http://www.example.com]
[http://www.example.com display text]
http://www.example.com

[1]
display text
http://www.example.com

Sign your posts
on talk pages

~~~~

Username 14:51,
29 March 2024 (UTC)

Don't interpret text

<!--an embedded comment-->
<nowiki><!--an embedded comment--></nowiki>


<!--an embedded comment-->

Applies only at the beginning of the line
Headings

of different sizes

==level 1==
===level 2===
====level 3====
=====level 4=====

Headings of different levels.

Horizontal rule

----


Bulleted list

* list item a
* list item b
** list sub-item
* list item c

  • list item a
  • list item b
    • list sub-item
  • list item c
Numbered list

# first list item
# second list item
## sub-item
# third list item

  1. first list item
  2. second list item
    1. sub-item
  3. third list item
Mixture of bulleted
and numbered lists

* list item X
* list item Y
*# first sub-item
*# second sub-item
* list item Z

  • list item X
  • list item Y
    1. first sub-item
    2. second sub-item
  • list item Z
Definition

;Technical Term
: Definition 1
: Definition 2

Technical Term
Definition 1
Definition 2
Indentation

: ''italicized text (indented)''
::* List item A (indented)
:# First List Item (indented)
:;Technical Term (indented)

italicized text (indented)
  • List item A (indented)
  1. First List Item (indented)
Technical Term (indented)
Preformatted text

(boxed text)

add a space at the beginning of the line to create preformatted text in a box

add a space at the beginning of the line
to create preformatted text in a box
 
Image Link

[[Image:New-Snowstorm-icon.png|link=Project Snowstorm]]

New-Snowstorm-icon.png

 
Thumbnail image

[[Image:Wiki.png|thumb|Caption text]]

Caption text

LSL Script Highlighting & Indentation

Use <lsl> before the script & </lsl> after the script <lsl> default {

   state_entry()
   {
   //  PUBLIC_CHANNEL has the integer value 0
       llSay(PUBLIC_CHANNEL, "Hello, Avatar!");
   }
   touch_start(integer num_detected)
   {
       key id = llDetectedKey(0);
       string name = llKey2Name(id);
       integer spaceIndex = llSubStringIndex(name, " ");
       string firstName = llGetSubString(name, 0, spaceIndex - 1);
       llSay(PUBLIC_CHANNEL, firstName + " touched me.");
   }

} </lsl>

Also see Code highlighting.

Templates

There are a number of SL-specific templates created for use on this wiki.


Template Usage
{{SL-Profile|User Name}} Links the User Name to the Second Life Profile web page for that user
{{SL-hCard}} Creates a user profile in hCard format
{{SLurl}} Creates a link to an SL location
{{User_ICQ}} Creates a Link to the ICQ-Userprofile
{{Skills}} Adds your userprofile to categories indicating a certain skill
{{Visl}} For Second Life Volunteers

Extensions

See Help:Extensions for information on using wiki extensions.

Also see