Re: Starting Introduction to Contributing to Apache OpenOffice Module

2013-02-19 Thread Andrea Pescetti
Putting Thao in CC. Thao, welcome and you might want to subscribe to 
this mailing list if you haven't already: read 
http://openoffice.apache.org/mailing-lists.html or just continue in your 
orientation! Andrea


Regina Henschel wrote:

Hello Thao,

welcome to Apache OpenOffice community.

You should first learn a little bit about the way we work together
http://openoffice.apache.org/orientation/index.html
In level 3 have look into Introduction to Development.

Do you have already a favorite part of OpenOffice? Or some issues, which
annoys you?

Kind regards
Regina

thao vu schrieb:

Dear,
I am on the way to become the best c++ programmer. I searched on the
internet for the open source project to improve my skill. I am very
attracted by your project OpenOffice.
I would like to introduce myself to you. My name is Thao - you can
pronounce my name like the sound of the word town without n. I am from
Vietnam. Now I am working in Korea. I have two years experiences in
C++. I
want to extend my C++ knowledge more and more. I like playing sports
and I
always go to the gym three times a week. I also like to have party with
friends. I am friendly and talkative. I want to share my knowledge
with all
people and study from others around the world.
It is very nice to hear from you.

Best regards,

Thao






Re: Thesaurus checker will not turn off

2013-02-19 Thread Andrea Pescetti

Kenneth Hale wrote:

I just started having problems with OO Writer and Impress. Everytime I open
a document, the spell checker opens and goes through the spell checker
routine. After physically closing it, it starts up again immediately. I
cannot close the document regularly; I have to use the Task Manager to
close it. I have an assignment due tonight by 10:59 PST. I did not want to
do it, but I guess I will have to get a copy of MS Word. Just telling you
that there is some kind of bug somewhere.


