Extension:Word2MediaWikiPlus/old project page

From MediaWiki.org
Jump to: navigation, search
THIS IS THE OLD PROJECT PAGE FOR THE Word2MediaWikiPlus EXTENSION.

PLEASE DON'T ADD CONTENT HERE.


Contents


[edit] About Word2MediaWikiPlus Converter

This Word Visual Basic macro converts Microsoft Word document content to MediaWiki markup.
Usage requires a running copy of Microsoft Word that supports Visual Basic macros (Word 2000 to 2003).

Ideas and bug reports please on the discussion page.

Example files of not so good working documents: please send to my eMail.
contact e-Mail: see quickinfo
This mail address changes regularly due to spam mailings.

Word2MediaWikiPlus: Download code (installer) here.
Version 0.6e (Nov. 23, 2006)

[edit] Demonstration

See a demonstration! that no longer works.

[edit] Features

converts:

  • Normal Text with formats and colors
  • Headings (Level 1 to 5)
  • Tables (also nested tables)
  • Hyperlinks
  • Lists (bulleted/numbered lists)
  • Page headers and footers
  • Footnotes
  • Images (extract and upload to wiki)
  • localized for german and english

[edit] Roadmap

Version 0.7

  • Image extraction without Photo Editor (html-export)

Version 0.8

[edit] FAQ - Frequently Asked Questions

I do not have the Microsoft Photo Editor. What can I do?
Not a problem any more. Use Version 0.7 or above.
When will be the next release?
(Un)fortunately I do have a life. Thus it is impossible to say. Whenever I find time to program.
I found a bug!
Please send me the file with a short description or use the discussion page.
I want to contribute code
Small extensions please into the discussion page. Big ones by mail.

[edit] Documentation / usage

see Extension:Word2MediaWikiPlus/Documentation

[edit] Tested Environment

[edit] Office 2000 to 2002

  • MS-Word 2000 and 2002, German or English
  • MediaWiki 1.5.3 and 1.6.5, German or English
  • Microsoft Photo Editor, German or English
  • Windows XP (without admin rights)
  • The macro has numerous CONST which can to be customized to your language and MediaWiki. You will find information in the inline documentation of the macro.
  • Most settings are done with config dialogs and stored in the registry.

[edit] Office 2003

Office 2003 works in German and English

Use the HTML-Export functionality coming with Version 0.7 (no need for MS Photo Editor)

[edit] Office 2007

The macro does not work with office 2007. Since MS does not give away trial versions anymore, I am not able to program a workaround.

The macro will hang in an endless loop, because of a word bug, which you may try on their online demo:

  • Make a new page
  • Make about five empty paragraphs (hit enter 5 times)
  • Insert one tab in the third paragraph (not an indention!)
  • Search for the tab (Ctrl+F) with the string '^p^t^p'
  • If it finds the string, replace it with '^p^p'
  • Watch how word tries endless.

Example Screenshot

If you are a bit patient you will get an out of memory error after some time (online system, not your pc).

Or try this macro on Office 2007

Sub WordBug()
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.TypeParagraph
    Selection.MoveUp Unit:=wdLine, Count:=4
    Selection.TypeText Text:=vbTab
    Selection.MoveDown Unit:=wdLine, Count:=2
    Selection.TypeText Text:=vbTab
    Selection.HomeKey Unit:=wdStory
    Selection.Find.ClearFormatting
    Selection.Find.Replacement.ClearFormatting
    With Selection.Find
        .Text = "^p^t^p"
        .Replacement.Text = "^p^p"
        .Forward = True
        .Wrap = wdFindContinue
        .Format = False
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
End Sub

[edit] Known Bugs

  • The macro uses the SendKeys command. It is a known issue, that the num lock flashes and eventually turns itself off.

[edit] Installation

[edit] Requirements

  • Microsoft Windows (Word Mac does not work)
  • MS-Word 2000 to 2003 (german or english version, other languages could work with HTML-Export, please give feedback)
  • MediaWiki (1.5+ have been tested)
  • Windows XP (without admin rights)
  • MS Internet Explorer or Firefox 2.0
  • For image conversion: MS Powerpoint
  • Old image conversion routine in V0.6d: Microsoft Photo Editor

