language/english/install/default-tutorial/Creating_and_editing_pages.txt
author Dan
Fri, 21 Aug 2009 15:39:34 -0400
changeset 1097 4252e4d83102
parent 925 173aef60c13c
child 1104 299d7e6e328b
permissions -rw-r--r--
A bit of work on tutorial content, more still needed
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1097
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     1
At its heart, Enano is a wiki. Why is this special? Because content is at the heart of the Enano design, not an afterthought. In Enano, editing - like most other tasks - is done right on the page. The page is updated live so you can see your changes right away. You can edit a page simply by clicking the "Edit this page" button on the shiny black toolbar. Create a page simply by editing it - the first time you save it, it will be created automatically.
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     2
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     3
=== Your first edit ===
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     4
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     5
Let's try some basic editing now. Click the "edit this page" button you see on the textual toolbar at the top of this page. Type between the two HTML comments (<!-- like this -->) you see in the text box (you might have to scroll down a bit). Click "Save Changes" - you should see what you typed show up right away!
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     6
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     7
==== User-entered text ====
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     8
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
     9
<!-- Put your own text below this line! -->
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    10
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    11
<!-- Put your own text above this line! -->
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    12
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    13
=== Create your first page ===
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    14
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    15
Now let's try creating a page. Open [[My first page|this link]] in a new browser tab or window so that you can keep these instructions available. Click the same "edit this page" button and type some text. What you typed should be visible on the page now!
925
173aef60c13c Added the linked-to page of the tutorial (it is, however, a stub at this point)
Dan
parents:
diff changeset
    16
1097
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    17
=== Add some flair ===
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    18
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    19
Have you noticed the way links and headings look on this page? They are embedded using a very simple language called ''wikitext''. You can use wikitext to organize and format your page, and to link to other pages. Linking to other pages is what makes a wiki, a wiki.
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    20
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    21
To use bold text:
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    22
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    23
<code><nowiki>'''Your text here'''</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    24
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    25
To use italic text:
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    26
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    27
<code><nowiki>''Your text here''</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    28
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    29
Create a link:
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    30
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    31
<code><nowiki>[[Page title]]</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    32
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    33
Create a link, but using your own text:
925
173aef60c13c Added the linked-to page of the tutorial (it is, however, a stub at this point)
Dan
parents:
diff changeset
    34
1097
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    35
<code><nowiki>[[Page title|Your text here]]</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    36
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    37
Create a large heading:
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    38
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    39
<code><nowiki>== Your text here ==</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    40
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    41
Create a medium heading:
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    42
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    43
<code><nowiki>=== Your text here ===</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    44
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    45
Create a small heading:
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    46
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    47
<code><nowiki>==== Your text here ====</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    48
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    49
Link to an external site:
925
173aef60c13c Added the linked-to page of the tutorial (it is, however, a stub at this point)
Dan
parents:
diff changeset
    50
1097
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    51
<code><nowiki>[http://www.example.com/ Your text here]</nowiki></code>
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    52
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    53
== Visual editing ==
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    54
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    55
If you prefer to design your documents in a more graphical way, click the <a href="#" onclick="return false;" class="abutton abutton_blue image"><img width="16" height="16" src="images/spacer.gif" style="background-image: url(images/editor/sprite.png); background-repeat: no-repeat; background-position: -112px 0px;" /> Convert to HTML</a> button in the editor. Enano includes [http://tinymce.moxiecode.com/ TinyMCE], a widely-used graphical editor for the web.
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    56
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    57
== Moving up from Enano 1.0? ==
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    58
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    59
Good news: You don't have to learn anything new to use Enano 1.2's formatting syntax or editor. We've improved the interface of the editor a lot though. Enano 1.2 also has new features like auto-saving and the ability to detect when someone else saves the page while you're working on it. Another new feature is a guard against automatically closing out the editor, so it's much harder to lose a page you're working on.
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    60
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    61
The biggest change to page editing in Enano 1.2 is the way the renderer behaves when you use TinyMCE to edit the page. We made this process a lot smarter so the wikitext engine doesn't try to apply formatting that should already be done by TinyMCE. This means, however, that you can't use certain bits of wikitext syntax - such as bold, italics, headings and tables - that are already covered through TinyMCE features.
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    62
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    63
== All done! ==
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    64
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    65
That's it! Now you know how to write pages with Enano. Let's move on and learn how to do some basic administration of your new website.
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    66
4252e4d83102 A bit of work on tutorial content, more still needed
Dan
parents: 925
diff changeset
    67
[[Basic_administration|Next step: Basic administation &raquo;]]