Changes between Version 7 and Version 8 of InlineMacro


Ignore:
Timestamp:
Jun 3, 2015, 12:06:47 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • InlineMacro

    v7 v8  
    11[[PageOutline(2-5,Contents,pullout)]]
    2 = Display inline sanitized XHTML markup =
    32
    4 == Description ==
     3= Display inline sanitized XHTML markup
     4
     5== Description
    56
    67Returns raw, inline XHTML markup that has been validated and sanitized.
    78
    8 == Validation ==
     9=== Validation
    910
    1011Markup that doesn't follow these requirements will be rejected with an error message:
     
    1415 * Empty elements must be self-closing with a space before the forward slash, e.g. <img ... />.
    1516
    16 == Sanitization ==
     17=== Sanitization
    1718
    1819Dangerous constructs such as <script> elements will be removed.
    1920
    20 == Use Cases ==
     21=== Use Cases
    2122
    22 `Inline` is useful for creating "phrase" elements not supported by WikiFormatting, or for including
    23 attributes such as titles. The `#!html` [WikiProcessors WikiProcessor] works well for creating larger
    24 chunks of markup, and in particular block-level elements such as an <address> that are also not supported
    25 (a [http://microformats.org/ Microformat] is an excellent example). However, `Inline` is designed to be
    26 embedded directly in another construct, typically a paragraph of text.
     23`Inline` is useful for creating "phrase" elements not supported by WikiFormatting, or for including attributes such as titles. The `#!html` [WikiProcessors WikiProcessor] works well for creating larger chunks of markup, and in particular block-level elements such as an <address> that are also not supported. A [http://microformats.org/ Microformat] is an excellent example. However, `Inline` is designed to be embedded directly in another construct, typically a paragraph of text.
    2724
     25== Bugs/Feature Requests
    2826
     27Existing bugs and feature requests for InlineMacro are
     28[report:9?COMPONENT=InlineMacro here].
    2929
    30 == Installation ==
     30If you have any issues, create a
     31[/newticket?component=InlineMacro new ticket].
     32
     33[[TicketQuery(component=InlineMacro&group=type,format=progress)]]
     34
     35== Source
     36
     37 * Browse the source at: [http://github.com/dwclifton/tracinlinemacro/tree/master GitHub].
     38 * Public clone URL:
     39{{{#!sh
     40git clone git://github.com/dwclifton/tracinlinemacro.git
     41}}}
     42
     43== Installation
    3144
    3245Download the attached [download:inlinemacro zipfile], unpack to a temporary location, visit the `0.11`
    3346directory and run:
    3447
    35 {{{
    36 #!sh
     48{{{#!sh
    3749python setup.py bdist_egg
    3850cp dist/*.egg /trac/env/Project/plugins
    3951}}}
    4052
    41 == Configuration ==
     53== Configuration
    4254
    43 Enable the macro in:
     55Enable the macro in `/trac/env/Project/conf/trac.ini`:
    4456
    45 /trac/env/Project/conf/trac.ini:
    46 
    47 {{{
    48 #!ini
     57{{{#!ini
    4958[components]
    5059inline.* = enabled
     
    5362You may have to restart your Web server.
    5463
    55 == Examples ==
     64== Examples
    5665
    5766{{{
     
    6069}}}
    6170
    62 == Source ==
    63 
    64  * Browse the source at: [http://github.com/dwclifton/tracinlinemacro/tree/master GitHub].
    65  * Public clone URL:
    66 {{{
    67 #!sh
    68 git clone git://github.com/dwclifton/tracinlinemacro.git
    69 }}}
    70 
    71 == Bugs/Feature Requests ==
    72 
    73 Existing bugs and feature requests for InlineMacro are
    74 [report:9?COMPONENT=InlineMacro here].
    75 
    76 If you have any issues, create a
    77 [http://trac-hacks.org/newticket?component=InlineMacro&owner=dwclifton new ticket].
    78 
    79 == Recent Changes ==
     71== Recent Changes
    8072
    8173[[ChangeLog(inlinemacro, 3)]]
    8274
    83 == Author/Contributors ==
     75== Author/Contributors
    8476
    85  * '''Author:''' [wiki:dwclifton]
    86  * '''Maintainer:''' [wiki:dwclifton]
     77 * '''Author:''' [wiki:dwclifton] [[BR]]
     78 * '''Maintainer:''' [[Maintainer]] [[BR]]
    8779 * '''Contributors:''' The Python and Trac development community.