Re: Marketing - Apache logo

2014-02-15 Thread Andrea Pescetti

On 10/02/2014 RA Stehmann wrote:

I've got a little parcel from America. A lot of stickers with the Apache
logo.
In Brussels they run very well. I hope in Chemnitz etc. also.


Good news, and remember that if you need OpenOffice-branded materials 
too (for giving away at events) we have a budget available for events. 
Of course, we will need a design and information about costs.


Regards,
  Andrea.

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



Re: Marketing - Apache logo

2014-02-15 Thread Alexandro Colorado
On Sat, 15 Feb 2014 03:31:56 -0600, Andrea Pescetti pesce...@apache.org  
wrote:



On 10/02/2014 RA Stehmann wrote:

I've got a little parcel from America. A lot of stickers with the Apache
logo.
In Brussels they run very well. I hope in Chemnitz etc. also.


Good news, and remember that if you need OpenOffice-branded materials  
too (for giving away at events) we have a budget available for events.  
Of course, we will need a design and information about costs.


Regards,
   Andrea.

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



There is the anual series of event in LatinAmerica comming through on  
april 26. I am a national coordinator for mexico and also participate on  
the international mailing list. I could send the word out about how to  
request these stickers.


As a coordinator of my local chapter in Cancun, expecting around 100-150  
people comming through, would be great to have an AOO stickers available.


The event is FLISOL (Festival Latinoamericano de Instalacion de Software  
Libre) or Latinamerican Free Software Installfest.


Would be good to have a wikipage on how the coordinators can get in touch  
with the AOO community in order to get them.



--
Alexandro Colorado
OpenOffice Commiter

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



Re: New committer: Clarence Guo (clarence_guo)

2014-02-15 Thread Steve Yin
Clarence is an experienced developer. He has ten years development
experience on Symphony and AOO. Now he is focusing on OOXML export.

Congratulations!


On Sat, Feb 15, 2014 at 5:42 AM, Rob Weir robw...@apache.org wrote:

 The Project Management Committee (PMC) for Apache OpenOffice has asked
 Clarence Guo to become a committer and we are pleased to announce that
 he has accepted and taken the ID clarence_guo.

 A warm welcome to Clarence!

 Regards,

 Rob, on behalf of the Apache OpenOffice PMC

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




-- 
Best Regards,

Steve Yin


Bugzilla: User Sam Jennings

2014-02-15 Thread Rainer Bielefeld

Hi all,

may be someone feels able to explain to above mentioned user how to use 
Bugzilla in an appropriate way? Or wants to block user Sam Jenning's 
Bugzilla account samjenni...@hotmail.com for a week or so for 
educative reasons?


He is engaged and may be even talented, but unfortunately he also 
ignores all guidelines and violates the bugfixing workflow with his back 
seat driver attitude as it can be seen in 
https://issues.apache.org/ooo/show_activity.cgi?id=124210


In private mails I tried to explain to him as polite as I can, but 
unfortunately I failed, as can be seen in Comment 11 of Bug 124210 and 
Comment 1 of Bug 124237.


I will simply ignore all Bug reports where he is involved in future

Best Regards

Rainer

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



RE: OO 4.01 Compiled for Solaris 11 x86 Save As Stuck in a Loop

2014-02-15 Thread Απόστολος Συρόπουλος
strange because I can save files which are correct files. In my case the 
problem is that the system complains that it cannot save while it actually 
does. Also I can open and save doc files but I cannot open XML-based files.