[edit] Download

These zip-files can be unzipped by Windows XP or almost any packer software.

Note: You might get a virus warning. Some virus scanners give a virus warning to all word documents, that contain macros. And yes, if somebody alters the macro and changes the download address, the macro can mess up your system. Download is safe if downloaded from www.beadsoft.de or www.beadsoft.net (if this text has not been altered).

[edit] Code installation

[edit] Automatic process

In the download you find a word document with an installer.

[edit] Manual Process

  1. Start MS-Word
  2. Open the Installer (Word2MediaWikiPlus_Installer.doc), Demo document works as well
  3. Go into Macro organize
  4. Copy all modules to your normal.dot project
    • frmW2MWP_Config
    • frmW2MWP_Doc_Config
    • frmW2MWP_UploadImages
    • modW2MWP_FileDialog
    • modW2MWP_Registry
    • Word2MediaWikiPlus
    • Word2MediaWikiPlusGlobal
  5. create a symbol on your symbol bar for easy access: connect to macro: Normal.Word2MediaWikiPlus.Word2MediaWikiPlus
  6. create a symbol on your symbol bar for easy access: connect to macro: Normal.Word2MediaWikiPlus.Word2MediaWikiPlus_Config

[edit] Customizing

If you need to customize, look into the macro itself. It is well documented.

If you changed code, that may be helpful to others, so email me.

[edit] Translation

Need some help here. Would like to make it run on italian and swedish computers, too. Other languages highly welcome.

[edit] English texts

'SendKeys
 GetReg "EditorKeyLoadPic", "^o"              'Ctrl+o for open
 GetReg "EditorKeySavePic", "%fa"             'File save as
 GetReg "EditorKeyPastePicAsNew", "%en"       'paste as new
 GetReg "EditorPaletteKey", "p"               'change GIF Palette
      
'just fill the registry with defaults, if no value is present
'these must be present in GetRegValidate for the people that turn of writing back to registry (Demo document)
 GetReg "WikiSearchTitle", "Search -"                       'Title of browser window after search in wiki
 GetReg "WikiCategoryKeyWord", "category"                   'category key word according to your language, "category" works always
 GetReg "CategoryImagePreFix", "Images "                    'Standard Prefix to the image category, add blank at last character to separate words
 GetReg "WikiUploadTitle", "Upload"                         'Title of browser window when uploading to wiki
 GetReg "ClickChartText", "click me!"                       'clickable charts will have additional text in wiki: "click me!"
 GetReg "UnableToConvertMarker", "## Error converting ##: " 'some links can not be converted, give hint
           
 GetReg "txt_TitlePage", "Title page"
 GetReg "txt_PageHeader", "Page header"
 GetReg "txt_PageFooter", "Page footer"
 GetReg "txt_Footnote", "Footnotes"
       
'Messages; will not be stored in registry
 Msg_Upload_Info = "Now the image file upload will begin. Before you start you need to set your browser right:" & vbCr & vbCr & _
 "1. Close all sidebars like favorites." & vbCr & vbCr & _
 "2. Sign in into your wiki." & vbCr & vbCr & _
 "Do not click ok before you checked this."
 Msg_Finished = "Converting finished. Paste your clipboard contents into your wiki editor."
 Msg_NoDocumentLoaded = "No document was loaded."
 Msg_LoadDocument = "Please load the document to convert."
 Msg_CloseAll = "Please close all documents but the one you want to convert! The macro will stop now."

[edit] German texts

