Re: API for sidebar

2014-08-29 Thread Jürgen Schmidt
On 28/08/14 18:40, Rory O'Farrell wrote:
 I have been asked by a user of the en-Forum if I knew of a section of the API 
 which dealt with the Sidebar. I found bits and pieces, but rather expected 
 that there might be a draft addition to the API documentation? Is there such? 
 
 I should say that the user in question is doing valid programming of a new OO 
 extension - he's not a timewaster and can understand and use the API 
 information.
 

with the new implementation we tried to resue the existing API, please
check this side for developers for more information
https://wiki.openoffice.org/wiki/Sidebar_for_Developers

And the best way is to ask detailed questions here directly.

Juergen


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



Re: API for sidebar

2014-08-29 Thread Rory O'Farrell
On Fri, 29 Aug 2014 08:15:52 +0200
Jürgen Schmidt jogischm...@gmail.com wrote:

 On 28/08/14 18:40, Rory O'Farrell wrote:
  I have been asked by a user of the en-Forum if I knew of a section of the 
  API which dealt with the Sidebar. I found bits and pieces, but rather 
  expected that there might be a draft addition to the API documentation? Is 
  there such? 
  
  I should say that the user in question is doing valid programming of a new 
  OO extension - he's not a timewaster and can understand and use the API 
  information.
  
 
 with the new implementation we tried to resue the existing API, please
 check this side for developers for more information
 https://wiki.openoffice.org/wiki/Sidebar_for_Developers
 
 And the best way is to ask detailed questions here directly.
 
 Juergen
 
Thanks, Juergen. I'll pass the information along to the User.

-- 
Rory O'Farrell ofarr...@iol.ie

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



Re: [Build] Modifying oowintool

2014-08-29 Thread Oliver-Rainer Wittmann

Hi,

On 28.08.2014 12:50, Michal Hriň wrote:

[...]

Hi,

Please, excuse me, that I'm rising this type of questions, maybe I
forgot to write, that I want to compile source with MSVC2013.



Oh, sorry - I missed this point.

Best regards, Oliver.


Anyways thanks for comments, I will help myself.

Best regards,
Michal Hriň


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



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



Re: [Build] Modifying oowintool

2014-08-29 Thread Oliver-Rainer Wittmann

Hi,

On 27.08.2014 20:52, Michal Hriň wrote:

Hi,

I'm trying to compile OO on Windows, specifically 8.1.

The problem is that Microsoft provides on the top page only Visual
Studio 2013, and 2010. I'm using free Express edition.

Configure stops every time on compiler. When was used 2010 compiler,
configure says that the version is less than required.

So I went forward with 2013.



Did you try to provide the corresponding compiler resources via 
configure options?
I am not using any Visual Studio installation to get the C++ compiler - 
I just installed Microsoft Windows SDK for Windows 7 and .NET Framework 
3.5 SP1.

Thus, I need to use the following configure options:
--with-frame-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
--with-psdk-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
--with-midl-path=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0/bin

Best regards, Oliver.



But now I don't have an idea how to solve the problem,
probably in oowintool script

https://fisheye6.atlassian.com/browse/ooo/main/oowintool?r=1413471

Configure stops an says:

--
checking for bash... /usr/bin/bash
checking ml.exe assembler path... checking for ml.exe... no
found (/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 12.0/VC/bin)

checking for zip... /usr/bin/zip
checking for unzip... /usr/bin/unzip
checking for dbghelp.dll... found and executable
checking for vcredist_x86.exe... found and executable
checking for vcredist_x64.exe... found and executable
Can't find MS Visual Studio / VC++ at ./oowintool line 248.
configure: error: oowintool failed to copy CRT

--

so I opened this script and saw that it didn't recognize my 2013
compiler so I tried to edit it, but it still not works.

I modified script around line 208, where I added :
--
my %msvs_express_2013 = (
 'ver' = '12.0',
 'key' = 'Microsoft/VDExpress/12.0_Config/Setup/VS/ProductDir',
 'dll_path' = 'VC/redist/x86/Microsoft.VC120.CRT',
 'dll_suffix' = '120'
);
my %msvc_express_2013 = (
 'ver' = '12.0',
 'key' = 'Microsoft/VDExpress/12.0_Config/Setup/VC/ProductDir',
 'dll_path' = 'redist/x86/Microsoft.VC120.CRT',
 'dll_suffix' = '120'
);