A.S.

 From: raymond.ste...@lmco.com
 To: a...@openoffice.apache.org; dev@openoffice.apache.org
 CC: awf@gmail.com; h...@apache.org; david.k.me...@lmco.com
 Subject: OO 4.01 Compiled for Solaris 11 x86 Save As Stuck in a Loop
 Date: Fri, 14 Feb 2014 22:06:33 +
 
 We are attempting to use the newly build OpenOffice 4.0.1 for Solaris 11 x86, 
 but  the 'Save As' to disk of any document type (i.e. .ods) continuous to 
 prompt for a file name.  Each time we hit okay to save the document after 
 supplying a unique name, the FilePicker closes, but instantly reappears again.
 
 I have narrowed  it down to the following code located in 
 sfx2/source/doc/guisaveas.cxx lines 1497-1520
 
 The program gets stuck in the while loop below.  The variable 'bExit' is 
 never set to sal_True, so the loop continuous. I provide a name to the 
 FilePicker interface, click Save and the loop continuous, redisplaying the 
 dialog. To resolve the issue, I added bExit = sal_True after line 1513 so 
 that the loop discontinuous. I am not sure if this will have effects in other 
 situations, maybe someone can provide some feedback, but for now. I am able 
 to save.
 
 
 sal_Bool bExit = sal_False;
 1497   while ( !bExit )
 1498   {
 1499   bUseFilterOptions = aModelData.OutputFileDialog( nStoreMode, 
 aFilterProps, bSetStandardName, aSuggestedName, bPreselectPassword, 
 aSuggestedDir, nDialog, sStandardDir, aBlackList );
 1500
 1501   // in case the dialog is opend a second time the folder should be 
 the same as before, not what was handed over by parameters
 1502   aSuggestedDir = ::rtl::OUString();
 1503   if ( nStoreMode == SAVEAS_REQUESTED )
 1504   {
 1505   // in case of saving check filter for possible alien warning
 1506   ::rtl::OUString aSelFilterName = 
 aModelData.GetMediaDescr().getUnpackedValueOrDefault(
 1507   aFilterNameString,
 1508   ::rtl::OUString() );
 1509   sal_Int8 nStatusFilterSave = aModelData.CheckFilter( 
 aSelFilterName );
 1510   if ( nStatusFilterSave == STATUS_SAVEAS_STANDARDNAME ) These are 
 equal during runtime
 1511   {
 1512   // switch to best filter
 1513   bSetStandardName = sal_True; bSetStandardName is set to 
 sal_True here, but bExit is not, so the loop continuous. Setting bExit 
 following this line allows the program to save.
 ++bExit = salTrue;
 1514   }
 1515   else if ( nStatusFilterSave == STATUS_SAVE )
 1516   {
 1517   // user confirmed alien filter or good filter is used
 1518   bExit = sal_True;
 1519   }
 1520   }
 1521   else
 1522   bExit = sal_True;
 1523   }
 
 
 
 Raymond Steele
 U-2 Mission Planning
 Software Engineer Sr
 Lockheed Martin - ISGS Defense
 1300 S. Litchfield Rd.
 Goodyear, AZ 85338
 Email: raymond.ste...@lmco.com
 Business phone:  623-925-6402
 
  

Re: Community meetup at summer 2014 in Switzerland

2014-02-15 Thread Guy Waterval
Hi Raphael,
Hi all,

Just for info :
http://www.mail-archive.com/announce@documentfoundation.org/msg00181.html

A+
-- 
gw


2014-01-23 15:44 GMT+01:00 Raphael Bircher r.birc...@gmx.ch:

 Hi at all

 This year we have no ApacheCon Europe. So it's maybe a good Idea to have a
 community meetup. At events like fosdem you have not a load of time for
 discoussions. A possible location would be the hackerspace Ruum 42 at St.
 Gallen. http://www.ruum42.ch

 I'm a member of this room and the feedback is at the time positive. We
 have Beamer, internet and a load of other infrastructur there. St. Gallen
 is not so far from Zurich Airport and it's not so expensiv. So what do you
 think about it?

 The Room has place for about 30 persones.

 Greetings Raphael

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




Re: Community meetup at summer 2014 in Switzerland

2014-02-15 Thread jan i
On 15 February 2014 18:03, Guy Waterval waterval@gmail.com wrote:

 Hi Raphael,
 Hi all,

 Just for info :
 http://www.mail-archive.com/announce@documentfoundation.org/msg00181.html


We will  have a apacheCon europe in 2014, likely november. And the hope is
that AOO will fill several tracks and we could consider making a
user/development meeting back to back with aceu, allowing us to set a much
lower entrance fee.

date and city are likely to be anounced during march.

 rgds
jan i


 A+
 --
 gw


 2014-01-23 15:44 GMT+01:00 Raphael Bircher r.birc...@gmx.ch:

  Hi at all
 
  This year we have no ApacheCon Europe. So it's maybe a good Idea to have
 a
  community meetup. At events like fosdem you have not a load of time for
  discoussions. A possible location would be the hackerspace Ruum 42 at St.
  Gallen. http://www.ruum42.ch
 
  I'm a member of this room and the feedback is at the time positive. We
  have Beamer, internet and a load of other infrastructur there. St. Gallen
  is not so far from Zurich Airport and it's not so expensiv. So what do
 you
  think about it?
 
  The Room has place for about 30 persones.
 
  Greetings Raphael
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
  For additional commands, e-mail: dev-h...@openoffice.apache.org
 
 