'SendKeys
 GetReg "EditorKeyLoadPic", "^o"
 GetReg "EditorKeySavePic", "%du"
 GetReg "EditorKeyPastePicAsNew", "%bn"
 GetReg "EditorPaletteKey", "p"
           
 GetReg "WikiSearchTitle", "Suchergebnisse -"
 GetReg "WikiCategoryKeyWord", "Kategorie"
 GetReg "CategoryImagePreFix", "Bilder "
 GetReg "WikiUploadTitle", "Hochladen"
 GetReg "ClickChartText", "Klick mich!"
 GetReg "UnableToConvertMarker", "## Fehler bei Konvertierung ##: "
       
 GetReg "txt_TitlePage", "Titelblatt"
 GetReg "txt_PageHeader", "Kopfzeile"
 GetReg "txt_PageFooter", "Fußzeile"
 GetReg "txt_Footnote", "Fußnoten"
   
'Messages
 Msg_Upload_Info = "Jetzt werden die Bilder hochgeladen. Vorher muss der Browser korrekt eingestellt sein, damit es funktioniert:" & vbCr & vbCr & _
 "1. Schließen Sie alle Seitenleisten wie z.B. die Favoriten." & vbCr & vbCr & _
 "2. Melden Sie sich an Ihrem Wiki an." & vbCr & vbCr & _
 "Klicken Sie erst OK wenn Sie dies durchgeführt haben."
 Msg_Finished = "Konvertierung beendet. Fügen Sie die Daten aus der Zwischenablage in Ihr Wiki ein."
 Msg_NoDocumentLoaded = "Es wurde kein Dokument geladen."
 Msg_LoadDocument = "Bitte laden Sie das zu konvertierende Dokument."
 Msg_CloseAll = "Bitte schließen Sie alle Dokumente bis auf das, welches Sie konvertieren möchten! Das Makro wird jetzt beendet."

[edit] Spanish texts

'SendKeys
 GetReg "EditorKeyLoadPic", "^a"              'Ctrl+a para abrir
 GetReg "EditorKeySavePic", "%fa"             'Guardar Como
 GetReg "EditorKeyPastePicAsNew", "%en"       'Pegar como neuvo
 GetReg "EditorPaletteKey", "p"               'cambiar palette GIF 
      
'terraplén justo el registro con defectos, si no hay valor presente
'éstos deben estar presentes en GetRegValidate para la gente que vuelta de escribir de nuevo al registro (el documento de la versión parcial de programa)
 GetReg "WikiSearchTitle", "Buscar -"            'Título de la ventana de browser después de la búsqueda en wiki
 GetReg "WikiCategoryKeyWord", "Categoría"       'La palabra clave de la categoría según tu lengua, “categoría” trabaja siempre
 GetReg "CategoryImagePreFix", "Imagen "         'El prefijo estándar a la categoría de la imagen, agrega el espacio en blanco en el carácter pasado a las palabras separadas
 GetReg "WikiUploadTitle", "Subir un Archivo"    'Título de la ventana de browser al uploading al wiki
 GetReg "ClickChartText", "¡Chascarme!"          'las cartas clickable tendrán texto adicional en wiki: ¡“chascarme!"
 GetReg "UnableToConvertMarker", "## Error de convertir ##: " 'Mensajes; ningún registro del en del almacenado del será
           
 GetReg "txt_TitlePage", "Portada"
 GetReg "txt_PageHeader", "Ecabezado"
 GetReg "txt_PageFooter", "Pie de página"
 GetReg "txt_Footnote", "Nota al pie"
       
'Mensajes; no será almacenado en registro
 Msg_Upload_Info = "Ahora el upload del archivo de la imagen comenzará. Antes de que te comiences necesidad de fijar la tu derecha del browser:" & vbCr & vbCr & _
 "1. Cerrar todo barras laterales como marcadores." & vbCr & vbCr & _
 "2. Registrarse a su wiki." & vbCr & vbCr & _
 "No tecleo acepter antes de comprobar esto."
 Msg_Finished = "Convertier Listo. Pegar su contentido portapapeles en su editor de wiki."
 Msg_NoDocumentLoaded = "No se cargó ningún documento."
 Msg_LoadDocument = "Cargar por favor el documento para convertir."
 Msg_CloseAll = "¡Cerrar por favor todos los documentos pero el que deseas convertir! La macro ahora parará."

[edit] French texts

