Differences between revisions 18 and 20 (spanning 2 versions)
Revision 18 as of 2005-02-10 22:28:23
Size: 1194
Editor: ClarkUpdike
Comment:
Revision 20 as of 2005-02-11 14:26:40
Size: 2489
Editor: ClarkUpdike
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
Create an anchor.
{{{[[Anchor(myAnchorLabel)]]}}}
== Deleting wiki pages ==
Line 6: Line 5:
Linking to anchors on another page:: you must use an "interwiki" style link. These are the directions I use for deleting pages on an intranet moinmoin wiki I administer. These directions assume you have a login on the host machine, allowing you to temporarily turn on a flag in a config file that let's you delete a page and then turn it off (making it safe since it's only temporarily enabled).

First of all, if you aren't in the MoinPagesEditorGroup, you'll need to contact an admin, and remind them to follow the directions on this page.

To delete a wiki page:
 * make sure that Moin``Moin acl is activated in moin_config.py (it should be left on)
 * turn on the Delete``Page action in moin_config.py (look for the 'security critical actions' section towards the bottom of the file and set the "if 0:" to "if 1:" )
 * put an acl entry on the page:
{{{
#acl AdminGroup:read,delete
}}}
 * edit the page and look for the Delet``Page action at the very bottom
 * follow the steps to delete the page
 * turn off the Delete``Page action in moin_config.py

Note: moin_config.py is probably here, /web/local/share/moin/rmiswiki

== Misc ==
 *Create an anchor.
{{{
[[Anchor(myAnchorLabel)]]
}}}

 *Linking to anchors on another page:: you must use an "interwiki" style link.
Line 11: Line 33:
Footnotes macro [[FootNote(This is a sample footnote [look for it at the bottom of the page].)]]  *Footnotes macro[[FootNote(This is a sample footnote [look for it at the bottom of the page].)]]
Line 17: Line 39:
Force a new page (aka arbitrary page name).[[BR]]
{{{["/mynewpage"]}}}

Link to a subpage (there several ways to do [wiki:Self:HelpOnEditing/SubPages this])[[BR]]
[wiki:Self:JythonDevelopersGuide/EclipseNotes Eclipse notes]
 *Force a new page (aka arbitrary page name).[[BR]]
Line 23: Line 41:
[wiki:Self:JythonDevelopersGuide/EclipseNotes Eclipse notes] ["/mynewpage"]
Line 26: Line 44:
Prevent a New``Page.[[BR]]
{{{Py``System``State}}}
 *Link to a subpage (there several ways to do [wiki:Self:HelpOnEditing/SubPages this])[[BR]]
[wiki:Self:JythonDeveloperGuide/EclipseNotes Eclipse notes] [[BR]]
JythonDeveloperGuide/EclipseNotes
{{{
[wiki:Self:JythonDeveloperGuide/EclipseNotes Eclipse notes] <- link on arbitrary text
JythonDeveloperGuide/EclipseNotes <- wiki style link
}}}
Line 29: Line 52:
Embedding python (one way--there's [wiki:Self/HelpOnFormatting#codeDisplay others]).[[BR]]
 *Prevent a New``Page.[[BR]]
{{{
Py``System``State
}}}

 *
Embedding python (one way--there's [wiki:Self/HelpOnFormatting#codeDisplay others]).[[BR]]
Line 37: Line 66:
Or ticks for `print "jython rocks!"`.[[BR]]
{{{`print "jython rocks!"`}}}
 *Or ticks for `print "jython rocks!"`.[[BR]]
{{{
`print "jython rocks!"`
}}}
Line 40: Line 71:
Inserting "new lines" into a paragraph.[[BR]]
{{{[[BR]]}}}
 *Inserting "new lines" into a paragraph.[[BR]]
{{{
[[BR]]
}}}

Wiki Tidbits

Deleting wiki pages

These are the directions I use for deleting pages on an intranet moinmoin wiki I administer. These directions assume you have a login on the host machine, allowing you to temporarily turn on a flag in a config file that let's you delete a page and then turn it off (making it safe since it's only temporarily enabled).

First of all, if you aren't in the MoinPagesEditorGroup, you'll need to contact an admin, and remind them to follow the directions on this page.

To delete a wiki page:

  • make sure that MoinMoin acl is activated in moin_config.py (it should be left on)

  • turn on the DeletePage action in moin_config.py (look for the 'security critical actions' section towards the bottom of the file and set the "if 0:" to "if 1:" )

  • put an acl entry on the page:

#acl AdminGroup:read,delete
  • edit the page and look for the DeletPage action at the very bottom

  • follow the steps to delete the page
  • turn off the DeletePage action in moin_config.py

Note: moin_config.py is probably here, /web/local/share/moin/rmiswiki

Misc

  • Create an anchor.

[[Anchor(myAnchorLabel)]]
*Linking to anchors on another page
you must use an "interwiki" style link.

[wiki:Self:SomePage/SomeSubPage#someBookmark bookmarkDisplayText]

[[FootNote(This is a sample footnote [look for it at the bottom of the page].)]]
Must be separated from the prior word by a space.
  • Force a new page (aka arbitrary page name).BR

["/mynewpage"]

[wiki:JythonDeveloperGuide/EclipseNotes Eclipse notes] BR JythonDeveloperGuide/EclipseNotes

[wiki:Self:JythonDeveloperGuide/EclipseNotes Eclipse notes] <- link on arbitrary text
JythonDeveloperGuide/EclipseNotes                           <- wiki style link
  • Prevent a NewPage.BR

Py``System``State
  • Embedding python (one way--there's [wiki:Self/HelpOnFormatting#codeDisplay others]).BR

{{{
#!python
print "jython rocks!"                
} } } <-- don't include these spaces (it's just to escape them)
  • Or ticks for print "jython rocks!".BR

`print "jython rocks!"`
  • Inserting "new lines" into a paragraph.BR

[[BR]]