Discussion:
IBM Joins OpenOffice.org Community With Full Force!
valery_vi
2007-09-11 06:03:34 UTC
Permalink
efytimes wrote:
"
Monday, September 10, 2007: IBM has joined the OpenOffice.org
community to collaborate on the development of OpenOffice.org software.
"
http://www.efytimes.com/efytimes/21516/news.htm

It's time to Open Office, I think

Valery
valery_vi
2007-09-11 06:24:22 UTC
Permalink
BTW. MS created Windows Live Translator:

http://translator.live.com/Default.aspx

I tried to translate this part of article mentioned into Russian
(foreward):
"
Monday, September 10, 2007: IBM has joined the OpenOffice.org
community to collaborate on the development of OpenOffice.org
software. OpenOffice.org now has the support of two industry giants
Sun and IBM. IBM will be making initial code contributions that it has
been developing as part of its Lotus Notes product, including
accessibility enhancements, and will be making ongoing contributions
to the feature richness and code quality of OpenOffice.org. Besides
working with the community on the free productivity suite's software,
IBM will also leverage OpenOffice.org technology in its products.
"

and gave the following (to view it you should use windows-1251
characters!)
"
Âòîðíèê 10-îå ñåíòÿáðÿ 2007: IBM ñîåäèíÿëî îáùèíó OpenOffice.org äëÿ
òîãî ÷òîáû ñîòðóäíè÷àòü íà ðàçâèòèè ïðîãðàìíîãî îáåñïå÷åíèÿ
OpenOffice.org. OpenOffice.org òåïåðü èìååò ïîääåðæêó 2 ãèãàíòîâ
èíäóñòðèè Sun è IBM. IBM áóäåò äåëàòü íà÷àëüíûå âêëàäû Êîäà êîòîðûå
îíî íà÷èíàëî êàê ÷àñòü ñâîåãî ïðîäóêòà Lotus Notes, âêëþ÷àÿ ïîâûøåíèÿ
äîñòóïíîñòè, è áóäåò äåëàòü ïðîäîëæàþùèéñÿ âêëàäû ê íàâàðèñòîñòè
õàðàêòåðèñòèêè è çàêîäèðîâàòü êà÷åñòâî OpenOffice.org. Êðîìå ðàáîòû ñ
îáùèíîé íà ïðîãðàìíîì îáåñïå÷åíèè ñâîáîäíîé ñþèòû óðîæàéíîñòè, IBM
òàêæå leverage òåõíîëîãèÿ OpenOffice.org â ñâîèõ ïðîäóêòàõ.
"

And after then I tried to translate this Russian translation above
into English (backward). It gave the following:

"
Monday, September 10, 2007: IBM of has of joined of the
OpenOffice.org community to of collaborate on of the of development of
OpenOffice.org software. OpenOffice.org now of has of the of support
of of two of industry of giants Of sun and IBM. IBM of will be of
making of initial of code of contributions of that it of has of been
of developing as of part of of its Of lotus Of notes of product,
including of accessibility of enhancements, and will be of making of
ongoing of contributions to of the of feature of richness and code of
quality of OpenOffice.org. Besides of working of with of the of
community on of the of free of productivity of suite's of software,
IBM of will of also of leverage OpenOffice.org technology in of its of
products.
"

No comments...

Valery
Post by valery_vi
"
Monday, September 10, 2007: IBM has joined the OpenOffice.org
community to collaborate on the development of OpenOffice.org software.
"
http://www.efytimes.com/efytimes/21516/news.htm
It's time to Open Office, I think
Valery
John R. Dennison
2007-09-11 06:44:09 UTC
Permalink
The rest of this totally off-topic message removed.

Why is this being posted to this list? Please correct me if I
am wrong, but isn't this list supposed to be about AutoIT?

What does IBM & OpenOffice have to do with AutoIT?

What does the Russian language translation (and back to
English) have to to with AutoIT?

Can we please stay on-topic?



John
--
"I'm sorry but our engineers do not have phones."
As stated by a Network Solutions Customer Service representative when asked to
be put through to an engineer.

"My other computer is your windows box."
Ralf Hildebrandt
<sxem> trying to play sturgeon while it's under attack is apparently not fun.


[Non-text portions of this message have been removed]
valery_vi
2007-09-11 07:47:05 UTC
Permalink
Post by John R. Dennison
Why is this being posted to this list? Please correct me if I
am wrong, but isn't this list supposed to be about AutoIT?
Yes. That's right.
Post by John R. Dennison
What does IBM & OpenOffice have to do with AutoIT?
This group has members which early automated OpenOffice tools, though.
Post by John R. Dennison
What does the Russian language translation (and back to
English) have to to with AutoIT?
2. There is ATranslation script in Files/Misc of this group. So I
tried to use this Windows Live Translator to automate their online
service. My first result of service testing is here.
Post by John R. Dennison
Can we please stay on-topic?
I'm doing all to be in thread. It seems to be almost in IT which you
can automate. Isn't it?

