Difference between revisions of "Help:Contents"

From Second Life Wiki
Jump to navigation Jump to search
m (→‎LSL Script Highlighting & Indentation: getting tired of the LSL default script, lol)
(15 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Help|Wiki=*}}
{{Help|Wiki=*}}{{Navbox/Wiki}}
 
{{KBtip|New here and wondering what this is all about? Don't worry, '''[[Project:About|learn about this wiki!]]'''}}


== Overview ==
== Overview ==
This article provides help on using the Second Life Wiki. If you're looking for '''Second Life Help''', see the official '''[[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 '''[[KB|Knowledge Base]]'''.}}
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]]'''.


If you want written instructions, 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!
{{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]]'''.}}


<videoflash type="vimeo">4242614|640|480</videoflash>
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!


The above video tour covers:
== Guidelines ==
 
There are a few simple [[editing guidelines]] on this wiki:
* What is a wiki and why does it matter?
* How is this Wiki organized?
* Wiki editing basics
* Using Google to search the Wiki
* Finding the list of Linden [[Office Hours]]
* Finding Resident user pages (extended profiles)
* What's the difference between the Wiki and the Knowledge Base?
** ''Note:'' This is no longer true. The [[Knowledge Base]] is now ''part'' of this Wiki.
* Adding videos to Wiki pages with [http://www.mediawiki.org/wiki/Extension:VideoFlash VideoFlash]
* Searching the Second Life Wiki inworld


== Guidelines ==
* When contributing to official help or simply seeking sensible guidelines, see the '''[[Style Guide]]'''.
There are a few simple [[editing guidelines]] on this wiki. Please:
* Where possible, edit existing pages rather than creating new pages.
* Where possible, edit existing pages rather than creating new pages.
* Contribute to articles in the following categories:
* Contribute to articles in the following categories:
Line 200: 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 218: 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 223: 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]]
Line 231: Line 229:
== 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 253: 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 269: Line 282:
|For [[Volunteer Portal|Second Life Volunteers]]
|For [[Volunteer Portal|Second Life Volunteers]]
|}
|}
'''[[Special:Prefixindex/Template:|Full List Of Existing Templates]]'''
</div>
</div>
* See [[Special:Prefixindex/Template:|Full List Of Existing Templates]]
* See [[Help:Editors Toolbox]] for a selection of helpful templates for editors.


== Extensions ==
== Extensions ==
Line 277: Line 290:
See [[Help:Extensions]] for information on using wiki extensions.
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:09,
16 April 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