Sorry for the OpenOffice-unrelated suggestion, but the only way I am 
able to reproduce your problem is by putting something on my F7 key that 
holds it down. Could it be a defect related to your keyboard? (On the 
other hand, probably F7 is a shortcut for the spell checker in Word too, 
so Word won't solve the problem if it is a keyboard issue!)


If instead it is clearly related to OpenOffice, please open a bug report 
at https://issues.apache.org/ooo/ so that we can investigate it.


Regards,
  Andrea.


Re: Fwd: Tutorial Writer

2013-02-19 Thread Herbert Dürr

On 2013/02/19 2:56 AM, Alan Eduardo Puc Pech wrote:

Hi team!

I'm Alan. I'm building the module writer sw
In one part of the tutorial I want insert the following code:

--- sw/source/ui/app/mn.src 2004-11-29 14:29:10.0 +0530
+++ sw/source/ui/app/mn.src 2004-12-21 20:28:27.0 +0530
@@ -945,6 +945,13 @@ Menu MN_GRF_POPUPMENU
 SEPARATOR ;
  MenuItem
  {
+Identifier = FN_SAVE_GRAPHIC ;
+HelpID = FN_SAVE_GRAPHIC ;
+Text [ de ] = ~Grafik speichern... ;
+Text [ en-US ] = Save ~Graphic... ;
+};
+MenuItem
+{
  Identifier = FN_FORMAT_GRAFIC_DLG ;
  HelpID = FN_FORMAT_GRAFIC_DLG ;
  Text [ de ] = ~Grafik... ;


and I did so:

Menu MN_GRF_POPUPMENU
{
ItemList =
{
MN_ALIGN_FRAME
 MN_MOUSE_FRAME_WITH_CONTOUR
 // -- OD 2009-07-14 #i73249#
 SEPARATOR ;
 MN_TITLE_DESCRIPTION_SHAPE
 // --
 SEPARATOR ;
 MenuItem
 {
 Identifier = FN_FORMAT_GRAFIC_DLG ;
 HelpId = CMD_FN_FORMAT_GRAFIC_DLG ;
 Text [ en-US ] = ~Picture... ;
 };
 MenuItem
 {
 Identifier = FN_SAVE_GRAPHIC;
 Identifier = FN_SAVE_GRAPHIC ;
 HelpId = CMD_FN_SAVE_GRAPHIC;
 HelpID = FN_SAVE_GRAPHIC ;
 Text [ de ] = ~Grafik speichern... ;
 Text [ en-US ] = Save Graphics... ;
 };
MenuItem
 {
  Identifier = FN_FORMAT_GRAFIC_DLG ;
  HelpID = FN_FORMAT_GRAFIC_DLG ;
  Text [ de ] = ~Grafik... ;
};
 MN_FRM_CAPTION_ITEM
MenuItem
{
  ITEM_EDIT_IMAP
};
};
};

--
but when I building the module, I have the following error:
[...]
Apparently I'm not inserting the code well, I need you help. how  inserting
the code in the archive mn.src very well.


Yes, the merge result you pasted above doesn't look right. In the patch 
the lines marked with a + at the start mean that they are to be 
inserted. So the resulting code for your example would look like this:

   MenuItem
   {
  Identifier = FN_SAVE_GRAPHIC ;
  HelpID = FN_SAVE_GRAPHIC ;
  Text [ de ] = ~Grafik speichern... ;
  Text [ en-US ] = Save ~Graphic... ;
  };
  MenuItem
  {
   Identifier = FN_FORMAT_GRAFIC_DLG ;
   HelpID = FN_FORMAT_GRAFIC_DLG ;
   Text [ de ] = ~Grafik... ;

The patch with the '+' is a so called unified diff [1]. Lines with a 
'+' at the start are added, lines with a '-' at the start are removed. 
Once you get used to it you'll see that they are quite easy to read.


[1] http://en.wikipedia.org/wiki/Unified_diff#Unified_format

Usually one doesn't need to apply a patch by hand. There are tools for 
this that make it quite easy. The most prominent one is accidentally 
called patch [2]


[2] http://en.wikipedia.org/wiki/Patch_%28Unix%29

Hope this helps,
Herbert


[Test Plan] AOO 4.0 test plan

2013-02-19 Thread Ji Yan
Hi all,

 I believe it's time to think about how should we test AOO 4.0 release. Now
there is lots QA volunteer helping on defect confirmation and verification,
we should move forward on feature testing, e.g. side panel, template and
cliparts, etc...

  I draft an overall test plan[1] in wiki. Please review and feedback with
your suggestion. Any comments are welcome.


[1]
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.0+Testing+Plan


-- 


Thanks  Best Regards, Yan Ji


Re: [Test Plan] AOO 4.0 test plan

2013-02-19 Thread Joost Andrae

Hi,

maybe you feel I'm nitpicking but I'm missing some details about 
available test methods


- Unit test automation
- API test automation
- UI test automation

From my understanding AOO test automation currently includes all of 
them. I think a unit test should be part of the build verification test 
because it's part of the AOO source code that needs to be checked.




   I draft an overall test plan[1] in wiki. Please review and feedback with
your suggestion. Any comments are welcome.


[1]
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.0+Testing+Plan


Kind regards, Joost




[blog]: request for review of a draft for a short blog post

2013-02-19 Thread Jürgen Schmidt
Hi,

many of you have potentially seen that news of MS that a license Office
2013 is bound to one computer. O´k it is already reverted in Germany and
you can get a free activation code after you have called MS. But I think
we can post a short note that AOO can used and shared as often people
want or as often they need once they have downloaded it.

https://blogs.apache.org/preview/OOo/?previewEntry=openoffice_downloaded_once_used_and

I also add a not that we are interested in any success stories of bigger
deployments and shared experiences.

Well it's just an idea and the wording and the image has to be improved,
I can need help. Feedback is welcome.

Juergen


Re: java 7 patch

2013-02-19 Thread Rob Weir
On Mon, Feb 11, 2013 at 12:41 PM, Rob Weir robw...@apache.org wrote:
 On Thu, Feb 7, 2013 at 2:32 PM, Fred Ollinger folli...@gmail.com wrote:
 To whom it may concern,

 Below is a patch to fix some java7 compilation bugs. Also, this is attached.


 Thanks for the patch, Fred!

 I've created a Bugzilla issue for this, so we don't lose track of it.
  I also added you to the cc list for the report, so you will be
 notified when its status changes.

 https://issues.apache.org/ooo/show_bug.cgi?id=121754


Is someone able to review this patch?  It is good encouragement to
review and integrate patches quickly.   If you can do it soon, but not
right now, you could just assign the BZ to yourself:

https://issues.apache.org/ooo/show_bug.cgi?id=121754

Thanks!

-Rob



 Regards,

 -Rob


 Index: hsqldb/jdbcDriver.java
 ===
 --- hsqldb.orig/jdbcDriver.java 2013-02-07 09:17:01.0 -0800
 +++ hsqldb/jdbcDriver.java  2013-02-07 09:17:32.0 -0800
 @@ -31,6 +31,11 @@

  package org.hsqldb;

 +//#ifdef JAVA7
 +import java.sql.SQLFeatureNotSupportedException;
 +import java.util.logging.Logger;
 +//#enddif JAVA7
 +
  import java.sql.Connection;
  import java.sql.Driver;
  import java.sql.DriverManager;
 @@ -121,6 +126,12 @@
   */
  public class jdbcDriver implements Driver {

 +//#ifdef JAVA7
 +public Logger getParentLogger() throws SQLFeatureNotSupportedException {
 +  throw new SQLFeatureNotSupportedException();
 +}
 +//#endif JAVA7
 +
  /**
   *  Attempts to make a database connection to the given URL. The driver
   *  returns null if it realizes it is the wrong kind of driver to
 @@ -321,4 +332,8 @@
  DriverManager.registerDriver(new jdbcDriver());
  } catch (Exception e) {}
  }
 +
 +public boolean isCloseOnCompletion() { return false; }
 +
  }
 +
 Index: hsqldb/jdbc/jdbcCallableStatement.java
 ===
 --- hsqldb.orig/jdbc/jdbcCallableStatement.java 2013-02-07
 09:55:57.0 -0800
 +++ hsqldb/jdbc/jdbcCallableStatement.java  2013-02-07 
 09:57:17.0 -0800
 @@ -302,6 +302,14 @@
  public class jdbcCallableStatement extends jdbcPreparedStatement
  implements CallableStatement {

 +//#if JAVA7
 +public T T getObject(String s, ClassT T) throws SQLException
 { throw new SQLException(); }
 +public T T getObject(int i, ClassT T) throws SQLException {
 throw new SQLException(); }
 +public boolean isCloseOnCompletion() {
 + throw new UnsupportedOperationException(Not supported yet.);
 +}
 +//#endif JAVA7
 +
  /** parameter name = parameter index */
  private IntValueHashMap parameterNameMap;

 @@ -3373,11 +3381,6 @@
  {
  throw new UnsupportedOperationException(Not supported yet.);
  }
 -//#endif JAVA6
 -
 -//#if JAVA7
 -[javac] 
 /mnt/lfs/sources/ubuntu/old/local_dev300/hsqldb/unxlngi6.pro/misc/build/hsqldb/src/org/hsqldb/jdbc/jdbcCallableStatement.java
 :302: error: jdbcCallableStatement is not abstract and does not
 override abstract method TgetObject(String,ClassT) in
 CallableStatement
 -
 -//#endif JAVA7

 +//#endif JAVA6
  }
 Index: hsqldb/jdbc/jdbcConnection.java
 ===
 --- hsqldb.orig/jdbc/jdbcConnection.java2013-02-07 
 11:22:20.0 -0800
 +++ hsqldb/jdbc/jdbcConnection.java 2013-02-07 11:22:43.0 -0800
 @@ -31,6 +31,10 @@

  package org.hsqldb.jdbc;

 +//#ifdef JAVA7
 +import java.util.concurrent.Executor;
 +//#endif JAVA7
 +
  //#ifdef JAVA2
  import java.sql.Array;
  import java.sql.Blob;
 @@ -416,6 +420,21 @@
   * @see jdbcDatabaseMetaData
   */
  public class jdbcConnection implements Connection {
 +//#ifdef JAVA7
 +public void abort(Executor e){}
 +public int getNetworkTimeout(){
 +  throw new UnsupportedOperationException(Not supported yet.);
 +}
 +public void setNetworkTimeout(Executor e, int i ){
 +  throw new UnsupportedOperationException(Not supported yet.);
 +}
 +public String getSchema() {
 +   throw new UnsupportedOperationException(Not supported yet.);
 +}
 +public void setSchema(String s) {
 +   throw new UnsupportedOperationException(Not supported yet.);
 +}
 +//#endif JAVA7

  //  Common Attributes --

 Index: hsqldb/jdbc/jdbcDatabaseMetaData.java
 ===
 --- hsqldb.orig/jdbc/jdbcDatabaseMetaData.java  2013-02-07
 11:27:01.0 -0800
 +++ hsqldb/jdbc/jdbcDatabaseMetaData.java   2013-02-07 
 11:27:03.0 -0800
 @@ -99,7 +99,7 @@
   * P
   * A method that gets information about a feature that the driver does not
   * support will throw an codeSQLException/code.
 - * In the case of methods that return a codeResultSet/code
 + * In the case of methods that eeturn 

Re: [blog]: request for review of a draft for a short blog post

2013-02-19 Thread janI
On Feb 19, 2013 2:10 PM, Jürgen Schmidt jogischm...@gmail.com wrote:

 Hi,

 many of you have potentially seen that news of MS that a license Office
 2013 is bound to one computer. O惰 it is already reverted in Germany and
 you can get a free activation code after you have called MS. But I think
 we can post a short note that AOO can used and shared as often people
 want or as often they need once they have downloaded it.


https://blogs.apache.org/preview/OOo/?previewEntry=openoffice_downloaded_once_used_and

 I also add a not that we are interested in any success stories of bigger
 deployments and shared experiences.

 Well it's just an idea and the wording and the image has to be improved,
 I can need help. Feedback is welcome.
+1

 Juergen


Re: [blog]: request for review of a draft for a short blog post

2013-02-19 Thread tj

On 2/19/2013 08:35, janI wrote:

On Feb 19, 2013 2:10 PM, Jürgen Schmidt jogischm...@gmail.com wrote:


Hi,

many of you have potentially seen that news of MS that a license Office
2013 is bound to one computer. O惰 it is already reverted in Germany and
you can get a free activation code after you have called MS. But I think
we can post a short note that AOO can used and shared as often people
want or as often they need once they have downloaded it.



https://blogs.apache.org/preview/OOo/?previewEntry=openoffice_downloaded_once_used_and


I also add a not that we are interested in any success stories of bigger
deployments and shared experiences.

Well it's just an idea and the wording and the image has to be improved,
I can need help. Feedback is welcome.

+1


Juergen



Light copy-editing:

-as many other people you like or you install it on as many computer 
you need.


eas many other people _as_ you like or /// install it on as many 
computer_s as_ you need.


+as many other people as you like or install it on as many computers as 
you need.


/tj/




Re: java 7 patch

2013-02-19 Thread Fred Ollinger
I think that Pedro pointed out that this is redundant as there all
ready is a patch that fixes this and more issues.

I was going to eventually grab Pedro's linked patch and test it on a
fresh install.

At any rate, I suggest that you apply one of the java fixes (mine or
the other one, I don't care which) soon if we are really going to drop
java6 like others had told me.

Sincerely,

Fred

On Tue, Feb 19, 2013 at 5:20 AM, Rob Weir robw...@apache.org wrote:
 On Mon, Feb 11, 2013 at 12:41 PM, Rob Weir robw...@apache.org wrote:
 On Thu, Feb 7, 2013 at 2:32 PM, Fred Ollinger folli...@gmail.com wrote:
 To whom it may concern,

 Below is a patch to fix some java7 compilation bugs. Also, this is attached.


 Thanks for the patch, Fred!

 I've created a Bugzilla issue for this, so we don't lose track of it.
  I also added you to the cc list for the report, so you will be
 notified when its status changes.

 https://issues.apache.org/ooo/show_bug.cgi?id=121754


 Is someone able to review this patch?  It is good encouragement to
 review and integrate patches quickly.   If you can do it soon, but not
 right now, you could just assign the BZ to yourself:

 https://issues.apache.org/ooo/show_bug.cgi?id=121754

 Thanks!

 -Rob



 Regards,

 -Rob


 Index: hsqldb/jdbcDriver.java
 ===
 --- hsqldb.orig/jdbcDriver.java 2013-02-07 09:17:01.0 -0800
 +++ hsqldb/jdbcDriver.java  2013-02-07 09:17:32.0 -0800
 @@ -31,6 +31,11 @@

  package org.hsqldb;

 +//#ifdef JAVA7
 +import java.sql.SQLFeatureNotSupportedException;
 +import java.util.logging.Logger;
 +//#enddif JAVA7
 +
  import java.sql.Connection;
  import java.sql.Driver;
  import java.sql.DriverManager;
 @@ -121,6 +126,12 @@
   */
  public class jdbcDriver implements Driver {

 +//#ifdef JAVA7
 +public Logger getParentLogger() throws SQLFeatureNotSupportedException 
 {
 +  throw new SQLFeatureNotSupportedException();
 +}
 +//#endif JAVA7
 +
  /**
   *  Attempts to make a database connection to the given URL. The driver
   *  returns null if it realizes it is the wrong kind of driver to
 @@ -321,4 +332,8 @@
  DriverManager.registerDriver(new jdbcDriver());
  } catch (Exception e) {}
  }
 +
 +public boolean isCloseOnCompletion() { return false; }
 +
  }
 +
 Index: hsqldb/jdbc/jdbcCallableStatement.java
 ===
 --- hsqldb.orig/jdbc/jdbcCallableStatement.java 2013-02-07
 09:55:57.0 -0800
 +++ hsqldb/jdbc/jdbcCallableStatement.java  2013-02-07 
 09:57:17.0 -0800
 @@ -302,6 +302,14 @@
  public class jdbcCallableStatement extends jdbcPreparedStatement
  implements CallableStatement {

 +//#if JAVA7
 +public T T getObject(String s, ClassT T) throws SQLException
 { throw new SQLException(); }
 +public T T getObject(int i, ClassT T) throws SQLException {
 throw new SQLException(); }
 +public boolean isCloseOnCompletion() {
 + throw new UnsupportedOperationException(Not supported yet.);
 +}
 +//#endif JAVA7
 +
  /** parameter name = parameter index */
  private IntValueHashMap parameterNameMap;

 @@ -3373,11 +3381,6 @@
  {
  throw new UnsupportedOperationException(Not supported yet.);
  }
 -//#endif JAVA6
 -
 -//#if JAVA7
 -[javac] 
 /mnt/lfs/sources/ubuntu/old/local_dev300/hsqldb/unxlngi6.pro/misc/build/hsqldb/src/org/hsqldb/jdbc/jdbcCallableStatement.java
 :302: error: jdbcCallableStatement is not abstract and does not
 override abstract method TgetObject(String,ClassT) in
 CallableStatement
 -
 -//#endif JAVA7

 +//#endif JAVA6
  }
 Index: hsqldb/jdbc/jdbcConnection.java
 ===
 --- hsqldb.orig/jdbc/jdbcConnection.java2013-02-07 
 11:22:20.0 -0800
 +++ hsqldb/jdbc/jdbcConnection.java 2013-02-07 11:22:43.0 -0800
 @@ -31,6 +31,10 @@

  package org.hsqldb.jdbc;

 +//#ifdef JAVA7
 +import java.util.concurrent.Executor;
 +//#endif JAVA7
 +
  //#ifdef JAVA2
  import java.sql.Array;
  import java.sql.Blob;
 @@ -416,6 +420,21 @@
   * @see jdbcDatabaseMetaData
   */
  public class jdbcConnection implements Connection {
 +//#ifdef JAVA7
 +public void abort(Executor e){}
 +public int getNetworkTimeout(){
 +  throw new UnsupportedOperationException(Not supported yet.);
 +}
 +public void setNetworkTimeout(Executor e, int i ){
 +  throw new UnsupportedOperationException(Not supported yet.);
 +}
 +public String getSchema() {
 +   throw new UnsupportedOperationException(Not supported yet.);
 +}
 +public void setSchema(String s) {
 +   throw new UnsupportedOperationException(Not supported yet.);
 +}
 +//#endif JAVA7

  //  Common Attributes 
 --

 Index: hsqldb/jdbc/jdbcDatabaseMetaData.java
 

Re: [blog]: request for review of a draft for a short blog post

2013-02-19 Thread Jürgen Schmidt
On 2/19/13 3:55 PM, tj wrote:
 On 2/19/2013 08:35, janI wrote:
 On Feb 19, 2013 2:10 PM, Jürgen Schmidt jogischm...@gmail.com wrote:

 Hi,

 many of you have potentially seen that news of MS that a license Office
 2013 is bound to one computer. O惰 it is already reverted in Germany and
 you can get a free activation code after you have called MS. But I think
 we can post a short note that AOO can used and shared as often people
 want or as often they need once they have downloaded it.


 https://blogs.apache.org/preview/OOo/?previewEntry=openoffice_downloaded_once_used_and


 I also add a not that we are interested in any success stories of bigger
 deployments and shared experiences.

 Well it's just an idea and the wording and the image has to be improved,
 I can need help. Feedback is welcome.
 +1

 Juergen

 Light copy-editing:
 
 -as many other people you like or you install it on as many computer
 you need.
 
 eas many other people _as_ you like or /// install it on as many
 computer_s as_ you need.
 
 +as many other people as you like or install it on as many computers as
 you need.

thanks, it is published now

https://blogs.apache.org/OOo/entry/openoffice_downloaded_once_used_and

Juergen

 
 /tj/
 
 



Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Fabrizio Marchesano
Hi Rob,
in attachment you will find the Italian translation of the post (with links
to the Italian version of external pages where available).
Regards,

Fabrizio


On Sun, Feb 17, 2013 at 5:17 PM, Jeongkyu Kim jeongkyu@gmail.comwrote:

 Hi,

 Thanks for your good work! I attached the text version of Korean
 translation.

 Regards,
 Jeongkyu

 On Sat, Feb 16, 2013 at 9:28 PM, Kadal Amutham vka...@gmail.com wrote:
  I have completed the translation and it is running here
  http://thewink.in/AOO-IMLD/IMLD-2013.html. I have also attached html
 file
  and the font. Both shall be uploaded together for proper rendering of
 Tamil
  letters.
 
  With Warm Regards
 
  V.Kadal Amutham
  919444360480
  914422396480
 
 
  On 16 February 2013 14:30, Kadal Amutham vka...@gmail.com wrote:
 
  I have just completed Tamil Translation. I have attached the file for
  review. In the mean while I will prepare the html file so that it can
 be put
  on the web
 
  With Warm Regards
 
  V.Kadal Amutham
  919444360480
  914422396480
 
 
  On 15 February 2013 22:02, Kadal Amutham vka...@gmail.com wrote:
 
  The following link can be added to the blog
 
  http://en.wikipedia.org/wiki/Bengali_Language_Movement
 
  With Warm Regards
 
  V.Kadal Amutham
  919444360480
  914422396480
 
 
  On 15 February 2013 21:49, Rob Weir robw...@apache.org wrote:
 
  On Fri, Feb 15, 2013 at 10:43 AM, Donald Whytock dwhyt...@gmail.com
  wrote:
   Up-front disclaimer: These comments are not meant to be negative,
 but
   do reflect my ignorance of the event.  I'm asking the questions
   because I honestly don't know the answers.  No disrespect intended.
  
 
  Thanks.  I did some usage editing  I also added the Wikipedia links,
  though I'd encourage translators to identify native language pages for
  these topics, where they exist.
 
  -Rob
 
 
   the way of Bangladeshi people give - the way that Bangladeshi
   people give
   or perhaps how Bangladeshi people give
   or the way of Bangladeshi people to give
  
   In every town of Bangladesh has Language Martyr's Monument -
 Every
   town of Bangladesh has a Language Martyr's Monument
   or perhaps In every town of Bangladesh there is a Language Martyr's
   Monument
   But just to confirm...does that mean there's a monument in every
 town,
   or does every town honor Language Movement Day?
  
   There are more than one Language Martyr's Monument in USA, UK,
 Italy
   and many other countries.
   Again, not sure if this refers to an actual monument or celebration
 of
   the event.  And is the intent to say that US, UK, Italy and many
 other
   countries have monuments, or that each of them has more than one?
   Possible alternative: There are Language Martyr's Monuments in the
   USA, UK, Italy and many other countries.
  
   not only in February 21 but also in other days - not only on
   February 21 but also on other days
  
   As volunteer-run,  non-profit organization - As a volunteer-run,
   non-profit organization
  
   Don
  
   On Fri, Feb 15, 2013 at 7:46 AM, Rob Weir robw...@apache.org
 wrote:
  
  
 https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013
  
   Thanks to Khan for the background information and Robin for the
 logo
   design.
  
   1. Proofreading is always appreciated.
  
   2. Robin, maybe you could make a version of the logo with
 transparent
   background rather than white?
  
   3. Since we are commemorating International Mother Language Day,
   translations of the blog post are most welcome.  If you can send
 me a
   translation by end of day Tuesday I can add it to the post.  Or if
   you
   host a translation externally we can link to it.
  
   4. I plan on posting on Wednesday afternoon, New York time, so we
   cover February 21st across all time zones.
  
   Thanks!
  
   -Rob
 
 
 
 



 --
 Jeongkyu Kim
 OpenOffice.org Korean community lead

 Community website http://openoffice.or.kr
 Personal blog http://openoffice.or.kr/gomme

Giornata Internazionale della Lingua Madre 2013


Il progetto Apache OpenOffice è orgoglioso di contribuire alla commemorazione 
della Giornata Internazionale della Lingua Madre del 21 Febbraio. Continuate la 
lettura per scoprire perchè questo giorno è importante, come OpenOffice 
supporta la diversità linguistica e come voi stessi potete contribuire.


Perchè è stato scelto il 21 Febbraio?

Il 21 Febbraio è stata dichiarata a 
href=http://it.wikipedia.org/wiki/Giornata_internazionale_della_lingua_madre;Giornata
 Internazionale della Lingua Madre/a (International Mother Language Day, 
IMLD) dall'UNESCO. Le origini di questo riconoscimento internazionale risalgono 
alla Giornata del Movimento per la Lingua (Language Movement Day) commemorato 
in Bangladesh (in precedenza denominato Pakistan Orientale) sin dal 1952, 
quando diversi studenti dell'univeristà di Dacca vennero uccisi dalle forze di 
polizia ed esercito del Pakistan durante gli eventi dedicati al a 

Re: Mwiki is moved into maintenance mode.

2013-02-19 Thread Kay Schenk
On Sat, Feb 16, 2013 at 1:42 PM, Andrea Pescetti pesce...@apache.orgwrote:

 On 12/02/2013 janI wrote:

 Regarding moving cwiki to wiki.
 - There seemed to be general consensus to move the pages, however
 there
 seems to be a discussion whether to keep Cwiki as scratch paper.
 - It is also remarkable (at least to me), that there seems to be a big
 difference in saying and doingmeaning that our cwiki still get new
 pages, even from people who I understood supported a move.


 I've now migrated the FOSDEM 2013 pages as promised. Now they live under
 http://wiki.openoffice.org/**wiki/Conferences/FOSDEM/2013http://wiki.openoffice.org/wiki/Conferences/FOSDEM/2013
 and the cwiki pages have been replaced with a notice redirecting users to
 the mwiki.

 Regards,
   Andrea.


Thanks Andrea.

-- 

MzK

Achieving happiness requires the right combination of Zen and Zin.


error: BOOST_MATH_OVERFLOW_ERROR_POLICY redefined

2013-02-19 Thread Pavel Janík
Mac OS X/trunk:

Compiling: sc/source/core/data/cell.cxx
In file included from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/sc/source/core/data/cell.cxx:33:
../inc/interpre.hxx:47:1: error: BOOST_MATH_OVERFLOW_ERROR_POLICY redefined
In file included from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/boost/math/tools/precision.hpp:19,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/boost/math/special_functions/sinc.hpp:19,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/vcl/bitmap.hxx:37,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/vcl/bitmapex.hxx:28,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/vcl/image.hxx:31,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/vcl/button.hxx:29,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/sfx2/tabdlg.hxx:30,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/sfx2/module.hxx:54,
 from ../../../inc/scdll.hxx:35,
 from ../inc/interpre.hxx:29,
 from 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/sc/source/core/data/cell.cxx:33:
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/solver/400/unxmacxi.pro/inc/boost/math/policies/policy.hpp:54:1:
 error: this is the location of the previous definition
dmake:  Error code 1, while making '../../../unxmacxi.pro/slo/cell.obj'
ERROR: error 65280 occurred while making 
/Users/pavel/BUILD/BuildDir/ooo_trunk_src/sc/source/core/data

-- 
Pavel Janík





Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Xuacu
Hi Rob, all

The Asturian translation for the post is attached to this message.
We've had some extra work to create a Wikipedia entry in Asturian for
IMLD too (shame on us, we didn't have such entry before!)

All the best
--
Xuacu

2013/2/15 Rob Weir robw...@apache.org:
 https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013

 Thanks to Khan for the background information and Robin for the logo design.

 1. Proofreading is always appreciated.

 2. Robin, maybe you could make a version of the logo with transparent
 background rather than white?

 3. Since we are commemorating International Mother Language Day,
 translations of the blog post are most welcome.  If you can send me a
 translation by end of day Tuesday I can add it to the post.  Or if you
 host a translation externally we can link to it.

 4. I plan on posting on Wednesday afternoon, New York time, so we
 cover February 21st across all time zones.

 Thanks!

 -Rob

  pEl proyeutu Apache OpenOffice tien el gustu d'ayudar na conmemoración del 
Día Internacional de la Llingua Materna el 21 de febreru. Llei más tocante a la 
importancia d'esti día, cómo OpenOffice da sofitu a la diversidá lingüística, y 
cómo pues ayudar.br/p 
  h2Por qué s'escoyó'l 21 de febreru? /h2 
  pLa UNESCO declaró'l 21 de febreru a 
href=http://ast.wikipedia.org/wiki/D%C3%ADa_Internacional_de_la_Llingua_Materna;Día
 Internacional de la Llingua Materna/a (DILM). L'orixe del DILM ye'l 
reconocimientu internacional del Día del Movimientu pola Llingua, que vien 
conmemorandose'n Bangladex (Antiguu Paquistán Oriental) dende 1952, cuando la 
policía y l'exércitu paquistaninos mataron una cantidá d'universitarios en 
Dhaka demientres el a 
href=http://en.wikipedia.org/wiki/Bengali_Language_Movement;Movimientu pola 
Llingua Bengalina/a. Esta ye la única ocasión en qu'un grupu de persones 
dieron les sos vides pa conservar el drechu d'usar la so llingua materna./p 
  pNa so alcordanza hai un monumentu nomáu Monumentu de los Mártires de la 
Llingua (a href=http://en.wikipedia.org/wiki/Shaheed_Minar,_Dhaka;Shahid 
Minar/a) na Universidá de Dhaka, Bangladex. Cada añu más d'un millón de 
persones ufren flores ellí, no que ye un acontecimientu importante en 
Bangladex. Munchos estranxeros visiten Bangladex namái pa vivir el mou en que'l 
pueblu bangladexín fai alcordanza d'aquellos valientes. Toles ciudaes de 
Bangladex tienen un Monumentu de los Mártires de la Llingua, onde los llocales 
ufren flores. Tamién hai construyíu un Monumentu de los Mártires de la Llingua 
nel parque Ikebukoro de Tokiu, Xapón. Asina mesmo, hai Monumentos de los 
Mártires de la Llingua nos EE.XX., Reinu Xuníu, Italia y otros paises más. 
Pidimoste que tengas presente la to llingua materna non namái el 21 de febreru 
sinón los demás díes. br/p 
  h2OpenOffice y la diversidá lingüísticabr/h2 
  pAnguaño, el peligru pa les llingües maternes nun vien namái de la opresión 
gubernamental. Na midida en que crecen les comunicaciones ya'l trabayu de mou 
electrónicu, el sofitu pa les llingües maternes nel nuesu software ye críticu. 
Si una llingua nun tien un bon sofitu pal software, esa llingua y los sos 
falantes nativos tan en desventaxa. Poro, en Apache OpenOffice, la nuesa a 
href=http://openoffice.apache.org/mission.html;Misión de Serviciu Públicu/a 
pon un gran énfasis nel sofitu de la diversidá llingüística:/p 
  blockquoteHai más de 6.000 llingües nel mundu, pero nun siendo que la 
llingua tea asociada con una superpotencia económica del G-20, los vendedores 
comerciales tienden a inorala. La comunidá d'OpenOffice tien una llarga 
tradición de dar sofitu a un gran númberu de llingües, incluyendo llingües 
qu'usen poblaciones más pequeñes, llingües minorizaes, llingües en peligru, 
etc. Por exemplu, Sudáfrica tien 11 llingües oficiales. OpenOffice ta traducíu 
a toes elles. Dando sofitu a les llingües que d'otra miente nun lu tendríen 
ayudamos a amenorgar la quot;esclusión dixitalquot; y a promover el 
desendolcu, y la educación y alministración llocal./blockquote 
  p /p 
  p /p 
  pComo organización xestionada por voluntarios, ensin ánimu de lucru, Apache 
OpenOffice depende de voluntarios p'ayudar a traducir OpenOffice. a 
href=http://openoffice.apache.org/translate.html; Cola to ayuda/a podemos 
dar sofitu a centenares de llingües.nbsp; Hai una llista de les llingües a les 
qu'intentamos dar sofitu a 
href=https://translate.apache.org/projects/OOo_34/;equí/a. Comunicate con 
nós si pues ayudar.br/p
 


Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Rob Weir
On Tue, Feb 19, 2013 at 12:33 PM, Fabrizio Marchesano
fmarches...@gmail.com wrote:
 Hi Rob,
 in attachment you will find the Italian translation of the post (with links
 to the Italian version of external pages where available).
 Regards,


Thanks.  I've added your translation to the post.

-Rob


 Fabrizio



 On Sun, Feb 17, 2013 at 5:17 PM, Jeongkyu Kim jeongkyu@gmail.com
 wrote:

 Hi,

 Thanks for your good work! I attached the text version of Korean
 translation.

 Regards,
 Jeongkyu

 On Sat, Feb 16, 2013 at 9:28 PM, Kadal Amutham vka...@gmail.com wrote:
  I have completed the translation and it is running here
  http://thewink.in/AOO-IMLD/IMLD-2013.html. I have also attached html
  file
  and the font. Both shall be uploaded together for proper rendering of
  Tamil
  letters.
 
  With Warm Regards
 
  V.Kadal Amutham
  919444360480
  914422396480
 
 
  On 16 February 2013 14:30, Kadal Amutham vka...@gmail.com wrote:
 
  I have just completed Tamil Translation. I have attached the file for
  review. In the mean while I will prepare the html file so that it can
  be put
  on the web
 
  With Warm Regards
 
  V.Kadal Amutham
  919444360480
  914422396480
 
 
  On 15 February 2013 22:02, Kadal Amutham vka...@gmail.com wrote:
 
  The following link can be added to the blog
 
  http://en.wikipedia.org/wiki/Bengali_Language_Movement
 
  With Warm Regards
 
  V.Kadal Amutham
  919444360480
  914422396480
 
 
  On 15 February 2013 21:49, Rob Weir robw...@apache.org wrote:
 
  On Fri, Feb 15, 2013 at 10:43 AM, Donald Whytock dwhyt...@gmail.com
  wrote:
   Up-front disclaimer: These comments are not meant to be negative,
   but
   do reflect my ignorance of the event.  I'm asking the questions
   because I honestly don't know the answers.  No disrespect intended.
  
 
  Thanks.  I did some usage editing  I also added the Wikipedia links,
  though I'd encourage translators to identify native language pages
  for
  these topics, where they exist.
 
  -Rob
 
 
   the way of Bangladeshi people give - the way that Bangladeshi
   people give
   or perhaps how Bangladeshi people give
   or the way of Bangladeshi people to give
  
   In every town of Bangladesh has Language Martyr's Monument -
   Every
   town of Bangladesh has a Language Martyr's Monument
   or perhaps In every town of Bangladesh there is a Language
   Martyr's
   Monument
   But just to confirm...does that mean there's a monument in every
   town,
   or does every town honor Language Movement Day?
  
   There are more than one Language Martyr's Monument in USA, UK,
   Italy
   and many other countries.
   Again, not sure if this refers to an actual monument or celebration
   of
   the event.  And is the intent to say that US, UK, Italy and many
   other
   countries have monuments, or that each of them has more than one?
   Possible alternative: There are Language Martyr's Monuments in the
   USA, UK, Italy and many other countries.
  
   not only in February 21 but also in other days - not only on
   February 21 but also on other days
  
   As volunteer-run,  non-profit organization - As a
   volunteer-run,
   non-profit organization
  
   Don
  
   On Fri, Feb 15, 2013 at 7:46 AM, Rob Weir robw...@apache.org
   wrote:
  
  
   https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013
  
   Thanks to Khan for the background information and Robin for the
   logo
   design.
  
   1. Proofreading is always appreciated.
  
   2. Robin, maybe you could make a version of the logo with
   transparent
   background rather than white?
  
   3. Since we are commemorating International Mother Language Day,
   translations of the blog post are most welcome.  If you can send
   me a
   translation by end of day Tuesday I can add it to the post.  Or if
   you
   host a translation externally we can link to it.
  
   4. I plan on posting on Wednesday afternoon, New York time, so we
   cover February 21st across all time zones.
  
   Thanks!
  
   -Rob
 
 
 
 



 --
 Jeongkyu Kim
 OpenOffice.org Korean community lead

 Community website http://openoffice.or.kr
 Personal blog http://openoffice.or.kr/gomme




Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Rob Weir
On Tue, Feb 19, 2013 at 1:14 PM, Xuacu xuacu...@gmail.com wrote:
 Hi Rob, all

 The Asturian translation for the post is attached to this message.
 We've had some extra work to create a Wikipedia entry in Asturian for
 IMLD too (shame on us, we didn't have such entry before!)


Great.  The Asturian translation is now online in the draft post.

-Rob

 All the best
 --
 Xuacu

 2013/2/15 Rob Weir robw...@apache.org:
 https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013

 Thanks to Khan for the background information and Robin for the logo design.

 1. Proofreading is always appreciated.

 2. Robin, maybe you could make a version of the logo with transparent
 background rather than white?

 3. Since we are commemorating International Mother Language Day,
 translations of the blog post are most welcome.  If you can send me a
 translation by end of day Tuesday I can add it to the post.  Or if you
 host a translation externally we can link to it.

 4. I plan on posting on Wednesday afternoon, New York time, so we
 cover February 21st across all time zones.

 Thanks!

 -Rob


Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Xuacu
Hi Rob

Something is wrong in the last paragraph (the very lng link;)) I
paste the two sentences involved, including the appropriate links,
below:

..

a href=http://openoffice.apache.org/translate.html; Cola to
ayuda/a podemos dar sofitu a centenares de llingües.nbsp; Hai una
llista de les llingües a les qu'intentamos dar sofitu a
href=https://translate.apache.org/projects/OOo_34/;equí/a.
..

Best regards
--
Xuacu

2013/2/19 Rob Weir robw...@apache.org:
 On Tue, Feb 19, 2013 at 1:14 PM, Xuacu xuacu...@gmail.com wrote:
 Hi Rob, all

 The Asturian translation for the post is attached to this message.
 We've had some extra work to create a Wikipedia entry in Asturian for
 IMLD too (shame on us, we didn't have such entry before!)


 Great.  The Asturian translation is now online in the draft post.

 -Rob

 All the best
 --
 Xuacu

 2013/2/15 Rob Weir robw...@apache.org:
 https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013

 Thanks to Khan for the background information and Robin for the logo design.

 1. Proofreading is always appreciated.

 2. Robin, maybe you could make a version of the logo with transparent
 background rather than white?

 3. Since we are commemorating International Mother Language Day,
 translations of the blog post are most welcome.  If you can send me a
 translation by end of day Tuesday I can add it to the post.  Or if you
 host a translation externally we can link to it.

 4. I plan on posting on Wednesday afternoon, New York time, so we
 cover February 21st across all time zones.

 Thanks!

 -Rob


Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread FR web forum
Hello list,

This is the french translation.
Hope that attached file is good for you.





french.odt
Description: application/vnd.oasis.opendocument.text


Re: [Test Plan] AOO 4.0 test plan

2013-02-19 Thread FR web forum
Hello list,

I don't see nothing about translation process.
Is it plan?




Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Rob Weir
On Tue, Feb 19, 2013 at 2:46 PM, Xuacu xuacu...@gmail.com wrote:
 Hi Rob

 Something is wrong in the last paragraph (the very lng link;)) I
 paste the two sentences involved, including the appropriate links,
 below:


OK.  I think I fixed it ;-)

-Rob

 ..

 a href=http://openoffice.apache.org/translate.html; Cola to
 ayuda/a podemos dar sofitu a centenares de llingües.nbsp; Hai una
 llista de les llingües a les qu'intentamos dar sofitu a
 href=https://translate.apache.org/projects/OOo_34/;equí/a.
 ..

 Best regards
 --
 Xuacu

 2013/2/19 Rob Weir robw...@apache.org:
 On Tue, Feb 19, 2013 at 1:14 PM, Xuacu xuacu...@gmail.com wrote:
 Hi Rob, all

 The Asturian translation for the post is attached to this message.
 We've had some extra work to create a Wikipedia entry in Asturian for
 IMLD too (shame on us, we didn't have such entry before!)


 Great.  The Asturian translation is now online in the draft post.

 -Rob

 All the best
 --
 Xuacu

 2013/2/15 Rob Weir robw...@apache.org:
 https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013

 Thanks to Khan for the background information and Robin for the logo 
 design.

 1. Proofreading is always appreciated.

 2. Robin, maybe you could make a version of the logo with transparent
 background rather than white?

 3. Since we are commemorating International Mother Language Day,
 translations of the blog post are most welcome.  If you can send me a
 translation by end of day Tuesday I can add it to the post.  Or if you
 host a translation externally we can link to it.

 4. I plan on posting on Wednesday afternoon, New York time, so we
 cover February 21st across all time zones.

 Thanks!

 -Rob


Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Rob Weir
On Tue, Feb 19, 2013 at 3:30 PM, FR web forum ooofo...@free.fr wrote:
 Hello list,

 This is the french translation.
 Hope that attached file is good for you.


It looks good.  You can see the draft here:
https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013

Thanks,

-Rob





Unsubscribe please Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Juanita Williamson
Please unsubscribe me. I'll rather join at a later stage.

Many thanks!
Juanita Williamson
Cell: +27 (0)79 409 2005
Fax: +27 (0)86 6179 077
eMail: juanita.william...@gmail.com
Sent via my BlackBerry!

-Original Message-
From: FR web forum ooofo...@free.fr
Date: Tue, 19 Feb 2013 21:30:36 
To: dev@openoffice.apache.org
Reply-To: dev@openoffice.apache.org
Subject: Re: Draft blog post: International Mother Language Day 2013 --
 Translations requested

Hello list,

This is the french translation.
Hope that attached file is good for you.






Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Andrea Pescetti

Rob Weir wrote:

On Tue, Feb 19, 2013 at 12:33 PM, Fabrizio Marchesano wrote:

in attachment you will find the Italian translation of the post (with links
to the Italian version of external pages where available).

Thanks.  I've added your translation to the post.


Thank you Fabrizio, I reviewed the translation and it's fine, I just 
linked, in the Italian translation only and directly online, the word 
Italia to 
http://rete.comuni-italiani.it/wiki/Bari/Monumento_ai_Martiri_del_Bangladesh 
(so that curious people can easily find out where the Italian monument is).


Given the occasion, I would suggest to credit translators too in the post.

Regards,
  Andrea.


Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Xuacu
2013/2/19 Rob Weir robw...@apache.org:


 OK.  I think I fixed it ;-)

 -Rob


Perfect! Thank you very much

--
Xuacu


Re: The Great Bugzilla Taxonomy Cleanup

2013-02-19 Thread Kay Schenk
On Mon, Feb 18, 2013 at 2:15 PM, Rob Weir robw...@apache.org wrote:

 On Fri, Feb 15, 2013 at 8:00 PM, Rob Weir robw...@apache.org wrote:
  No, no.  Don't worry.  I haven't changed anything ;-)  But I have put
  up a wiki page with our current top level taxonomy, as well as the
  descriptions and defect counts:
 
  https://cwiki.apache.org/confluence/display/OOOUSERS/Bugzilla+Taxonomy
 
  I also have a column for Proposed Action
 
  I wonder what we can do to make a taxonomy that is simpler and easier to
 use?
 


 Some good suggestions are now in the wiki for this:

 https://cwiki.apache.org/confluence/display/OOOUSERS/Bugzilla+Taxonomy

 If there are any other suggestions, or if there are concerns about the
 proposed changes in the wiki now, please let me know by EOD Thursday.
 Otherwise I'll plan on acting on these proposals at the end of the
 week.

 Regards,

 -Rob


Thank you for suggesting and undertaking this un fun but needed task. I
just added one or two comments but nothing particularly substantial. Regina
made MANY good suggestions.

Any progress to simplify for end users is good.



  Note:  I figured out how to disable email notifications in BZ.  So if
  we do need to make bulk changes, I can do it without filling your
  inboxes.


  -Rob




-- 

MzK

Achieving happiness requires the right combination of Zen and Zin.


maybe a useful little link to the Introduction to Contributing page...

2013-02-19 Thread Kay Schenk
Any issues with adding the following link -- A Guide to Participating in an
Open Source Software Community:

http://www.oss-watch.ac.uk/resources/toptipscommunities

as say item #2.5 on:

http://openoffice.apache.org/orientation/intro-contributing.html


-- 

MzK

Achieving happiness requires the right combination of Zen and Zin.


configuration changes for external libraries

2013-02-19 Thread Michael Lam
I am trying to update the build to use the latest source of HSQLDB but 
the build is failing and I am not sure how to proceed. I already updated 
main/external_deps.list as well as the makefile.mk and version.mk within 
hsqldb.


I am getting the following and not sure where it is configured

dmake:  Error: -- 
`./unxlngx6.pro/misc/c2a47e08e95cdff1dc9bb2f8dd73d553-hsqldb_2_2_9.unpack' not 
found, and can't be made

Any help would be most helpful.

Thanks
Michael


Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Rob Weir
On Tue, Feb 19, 2013 at 4:04 PM, Andrea Pescetti pesce...@apache.org wrote:
 Rob Weir wrote:

 On Tue, Feb 19, 2013 at 12:33 PM, Fabrizio Marchesano wrote:

 in attachment you will find the Italian translation of the post (with
 links
 to the Italian version of external pages where available).

 Thanks.  I've added your translation to the post.


 Thank you Fabrizio, I reviewed the translation and it's fine, I just linked,
 in the Italian translation only and directly online, the word Italia to
 http://rete.comuni-italiani.it/wiki/Bari/Monumento_ai_Martiri_del_Bangladesh
 (so that curious people can easily find out where the Italian monument is).

 Given the occasion, I would suggest to credit translators too in the post.


I've added the translator names.

-Rob


 Regards,
   Andrea.


Re: Unsubscribe please -Re: Draft blog post: International Mother Language Day 2013 -- Translations requested

2013-02-19 Thread Rob Weir
Hi Juanita, you can unsubscribe by sending an email to:

dev-unsubscr...@openoffice.apache.org

You'll then receive a confirmation email.  Once you confirm to that
you will be unsubscribed.

-Rob

On Tue, Feb 19, 2013 at 3:51 PM, Juanita Williamson
juanitawilliam...@gmail.com wrote:
 Hi, Rob

 Please unsubscribe me from your mailing list. I will rather join again at a 
 later stage.

 Many thanks,

 Juanita
 --Original Message--
 From: Rob Weir
 To: dev@openoffice.apache.org
 ReplyTo: dev@openoffice.apache.org
 Subject: Re: Draft blog post: International Mother Language Day 2013 -- 
 Translations requested
 Sent: Feb 19, 2013 22:48

 On Tue, Feb 19, 2013 at 3:30 PM, FR web forum ooofo...@free.fr wrote:
 Hello list,

 This is the french translation.
 Hope that attached file is good for you.


 It looks good.  You can see the draft here:
 https://blogs.apache.org/preview/OOo/?previewEntry=international_mother_language_day_2013

 Thanks,

 -Rob




 Juanita Williamson
 Cell: +27 (0)79 409 2005
 Fax: +27 (0)86 6179 077
 eMail: juanita.william...@gmail.com
 Sent via my BlackBerry!


Re: configuration changes for external libraries

2013-02-19 Thread Kay Schenk
On Tue, Feb 19, 2013 at 2:18 PM, Michael Lam mnsyl4...@verizon.net wrote:

 I am trying to update the build to use the latest source of HSQLDB but the
 build is failing and I am not sure how to proceed. I already updated
 main/external_deps.list as well as the makefile.mk and version.mk within
 hsqldb.

 I am getting the following and not sure where it is configured

 dmake:  Error: -- `./unxlngx6.pro/misc/**c2a47e08e95cdff1dc9bb2f8dd73d5**
 53-hsqldb_2_2_9.unpackhttp://unxlngx6.pro/misc/c2a47e08e95cdff1dc9bb2f8dd73d553-hsqldb_2_2_9.unpack'
 not found, and can't be made

 Any help would be most helpful.

 Thanks
 Michael


Michael --

Can you post your changed entry for

main/external_deps.list

maybe that would help troubleshoot this.

-- 

MzK

Achieving happiness requires the right combination of Zen and Zin.


Re: Building with --without-system-serf

2013-02-19 Thread Andrea Pescetti

On 15/02/2013 Andre Fischer wrote:

I am probably responsible for this code.  If you can make it better, and
have not not already done so, then please do it.


Thanks, committed (but I only made the minimal changes for 
--without-system-serf, not a global cleanup).


Regards,
  Andrea.


HI

2013-02-19 Thread sales mettlecorporation
Hi,

I am Sumit from India ( Bangalore) , i wish to develop PC tuning software
of my band, i request all of you to help and contribute to this work.

i am reachable on this mail ID.

Thanks and regards
Prakash


Re: configuration changes for external libraries

2013-02-19 Thread Michael Lam

On 02/19/2013 05:36 PM, Kay Schenk wrote:

On Tue, Feb 19, 2013 at 2:18 PM, Michael Lam mnsyl4...@verizon.net wrote:


I am trying to update the build to use the latest source of HSQLDB but the
build is failing and I am not sure how to proceed. I already updated
main/external_deps.list as well as the makefile.mk and version.mk within
hsqldb.

I am getting the following and not sure where it is configured

dmake:  Error: -- `./unxlngx6.pro/misc/**c2a47e08e95cdff1dc9bb2f8dd73d5**
53-hsqldb_2_2_9.unpackhttp://unxlngx6.pro/misc/c2a47e08e95cdff1dc9bb2f8dd73d553-hsqldb_2_2_9.unpack'
not found, and can't be made

Any help would be most helpful.

Thanks
Michael


Michael --

Can you post your changed entry for

main/external_deps.list

maybe that would help troubleshoot this.


This is the updated portion

if (SOLAR_JAVA == TRUE)
MD5 = c2a47e08e95cdff1dc9bb2f8dd73d553
name = hsqldb-2.2.9.zip
URL1 = 
http://sourceforge.net/projects/hsqldb/files/hsqldb/hsqldb_2_2/hsqldb-2.2.9.zip/download

URL2 = $(OOO_EXTRAS)$(MD5)-$(name)

For the makefile I updated the CONVERTFILES and PATCH_FILES variable to 
. I tried to use Opengrok to locate where unpack is being created, I 
found main/solenv/inc/tg__ext.mk but that seems to be just using the 
variable defined in other files.


Re: error: BOOST_MATH_OVERFLOW_ERROR_POLICY redefined

2013-02-19 Thread Pedro Giffuni
Hi Pavel;

It is a bit strange that you seem to be the only one that reports this
error after all this time: I wonder if you are using something different
than the internal boost (which is already outdated), or if this is just
a WaE.

In any case, try this:

http://people.apache.org/~pfg/patches/patch-boost-math-error-policy


cheers,

Pedro.


Re: Reg:How to Begin

2013-02-19 Thread Ariel Constenla-Haile
Hi Sivakumar Annadurai,

On Wed, Feb 20, 2013 at 11:33:20AM +0530, Sivakumar Annadurai wrote:
 Hi,
  I like to work in open-office project, But i don't know how to start,
 how to get Svn URL for the open-office, and what process i need to done,
 Help me if u Have time

You can start with the Apache OpenOffice Building Guide:
http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO


Regards
-- 
Ariel Constenla-Haile
La Plata, Argentina


pgp28egJjqvT4.pgp
Description: PGP signature


Re: Tutorial UNO IDL

2013-02-19 Thread Juergen Schmidt
Am Mittwoch, 20. Februar 2013 um 01:55 schrieb jorge ivan poot diaz:
 Hello,
 I'm working on this tutorial:
 http://wiki.openoffice.org/wiki/Tutorial_UNO_IDL
 
 When I'm compiling I have the following error:
we have a compatibility check at the end which checks changed API against a 
released version of the API, a reference type library.

We normally don't allow incompatible API changes. They allowed only for 
specific changes and for major releases when a migration path is available and 
documented. A little bit more work... Let me check the tutorial later ...

Juergen
  
 
 

 S 
 
 Entering /home/ivan/aoo/main/offapi/com/sun/star/ui/dialogs
 
 dmake: Warning: -- Target [../../../../../
 unxlngi6.pro/ucr/com/sun/star/ui/dialogs/XExecutableDialog.urd] was made
 but the time stamp has not been updated.
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/idlc -verbose @/tmp/mkhysZNf
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/idlc: compiling 1 source
 files ...
 Compiling: XExecutableDialog.idl
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/idlc: returned
 successful/home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/idlc Version 1.1
 
 rm -f ../../../../../unxlngi6.pro/ucr/cssuidialogs.db
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regmerge
 ../../../../../unxlngi6.pro/ucr/cssuidialogs.dbUCR @/tmp/mkomhWDi
 dmake: Warning: -- Target [../../../../../
 unxlngi6.pro/ucrdoc/com/sun/star/ui/dialogs/XExecutableDialog.urd] was made
 but the time stamp has not been updated.
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/idlc -verbose @/tmp/mk3F38Bl
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/idlc: compiling 1 source
 files ...
 Compiling: XExecutableDialog.idl
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/idlc: returned
 successful/home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/idlc Version 1.1
 
 rm -f ../../../../../unxlngi6.pro/ucrdoc/cssuidialogs.db
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regmerge
 ../../../../../unxlngi6.pro/ucrdoc/cssuidialogs.dbUCR @/tmp/mk7pbrFo
 
 ..
 ..
 ..
 ..
 ..
 ..
 ..
 
 
 Entering /home/ivan/aoo/main/offapi/util
 
 rm -f ../unxlngi6.pro/ucr/offapi.db
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regmerge ../unxlngi6.pro/ucr/offapi.db / @/tmp/mkEYrNX8
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regmerge ../unxlngi6.pro/ucr/types.db /
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/udkapi.rdb
 rm -f ../unxlngi6.pro/ucrdoc/offapi_doc.db
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regmerge ../unxlngi6.pro/ucrdoc/offapi_doc.db /
 @/tmp/mkEInjsk
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regmerge ../unxlngi6.pro/ucrdoc/types_doc.db /
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/udkapi_doc.rdb
 :  LD_LIBRARY_PATH=/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/lib${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}/home/ivan/aoo/main/solver/350/
 unxlngi6.pro/bin/regcompare -f -t -r1 ../type_reference/types.rdb -r2 ../
 unxlngi6.pro/ucr/types.db \
  echo  ../unxlngi6.pro/misc/registrycheck.flag
 EXISTENCE: published key /UCR/com/sun/star/ui/dialogs/XExecutableDialog
 exists only in registry 1
 /home/ivan/aoo/main/solver/350/unxlngi6.pro/bin/regcompare: registries are
 incompatible: 1 differences!
 dmake: Error code 11, while making '../unxlngi6.pro/misc/registrycheck.flag
 '
 ERROR: error 65280 occurred while making /home/ivan/aoo/main/offapi/util
 
 
 
 What is the cause of this error?
 What is the solution?
 Help me.
 
 
 Regards. 



Re: Solving this 0⁰ issue correctly (was Re: Calc behavior: result of 0 ^ 0)

2013-02-19 Thread Andrea Pescetti

On 18/02/2013 Rob Weir wrote:

On Mon, Feb 18, 2013 at 3:58 AM, Andre Fischer wrote:

On 18.02.2013 01:15, Pedro Giffuni wrote:
[Andre] turn this into a switch that can be altered via Tools-Options
at runtime by the user.  The user is ultimately the only person who knows
what the result of the power function in edge cases should be.

So let me suggest a solution ... this really needs to be a per-document
setting. ...
3) If we make it a runtime setting --- all legacy documents in ODF
format are evaluated according to the legacy mode.  So no
compatibility break.   Users have a choice for mode for all new
documents.  All Excel format documents by default are in
Excel-compatibility mode.


This seems the only solution where we could have consensus. It is a 
non-trivial enhancement but it has advantages.



Are you really suggesting to ship AOO on FreeBSD with different behavior
then on eg Windows? ... Please don't do that.


Yes, this should be avoided if possible. Let's try to avoid 
inconsistencies across operating systems.



It *is* rude, really ... I *don't* care much what happens with the patch,
if it should be disabled or not, but I DO want respect. ...
I also want an assurance that this will never *ever* happen again (I am
talking about the revert, I guess bikesheds are unavoidable).


Symbolically reverting the patch again and then back out is something 
that could have worked if done immediately, but I feel it would be 
excessive at the moment. In any case, what I see more important, and 
what I will do later this week, is to propose changes to 
http://www.apache.org/foundation/glossary.html#Veto that make it clear 
that it is considered disrespectful or anti-social to revert someone 
else's patches. This will allow better handling of similar problems in 
future.


Regards,
  Andrea.