'SendKeys
 GetReg "EditorKeyLoadPic", "^o"              'Ctrl+o pour ouvrir
 GetReg "EditorKeySavePic", "%fa"             'Sauvegarder sous
 GetReg "EditorKeyPastePicAsNew", "%en"       'coller en tant que nouveau
 GetReg "EditorPaletteKey", "p"               'changer la palette GIF
      
'Juste mettre des valeurs pas défaut dans la base de registres, si aucune valeur n'est présente
'celles-ci doivent être présentes dans GetRegValidate pour ceux qui empêchent l'écriture dans la base de registres (Document de démo)
 GetReg "WikiSearchTitle", "Rechercher -"                       'Titre de la fenêtre du navigateur après une recherche dans le wiki
 GetReg "WikiCategoryKeyWord", "catégorie"                   'mot-clé de catégorie d'après votre langue, "category" fonctionne toujours
 GetReg "CategoryImagePreFix", "Images "                    'Préfixe standard de la catégorie des images, ajoutez une espace pour séparer les mots
 GetReg "WikiUploadTitle", "Télécharger"                         'Titre de la fenêtre du navigateur pendant le téléchargement vers le wiki
 GetReg "ClickChartText", "cliquez moi !"                       'Les graphes cliquables dans le wiki auront un nouveau texte : "cliquez moi !"
 GetReg "UnableToConvertMarker", "## Erreur de conversion de ##: " 'certains liens ne peuvent pas être convertis, donnez un indice
           
 GetReg "txt_TitlePage", "Page de titre"
 GetReg "txt_PageHeader", "En-tête de page"
 GetReg "txt_PageFooter", "Pied de page"
 GetReg "txt_Footnote", "Notes de bas de page"
       
'Messages; ne seront pas sauvegardés dans la base de registres
 Msg_Upload_Info = "Maintenant le fichier image va être téléchargé. Avant de commencer, vous devez organiser correctement votre navigateur :" & vbCr & vbCr & _
 "1. Fermez toutes les fenêtres latérales comme celle des favoris." & vbCr & vbCr & _
 "2. Identifiez vous dans votre wiki." & vbCr & vbCr & _
 "Ne cliquez pas sur OK avant d'avoir vérifé tout cela."
 Msg_Finished = "Conversion terminée. Collez le contenu du bloc-note dans l'éditeur du wiki."
 Msg_NoDocumentLoaded = "Aucun document n'a été chargé."
 Msg_LoadDocument = "Veuillez charger le document à convertir."
 Msg_CloseAll = "Veuillez fermer tous les documents sauf celui que vous souhaitez convertir ! La macro va maintenant s'arrêter."

[edit] Dutch texts

'SendKeys
 GetReg "EditorKeyLoadPic", "^o"              'Ctrl+o om te openen
 GetReg "EditorKeySavePic", "%fa"             'Bestand opslaan als
 GetReg "EditorKeyPastePicAsNew", "%en"       'plakken als nieuw
 GetReg "EditorPaletteKey", "p"               'verander GIF Palet
      
'vul de registry in met de defaults, als er geen waarde is
'deze moeten aanwezig zijn in de GetRegValidate voor mensen die het schrijven naar de registry uit hebben staan(Demo document)
 GetReg "WikiSearchTitle", "Zoeken -"                       'Titel of het browser venster na het zoeken in wiki
 GetReg "WikiCategoryKeyWord", "categorie"                   'categorie sleutel woord naar gelang de taal, "category" werkt altijd
 GetReg "CategoryImagePreFix", "Afbeelding "                    'Standaard Prefix van de afbeelding categorie, voeg een spatie toe aan het laatste karakter om de worden te scheiden
 GetReg "WikiUploadTitle", "Upload"                         'Titel van het browser venster tijdens het uploaden naar wiki
 GetReg "ClickChartText", "klik mij!"                       'Grafieken die aangeklikt kunnen worden in wiki hebben een extra tekst: "Klik mij!"
 GetReg "UnableToConvertMarker", "## converteer Error ##: " 'sommige links kunnen niet geconverteerd  worden, geef een hint
           
 GetReg "txt_TitlePage", "Hoofdpagina"
 GetReg "txt_PageHeader", "Koptekst"
 GetReg "txt_PageFooter", "Voettekst"
 GetReg "txt_Footnote", "Voetnoten"
       