sub find_msvs()
{
 my @ms_versions = ( \%msvs_express_2013, \%msvs_2008,
\%msvs_express_2008, \%msvs_2005, \%msvs_express_2005,
\%msvs_net_2003_ea, \%msvs_net_2003 );

 for $ver (@ms_versions)
 {
 my $install = reg_get_value (HKEY_CURRENT_USER/Software/ .
$ver-{'key'});
 if (defined $install  $install ne '') {
 $ver-{'product_dir'} = $install;
 return $ver;
 }
 }
 die Can't find MS Visual Studio / VC++;
}

sub find_msvc()
{
 my @ms_versions = ( \%msvc_express_2013, \%msvc_2008,
\%msvc_express_2008, \%msvc_2005, \%msvc_express_2005, \%msvc_net_2003 );

 for $ver (@ms_versions)
 {
 my $install = reg_get_value (HKEY_CURRENT_USER/Software/ .
$ver-{'key'});
 if (defined $install  $install ne '') {
 $ver-{'product_dir'} = $install;
 return $ver;
 }
 }
 die Can't find MS Visual Studio / VC++;
}
--

Any ideas ?

Regards,
Michal Hriň

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



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



Re: can't install Openoffice 4.1.1

2014-08-29 Thread FR web forum
See this: 
https://forum.openoffice.org/en/forum/viewtopic.php?f=15t=69674hilit=error+1316


- Mail original -
De: Lewis Frazee randy4...@aol.com
À: dev@openoffice.apache.org
Envoyé: Jeudi 28 Août 2014 22:23:16
Objet: can't install Openoffice 4.1.1

Dear Sir,
I want to let you know that I can't load OpenOffice 4.1.1.

Get a Error message  Error 1316 The specified account already exist
I am trying up upgrade from ver 4.0.1

When ver. 4.1.0  came out I tried to installe it but got 
Error 1316.A network error occurred while attempting
to read from the File C:\windows\installer\openoffice401.msi

I have been using OpenOffice for years and now that I am using
Windows 8.1 I have problems installing any thing above 4.0.1.

Thank You 
Lewis

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



Student Project

2014-08-29 Thread Deborah Digges
Hello,

I am a *4th year* Computer Science student. As a part of a course - The
Architecture of Open source technologies, I am required to contribute to
an open source project.

The project is needed to be done by a team of *3 members*.The semester ends
by* November*, so that gives me *three months* to work on the project. The
course requires us to work *8 hours a week*. Also, the course emphasizes on
making code contributions.

I am familiar with C,C++ and python, and I am eager to pick up additional
skills that are required.

Please could you help me in this task, as I am quite new to open source.

Looking forward to your response,
Thanks,
Deborah Digges.


Re: CD ROM

2014-08-29 Thread FR web forum
See this: http://www.openoffice.org/distribution/cdrom/
Not possible right now

- Mail original -
De: Patsy Rahn pr...@att.net
À: dev@openoffice.apache.org
Envoyé: Jeudi 28 Août 2014 15:06:09
Objet: CD ROM

I'd prefer to use a CD ROM over a download since my computer is slow due to my 
location. Is there any way to get one?

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



Re: [Build] Modifying oowintool

2014-08-29 Thread Michal Hriň

Hi,

@Regina, thanks for interesting reading.

@Oliver, if you are interested in my messy thoughts, see comments below.

Regards, Michal Hriň.

Dňa 29.08.2014 o 09:22 Oliver-Rainer Wittmann napísal(a):

Hi,

On 27.08.2014 20:52, Michal Hriň wrote:

Hi,

I'm trying to compile OO on Windows, specifically 8.1.

The problem is that Microsoft provides on the top page only Visual
Studio 2013, and 2010. I'm using free Express edition.

Configure stops every time on compiler. When was used 2010 compiler,
configure says that the version is less than required.

So I went forward with 2013.



Did you try to provide the corresponding compiler resources via
configure options?
I am not using any Visual Studio installation to get the C++ compiler -
I just installed Microsoft Windows SDK for Windows 7 and .NET Framework
3.5 SP1.
Thus, I need to use the following configure options:
--with-frame-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
--with-psdk-home=/cygdrive/c/Program Files/Microsoft SDKs/Windows/v7.0
--with-midl-path=/cygdrive/c/Program Files/Microsoft
SDKs/Windows/v7.0/bin

Best regards, Oliver.



Yes,

