Differences between revisions 1 and 2
Revision 1 as of 2005-03-28 20:48:17
Size: 3266
Editor: ClarkUpdike
Comment:
Revision 2 as of 2008-11-15 09:16:02
Size: 3242
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
 *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 36: Line 36:
 *Force a new page (aka arbitrary page name).[[BR]]  *Force a new page (aka arbitrary page name).<<BR>>
Line 41: Line 41:
 *Link to a subpage (there several ways to do [wiki:Self:HelpOnEditing/SubPages this])[[BR]]
[wiki:Self:
JythonDeveloperGuide/EclipseNotes Eclipse notes] [[BR]]
 *Link to a subpage (there several ways to do [[HelpOnEditing/SubPages|this]])<<BR>>
[[JythonDeveloperGuide/EclipseNotes|Eclipse notes]] <<BR>>
Line 49: Line 49:
 *Prevent a new page with and without code font.[[BR]]  *Prevent a new page with and without code font.<<BR>>
Line 53: Line 53:
 *Embedding python (one way--there's [wiki:Self/HelpOnFormatting#codeDisplay others]).[[BR]]  *Embedding python (one way--there's [[HelpOnFormatting#codeDisplay|others]]).<<BR>>
Line 61: Line 61:
 *Or ticks for `print "jython rocks!"`.[[BR]]  *Or ticks for `print "jython rocks!"`.<<BR>>
Line 66: Line 66:
 *Inserting "new lines" into a paragraph.[[BR]]  *Inserting "new lines" into a paragraph.<<BR>>

This used to be my homepage content, but my homepage isn't working :(

Wiki Tips

Misc

Make a page public read, MoinPagesEditorGroup write, put this comment at the top of your page:

#acl MoinPagesEditorGroup:read,write,delete,revert All:read

But right now, when I try this it says: You can't change ACLs on this page since you have no admin rights on it!

  • Create an anchor.

[[Anchor(myAnchorLabel)]]

If your doing lots of anchors on the same page, you may want to consider using the "table of contents" macro. See an example at the top of HelpOnMacros.

  • Link to an anchor on the same page

 [#<anchorname> description]
  • Linking to anchors on another page: you must use an "interwiki" style link.

[wiki:Self:SomePage/SomeSubPage#someBookmark bookmarkDisplayText]
  • Footnotes macro1

[[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).

["/mynewpage"]
  • Link to a subpage (there several ways to do this)

Eclipse notes
JythonDeveloperGuide/EclipseNotes

[wiki:Self:JythonDeveloperGuide/EclipseNotes Eclipse notes] <- link on arbitrary text
JythonDeveloperGuide/EclipseNotes                           <- wiki style link
  • Prevent a new page with and without code font.

with code font

PySystemState

`PySystemState`

without code font

PySystemState

Py``System``State

  • Embedding python (one way--there's others).

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

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

[[BR]]

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). I've tried to adapt them for this (jython) wiki.

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 MoinPagesEditorGroup: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, <wiki home>/moin/<wiki name>

  1. This is a sample footnote [look for it at the bottom of the page]. (1)

ClarkUpdike/WikiTips (last edited 2008-11-15 09:16:02 by localhost)