Bugzilla: User Sam Jennings

2014-02-15 Thread V Stuart Foote
@Rainer,
From: Rainer Bielefeld rainerbielefeld_ooo...@bielefeldundbuss.de
Sent: Saturday, February 15, 2014 9:54 AM
Subject: Bugzilla: User  Sam Jennings

may be someone feels able to explain to above mentioned user how to use
Bugzilla in an appropriate way? Or wants to block user Sam Jenning's
Bugzilla account samjenni...@hotmail.com for a week or so for
educative reasons?

He is engaged and may be even talented, but unfortunately he also
ignores all guidelines and violates the bugfixing workflow...

Not seeing an issue.   Breathe!

I will simply ignore all Bug reports where he is involved in future

Your choice.   However...think inclusive not exclusive.

Stuart




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



Re: Bugzilla: User Sam Jennings

2014-02-15 Thread Edwin Sharp


On Sat, Feb 15, 2014, at 19:32, V Stuart Foote wrote:
 
 Not seeing an issue.   Breathe!
 
+1

 I will simply ignore all Bug reports where he is involved in future
 
 Your choice.   However...think inclusive not exclusive.
 
 Stuart

Ignoring our users is never a good idea.


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



Re: [RELEASE][DISCUSS] How to download AOO 4.1.0 Beta?

2014-02-15 Thread Kay Schenk
On Fri, Feb 14, 2014 at 4:52 PM, Marcus (OOo) marcus.m...@wtnet.de wrote:

 Am 02/14/2014 10:47 PM, schrieb Marcus (OOo):

  Am 02/14/2014 10:32 PM, schrieb Rob Weir:

 On Fri, Feb 14, 2014 at 3:53 PM, Marcus (OOo)marcus.m...@wtnet.de
 wrote:

 As this is our first beta release at Apache, I would like to clarify
 some
 things before it's maybe too late to change the facts and to prepare
 webpages:

 1. Target group

 It is intended to be downloaded for the general public, right?

 2. Hosting

 We are planning to host the files at Sourceforge, right?

 3. File names:

 Of course the file names of the install files have to show a difference
 compared to the general release files. Suggestion:

 Apache_OpenOffice_4.1.0_Beta_Win_x86_install.exe

 *If* there is a need to publish another round, it could be extended
 with a
 number like:

 Apache_OpenOffice_4.1.0_Beta2_Win_x86_install.exe

 4. Directory structure:

 Is it OK to expect to use the same dir structure like we have
 currently for
 4.0.1?


 The above makes sense to me.


  5. Download webpage:

 Is it OK to expect to offer the download on our main download webpage?
 http://www.openoffice.org/download/

 If yes, I can build up a download offer like we have for the green
 box. To
 ease the download as best as possible.


 I would not make this the default download option for users. We still
 want most users to download AOO 4.0.1. So keep the first box on
 /download.html as it is now.

 Maybe a yellow box (yellow == caution) with language that makes it
 clear that this is beta and gives the URL for reporting bugs.


 I think I was not clear in my wording. :-)

 Of course the current 4.0.1 should not be effected in any way.

 With ease the download as best as possible I meant to do the same like
 we have for the green box but of course with a different color and text.

  Were you thinking of a language/platform switch logic for the beta?
 Or just a link to a beta_other.html page with a table of links? If
 we do the table, then we would have room on the same page to give a
 prominent warning, a link to BZ, Release Notes, etc.


 I thought about the one-click-download we have already. Then of course a
 beta-other.html is also needed and your suggestion makes absolutely
 sense.

 It could be a box somewhere below the green box. Or - as Kay mentioned -
 a separate webpage.


 I've added a quick version of how it could look like on the same download
 webpage:

 http://www.openoffice.org/download/test/index.html

 - The first yellow box is for the download when the Beta release is
 available. Of course the links are not yet working - but with link name and
 title you should get an first impression.


This looks good, and, given the wording, shouldn't cause confusion.



 - The second one is a little teaser to show when is it coming. With a link
 to the AOO blog - in case of if we want to blog about the upcoming Beta
 release.


not sure about needing this.



 PS:
 The green box is still for the Mac OS X test:
 - download AOO 4.1.0 if 10.7 or newer is recognized in browser
 - download AOO 4.0.1 if 10.6 or older is recognized in browser