--with-frame-home=$/cygdrive/c/Program Files (x86)/Microsoft 
SDKs/Windows/v7.1A
--with-psdk-home=$/cygdrive/c/Program Files (x86)/Microsoft 
SDKs/Windows/v7.1A
--with-midl-path=$/cygdrive/c/Program Files (x86)/Microsoft 
SDKs/Windows/v7.1A/bin


SDK for Windows 8.1 doesn't have bundled compiler, so I need to add

--with-cl-home=/cygdrive/c/Program Files (x86)/Microsoft Visual Studio 
12.0/VC


and so. SDK Windows v7.1A is backwards compatible SDK in Win 8.1.

In this time I have bypassed problem with oowintool, I manually copied 
.dlls, for which oowintool was looking. After that I removed code for 
finding Visual Studio. Somethings happens, now I can start building process.


Configure tells something about warnings, but I don't see any on screen.

Configure completed, but
* WARNINGS WERE ISSUED *

Only one I found somewhere between is

cygwin warning:
  MS-DOS style path detected: C:/aoo-4.1.1/main
  Preferred POSIX equivalent is: /cygdrive/c/aoo-4.1.1/main
  CYGWIN environment variable option nodosfilewarning turns off this 
warning.


So I think that there is a problem with cygwin. I need to have executed 
cygwin with superuser rights and now the compilation stops at 
philosophic problem in module soltools


Compiling: soltools/mkdepend/cppsetup.c
c:\aoo-4.1.1\main\soltools\mkdepend\def.h(42) : fatal error C1083: 
Cannot open include file: 'unistd.h': No such file or directory

dmake:  Error code 2, while making '../wntmsci12.pro/obj/cppsetup.obj'

The file is in place if my eyes are working.

Later I would like to try make a build on Windows 7, to see if this is a 
problem of Cygwin or Windows 8.1.


If I create build, then I will try to rewrite scripts for appropriate 
recognition of MSVC2013.





But now I don't have an idea how to solve the problem,
probably in oowintool script

https://fisheye6.atlassian.com/browse/ooo/main/oowintool?r=1413471

Configure stops an says:

--
checking for bash... /usr/bin/bash
checking ml.exe assembler path... checking for ml.exe... no
found (/cygdrive/c/Program Files (x86)/Microsoft Visual Studio
12.0/VC/bin)

checking for zip... /usr/bin/zip
checking for unzip... /usr/bin/unzip
checking for dbghelp.dll... found and executable
checking for vcredist_x86.exe... found and executable
checking for vcredist_x64.exe... found and executable
Can't find MS Visual Studio / VC++ at ./oowintool line 248.
configure: error: oowintool failed to copy CRT

--

so I opened this script and saw that it didn't recognize my 2013
compiler so I tried to edit it, but it still not works.

I modified script around line 208, where I added :
--
my %msvs_express_2013 = (
 'ver' = '12.0',
 'key' = 'Microsoft/VDExpress/12.0_Config/Setup/VS/ProductDir',
 'dll_path' = 'VC/redist/x86/Microsoft.VC120.CRT',
 'dll_suffix' = '120'
);
my %msvc_express_2013 = (
 'ver' = '12.0',
 'key' = 'Microsoft/VDExpress/12.0_Config/Setup/VC/ProductDir',
 'dll_path' = 'redist/x86/Microsoft.VC120.CRT',
 'dll_suffix' = '120'
);

sub find_msvs()
{
 my @ms_versions = ( \%msvs_express_2013, \%msvs_2008,
\%msvs_express_2008, \%msvs_2005, \%msvs_express_2005,
\%msvs_net_2003_ea, \%msvs_net_2003 );

 for $ver (@ms_versions)
 {
 my $install = reg_get_value (HKEY_CURRENT_USER/Software/ .
$ver-{'key'});
 if (defined $install  $install ne '') {
 $ver-{'product_dir'} = $install;
 return $ver;
 }
 }
 die Can't find MS Visual Studio / VC++;
}