'Messages; zullen niet worden opgeslagen in de registry
 Msg_Upload_Info = "Nu zal de afbeelding upload beginnen. Voordat je begint moet je je internet browser goed zetten:" & vbCr & vbCr & _
 "1. SLuit alle zijbalken zoals bladwijzers of favorieten." & vbCr & vbCr & _
 "2. Meld je aan bij je wiki." & vbCr & vbCr & _
 "Klik niet op ok voordat je dit gecontroleerd hebt."
 Msg_Finished = "Converteren klaar. Plak de klembord inhoud in je wiki editor."
 Msg_NoDocumentLoaded = "Het document is niet geladen."
 Msg_LoadDocument = "AUB laad de documenten om te converteren."
 Msg_CloseAll = "AUB sluit alle documenten behalve degene die je wilt converteren! De macro zal nu stoppen."

[edit] Russian texts

'SendKeys
 GetReg "EditorKeyLoadPic", "^o"              'Ctrl+o for open
 GetReg "EditorKeySavePic", "%fa"             'File save as
 GetReg "EditorKeyPastePicAsNew", "%en"       'paste as new
 GetReg "EditorPaletteKey", "p"               'change GIF Palette
      
'просто оставте значения регистра по умолчанию, если значения не определены
 GetReg "WikiSearchTitle", "Результаты поиска"                       'Title of browser window after search in wiki
 GetReg "WikiCategoryKeyWord", "Категории"                   'category key word according to your language, "category" works always
 GetReg "CategoryImagePreFix", "Images "                    'Standard Prefix to the image category, add blank at last character to separate words
 GetReg "WikiUploadTitle", "Загрузить файл"                         'Title of browser window when uploading to wiki
 GetReg "ClickChartText", "click me!"                       'clickable charts will have additional text in wiki: "click me!"
 GetReg "UnableToConvertMarker", "## Error converting ##: " 'some links can not be converted, give hint
           
 GetReg "txt_TitlePage", "Заглавная страница"
 GetReg "txt_PageHeader", "Заголовок страницы"
 GetReg "txt_PageFooter", "Page footer"
 GetReg "txt_Footnote", "Примечания"
       
'Сообщения не сохраняемые в реестре
 Msg_Upload_Info = "Сейчас начнется загрузка сообщений. Перед началом правильно настройте окно проводника Интернет:" & vbCr & vbCr & _
 "1. Закройте все панели вроде Закладки." & vbCr & vbCr & _
 "2. Войдите под своим логином в Wiki." & vbCr & vbCr & _
 "Не нажимайте ОК пока не сделаете это!"
 Msg_Finished = "Конвертация завершена.Вставте текст из буфера обмена в редактор WiKi"
 Msg_NoDocumentLoaded = "Документы не загружены."
 Msg_LoadDocument = "Пожалуйста загрузите документ в конвертер."
 Msg_CloseAll = "Пожалуйста закройте все документы кроме того который нужно сконвертировать! Макрос остановлен."

[edit] Portuguese (Brazilian) texts

'SendKeys
'Esta seção não foi traduzida nem verificada. A versão 0.7 não precisa do Photo Editor.
SetReg "EditorKeyLoadPic", "^o"              'Ctrl+o for open
SetReg "EditorKeySavePic", "%fa"             'File save as
SetReg "EditorKeyPastePicAsNew", "%en"       'paste as new
SetReg "EditorPaletteKey", "p"               'change GIF Palette