not for me! :) Still wants to give me Linux.




 Marcus


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




-- 
-
MzK

Cats do not have to be shown how to have a good time,
 for they are unfailing ingenious in that respect.
   -- James Mason


Re: [RELEASE][DISCUSS] How to download AOO 4.1.0 Beta?

2014-02-15 Thread Shari Lynn Smith
Like this idea. Really dislike when I have to go in search of another
version.

sent with my Google phone
On Feb 14, 2014 6:53 PM, Marcus (OOo) marcus.m...@wtnet.de wrote:

 Am 02/14/2014 10:47 PM, schrieb Marcus (OOo):

 Am 02/14/2014 10:32 PM, schrieb Rob Weir:

 On Fri, Feb 14, 2014 at 3:53 PM, Marcus (OOo)marcus.m...@wtnet.de
 wrote:

 As this is our first beta release at Apache, I would like to clarify
 some
 things before it's maybe too late to change the facts and to prepare
 webpages:

 1. Target group

 It is intended to be downloaded for the general public, right?

 2. Hosting

 We are planning to host the files at Sourceforge, right?

 3. File names:

 Of course the file names of the install files have to show a difference
 compared to the general release files. Suggestion:

 Apache_OpenOffice_4.1.0_Beta_Win_x86_install.exe

 *If* there is a need to publish another round, it could be extended
 with a
 number like:

 Apache_OpenOffice_4.1.0_Beta2_Win_x86_install.exe

 4. Directory structure:

 Is it OK to expect to use the same dir structure like we have
 currently for
 4.0.1?


 The above makes sense to me.


  5. Download webpage:

 Is it OK to expect to offer the download on our main download webpage?
 http://www.openoffice.org/download/

 If yes, I can build up a download offer like we have for the green
 box. To
 ease the download as best as possible.


 I would not make this the default download option for users. We still
 want most users to download AOO 4.0.1. So keep the first box on
 /download.html as it is now.

 Maybe a yellow box (yellow == caution) with language that makes it
 clear that this is beta and gives the URL for reporting bugs.


 I think I was not clear in my wording. :-)

 Of course the current 4.0.1 should not be effected in any way.

 With ease the download as best as possible I meant to do the same like
 we have for the green box but of course with a different color and text.

  Were you thinking of a language/platform switch logic for the beta?
 Or just a link to a beta_other.html page with a table of links? If
 we do the table, then we would have room on the same page to give a
 prominent warning, a link to BZ, Release Notes, etc.


 I thought about the one-click-download we have already. Then of course a
 beta-other.html is also needed and your suggestion makes absolutely
 sense.

 It could be a box somewhere below the green box. Or - as Kay mentioned -
 a separate webpage.


 I've added a quick version of how it could look like on the same download
 webpage:

 http://www.openoffice.org/download/test/index.html

 - The first yellow box is for the download when the Beta release is
 available. Of course the links are not yet working - but with link name and
 title you should get an first impression.

 - The second one is a little teaser to show when is it coming. With a link
 to the AOO blog - in case of if we want to blog about the upcoming Beta
 release.

 PS:
 The green box is still for the Mac OS X test:
 - download AOO 4.1.0 if 10.7 or newer is recognized in browser
 - download AOO 4.0.1 if 10.6 or older is recognized in browser

 Marcus


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




wiki of OOXML export status

2014-02-15 Thread Clarence GUO
Hi,
I posted a wiki about OOXML export status to
https://cwiki.apache.org/confluence/display/OOOUSERS/OOXML+Export+Status.
Now all the works are still on my local, hasn't not been committed yet.
I'll commit when fixed current problems and the framework of three
applications are ready.

Thanks  BRs,
Clarence


Re: [CWiki] Account Whitelisting

2014-02-15 Thread Clarence GUO
Thanks Andrea,
Now my first wiki was posted '
https://cwiki.apache.org/confluence/display/OOOUSERS/OOXML+Export+Status'
Thanks

Clarence


2014-02-14 21:19 GMT+08:00 Andrea Pescetti pesce...@apache.org:

 Clarence GUO wrote:

 I created an account in cwiki because I want to share some project
 information in wiki. My account name is 'clarence.guo.bj'. Seems I have
 to
 send out a mail to activate my account so that I can create a wiki.


 Done. Account whitelisted, you can now edit/create pages.

 Regards,
   Andrea.

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