[PATCH] Committer: timo <timo at iera.de> new file: wiki-to-help/HHC/htmlhelp.reg new file: wiki-to-help/HHC/install_hhc.sh new file: wiki-to-help/convert.py new file: wiki-to-help/test2.xml
timo
timo at pc1.org
Fri Jul 1 07:56:18 PDT 2011
My files contain a list of its dependencies in their heads.
HHC/install_hhc.sh should be run first. convert.py converts test2.xml into several formats to test/
---
helpcontent2/wiki-to-help/HHC/htmlhelp.reg | 12 +
helpcontent2/wiki-to-help/HHC/install_hhc.sh | 60 ++++
helpcontent2/wiki-to-help/convert.py | 133 +++++++++
helpcontent2/wiki-to-help/test2.xml | 381 ++++++++++++++++++++++++++
4 files changed, 586 insertions(+), 0 deletions(-)
create mode 100644 helpcontent2/wiki-to-help/HHC/htmlhelp.reg
create mode 100755 helpcontent2/wiki-to-help/HHC/install_hhc.sh
create mode 100755 helpcontent2/wiki-to-help/convert.py
create mode 100644 helpcontent2/wiki-to-help/test2.xml
diff --git a/helpcontent2/wiki-to-help/HHC/htmlhelp.reg b/helpcontent2/wiki-to-help/HHC/htmlhelp.reg
new file mode 100644
index 0000000..e38e0ef
--- /dev/null
+++ b/helpcontent2/wiki-to-help/HHC/htmlhelp.reg
@@ -0,0 +1,12 @@
+REGEDIT4
+
+[HKEY_CURRENT_USER\Software\Wine]
+"Version"="win2k"
+
+[HKEY_CURRENT_USER\Software\Wine\AppDefaults\hhc.exe\DllOverrides]
+"itircl"="native"
+"itss"="native"
+
+[HKEY_CURRENT_USER\Software\Wine\AppDefaults\hhw.exe\DllOverrides]
+"itircl"="native"
+"itss"="native"
diff --git a/helpcontent2/wiki-to-help/HHC/install_hhc.sh b/helpcontent2/wiki-to-help/HHC/install_hhc.sh
new file mode 100755
index 0000000..ba93c78
--- /dev/null
+++ b/helpcontent2/wiki-to-help/HHC/install_hhc.sh
@@ -0,0 +1,60 @@
+#!/bin/bash -e
+# -e Exit immediately if a command exits with a non-zero status.
+
+# This installs Microsofts HHC (HTML Help Compiler)
+# Copyright 2011 Timo Richter and others.
+# Licensed under GNU GPLv3
+# Depends on: wine, wget, cabextract
+#
+# Usage of HHC: wine c:\\htmlhelp\\hhc.exe c:\\test\\htmlhelp.hhp
+#
+# Changes: Set installation directory to c:\htmlhelp
+# Copy also itcc.dll, this is neccessary
+# No execution of htmlhelp.exe installer needed
+# Abortion of install if anything fails, e.g. the download of HHC.
+#
+
+echo "Please wait"
+
+cd "$(dirname "$0")" # cd to path of this script
+
+
+WINEPREFIX=${WINEPREFIX:=$HOME/.wine}
+test -d "$WINEPREFIX" || wineprefixcreate 2>> /dev/null
+HHDIR="${WINEPREFIX}/dosdevices/c:/htmlhelp"
+mkdir "$HHDIR"
+
+# Setup the registry
+# Set Wine's Windows version to Windows 2000 (or above), and add an override to use the native itss.dll, both via winecfg.
+wine regedit htmlhelp.reg
+
+cd "$HHDIR"
+
+# Install HTML Help Workshop
+wget -O htmlhelp.exe 'http://go.microsoft.com/fwlink/?LinkId=14188'
+cabextract -F hhc.exe htmlhelp.exe
+cabextract -F HHA.dll htmlhelp.exe
+
+# Install ITSS.DLL
+cabextract -F hhupd.exe htmlhelp.exe
+cabextract -F itircl.dll hhupd.exe
+cabextract -F itss.dll hhupd.exe
+cabextract -F itcc.dll htmlhelp.exe
+cp -a itircl.dll "$WINEPREFIX/drive_c/windows/system32/"
+cp -a itcc.dll "$WINEPREFIX/drive_c/windows/system32/"
+cp -a itss.dll "$WINEPREFIX/drive_c/windows/system32/"
+wine regsvr32 'C:\WINDOWS\SYSTEM32\itcc.dll'
+wine regsvr32 'C:\WINDOWS\SYSTEM32\itircl.dll'
+wine regsvr32 'C:\WINDOWS\SYSTEM32\itss.dll'
+
+# Install MFC40.DLL
+wget -N http://activex.microsoft.com/controls/vc/mfc40.cab
+cabextract -F mfc40.exe mfc40.cab
+cabextract -F mfc40.dll mfc40.exe
+cp -a mfc40.dll "$WINEPREFIX/drive_c/windows/system32/"
+
+echo
+echo Done.
+
+exit 0
+
diff --git a/helpcontent2/wiki-to-help/convert.py b/helpcontent2/wiki-to-help/convert.py
new file mode 100755
index 0000000..5e3e400
--- /dev/null
+++ b/helpcontent2/wiki-to-help/convert.py
@@ -0,0 +1,133 @@
+#!/usr/bin/env python
+"""
+Convert an XML-Dump to platformspecific help files.
+Copyright 2011 Timo Richter
+Licensed under GNU GPLv3
+
+This program depends on:
+mwlib
+python
+python-lxml
+xsltproc
+Microsoft HHC: http://go.microsoft.com/fwlink/?LinkId=14188
+
+
+"""
+
+import xml.dom.minidom as minidom
+import subprocess, tempfile, os, shutil
+
+class Wine(object):
+ #driveletter="j:" #final
+
+ def __init__(self,workingDir,driveletter):
+ """ Setup the wine environment. Granting access so that wine is able
+ to output files to @workingDir.
+ @workingDir will be accessable via @driveletter
+ E.g. Wine("/tmp/dir","j:") """
+ homedir = os.path.expanduser('~')
+ wineprefix=os.path.join(homedir,".wine")
+ drive=os.path.join(wineprefix,"dosdevices",driveletter)
+ if os.path.exists(drive):
+ driveBak = drive+".bak"
+ shutil.move(drive,driveBak)
+ os.symlink(workingDir,drive)
+ self.drive = drive
+ self.driveBak = driveBak
+
+ def ex(self,*cmd):
+ """ execute something with wine """
+ cmd = [elem for elem in cmd]
+ cmd = ["/usr/bin/wine"]+cmd
+ r= (subprocess.Popen(cmd).wait())
+ return r
+
+ def __call__(self,*cmd):
+ return self.ex(*cmd)
+
+ def __del__(self):
+ if hasattr(self,'driveBak'):
+ os.remove(self.drive)
+ shutil.move(self.driveBak,self.drive)
+
+
+
+
+class Main(object):
+ workingDir = "./test" # final
+ mwpath='/usr/local/bin/' # final
+ style='/usr/share/xml/docbook/stylesheet/docbook-xsl/htmlhelp/htmlhelp.xsl' # final
+
+ tmp=None
+
+ def ex(self,*cmd):
+ """
+ Execute a program
+ @cmd Command, args
+ @return boolean True if succeed
+ """
+ cmd = [elem for elem in cmd]
+ print cmd
+ return (subprocess.Popen(cmd).wait() == 0)
+
+ def __init__(self):
+ self.tmp = tempfile.mkdtemp()
+
+ self.workingDir = os.path.abspath(self.workingDir)
+ self.style = os.path.abspath(self.style)
+
+ self.wine = Wine(self.tmp,"j:")
+ self.convert("test2.xml",self.workingDir)
+
+ def convert(self,source,dest):
+ """
+ Create the converted files.
+ @source XML-Dump-file
+ @dest Directory for output
+ """
+ tmp = self.tmp
+ try:
+ os.mkdir(dest)
+ except OSError:
+ pass
+
+ names = self.getArtNames(source)
+ self.ex(self.mwpath+"mw-buildcdb","--input",source,"--output",tmp) \
+ and self.ex(
+ self.mwpath+"mw-render","--config=%s/wikiconf.txt"%(tmp),
+ "-w","docbook","-o",tmp+"/docbook.xml",*names) \
+ and (shutil.copy(tmp+'/docbook.xml',dest) or True) \
+ and self.ex("/usr/bin/xsltproc","--nonet","--novalid","-o",tmp+'/',self.style,tmp+'/docbook.xml') \
+ and (self.wine("c:\\htmlhelp\\hhc.exe","j:\\htmlhelp.hhp") or True) \
+ and (shutil.copy(tmp+'/htmlhelp.chm',dest) or True)
+
+ #names = " ".join(getArtNames(source))
+ #bash = "mw-buildcdb --input '%s' --output '%s'" % (source, tmp)
+ #bash += " && mw-render --config='%s/wikiconf.txt' -w docbook -o '%s/docbook.xml'" % (tmp,dest)
+ #bash +=
+ #xsltproc --nonet --novalid work/docbook -o work/
+ #wine c:\\htmlhelp\\hhc.exe c:\\test\\htmlhelp.hhp
+ #self.ex(bash)
+
+ def __del__(self):
+ shutil.rmtree(self.tmp) # remove temp files
+ pass
+
+ def getArtNames(self,filename):
+ """
+ Get Article Names
+ Reads all title tags from an xml file and returns a list of all titles.
+ @filename XML-file
+ @return List of Strings
+ """
+ dom=minidom.parse(filename)
+ elements=dom.getElementsByTagName("title")
+ names=[]
+ for element in elements:
+ name=element.childNodes[0].data
+ names.append(name)
+ return names
+
+if __name__ == '__main__':
+ Main()
+
diff --git a/helpcontent2/wiki-to-help/test2.xml b/helpcontent2/wiki-to-help/test2.xml
new file mode 100644
index 0000000..ad0af7d
--- /dev/null
+++ b/helpcontent2/wiki-to-help/test2.xml
@@ -0,0 +1,381 @@
+<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.4/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.4/ http://www.mediawiki.org/xml/export-0.4.xsd" version="0.4" xml:lang="en">
+ <siteinfo>
+ <sitename>LibreOffice Help</sitename>
+ <base>http://gimli/Main_Page</base>
+ <generator>MediaWiki 1.16.0</generator>
+ <case>first-letter</case>
+ <namespaces>
+ <namespace key="-2" case="first-letter">Media</namespace>
+ <namespace key="-1" case="first-letter">Special</namespace>
+ <namespace key="0" case="first-letter" />
+ <namespace key="1" case="first-letter">Talk</namespace>
+ <namespace key="2" case="first-letter">User</namespace>
+ <namespace key="3" case="first-letter">User talk</namespace>
+ <namespace key="4" case="first-letter">LibreOffice Help</namespace>
+ <namespace key="5" case="first-letter">LibreOffice Help talk</namespace>
+ <namespace key="6" case="first-letter">File</namespace>
+ <namespace key="7" case="first-letter">File talk</namespace>
+ <namespace key="8" case="first-letter">MediaWiki</namespace>
+ <namespace key="9" case="first-letter">MediaWiki talk</namespace>
+ <namespace key="10" case="first-letter">Template</namespace>
+ <namespace key="11" case="first-letter">Template talk</namespace>
+ <namespace key="12" case="first-letter">Help</namespace>
+ <namespace key="13" case="first-letter">Help talk</namespace>
+ <namespace key="14" case="first-letter">Category</namespace>
+ <namespace key="15" case="first-letter">Category talk</namespace>
+ </namespaces>
+ </siteinfo>
+ <page>
+ <title>Main Page</title>
+ <id>1</id>
+ <revision>
+ <id>120128</id>
+ <timestamp>2011-02-17T21:54:02Z</timestamp>
+ <contributor>
+ <username>Kendy</username>
+ <id>2</id>
+ </contributor>
+ <comment>Added Basic help.</comment>
+ <text xml:space="preserve">{{OrigLang|Welcome to {{ProductName}} Help!}}
+Thank you for using the [http://www.documentfoundation.org/download/ {{ProductName}}] application help. Press F1 whenever you need help using the {{ProductName}} software, and you will be redirected to this site. Alternatively, you can install an off-line version of the help in your native language.
+
+If you only want to browse the help, please use the following entry points for easier navigation:
+
+* [[Writer/Welcome_to_the_Writer_Help|{{ProductName}} Writer]] (text processing)
+* [[Calc/Welcome_to_the_Calc_Help|{{ProductName}} Calc]] (spreadsheets)
+* [[Impress/Welcome_to_the_Impress_Help|{{ProductName}} Impress]] (presentations)
+* [[Draw/Welcome_to_the_Draw_Help|{{ProductName}} Draw]] (drawing)
+* [[Common/Database_1|{{ProductName}} Base]] (database processing)
+* [[Math/Welcome_to_the_Math_Help|{{ProductName}} Math]] (formula editing)
+* [[Basic/Basic_Help|{{ProductName}} Basic]] (programming using the Basic language)
+
+== How to Participate ==
+
+At the moment, we are still fine-tuning the tools converting the off-line help to the on-line form. Later, you will be able to participate, and improve the help pages. The plans are described in [http://wiki.documentfoundation.org/Development/Wikihelp The Document Foundation wiki].
+
+Consult the [http://meta.wikimedia.org/wiki/Help:Contents User's Guide] for information on using the wiki software.</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/.uno:GraphicFilterSolarize</title>
+ <id>2</id>
+ <redirect />
+ <revision>
+ <id>43159</id>
+ <timestamp>2010-12-17T15:23:21Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Common/Graphic Filter Bar#bm id3154910]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Common/Graphic_Filter_Bar#bm_id3154910]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/59886</title>
+ <id>3</id>
+ <redirect />
+ <revision>
+ <id>43160</id>
+ <timestamp>2010-12-17T15:23:21Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Common/Presentation Wizard Page 1#bm id3155136]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Common/Presentation_Wizard_Page_1#bm_id3155136]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/704807947</title>
+ <id>4</id>
+ <redirect />
+ <revision>
+ <id>43161</id>
+ <timestamp>2010-12-17T15:23:22Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Common/Accessibility#bm id3153881]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Common/Accessibility#bm_id3153881]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/.uno:SelectTable</title>
+ <id>5</id>
+ <redirect />
+ <revision>
+ <id>43162</id>
+ <timestamp>2010-12-17T15:23:22Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Writer/Table#bm id3954588]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Writer/Table#bm_id3954588]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/859636226</title>
+ <id>6</id>
+ <redirect />
+ <revision>
+ <id>43163</id>
+ <timestamp>2010-12-17T15:23:23Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Common/Address Data Source#bm id611896]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Common/Address_Data_Source#bm_id611896]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/546685977</title>
+ <id>7</id>
+ <redirect />
+ <revision>
+ <id>43164</id>
+ <timestamp>2010-12-17T15:23:24Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Common/General 2#bm id3145750]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Common/General_2#bm_id3145750]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/1417988121</title>
+ <id>8</id>
+ <redirect />
+ <revision>
+ <id>43165</id>
+ <timestamp>2010-12-17T15:23:24Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Writer/Caption#bm id7607959]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Writer/Caption#bm_id7607959]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/34666</title>
+ <id>9</id>
+ <redirect />
+ <revision>
+ <id>43166</id>
+ <timestamp>2010-12-17T15:23:25Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Common/Euro Converter Wizard#bm id3152960]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Common/Euro_Converter_Wizard#bm_id3152960]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Swriter/54892</title>
+ <id>10</id>
+ <redirect />
+ <revision>
+ <id>43167</id>
+ <timestamp>2010-12-17T15:23:25Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Redirected page to [[Writer/Define Bibliography Entry#bm id3149689]]</comment>
+ <text xml:space="preserve">#REDIRECT [[Writer/Define_Bibliography_Entry#bm_id3149689]]</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Size/da</title>
+ <id>87185</id>
+ <revision>
+ <id>131455</id>
+ <timestamp>2011-03-01T17:57:01Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|Størrelse}} <div id="bm_id3153391"></div> Sæt skriftstørrelsen for den markerede tekst. Ã
bn genvejsmenu - vælg '''Størrelse'''"</comment>
+ <text xml:space="preserve">{{Lang|Størrelse}}
+<div id="bm_id3153391"></div>
+Sæt skriftstørrelsen for den markerede tekst.
+
+Ã
bn genvejsmenu - vælg '''Størrelse'''</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Size/zh-TW</title>
+ <id>87186</id>
+ <revision>
+ <id>131456</id>
+ <timestamp>2011-03-01T17:57:02Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|大å°}} <div id="bm_id3153391"></div> è¨å®æé¸æåçåå大å°ã å³éµåè½è¡¨'''ã大å°ã'''"</comment>
+ <text xml:space="preserve">{{Lang|大å°}}
+<div id="bm_id3153391"></div>
+è¨å®æé¸æåçåå大å°ã
+
+å³éµåè½è¡¨'''ã大å°ã'''</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Size/zh-CN</title>
+ <id>87187</id>
+ <revision>
+ <id>131457</id>
+ <timestamp>2011-03-01T17:57:03Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|大å°}} <div id="bm_id3153391"></div> 设置éå®æåçåä½å¤§å°ã æå¼ä¸ä¸æèå - éæ©'''大å°'''"</comment>
+ <text xml:space="preserve">{{Lang|大å°}}
+<div id="bm_id3153391"></div>
+设置éå®æåçåä½å¤§å°ã
+
+æå¼ä¸ä¸æèå - éæ©'''大å°'''</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Size/ko</title>
+ <id>87188</id>
+ <revision>
+ <id>131458</id>
+ <timestamp>2011-03-01T17:57:04Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|í¬ê¸°}} <div id="bm_id3153391"></div> ì íí í
ì¤í¸ì ê¸ê¼´ í¬ê¸°ë¥¼ ì¤ì í©ëë¤. '''í¬ê¸°''' ì½í
ì¤í¸ ë©ë´"</comment>
+ <text xml:space="preserve">{{Lang|í¬ê¸°}}
+<div id="bm_id3153391"></div>
+ì íí í
ì¤í¸ì ê¸ê¼´ í¬ê¸°ë¥¼ ì¤ì í©ëë¤.
+
+'''í¬ê¸°''' ì½í
ì¤í¸ ë©ë´</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Creating a New Database/sv</title>
+ <id>87189</id>
+ <revision>
+ <id>131459</id>
+ <timestamp>2011-03-01T17:57:05Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|Skapa en ny databas}} <div id="bm_id6911526"></div> <!-- mw deleted "creating;" -->#Välj '''Arkiv - Nytt - Databas'''.<br/><br/>Då öppnas [[Common/Database_Wizard/sv|Da..."</comment>
+ <text xml:space="preserve">{{Lang|Skapa en ny databas}}
+<div id="bm_id6911526"></div>
+<!-- mw deleted "creating;" -->#Välj '''Arkiv - Nytt - Databas'''.<br/><br/>Då öppnas [[Common/Database_Wizard/sv|Databasguiden]] där du skapar en ny databasfil.<br/>
+#I Databasguiden väljer du typ av databas och du kan välja att öppna Tabellguiden som nästa guide.<br/><br/>I [[Common/Table_Wizard/sv|Tabellguiden]] får du hjälp med att infoga en tabell i den nya databasfilen.<br/>
+
+{{RelatedTopics|[[Common/Database_1/sv|Använda databaser i {{ProductName}} Base]]
+
+[[Common/Database_Overview/sv|Databasöversikt]]
+
+}}</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Creating a New Database/da</title>
+ <id>87190</id>
+ <revision>
+ <id>131460</id>
+ <timestamp>2011-03-01T17:57:06Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|Oprette en ny Database}} <div id="bm_id6911526"></div> <!-- mw deleted "creating;" -->#Vælg '''Filer - Ny(t) - Database'''.<br/><br/>Dette åbner [[Common/Database_Wizard..."</comment>
+ <text xml:space="preserve">{{Lang|Oprette en ny Database}}
+<div id="bm_id6911526"></div>
+<!-- mw deleted "creating;" -->#Vælg '''Filer - Ny(t) - Database'''.<br/><br/>Dette åbner [[Common/Database_Wizard/da|Databaseguiden]], hvor du kan oprette en ny databasefil.<br/>
+#I Databaseguiden vælges typen af database og vælg indstillingen for at åbne Tabelguiden som den næste guide.<br/><br/>[[Common/Table_Wizard/da|Tabelguiden]] hjælper dig med at tilføje en tabel til den nye databasefil.<br/>
+
+{{RelatedTopics|[[Common/Database_1/da|Brug af databaser i {{ProductName}} Base]]
+
+[[Common/Database_Overview/da|Databaseoversigt]]
+
+}}</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Creating a New Database/zh-TW</title>
+ <id>87191</id>
+ <revision>
+ <id>131461</id>
+ <timestamp>2011-03-01T17:57:07Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|建ç«æ°çè³æ庫}} <div id="bm_id6911526"></div> <!-- mw deleted "creating;" -->#é¸æ '''[æªæ¡] - [éåæ°æª] - [è³æ庫]'''ã<br/><br/>éæéå[[Common..."</comment>
+ <text xml:space="preserve">{{Lang|建ç«æ°çè³æ庫}}
+<div id="bm_id6911526"></div>
+<!-- mw deleted "creating;" -->#é¸æ '''[æªæ¡] - [éåæ°æª] - [è³æ庫]'''ã<br/><br/>éæéå[[Common/Database_Wizard/zh-TW|è³æ庫精é]]ï¼æ¨å¯å¨å
¶ä¸å»ºç«æ°çè³æ庫æªæ¡ã<br/>
+#å¨ãè³æ庫精éãä¸ï¼é¸åè³æ庫é¡åï¼ç¶å¾é¸åè¦éåãè¡¨æ ¼ç²¾éãä½çºä¸ä¸åç²¾éçé¸é
ã<br/><br/>[[Common/Table_Wizard/zh-TW|è¡¨æ ¼ç²¾é]]å¯åå©æ¨å¨æ°çè³æ庫æªæ¡ä¸å¢å è¡¨æ ¼ã<br/>
+
+{{RelatedTopics|[[Common/Database_1/zh-TW|å¨ {{ProductName}} Base ä¸ä½¿ç¨è³æ庫]]
+
+[[Common/Database_Overview/zh-TW|è³æ庫簡ä»]]
+
+}}</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Creating a New Database/zh-CN</title>
+ <id>87192</id>
+ <revision>
+ <id>131462</id>
+ <timestamp>2011-03-01T17:57:08Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|å建æ°æ°æ®åº}} <div id="bm_id6911526"></div> <!-- mw deleted "creating;" -->#éæ©'''æ件 - æ°å»º - æ°æ®åº'''ã<br/><br/>è¿æ ·å¯æå¼[[Common/Database_Wiz..."</comment>
+ <text xml:space="preserve">{{Lang|å建æ°æ°æ®åº}}
+<div id="bm_id6911526"></div>
+<!-- mw deleted "creating;" -->#éæ©'''æ件 - æ°å»º - æ°æ®åº'''ã<br/><br/>è¿æ ·å¯æå¼[[Common/Database_Wizard/zh-CN|æ°æ®åºå导]]ï¼å©ç¨è¯¥å导å¯å建æ°çæ°æ®åºæ件ã<br/>
+#å¨âæ°æ®åºå导âä¸ï¼éæ©æ°æ®åºç±»åï¼ç¶åéæ©æ¤é项æå¼ä½ä¸ºä¸ä¸å导çâè¡¨æ ¼å导âã<br/><br/>[[Common/Table_Wizard/zh-CN|è¡¨æ ¼å导]]å¯å¸®å©æ¨å¨æ°æ°æ®åºæ件ä¸æ·»å è¡¨æ ¼ã<br/>
+
+{{RelatedTopics|[[Common/Database_1/zh-CN|å¨ {{ProductName}} Base ä¸ä½¿ç¨æ°æ®åº]]
+
+[[Common/Database_Overview/zh-CN|æ°æ®æºæè¦]]
+
+}}</text>
+ </revision>
+ </page>
+ <page>
+ <title>Common/Creating a New Database/ko</title>
+ <id>87193</id>
+ <revision>
+ <id>131463</id>
+ <timestamp>2011-03-01T17:57:09Z</timestamp>
+ <contributor>
+ <username>WikiSysop</username>
+ <id>1</id>
+ </contributor>
+ <comment>Created page with "{{Lang|ì ë°ì´í°ë² ì´ì¤ ë§ë¤ê¸°}} <div id="bm_id6911526"></div> <!-- mw deleted "creating;" -->#'''íì¼ - ìë¡ ë§ë¤ê¸° - ë°ì´í°ë² ì´ì¤'''를 ì íí©ëë¤.<b..."</comment>
+ <text xml:space="preserve">{{Lang|ì ë°ì´í°ë² ì´ì¤ ë§ë¤ê¸°}}
+<div id="bm_id6911526"></div>
+<!-- mw deleted "creating;" -->#'''íì¼ - ìë¡ ë§ë¤ê¸° - ë°ì´í°ë² ì´ì¤'''를 ì íí©ëë¤.<br/><br/>ì ë°ì´í°ë² ì´ì¤ íì¼ì ë§ë¤ ì ìë [[Common/Database_Wizard/ko|ë°ì´í°ë² ì´ì¤ ë§ë²ì¬]]ê° ì´ë¦½ëë¤.<br/>
+#ë°ì´í°ë² ì´ì¤ ë§ë²ì¬ìì ë°ì´í°ë² ì´ì¤ ì íì ì íí ë¤ì í
ì´ë¸ ë§ë²ì¬ë¥¼ ë¤ì ë§ë²ì¬ë¡ ì¬ë ìµì
ì ì íí©ëë¤.<br/><br/>[[Common/Table_Wizard/ko|í
ì´ë¸ ë§ë²ì¬]]를 ì¬ì©íë©´ ì ë°ì´í°ë² ì´ì¤ íì¼ì í
ì´ë¸ì ì¶ê°í ì ììµëë¤.<br/>
+
+{{RelatedTopics|[[Common/Database_1/ko|{{ProductName}} Baseìì ë°ì´í°ë² ì´ì¤ ì¬ì©]]
+
+[[Common/Database_Overview/ko|ë°ì´í°ë² ì´ì¤ ê°ì]]
+
+}}</text>
+ </revision>
+ </page>
+</mediawiki>
--
1.7.5.3
--=-MiHBLfzWqNugqkWUUzVj--
More information about the LibreOffice
mailing list