Re: [CWiki] Account Whitelisting

2015-07-04 Thread Andrea Pescetti

aarn.wong wrote:

Username: aarn.wong
Name: Aaron Wong


Welcome! Cwiki account whitelisted.

Andrea

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Starting Infrastructure Module

2015-07-04 Thread aarn.wong
Hi,


I am currently working on the infrastructure module.


Thanks,


Aaron

Building query: .bootstrap

2015-07-04 Thread Jason Marshall
Hi everyone
 
I am building OpenOffice on a Windows 7 system and have got so far as 
successfully running .configure.  Following this, I execute .bootstrap, but I 
note the following:
 
* When the missing tarballs and external sources are downloaded, the script 
seems to identify that for some of these, the checksum does not match that 
expected.  Could anyone tell me why this would occur and if this is an issue 
from a security standpoint?  I. e. is it possible that what is being downloaded 
by .bootstrap is unsafe?  Also, is it okay to simply progress to the build 
anyway?
 
* .bootstrap ends with the following:
 
DMAKE_4_12.tar.gz exists
epm-4.2.tar.gz exists
making and entering 
C:/cygwin/tmp/aoo-4.1.1/main/solenv/wntmsci12.pro/misc/build/
unpacking 
/tmp/aoo-4.1.1/ext_sources/7abf18f59ca96a3d463386e6d1456138-DMAKE_4_12.tar.gz
entering DMAKE_4_12
./bootstrap: line 100: cd: DMAKE_4_12: No such file or directory
 
The message clearly tells me that a directory does not exist, but I would 
assume that this directory would be created automatically.  Would anybody know 
what has gone wrong here?
 
Thank you for your help.
 
Kind regards
 
Jason
  

Re: macro equivalent of VBA Range()

2015-07-04 Thread John O'Sullivan
Range( ) is supported in AOO Basic, when the VBA compatibility mode is on.
It can be used within a function, but can't be used as a parameter...

On 3 July 2015 at 10:26, JZA acolor...@gmail.com wrote:

 On Wed, Jul 1, 2015 at 8:57 AM, Andrew Pitonyak and...@pitonyak.org
 wrote:

  On 30.06.2015 14:54, Mark Polczynski wrote:
 
  I am an absolute beginner to OpenOffice macros, but have some knowledge
 of
  VBA.  What is the OpenOffce macro equivalent of the VBA statement:
 
  x = Range(Y)
 
  Also, what is the equivalent of:
 
  x = Cells(1,1)
 
  Thanks!
 
  Mark Polczynski
 
 
 
  I assume that you posted this to the forum as suggested, but, I did not
  see your question there (it is a better place to answer these questions)
 
  You get cells from the sheet containing them. I am unsure what Range(Y)
  does, but a rough guess is that it is a defined range.
 

 ​
 Doing some googling this seems to explain what range is:
 https://msdn.microsoft.com/en-us/library/office/ff836512.aspx

 Just as Andrew mentioned, is the same as GetCellRangeBy[Position, Name]. ​



 
  So, if you just want the currently active sheet in a Calc document, you
  can do something like this:
 
  ThisComponent.CurrentController.getActiveSheet()
 
  If you want a specific sheet, you can use
 
  ThisComponent.Sheets.getByIndex(insert sheet index here)
  ThisComponent.Sheets.getByName(insert sheet name here)
 
  Now, assume that you want cell A1, you can use
 
  ThisComponent.CurrentController.getActiveSheet().getCellByPosition(0, 0)
 
  The first 0 means the first column and the second 0 means the first row.
 
  You can also use:
 
  getCellByPosition(left, top) Get a cell within the range.
  getCellRangeByPosition(left, top, right, bottom) Get a cell range within
  the range.
  getCellRangeByName(name) Get a cell range within the range based on its
  name. The string directly references cells using the standard formats —
  such as “B2:D5” or “$B$2” — or defined cell range names.
 
  Hope this helps.
 
  Oh, and you can find some examples here:
 
  http://www.pitonyak.org/oo.php
  http://www.pitonyak.org/AndrewMacro.odt
  http://www.pitonyak.org/OOME_3_0.odt
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
  For additional commands, e-mail: dev-h...@openoffice.apache.org
 
 


 --
 Alexandro Colorado
 Apache OpenOffice Contributor
 882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614



Download auto detection for OS X

2015-07-04 Thread Larry Gusaas
The download page, http://www.openoffice.org/download/index.html , is not properly recognizing 
my Operating system Mac OS X ver. 10.10 (Yosemite).


It shows OS X 32-bit (x86) (DMG) instead of OS X 64-bit (x86-64) (DMG)
AOO

And says Problem: Apache OpenOffice 4.1.1 is not available for OS X 32-bit 
(x86) (DMG).
Solution: Please select version 4.0.1.

I just answered a post on the users mailing list about this problem. I have seen other similar 
posts.


The detection used to work for OS X 64 bit .

--
_

Larry I. Gusaas
Moose Jaw, Saskatchewan Canada
Website: http://larry-gusaas.com
An artist is never ahead of his time but most people are far behind theirs. - 
Edgard Varese



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



FYI: an interesting bit on the --package-format option with configure

2015-07-04 Thread Kay Schenk
As near as I can tell, once you specify --package-format= installed

any other package format specifications are ignored.

I was trying to generate BOTH an installed AND rpm packaging with

--package-format=installed rpm

when I noticed the rpm packages were not there even though I received no
error messages about this. I suppose the thinking was if you want
installed, what do you want with the other format packages. In my case,
I wanted to share my build results, but well, I guess I need a separate
build now.

We can fix this with changes to /solenv/make_installer.pl if needed.
-- 

MzK

We can all sleep easy at night knowing that
 somewhere at any given time,
 the Foo Fighters are out there fighting Foo.
  -- David Letterman

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Completed Infrastructure Module

2015-07-04 Thread aarn.wong
Hi,


I have completed this module.


Thanks,


Aaron

Purpose of Export = FALSE in the *.sdi files

2015-07-04 Thread Regina Henschel

Hi all,

What is the purpose of Export = FALSE in the *.sdi files?

I do not find any explanation.

Kind regards
Regina

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org