Changes between Version 2 and Version 3 of BoostSpecificWikiMacros


Ignore:
Timestamp:
Jun 29, 2007, 3:09:30 AM (15 years ago)
Author:
Matias Capeletto
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoostSpecificWikiMacros

    v2 v3  
    2828----
    2929
    30 == Boost specific WikiMacros ==
     30== Boost specific !WikiMacros ==
    3131
     32=== Introduction ===
    3233
     34Trac Wiki allows the use of macros to help with common needs like
     35a TOC or the insertion of a n image. They work similarly to Quickbook
     36templates.
     37There are only a bunch of them in the official Trac release, and it
     38will be very helpful to have a set of boost specific macros that makes
     39common things like referring to a particular section of boost docs
     40very easy. Something like:
     41
     42{{{
     43   [[BoostDocSection(regex,introduction)]]
     44}}}
     45
     46=== Objectives ===
     47
     48   * Investigate current official [WikiMacros Macros]
     49     and [http://trac.edgewall.org/wiki/MacroBazaar not so official macros]
     50     to look for the things we may find useful ( See
     51     [http://trac.edgewall.org/wiki/MacroBazaar#Includes Includes],
     52     [http://trac.edgewall.org/wiki/MacroBazaar#LastModified Last Modified],
     53     [http://trac.edgewall.org/wiki/MacroBazaar#AddComment Add comment],
     54     [http://trac.edgewall.org/wiki/MacroBazaar#FootNote footnote],
     55     [http://trac.edgewall.org/wiki/MacroBazaar#RSSget rss get] and
     56     [http://trac.edgewall.org/wiki/MacroBazaar#VisitCounter visit counter] for some
     57     examples).
     58
     59   * Write a not too clutter proposal for new Boost specific WikiMacros,
     60     including the rationale behind each decision.
     61
     62   * [WikiMacros#DevelopingCustomMacros Implement the Macros] specified in the proposal.
     63     Luckily Trac uses Python for this!
    3364
    3465----