:-)

Valery
Post by John R. Dennison
The rest of this totally off-topic message removed.
Why is this being posted to this list? Please correct me if I
am wrong, but isn't this list supposed to be about AutoIT?
What does IBM & OpenOffice have to do with AutoIT?
What does the Russian language translation (and back to
English) have to to with AutoIT?
Can we please stay on-topic?
John
--
"I'm sorry but our engineers do not have phones."
As stated by a Network Solutions Customer Service representative when asked to
be put through to an engineer.
"My other computer is your windows box."
Ralf Hildebrandt
<sxem> trying to play sturgeon while it's under attack is apparently not fun.
[Non-text portions of this message have been removed]
valery_vi
2007-09-11 10:56:57 UTC
Permalink
To be more clear I add this script 'ToPDF' (written by me, 11 October
2005). It shows how one can convert MS Office DOC (and text) file into
PDF.

Global $SM, $Desktop, $Document, $Url
$SM = ObjCreate("com.sun.star.ServiceManager")
$Desktop = $SM.createInstance("com.sun.star.frame.Desktop")

$FileName = FileOpenDialog( "Choose a file.", @ScriptDir, "MS Office
Files (*.doc;*.txt)", 1 )
if @Error then
MsgBox(0, $ScriptTitle, "MS Office Document skipped")
exit
endif
if StringRight($FileName, 3) = "doc" then
$Ext = ".doc"
else
$Ext = StringRight($FileName, 4)
endif

$Url = "file:///" & StringReplace($FileName, "\", "/")
MsgBox(0, "PDFConverter", "OpenFile Url is " & $Url )
OpenFile($Url)

$Url = StringReplace($Url,$Ext,".pdf")
MsgBox(0, "PDFConverter", "SaveFile Url is " & $Url )

SaveFile($Url)
exit

;================================
; Open Document
func OpenFile($Url)
dim $D, $p
$D = ObjCreate("Scripting.Dictionary")
$p = $SM.Bridge_GetStruct("com.sun.star.beans.PropertyValue")
$p.Name = "Hidden"
$p.Value = True
$D.Add(0,$p)
$Document = $Desktop.LoadComponentFromURL($URL,"_blank",0,$D.Items)
endfunc

;================================
; Save Document as PDF file
func SaveFile($Url)
dim $R, $fp0, $fp1, $fp2, $fp3
$R = ObjCreate("Scripting.Dictionary")

;Set filter name
$p0 = $SM.Bridge_GetStruct("com.sun.star.beans.PropertyValue")
$p0.Name = "FilterName"
$p0.Value = "writer_pdf_Export"
$R.Add(0,$p0)

;Set compession mode
$p1 = $SM.Bridge_GetStruct("com.sun.star.beans.PropertyValue")
$p1.Name = "CompressionMode"
$p1.Value = "1"
$R.Add(1,$p1)

;Set count of pages
$p2 = $SM.Bridge_GetStruct("com.sun.star.beans.PropertyValue")
$p2.Name = "Pages"
$p2.Value = "All"
$R.Add(2,$p2)

;Set overwrite mode
$p3 = $SM.Bridge_GetStruct("com.sun.star.beans.PropertyValue")
$p3.Name = "Overwrite"
$p3.Value = "1"
$R.Add(3,$p3)

$Document.StoreToURL($Url,$R.Items)
endfunc

Now AutoIt's script of this kinds will be more actual, I think.

Enjoy,
Valery
Post by valery_vi
Post by John R. Dennison
Why is this being posted to this list? Please correct me if I
am wrong, but isn't this list supposed to be about AutoIT?
Yes. That's right.
Post by John R. Dennison
What does IBM & OpenOffice have to do with AutoIT?
This group has members which early automated OpenOffice tools, though.
Post by John R. Dennison
What does the Russian language translation (and back to
English) have to to with AutoIT?
2. There is ATranslation script in Files/Misc of this group. So I
tried to use this Windows Live Translator to automate their online
service. My first result of service testing is here.
Post by John R. Dennison
Can we please stay on-topic?
I'm doing all to be in thread. It seems to be almost in IT which you
can automate. Isn't it?
:-)
Valery
Post by John R. Dennison
The rest of this totally off-topic message removed.
Why is this being posted to this list? Please correct me if I
am wrong, but isn't this list supposed to be about AutoIT?
What does IBM & OpenOffice have to do with AutoIT?
What does the Russian language translation (and back to
English) have to to with AutoIT?
Can we please stay on-topic?
John
--
"I'm sorry but our engineers do not have phones."
As stated by a Network Solutions Customer Service representative
when asked to
Post by John R. Dennison
be put through to an engineer.
"My other computer is your windows box."
Ralf Hildebrandt
<sxem> trying to play sturgeon while it's under attack is apparently
not fun.
Post by John R. Dennison
[Non-text portions of this message have been removed]
J. V.
2007-09-11 11:52:26 UTC
Permalink
Chill dude.

We are here to learn about what AutoIt can do and AutoIt can do many things.

Allow me to present you the *delete* key.. handy eh.


_____

From: ***@yahoogroups.com [mailto:***@yahoogroups.com] On
Behalf Of John R. Dennison
Sent: Tuesday, September 11, 2007 2:44 AM
To: valery_vi
Cc: ***@yahoogroups.com
Subject: Re: [AutoIt] Re: IBM Joins OpenOffice.org Community With Full
Force!
The rest of this totally off-topic message removed.

Why is this being posted to this list? Please correct me if I
am wrong, but isn't this list supposed to be about AutoIT?

What does IBM & OpenOffice have to do with AutoIT?

What does the Russian language translation (and back to
English) have to to with AutoIT?

Can we please stay on-topic?

John
--
"I'm sorry but our engineers do not have phones."
As stated by a Network Solutions Customer Service representative when asked
to
be put through to an engineer.

"My other computer is your windows box."
Ralf Hildebrandt
<sxem> trying to play sturgeon while it's under attack is apparently not
fun.

[Non-text portions of this message have been removed]







[Non-text portions of this message have been removed]
valery_vi
2007-09-11 06:24:24 UTC
Permalink
BTW. MS created Windows Live Translator:

http://translator.live.com/Default.aspx

I tried to translate this part of article mentioned into Russian
(foreward):
"
Monday, September 10, 2007: IBM has joined the OpenOffice.org
community to collaborate on the development of OpenOffice.org
software. OpenOffice.org now has the support of two industry giants
Sun and IBM. IBM will be making initial code contributions that it has
been developing as part of its Lotus Notes product, including
accessibility enhancements, and will be making ongoing contributions
to the feature richness and code quality of OpenOffice.org. Besides
working with the community on the free productivity suite's software,
IBM will also leverage OpenOffice.org technology in its products.
"

and gave the following (to view it you should use windows-1251
characters!)
"
Âòîðíèê 10-îå ñåíòÿáðÿ 2007: IBM ñîåäèíÿëî îáùèíó OpenOffice.org äëÿ
òîãî ÷òîáû ñîòðóäíè÷àòü íà ðàçâèòèè ïðîãðàìíîãî îáåñïå÷åíèÿ
OpenOffice.org. OpenOffice.org òåïåðü èìååò ïîääåðæêó 2 ãèãàíòîâ
èíäóñòðèè Sun è IBM. IBM áóäåò äåëàòü íà÷àëüíûå âêëàäû Êîäà êîòîðûå
îíî íà÷èíàëî êàê ÷àñòü ñâîåãî ïðîäóêòà Lotus Notes, âêëþ÷àÿ ïîâûøåíèÿ
äîñòóïíîñòè, è áóäåò äåëàòü ïðîäîëæàþùèéñÿ âêëàäû ê íàâàðèñòîñòè
õàðàêòåðèñòèêè è çàêîäèðîâàòü êà÷åñòâî OpenOffice.org. Êðîìå ðàáîòû ñ
îáùèíîé íà ïðîãðàìíîì îáåñïå÷åíèè ñâîáîäíîé ñþèòû óðîæàéíîñòè, IBM
òàêæå leverage òåõíîëîãèÿ OpenOffice.org â ñâîèõ ïðîäóêòàõ.
"

And after then I tried to translate this Russian translation above
into English (backward). It gave the following:

"
Monday, September 10, 2007: IBM of has of joined of the
OpenOffice.org community to of collaborate on of the of development of
OpenOffice.org software. OpenOffice.org now of has of the of support
of of two of industry of giants Of sun and IBM. IBM of will be of
making of initial of code of contributions of that it of has of been
of developing as of part of of its Of lotus Of notes of product,
including of accessibility of enhancements, and will be of making of
ongoing of contributions to of the of feature of richness and code of
quality of OpenOffice.org. Besides of working of with of the of
community on of the of free of productivity of suite's of software,
IBM of will of also of leverage OpenOffice.org technology in of its of
products.
"

No comments...

Valery
Post by valery_vi
"
Monday, September 10, 2007: IBM has joined the OpenOffice.org
community to collaborate on the development of OpenOffice.org software.
"
http://www.efytimes.com/efytimes/21516/news.htm
It's time to Open Office, I think
Valery
Loading...