sub find_msvc()
{
 my @ms_versions = ( \%msvc_express_2013, \%msvc_2008,
\%msvc_express_2008, \%msvc_2005, \%msvc_express_2005, \%msvc_net_2003 );

 for $ver (@ms_versions)
 {
 my $install = reg_get_value (HKEY_CURRENT_USER/Software/ .
$ver-{'key'});
 if (defined $install  $install ne '') {
 $ver-{'product_dir'} = $install;
 return $ver;
 }
 }
 die 

Statistic data per single country

2014-08-29 Thread Vladislav Stevanovic
Hello,
Is it possible to make some video tutorial how to get statistic  data about
AOO (downloads AOO per country)? For download statistic for Serbian, from
begining (from 2012-05-07) and end day is 2014-05-07 .
Regards,
Wlada


Re: [RELEASE, TOOLS] bash script to generate Update Feed

2014-08-29 Thread Andrea Pescetti

On 22/08/2014 Oliver-Rainer Wittmann wrote:

I figured out that the Update Service code expects this URI as the XML
namespace URI for the Update Feed entries.


OK, so shall we put something at
http://installation.openoffice.org/description
so that it contains some useful information? Something like
  ---
This is the XML namespace URI for the Update Feed entries for Apache 
OpenOffice. You can find all details about the expected syntax at

https://wiki.openoffice.org/wiki/Update_Service
  ---
(and of course if source code expected it, reverting my change was just 
right).


Regards,
  Andrea.

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



Re: Introduction question about contributing source code?

2014-08-29 Thread Andrea Pescetti

On 23/08/2014 Hung Mark wrote:

I tried to submit issues I've found (
https://issues.apache.org/ooo/show_bug.cgi?id=125400 ),
also attached the patch I've made, not knowing if I've did it right. I
think you are busy releasing new version these days.


Indeed, but I see that conversation is now ongoing on your patches 
Bugzilla pages, good.



However it seems that wiki page for contributor is outdated:
https://wiki.openoffice.org/wiki/Contributing_Patches
( it suggest to use hg to make patch, and domain developer list marked
outdated, URL to  IRT  IIT links are invalid now.


It was absurdly outdated and misleading, you are right. I've updated it 
now. Of course, feel free to edit it (you should have an account) or ask 
if something is unclear.


Had you found it using a search engine or from some navigation path in 
our wiki?


Regards,
  Andrea.

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



Re: Introduction question about contributing source code?

2014-08-29 Thread Hung Mark
Hi Andrea,

I followed the link here:

https://wiki.openoffice.org/wiki/Development

The development page were found by google 'OpenOffice contributing'

Sincerely.




2014-08-30 5:17 GMT+08:00 Andrea Pescetti pesce...@apache.org:

 On 23/08/2014 Hung Mark wrote:

 I tried to submit issues I've found (
 https://issues.apache.org/ooo/show_bug.cgi?id=125400 ),
 also attached the patch I've made, not knowing if I've did it right. I
 think you are busy releasing new version these days.


 Indeed, but I see that conversation is now ongoing on your patches
 Bugzilla pages, good.


  However it seems that wiki page for contributor is outdated:
 https://wiki.openoffice.org/wiki/Contributing_Patches
 ( it suggest to use hg to make patch, and domain developer list marked
 outdated, URL to  IRT  IIT links are invalid now.


 It was absurdly outdated and misleading, you are right. I've updated it
 now. Of course, feel free to edit it (you should have an account) or ask if
 something is unclear.

 Had you found it using a search engine or from some navigation path in our
 wiki?

 Regards,
   Andrea.

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




-- 
Mark Hung


New Dmake maintainer

2014-08-29 Thread Pedro Giffuni

Hi guys;

I have been, rather reluctantly, maintaining the Dmake thing we 
inherited from SUN in Apache Extras.


I am glad to announce that a new maintainer stepped in (see below) and 
has already made a great job transferring the *complete* history in a 
github repository here:


https://github.com/mohawk2/dmake/

Despite some promising attempts to drop it, AOO still depends on this 
package for building and it's great to have someone taking care of it. I 
am sure Ed will do a great job with Dmake but of course, if for some 
reason we need it, the older tarball will remain in the Apache Extras 
repository.


Welcome Ed !

Pedro.

On 08/29/14 19:02, Ed . wrote:


*Subject:* dmake - still maintaining?
Hi Pedro,
I am interested in taking over development of dmake just to fix up a 
couple of little bugs, mainly so it can be installed and used in a 
directory with a space in the name. I’d also want to put the code on 
github (although I see there is already a repo on 
https://github.com/Distrotech/dmake).

Is that something you would be comfortable with?
Best regards,
Ed J
Gimp-Perl maintainer




Openoffice 4.1.1 constant crashes

2014-08-29 Thread Albert Poon
Dear Sir/madam
I recently upgraded my openoffice 4.1.0 to your latest version but suffered 
constant crashes when I was creating/editing powerpoint presentations. This is 
in my 64bit laptop.
I have uninstalled that version and reinstalled the v4.1.0 and all is well 
again.
Hope you smart guys can do something about v4.1.1
Best regards
albert