Re: [libreoffice-users] Macro to autoload first recent doc

2014-07-21 Thread sleeping.pillow
Hi Jon


I believe that the recent file list handling was reworked some years ago and 
the list is no longer located where your code tries to find it. What version of 
LibreOffice are you using? 

I also recomend that you install XrayTool, that let’s you inspect objects and 
would have made it easier to see that the PickList you tried to access was 
empty.

http://bernard.marcelly.perso.sfr.fr/index2.html


I hope that the code below will do what you want. I used a few functions from 
the Tools library that is bundled with LibreOffice. I recomend that you have a 
look at these functions especially GetRegistryKeyContent. 


Option Explicit


Sub Load1st()
Dim oCUA, oList, oItem As Object
 BasicLibraries.LoadLibrary(Tools)
 REM use GetRegistryKeyContent function from the module Tools.Misc
 oCUA = 
GetRegistryKeyContent(sKeyName:=/org.openoffice.Office.Histories/Histories, 
bforUpdate:=true)
 oList = oCUA.getByName(URLHistory).getByName(OrderList) 
 If oList.hasByName(0) Then
  oItem = oList.getByName(0)
  If FileExists(oItem.HistoryItemRef) Then
   REM use OpenDocument function from the module Tools.Misc
   OpenDocument(oItem.HistoryItemRef, Array())
  End If
 End If
End Sub



Anyway I hope this helps you, and don’t hesitate to ask follow-up questions, 
and of course let me know if the code isn’t working for you.


Regards,

Niklas
-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


Re: [libreoffice-users] Macro to autoload first recent doc

2014-07-21 Thread Niklas Johansson

Let's improve the code a bit...

When we open the registry key we do not need it to be editable so let's 
open it as read only. By default GetRegistryKeyContent opens it as such. 
For some reason LibreOffice complains about named arguments not 
supported for the object, as Jon pointed out to me.


I've changed the key as well to correspond exactly with the key in 
registry. You can search for the key in the registrymodifications.xcu 
file (with the path 
%appdata%\LibreOffice\4\user\registrymodifications.xcu on windows).


I've added a new sub which opens the file and sets some open arguments 
according to what is saved in the registry and if the file is a template 
it should be opened in edit mode. I do not think that the password part 
works at the moment, so that part of the code probably needs some love. ;)


Sub Load1st()
Dim oCUA, oList, oItem As Object
 If Not BasicLibraries.isLibraryLoaded(Tools) Then 
BasicLibraries.LoadLibrary(Tools)

 REM use GetRegistryKeyContent function from the module Tools.Misc
 oList = 
GetRegistryKeyContent(/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList)

 If oList.hasByName(0) Then
  oItem = oList.getByName(0)
  OpenRecentFile(oItem.HistoryItemRef)
 End If
End Sub

Sub OpenRecentFile(sFileURL as String)
Dim oPickList As Object, oPickListArgs As Object
Dim loadArgs(2) As New com.sun.star.beans.PropertyValue
 If Not BasicLibraries.isLibraryLoaded(Tools) Then 
BasicLibraries.LoadLibrary(Tools)
 oPickList = 
GetRegistryKeyContent(/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/ItemList)

 If oPickList.hasByName(sFileURL) Then
  oPickListArgs = oPickList.getByName(sFileURL)
  If FileExists(sFileURL) Then
   loadArgs(0).Name  = AsTemplate'We never want to open a recent 
file as template

   loadArgs(0).Value = false
   loadArgs(1).Name  = Filter
   loadArgs(1).Value = oPickListArgs.getByName(Filter)
   loadArgs(2).Name  = Password
   loadArgs(2).Value = oPickListArgs.getByName(Password)
   REM use OpenDocument function from the module Tools.Misc
   OpenDocument(sFileURL, loadArgs())
  End If
 End If
End Sub


'I loosely took inspiration from the LibreOffice code 
http://opengrok.libreoffice.org/xref/core/unotools/source/config/historyoptions.cxx 



Regards,
Niklas Johansson


--
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


Re: [libreoffice-users] Macro to autoload first recent doc

2014-07-21 Thread Jon Harringdon
Hi Niklas,

thanks a lot for that. I can confirm that these macros do work... I will
analyse them and should be able to adapt them to my needs.

Cheers Jon