'Preencher o registro com valores padrão, se não houver nenhum valor
'Devem estar presentes em setregValidate para quem desativou a gravação no registro (documento de exemplo)
SetReg "WikiSearchTitle", "Buscar resultados -"         'Título da janela do navegador após pesquisar na wiki
SetReg "WikiCategoryKeyWord", "Categoria"     'Palavra-chave de categoria de acordo com a sua linguagem. "category" sempre funciona.
If GetReg("CategoryImagePreFix") = "not set" Then SetReg "CategoryImagePreFix", "Imagens de "      'Prefixo padrão para a categoria de imagens. Adicione um espaço em branco no final para separar as palavras.
SetReg "WikiUploadTitle", "Carregar arquivo"           'Título da janela do navegador quando está carregando um arquivo na wiki.
SetReg "ClickChartText", "clique aqui"         'Gráficos clicáveis terão um texto adicional na wiki: "clique aqui"
SetReg "UnableToConvertMarker", "## Erro de conversão ##: " 'Algumas ligações não podem ser convertidas. Avisar.

SetReg "txt_TitlePage", "Página de título"
SetReg "txt_PageHeader", "Cabeçalho da página"
SetReg "txt_PageFooter", "Rodapé da página"
SetReg "txt_Footnote", "Notas de rodapé"

'Mensagens; não serão armazenadas no registro
Msg_Upload_Info = "Agora o carregamento de imagens vai começar. Primeiro você precisa ajustar o seu navegador:" & vbCr & vbCr & _
"1. Feche todas as barras laterais (por exemplo, favoritos)." & vbCr & vbCr & _
"2. Autentique-se na sua wiki." & vbCr & vbCr & _
"Não aperte OK antes de ter feito isto."
Msg_Finished = "Conversão concluída. Cole o conteúdo da área de transferência no editor da sua wiki."
Msg_NoDocumentLoaded = "Não foi carregado nenhum documento."
Msg_LoadDocument = "Por favor carregue o documento a converter."
Msg_CloseAll = "Por favor feche todos os documentos menos aquele que você quer converter. A macro vai parar agora."

[edit] Credits

  • The first version of this converter seems from Swythan at TikiWiki
  • A slightly modified version is Word2Wiki from InfPro IT-Solutions.
  • By now each function has been completly reprogrammed.
  • For the numerous api descriptions I thank The KPD-Team.
  • And of course: A lot of work of me: Gunter Schmidt (eMail see above). Have a look at my website.

[edit] Version Info

[edit] Version 0.7 Pre-Release Word2MediaWikiPlus

Released: November 12, 2006
This release now has export for Word 2003.
Note: There are still some bugs present and I will update fairly fast, so I do not bother with version numbers.

  • BugFix: Turn of hyphenation before converting
  • BugFix: lists in tables work now
  • BugFix: headers in tables work now
  • BugFix: fixed error with msoCanvas pictures
  • BugFix: fixed error Confic Dialog, did not find MS Photo Editor
  • Feature: Images will now be exported with html-converting (needed for Word 2003)
  • Feature: Images will now be copied to special upload directory when uploaded to wiki
  • Feature: Images will now be saved in separate folders for each document (HTML-Export only)
  • Feature: recognize "forced blanks" and replace with  
  • Feature: converts form fields into text
  • Feature: comments are ignored
  • Feature: cell_justify switch implemented. Since MediaWiki will not support the justify tag, it is now removed. Search for "cell_justify".
  • Feature: numbered lists which use symbols will be converted to bullet lists
  • Changed: Replacement function now works with a range object, which is faster and more reliable
  • Changed: Replaced some SendKeys with SendMessage
  • Changed: FontFormat now uses more sizes then big and small
  • Changed: Category handling in Formular


[edit] Version 0.6 Word2MediaWikiPlus

Released: June 17, 2006

Changes:

  • Feature: Dialog for Article name and categories
  • Feature: Using registry to store user values
  • Feature: Installation routine (in separate document)
  • Feature: Converts footnotes
  • Feature: table width and alignment
  • Feature: framed and colored paragraphs
  • Feature: Icons of applications now will be saved separatly to prevent double uploading
  • Feature: User Headings based on the build in Headings will be correctly recognized
  • Feature: Word 2002 uses internal PNG copy function for better image extraction
  • Feature: Tables cells with dark background will get white font
  • Feature: Textboxes will be converted to framed tables
  • Feature: Added PreFix for Imagefiles
  • Feature: Manually numbered lists -> Word numbering will be used
  • Feature: Optional use SnagIt for converting screenshots
  • Changed: Manually created tab tables do not have a frame anymore
  • Changed: Const values for categories
  • Changed: Discontinued option to save to BMP and convert with MS Photo Editor. Now it will always paste in MS Photo Editor and then save the desired format.
  • Changed: Font size from big and small to font 1 to 7
  • Changed: Discontinued internal BMP conversion
  • BugFix: Formatting in tables, needed a workaround for a word bug
  • BugFix: Merged Cells did not work all the times

