ConfluenceConverter

TO_DO.txt

96:a95675d52731
2013-07-16 Paul Boddie Added a patch against Moin 1.9 to associate author details with page revisions.
     1 DEV/GSoC 2011 - Conversion from Confluence wiki to Moin (11960378)
     2 
     3   End tags for strong, em immediately followed by start tags for strong, em
     4   that would cause conflicts in the generated Moin markup should be translated
     5   with spaces separating them
     6 
     7 Handle page renaming (add redirects, perhaps support comments on old revisions):
     8 
     9   DOC/Making Sure Your Lists Are Private (10715350) renamed from
    10   DOC/Making Sure Your List Is Private
    11 
    12 DOC/I've set up Mailman%2C created a list%2C and added myself to the list%2C but I don't get any messages! (4030512)
    13 
    14   @ in the text causes mailto: auto-linking
    15 
    16 COM/donate to the GNU Mailman project (4816967)
    17 
    18   (Ill-formed markup/XHTML causes the link to fail)
    19   This needs implementing for Confluence syntax
    20 
    21 DEV/benste's GSoc 2011 - page (14352747)
    22 
    23   Confluence: Suppress formatting in headings; investigate weird list attempts in tables
    24 
    25 DOC/Mailman 2.1 Members Manual (786442)
    26 
    27   wiki.list.org link recognition
    28 
    29 Make redirect pages so that COM redirects to COM/Home, and so on.
    30 
    31 Comment ownership and presentation.
    32 
    33 Page identifier links: http://wiki.list.org/pages/viewpage.action?pageId=4816921 (COM/Home)
    34 
    35 Macros: {toc}
    36 
    37 
    38 
    39 Mostly Handled
    40 ==============
    41 
    42 DEV/A 5 Minute Guide to Get the Mailman Web UI Running (only for development) (13303877)
    43 
    44   (Preformatted regions on their own line might be converted into proper sections)
    45   This was hopefully fixed by recognising that such regions are not inline
    46   formatting directives
    47 
    48   This may affect both markup types but this page seems not to be available in
    49   the XHTML format
    50 
    51 DOC/Do you offer Mailman hosting%2C consulting%2C or contractor services%3F (4030519)
    52 
    53   (Links to other spaces need fixing in the XHTML format)
    54   Other link styles might be lurking elsewhere
    55 
    56 DOC/Integrating Mailman with postfix (12517386)
    57 
    58   (file: causes a link to be created)
    59   This was caused by a preformatted "code" region appearing directly after "file:" and not on a separate line
    60 
    61 Comment numbering:
    62 
    63   Page #33 (Mailman 2.2) -> BodyContent #26
    64                          -> Comment #144, #149, #177...
    65 
    66   BodyContent #26 -> ...
    67 
    68   Comment #144 -> BodyContent #112
    69 
    70   BodyContent #112 -> In the Spam Defense section...
    71 
    72 Question marks in titles (mod_rewrite issue)
    73 
    74   Nasty hack to work around the problem:
    75 
    76   RewriteCond %{REQUEST_FILENAME} !-f
    77   RewriteCond %{REQUEST_FILENAME} !-d
    78   RewriteRule ^(.*)\?(.*)\?(.*)\?(.*) /moin.cgi/$1\%3f$2\%3f$3\%3f$4 [PT,L,QSA]
    79 
    80   RewriteCond %{REQUEST_FILENAME} !-f
    81   RewriteCond %{REQUEST_FILENAME} !-d
    82   RewriteRule ^(.*)\?(.*)\?(.*) /moin.cgi/$1\%3f$2\%3f$3 [PT,L,QSA]
    83 
    84   RewriteCond %{REQUEST_FILENAME} !-f
    85   RewriteCond %{REQUEST_FILENAME} !-d
    86   RewriteRule ^(.*)\?(.*) /moin.cgi/$1\%3f$2 [PT,L,QSA]