original message
From: Niklas Johansson sleeping.pil...@gmail.com
Date: Mon, 21 Jul 2014 11:22:53 +0200
Subj: Re: [libreoffice-users] Macro to autoload first recent doc
 Let's improve the code a bit...
 
 When we open the registry key we do not need it to be editable so let's 
 open it as read only. By default GetRegistryKeyContent opens it as such. 
 For some reason LibreOffice complains about named arguments not 
 supported for the object, as Jon pointed out to me.
 
 I've changed the key as well to correspond exactly with the key in 
 registry. You can search for the key in the registrymodifications.xcu 
 file (with the path 
 %appdata%\LibreOffice\4\user\registrymodifications.xcu on windows).
 
 I've added a new sub which opens the file and sets some open arguments 
 according to what is saved in the registry and if the file is a template 
 it should be opened in edit mode. I do not think that the password part 
 works at the moment, so that part of the code probably needs some love. ;)
 
 Sub Load1st()
 Dim oCUA, oList, oItem As Object
   If Not BasicLibraries.isLibraryLoaded(Tools) Then 
 BasicLibraries.LoadLibrary(Tools)
   REM use GetRegistryKeyContent function from the module Tools.Misc
   oList = 
 GetRegistryKeyContent(/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/OrderList)
   If oList.hasByName(0) Then
oItem = oList.getByName(0)
OpenRecentFile(oItem.HistoryItemRef)
   End If
 End Sub
 
 Sub OpenRecentFile(sFileURL as String)
 Dim oPickList As Object, oPickListArgs As Object
 Dim loadArgs(2) As New com.sun.star.beans.PropertyValue
   If Not BasicLibraries.isLibraryLoaded(Tools) Then 
 BasicLibraries.LoadLibrary(Tools)
   oPickList = 
 GetRegistryKeyContent(/org.openoffice.Office.Histories/Histories/org.openoffice.Office.Histories:HistoryInfo['PickList']/ItemList)
   If oPickList.hasByName(sFileURL) Then
oPickListArgs = oPickList.getByName(sFileURL)
If FileExists(sFileURL) Then
 loadArgs(0).Name  = AsTemplate'We never want to open a recent 
 file as template
 loadArgs(0).Value = false
 loadArgs(1).Name  = Filter
 loadArgs(1).Value = oPickListArgs.getByName(Filter)
 loadArgs(2).Name  = Password
 loadArgs(2).Value = oPickListArgs.getByName(Password)
 REM use OpenDocument function from the module Tools.Misc
 OpenDocument(sFileURL, loadArgs())
End If
   End If
 End Sub
 
 
 'I loosely took inspiration from the LibreOffice code 
 http://opengrok.libreoffice.org/xref/core/unotools/source/config/historyoptions.cxx
  
 
 
 Regards,
 Niklas Johansson

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] DUM dynamic range (based on current date/month)

2014-07-21 Thread Tanstaafl

Thanks for the reply Paul,

I was working on a 'wtf?' reply as to why the list converted my HTML 
email (had the values in a simple table) to plain text.


Also, I have no clue what happened with the 'DUM' in the subject - I 
didn't type that... weirdness...


Blindly converting HTML to plain text AND disallowing small simple 
attachments really makes it difficult to paint an accurate picture to 
get help.


Anyway...

On 7/20/2014 2:12 PM, Paul paulste...@afrihost.co.za wrote:

On Sun, 20 Jul 2014 13:47:35 -0400 Tanstaafl wrote:

Ok, we keep sales for Sales by month, with the Sales Rep in a Row and
each month in a column...



This didn't come through properly (my email client does text by
default, and didn't get an html part, not sure if that is why I'm not
seeing what you intended), and doesn't make any sense. However,
assuming it's as simple as you state above...


It is -


I'm picturing each row for a different sales rep, and columns B
through M are for months of the year (with A being for the name). In
which case I assume that each cell has a sales amount if we are past
that month, otherwise has zero.


Almost... there is also a YTD column at the end, and this is the column 
with the formula I'm working on.


But, your confusion is my fault, and stems from one important detail I 
neglected to mention.


I have one sheet for the current year, and other sheets for previous years.

The formula for the YTD column for the current year sheet is just as 
simple as you described below and works fine.


The problem is the same column for the prior year sheets. I need the YTD 
column for those sheets to sum up each Sales Reps totals for that past 
year, but only to the *current* month. Subsequent months are not zero, 
so I can't just SUM the entire range.