[edit] Version 0.6.b

  • Feature: Image Upload Dialog
  • Changed: User language will be detected
  • Changed: Macro remembers article name for the last document

[edit] Version 0.6.c

Released: Nov. 5, 2006

  • BugFix: Now allows converting without MS Photo Editor (without pictures)
  • BugFix: SearchPage did not work on systems that needed title =
  • BugFix: remembers last used system for upload (test / prod)
  • Changed: Image upload function now does not rely on vb components (Manfred Gerwing)
  • Changed: FontColor converter a bit faster (Hal Eden)

[edit] Version 0.6.d

Released: Nov. 11, 2006

  • BugFix: fixed error with msoCanvas pictures
  • BugFix: fixed error Confic Dialog, did not find MS Photo Editor

[edit] Version 0.6.e

Released: Nov. 23, 2006

  • Feature: French, Spanish, Dutch, (russian untested) added
  • Feature: litte advancements with the installation document (symbol bar handling)

[edit] Version 0.5 Word2MediaWikiPlus

Released: June 04, 2006

Changes:

  • BugFix: Macro crashed if Icon returned error
  • BugFix: FontSize could go into endless loop
  • BugFix: Escape characters did not work correctly, if document contained "*"
  • BugFix: some tables did not merge correctly
  • BugFix: superscript and subscript
  • BugFix: text colors in tables
  • BugFix: some bugs with combined format like colored and bold
  • BugFix: exclude hyperlinks that have targets within the document
  • Changed Upload function, customizing the keystrokes, use CheckWikiUpload to test
  • Changed Picture Export to Paste with MS Photo Editor (works a lot better)
  • Feature: Nested tables
  • Feature: CheckWikiUpload test
  • Feature: ImagePasteInEditor which works better (now we might go with Word97 again (but color problem remains)
  • Feature: "manual tables" conversion, converts tables that are made with tab stops
  • Feature: PageHeader and PageFooter (optional)
  • Feature: delete hidden text (optional)
  • Feature: Macro can be started from a special macro document (Name must include the term Word2MediaWikiPlus; must not include the term Demo)
  • no need for Default Paragraph Style anymore
  • localization for en and de, other languages can be added
  • code reorganisation and optimization
  • some minor changes and bugfixes

[edit] Version 0.4 Word2MediaWikiPlus

Changes:

  • images: added function to convert all images into .jpg or .png with Microsoft Photo Editor
  • images: added function to automaticall upload to your wiki
  • tables: tables with background colors
  • tables: tables with line breaks
  • tables: tables with merged cells
  • text: fixed bug with combined formats
  • text: added simple fontsize
  • text: added simple indention of paragraphs
  • general: wiki page display: When the macro is finished it will search for the document title in your wiki.
  • general: reorganised code
  • general: removed hourglass
  • general: styles localized
  • general: Word97 disabled with message

[edit] Version 0.3 Word2MediaWikiPlus

Released May 26, 2006.

Changes:

  • general: added some const to customize this
  • general: added hourglass and statustext
  • text: added text color
  • tables: added blank space in empty cells
  • tables: added alignment of text
  • tables: added tableformat string, const TableTemplate
  • hyperlinks: redesign: changed html and file-links, others will not be converted
  • images: added function to save all pictures of the document as .bmp and replace with Image-Tag
  • paragraph spacing: added manual line break and MediaWiki-like paragraphs
  • cleanup-function
Personal tools
Namespaces
Variants
Actions
Site
Support
Download
Development
Communication
Print/export
Toolbox