ConfluenceConverter

Annotated TO_DO.txt

103:e425db7daf23
2013-07-17 Paul Boddie Fixed the mappings script name.
paul@100 1
Enhancements
paul@100 2
============
paul@100 3
paul@100 4
User and timestamp recording
paul@100 5
paul@100 6
  (Attempt to enforce user-switching in the page import script)
paul@100 7
paul@100 8
Comment ownership and presentation
paul@100 9
paul@100 10
  (Generate an ACL for each comment page)
paul@100 11
paul@100 12
  Generate a user profile box linking to a user's profile image
paul@100 13
paul@100 14
User imports
paul@100 15
paul@100 16
  Investigate user information in any export files
paul@100 17
paul@100 18
    Probably absent, see:
paul@100 19
    https://confluence.atlassian.com/display/CONFKB/How+to+Export+User+Data+to+CSV+in+Confluence
paul@100 20
paul@100 21
    The following may be JIRA-related:
paul@100 22
    https://confluence.atlassian.com/display/AOD/Exporting+wiki+data
paul@100 23
paul@100 24
  Alternatively, just collect user details from the combined history details
paul@100 25
paul@100 26
  Make ACL-protected pages for all users, including any profile images as
paul@100 27
  attachments
paul@100 28
paul@100 29
User activity
paul@100 30
paul@100 31
  Consider incorporating activity information for each user using a macro
paul@100 32
  placed on user home pages
paul@100 33
paul@100 34
paul@100 35
paul@100 36
Issues
paul@100 37
======
paul@100 38
paul@59 39
DEV/GSoC 2011 - Conversion from Confluence wiki to Moin (11960378)
paul@59 40
paul@59 41
  End tags for strong, em immediately followed by start tags for strong, em
paul@59 42
  that would cause conflicts in the generated Moin markup should be translated
paul@59 43
  with spaces separating them
paul@59 44
paul@53 45
Handle page renaming (add redirects, perhaps support comments on old revisions):
paul@52 46
paul@52 47
  DOC/Making Sure Your Lists Are Private (10715350) renamed from
paul@52 48
  DOC/Making Sure Your List Is Private
paul@52 49
paul@54 50
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)
paul@54 51
paul@54 52
  @ in the text causes mailto: auto-linking
paul@54 53
paul@45 54
COM/donate to the GNU Mailman project (4816967)
paul@45 55
paul@57 56
  (Ill-formed markup/XHTML causes the link to fail)
paul@57 57
  This needs implementing for Confluence syntax
paul@45 58
paul@83 59
DEV/benste's GSoc 2011 - page (14352747)
paul@83 60
paul@83 61
  Confluence: Suppress formatting in headings; investigate weird list attempts in tables
paul@83 62
paul@45 63
DOC/Mailman 2.1 Members Manual (786442)
paul@45 64
paul@45 65
  wiki.list.org link recognition
paul@45 66
paul@45 67
Make redirect pages so that COM redirects to COM/Home, and so on.
paul@45 68
paul@45 69
Page identifier links: http://wiki.list.org/pages/viewpage.action?pageId=4816921 (COM/Home)
paul@45 70
paul@83 71
paul@83 72
paul@83 73
Mostly Handled
paul@83 74
==============
paul@83 75
paul@100 76
Macros: {toc}
paul@100 77
paul@83 78
DEV/A 5 Minute Guide to Get the Mailman Web UI Running (only for development) (13303877)
paul@83 79
paul@83 80
  (Preformatted regions on their own line might be converted into proper sections)
paul@83 81
  This was hopefully fixed by recognising that such regions are not inline
paul@83 82
  formatting directives
paul@83 83
paul@83 84
  This may affect both markup types but this page seems not to be available in
paul@83 85
  the XHTML format
paul@83 86
paul@83 87
DOC/Do you offer Mailman hosting%2C consulting%2C or contractor services%3F (4030519)
paul@83 88
paul@83 89
  (Links to other spaces need fixing in the XHTML format)
paul@83 90
  Other link styles might be lurking elsewhere
paul@83 91
paul@83 92
DOC/Integrating Mailman with postfix (12517386)
paul@83 93
paul@83 94
  (file: causes a link to be created)
paul@83 95
  This was caused by a preformatted "code" region appearing directly after "file:" and not on a separate line
paul@83 96
paul@45 97
Comment numbering:
paul@45 98
paul@45 99
  Page #33 (Mailman 2.2) -> BodyContent #26
paul@45 100
                         -> Comment #144, #149, #177...
paul@45 101
paul@45 102
  BodyContent #26 -> ...
paul@45 103
paul@45 104
  Comment #144 -> BodyContent #112
paul@45 105
paul@45 106
  BodyContent #112 -> In the Spam Defense section...
paul@45 107
paul@64 108
Question marks in titles (mod_rewrite issue)
paul@64 109
paul@64 110
  Nasty hack to work around the problem:
paul@64 111
paul@64 112
  RewriteCond %{REQUEST_FILENAME} !-f
paul@64 113
  RewriteCond %{REQUEST_FILENAME} !-d
paul@64 114
  RewriteRule ^(.*)\?(.*)\?(.*)\?(.*) /moin.cgi/$1\%3f$2\%3f$3\%3f$4 [PT,L,QSA]
paul@64 115
paul@64 116
  RewriteCond %{REQUEST_FILENAME} !-f
paul@64 117
  RewriteCond %{REQUEST_FILENAME} !-d
paul@64 118
  RewriteRule ^(.*)\?(.*)\?(.*) /moin.cgi/$1\%3f$2\%3f$3 [PT,L,QSA]
paul@64 119
paul@64 120
  RewriteCond %{REQUEST_FILENAME} !-f
paul@64 121
  RewriteCond %{REQUEST_FILENAME} !-d
paul@64 122
  RewriteRule ^(.*)\?(.*) /moin.cgi/$1\%3f$2 [PT,L,QSA]