This is so the boss can easily see how each Rep is doing compared to 
each prior year (I pull this value in on a Master Sheet used to show 
these comparisons).


Currently I do a Find/Replace at the beginning of each month to change 
the formula to sum the correct ranges, but I'd really like this to 
happen dynamically.



What I'm trying to do is come up with a formula that can go in the
YTD column that will SUM only Jan thru Jul for each Rep - and
automatically change to SUM Jan thru Aug once we hit 8/1, etc...


Uh, I don't get this, maybe because I'm not a financial type, but do
you mean it should always sum Jan to Jul, unless we are in or after
Aug, in which case it should sum Jan to Aug, but it will never sum Jan
to Mar or Jan to Nov or anything else? Or do you simply mean it should
sum Jan to whatever month we've just passed?


Actually I want it to sum the range from Jan to MONTH(TODAY())-1.

So, through the end of the prior month.

Hope this better defines the problem...

Thanks again Paul

--
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] dynamic range (based on current date/month)

2014-07-21 Thread Brian Barker

At 13:47 20/07/2014 -0400, Charles Marcus wrote:
... we keep sales for Sales by month, with the Sales Rep in a Row 
and each month in a column... So something like this:

Jan   Feb   Mar   Apr   May   Jun   Jul   Aug   Sep   Oct   Nov   Dec   YTD
Sales Rep
Rep 1
Rep 2

What I'm trying to do is come up with a formula that can go in the 
YTD column that will SUM only Jan thru Jul for each Rep - and 
automatically change to SUM Jan thru Aug once we hit 8/1, etc... 
Anyone have a clue? I've tried so many different permutations of 
SUMIF(), SUM(INDIRECT()), etc, and just can't figure this one out...


At 08:39 21/07/2014 -0400, Charles Marcus wrote:
I have one sheet for the current year, and other sheets for previous 
years. [...] The problem is the same column for the prior year 
sheets. I need the YTD column for those sheets to sum up each Sales 
Reps totals for that past year, but only to the *current* month. 
Subsequent months are not zero, so I can't just SUM the entire range.


Actually I want it to sum the range from Jan to MONTH(TODAY())-1. 
So, through the end of the prior month. Hope this better defines the problem...


Better, but no cigar. You twice above say to the *current month* 
(change to August on 1 August; current month) and twice suggest the 
previous month (MONTH(TODAY())-1; prior month). The formula will 
differ depending on which you require, of course.


Let's suppose you have the months in columns from B to M. Then try:
=SUM(Bn:OFFSET(Bn,0,MONTH(TODAY())-1))

The OFFSET() function here takes a reference to Bn - the January cell 
- and offsets it by MONTH(TODAY))-1 cells to the right. So today, in 
July, this is six cells to the right, or Hn. The SUM() function sums 
from Bn to Hn, which is what you require for July.


If you want the sum to the previous month, you could start with:
=SUM(Bn:OFFSET(Bn,0,MONTH(TODAY())-2))
- but this would not work for January, where you actually need to sum 
nothing. You probably need to handle that as a special case by 
including an IF() in your expression:

=IF(MONTH(TODAY())=1,0,SUM(Bn:OFFSET(Bn,0,MONTH(TODAY())-2)))

I trust this helps.

Brian Barker


--
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] DUM dynamic range (based on current date/month)

2014-07-21 Thread James Knott
On 07/21/2014 08:39 AM, Tanstaafl wrote:
 was working on a 'wtf?'

Is that the new MS Office format?  ;-)


-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] dynamic range (based on current date/month)

2014-07-21 Thread Dan Lewis

On 07/21/2014 09:19 AM, Brian Barker wrote:

At 13:47 20/07/2014 -0400, Charles Marcus wrote:
... we keep sales for Sales by month, with the Sales Rep in a Row and 
each month in a column... So something like this:
Jan   Feb   Mar   Apr   May   Jun   Jul   Aug   Sep   Oct Nov   Dec   
YTD

Sales Rep
Rep 1
Rep 2

What I'm trying to do is come up with a formula that can go in the 
YTD column that will SUM only Jan thru Jul for each Rep - and 
automatically change to SUM Jan thru Aug once we hit 8/1, etc... 
Anyone have a clue? I've tried so many different permutations of 
SUMIF(), SUM(INDIRECT()), etc, and just can't figure this one out...


At 08:39 21/07/2014 -0400, Charles Marcus wrote:
I have one sheet for the current year, and other sheets for previous 
years. [...] The problem is the same column for the prior year 
sheets. I need the YTD column for those sheets to sum up each Sales 
Reps totals for that past year, but only to the *current* month. 
Subsequent months are not zero, so I can't just SUM the entire range.


Actually I want it to sum the range from Jan to MONTH(TODAY())-1. So, 
through the end of the prior month. Hope this better defines the 
problem...


Better, but no cigar. You twice above say to the *current month* 
(change to August on 1 August; current month) and twice suggest the 
previous month (MONTH(TODAY())-1; prior month). The formula will 
differ depending on which you require, of course.


Let's suppose you have the months in columns from B to M. Then try:
=SUM(Bn:OFFSET(Bn,0,MONTH(TODAY())-1))

The OFFSET() function here takes a reference to Bn - the January cell 
- and offsets it by MONTH(TODAY))-1 cells to the right. So today, in 
July, this is six cells to the right, or Hn. The SUM() function sums 
from Bn to Hn, which is what you require for July.


If you want the sum to the previous month, you could start with:
=SUM(Bn:OFFSET(Bn,0,MONTH(TODAY())-2))
- but this would not work for January, where you actually need to sum 
nothing. You probably need to handle that as a special case by 
including an IF() in your expression:

=IF(MONTH(TODAY())=1,0,SUM(Bn:OFFSET(Bn,0,MONTH(TODAY())-2)))

I trust this helps.

Brian Barker

 Perhaps I have databases on the brain, but a database seems like a 
simpler solution than a spreadsheet.
 What is confusing to me is the YTD column. I thought Year To Date 
meant the total from January to the current date. With this assumption, 
a simple SUM() of the monthly totals for each salesman would always give 
you the year to date total.
 But I still think a database would be better. With it you could 
enter the daily (or weekly) sales of each representative and let the 
database do the all the calculations for you including weekly, monthly, 
year to date, and annual totals in one or more queries. It likely will 
require the use of SQL in the queries though. Specifically, it may 
require the use of the GROUP BY clause and doing this in SQL View.


Dan

--
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] Bug Squashing Session in 90 Minutes

2014-07-21 Thread Joel Madero
Hi All,

QA is doing a bug squashing session (confirming/closing bugs) in 90
minutes. Feel free to jump in if you have a spare 10 minutes.

http://webchat.freenode.net/?channels=libreoffice-qa

We've seen some great progress this past week or so and we're on the
border of being the lowest unconfirmed bug count that we've had in over
two years.

Hope to see some of you in the room.

Best,
Joel

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Bug Squashing Session in 90 Minutes

2014-07-21 Thread Charles-H. Schulz
Hello Joel,

Next time please let us know in advance...

Best,

Charles.

On 21 juillet 2014 17:04:57 CEST, Joel Madero jmadero@gmail.com wrote:
Hi All,

QA is doing a bug squashing session (confirming/closing bugs) in 90
minutes. Feel free to jump in if you have a spare 10 minutes.

http://webchat.freenode.net/?channels=libreoffice-qa

We've seen some great progress this past week or so and we're on the
border of being the lowest unconfirmed bug count that we've had in over
two years.

Hope to see some of you in the room.

Best,
Joel

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems?
http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more:
http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be
deleted

-- 
Envoyé de mon téléphone avec Kaiten Mail. Excusez la brièveté.
-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


[libreoffice-users] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread Urmas

Charles-H. Schulz:


The migration process is implimented with the support of  Zyxware
Technologies[2]


Another story of embezzling of funds veiled as 'free software migration.' 
But officially it was enthusiasts working 12/24 for food.




--
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


[libreoffice-users] Re: [libreoffice-marketing] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread Anivar Aravind
On Mon, Jul 21, 2014 at 8:37 PM, Urmas davian...@gmail.com wrote:

 Charles-H. Schulz:


  The migration process is implimented with the support of  Zyxware
 Technologies[2]


 Another story of embezzling of funds veiled as 'free software migration.'
 But officially it was enthusiasts working 12/24 for food.


WTF?

We l10n people in india usually calls it as Swathantra Software (means
Libre/freedom Software) as reported in local language press. If you have
ambiguity with the word free . That is a problem in your understanding .
Please stop judging local contexts with mistaken understandings.

And In this part of the Glob we have all Govt and state aided Schools using
FOSS, Govt policies have specific mention about FOSS . Experiences like
this were state funds for an implementation partner to initiate migration .

~

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


Re: [libreoffice-users] Bug Squashing Session in 90 Minutes

2014-07-21 Thread Joel Madero
Hey Charles,
On 07/21/2014 08:23 AM, Charles-H. Schulz wrote:

 Hello Joel,

 Next time please let us know in advance...

It was a very last minute thing, got up this morning and saw a few
people in the chat and said let's squash some bugs!, decided to
announce in case anyone has some time.


Best,
Joel

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


Re: [libreoffice-users] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread Jim Seymour
On Mon, 21 Jul 2014 22:07:56 +0700
Urmas davian...@gmail.com wrote:

 Charles-H. Schulz:
 
  The migration process is implimented with the support of  Zyxware
  Technologies[2]
 
 Another story of embezzling of funds veiled as 'free software
 migration.'

How do you get embezzlement of funds out of a story about a government
body switching to open standards?

 But officially it was enthusiasts working 12/24 for food.

Not entirely.  Don't look now: But major corporations have donated
various resources to all manner of FOSS development.

Regards,
Jim
-- 
Note: My mail server employs *very* aggressive anti-spam
filtering.  If you reply to this email and your email is
rejected, please accept my apologies and let me know via my
web form at http://jimsun.LinxNet.com/contact/scform.php.

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Re: [libreoffice-marketing] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread M Henri Day
2014-07-19 7:24 GMT+02:00 Anivar Aravind anivar.arav...@gmail.com:

 Best News report so far

 http://www.thehindubusinessline.com/news/states/kerala-legislature-announces-smooth-transition-to-free-software/article6224551.ece

 use this for sharing /case studies



 On Fri, Jul 18, 2014 at 1:44 PM, Anivar Aravind anivar.arav...@gmail.com
 wrote:

  A more detailed note by Zyxware is published on their Blog
 
 http://www.zyxware.com/articles/4358/zyxware-helps-kerala-state-legislative-assembly-move-to-free-software


​Wonderful news, Anivar ! Thanks for the heads-up !

Henri

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted


Re: [libreoffice-users] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread Paul
Pay no attention to Urmas, he's a known troll / MS shill, he's always
coming out with antagonistic, and usually easily seen through,
statements.


On Mon, 21 Jul 2014 12:27:55 -0400
Jim Seymour jseym...@linxnet.com wrote:

 On Mon, 21 Jul 2014 22:07:56 +0700
 Urmas davian...@gmail.com wrote:
 
  Charles-H. Schulz:
  
   The migration process is implimented with the support of  Zyxware
   Technologies[2]
  
  Another story of embezzling of funds veiled as 'free software
  migration.'
 
 How do you get embezzlement of funds out of a story about a government
 body switching to open standards?
 
  But officially it was enthusiasts working 12/24 for food.
 
 Not entirely.  Don't look now: But major corporations have donated
 various resources to all manner of FOSS development.
 
 Regards,
 Jim


-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread Jim Seymour
On Mon, 21 Jul 2014 20:16:24 +0200
Paul paulste...@afrihost.co.za wrote:

 Pay no attention to Urmas, he's a known troll / MS shill, he's always
 coming out with antagonistic, and usually easily seen through,
 statements.
[snip]

Been here since February.  I know what Urmas is :)

Regards,
Jim
-- 
Note: My mail server employs *very* aggressive anti-spam
filtering.  If you reply to this email and your email is
rejected, please accept my apologies and let me know via my
web form at http://jimsun.LinxNet.com/contact/scform.php.

-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] Re: [libreoffice-l10n] Kerala Legislative Assembly has moved to Free Software and Libreoffice

2014-07-21 Thread Paul
:)

My bad, I meant to reply to Anivar's email, I assumed he didn't know
what an Urmas was

Paul



On Mon, 21 Jul 2014 14:47:23 -0400
Jim Seymour jseym...@linxnet.com wrote:

 On Mon, 21 Jul 2014 20:16:24 +0200
 Paul paulste...@afrihost.co.za wrote:
 
  Pay no attention to Urmas, he's a known troll / MS shill, he's
  always coming out with antagonistic, and usually easily seen
  through, statements.
 [snip]
 
 Been here since February.  I know what Urmas is :)
 
 Regards,
 Jim


-- 
To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/global/users/
All messages sent to this list will be publicly archived and cannot be deleted