Calc: can the whole row be highlighted automatically when focus on a cell?

2012-10-17 Thread lou ql
I am editing a calc file, and have to change data in discontinuous cells
row by row.

In order to avoid changing data of another row, I follow the steps for each:
1. edit data in one cell, e.g. C111
2. highlight the whole row manually to help me to locate the the next cell
that need modify, e.g. F111
4. repeat highlight then select till this row finished.

It will be helpful if the row can be highlighted automatically when I focus
or edit a cell...

-- 
Regards,
Lou QingLe


[HELP]usage of XIndexReplace.replaceByIndex()?

2012-08-27 Thread lou ql
I'm using UNO API to set graphic bullet for a piece of text in SD, the
graphic is from gallery Bullets.

There are 62 gif graphics in gallery Bullets, and I set them as the
bullet graphic one by one. Most work fine, but the last 3 gif graphics
fails: the value of GraphicURL is
vnd.sun.star.GraphicObject: after
replaceByIndex, but not the value I set.

Then I tried use only the last 4 gif graphics as parameters then run again,
all work...

 setGraphicBullets(String inputUniqueID){
   Object numberingrules =
m_xtextProps.getPropertyValue(NumberingRules);
XIndexReplace xReplace = (XIndexReplace) UnoRuntime.queryInterface(
 XIndexReplace.class, numberingrules);

PropertyValue[] props = new PropertyValue[3];
props[0] = new PropertyValue();
props[0].Name = NumberingType;
props[0].Value = new Short(NumberingType.BITMAP );

props[1] = new PropertyValue();
props[1].Name = GraphicURL;
props[1].Value = vnd.sun.star.GraphicObject:+inputUniqueID;

props[2] = new PropertyValue();
props[2].Name = GraphicSize;
props[2].Value = new Size(500,500);

//set numberingType
xReplace.replaceByIndex(0, props);
*//failure: for the last 3 gifs, after this, I tried to get the GraphicURL
value, it's vnd.sun.star.GraphicObject:*

m_xtextProps.setPropertyValue(NumberingRules, numberingrules);
  //set numbering level to 0
m_xtextProps.setPropertyValue(NumberingLevel, new
Short((short)0));
}

the parameter inputUniqueID is the uniqueID of the gallery items in
Bullets theme:
String[] getUniqueID()
{
Object ogalleryThemeProvider =
app.getServiceFactory().createInstance(com.sun.star.gallery.GalleryThemeProvider);
XGalleryThemeProvider xgalleryThemeProvider =
(XGalleryThemeProvider)UnoRuntime.queryInterface(XGalleryThemeProvider.class,
ogalleryThemeProvider);

//get the Bullets theme
Object bulletTheme = xgalleryThemeProvider.getByName(Bullets);
XGalleryTheme xbulletTheme =
(XGalleryTheme)UnoRuntime.queryInterface(XGalleryTheme.class, bulletTheme);

//get the items in Bullets theme one by one, set as parameter
int count = xbulletTheme.getCount();
String[] uniqueID = new String[count];
for(int i=0; icount;i++)
{
//if(i58) continue;

Object galleryItem = xbulletTheme.getByIndex(i);
XGalleryItem xGalleryItem =
(XGalleryItem)UnoRuntime.queryInterface(XGalleryItem.class, galleryItem);
XPropertySet galleryItemPro = (XPropertySet)
UnoRuntime.queryInterface(XPropertySet.class, xGalleryItem);
String URL = (String)galleryItemPro.getPropertyValue(URL);
Object graphic = galleryItemPro.getPropertyValue(Graphic);

XGraphic xgraphic =
(XGraphic)UnoRuntime.queryInterface(XGraphic.class, graphic);

Object graphicObj =
app.getServiceFactory().createInstance(com.sun.star.graphic.GraphicObject);
XGraphicObject xgraphicObj =
(XGraphicObject)UnoRuntime.queryInterface(XGraphicObject.class, graphicObj);
xgraphicObj.setGraphic(xgraphic);

uniqueID[i] = xgraphicObj.getUniqueID();
}
   return uniqueID;
}
-- 
Regards,
Lou QingLe


[QA CALLFORREVIEW][Automation][uno]Check Character style in SD

2012-08-15 Thread lou ql
Hi,

The patch contains testcases against some character style in SD, please
help to review.

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

Thanks.

-- 
Regards,
Lou QingLe


Re: Linux install instructions

2012-08-14 Thread lou ql
On Wed, Aug 15, 2012 at 12:22 AM, Kay Schenk kay.sch...@gmail.com wrote:

 On Tue, Aug 14, 2012 at 8:42 AM, Andre Fischer awf@gmail.com wrote:

  On 14.08.2012 15:05, Rob Weir wrote:
 
  I just noticed this new article.  It seems to have a complete
  description, including uninstalling LO and blocking future updates:
 
  http://www.tecmint.com/**install-apache-openoffice-3-4-**
  0-on-rhel-centos-6-3-5-8-and-**fedora-17-16/
 http://www.tecmint.com/install-apache-openoffice-3-4-0-on-rhel-centos-6-3-5-8-and-fedora-17-16/
 
 
  Does anyone see any technical errors?  If not we might want to link to
 it.
 
 
  well, not all Linux distros use yum...this is a RedHat gui for package
 management. So, as general instructions, h...

 The current install guide --

  http://www.openoffice.org/download/common/instructions.html#linux


This one is applicable for most linux platforms, but it's not so easy as
the above one to be followed by a non-experienced linux user.



 tells about disabling what LO may have setup, but not how to completely
 uninstall it. [I was attempting to be kind with this approach].

 I think most popular linux distros are inherently either RPM or DEB package
 management. It would be pretty easy to include the appropriate command line
 instructions to actually deinstall LO if we wanted to go that route.

 But, we could certainly link to this ... not a problem


  I did not read everything in detail but what I read looks good.
  Except maybe step 4:  the disabling of automatic updates of openoffice
  from the package repository.
  Should we ever setup our own repository (see below) or add our packages
 to
  the official repositories then the changes had to be undone.
  But who would remember these changes to /etc/yum.conf?
 
  -Andre
 
  PS: I have been playing around some more with metapackages (deb and rpm)
  and are now able to setup a local repository for Ubuntu 12.04 and Fedora
 17
  and install Apache OpenOffice from them.   This is pretty simple.  If we
  would try to setup an official Apache package repository we would have
  more problems with integrating download mirrors.
 

 YAY! Great news, Andre... I'm still hoepful I can get to eh openSUSE build
 service soonish. So far, just some preliminary investigation.



 --

 
 MzK

 Never express yourself more clearly than you are able to think.
 --
 Niels Bohr




-- 
Regards,
Lou QingLe


Re: [HELP]Is there a parameter to specify destination path in silent installation mode on Windows

2012-08-02 Thread lou ql
Thank you. I find the INSTALLLOCATION parameter for the msi packages.

But unfortunately it needs to unpack the .exe first..

Does the nsis .exe package accept such a parameter?

On Thu, Aug 2, 2012 at 2:02 PM, Peter Eberlein 
pet@refofd.verwalt-berlin.de wrote:

 Am 02.08.2012 03:44, schrieb lou ql:

  On Windows, run command
 Apache_OpenOffice_incubating_**3.4.1_Win_x86_install_en-US.**exe /S can
 installl openoffice in silent mode, but it will install openoffice into
 the
 default path. How can I do if I want to specify the installation path? Is
 there such a parameter for command line?

  Hi,

 e.g. http://wiki.services.**openoffice.org/wiki/**Documentation/How_Tos/**
 Automatic_Installation_on_**Windowshttp://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Automatic_Installation_on_Windows
 Look for MSI properties (or use the ORCA-tool)

 Regards

 Peter





-- 
Regards,
Lou QingLe


[HELP]Is there a parameter to specify destination path in silent installation mode on Windows

2012-08-01 Thread lou ql
On Windows, run command
Apache_OpenOffice_incubating_3.4.1_Win_x86_install_en-US.exe /S can
installl openoffice in silent mode, but it will install openoffice into the
default path. How can I do if I want to specify the installation path? Is
there such a parameter for command line?

-- 
Regards,
Lou QingLe


Re: [QA CALLFORVOLUNTEER]Release Testing for AOO 3.4.1 RC rev. 1366353

2012-07-31 Thread lou ql
On Mon, Jul 30, 2012 at 9:04 PM, Ji Yan yanji...@gmail.com wrote:

 Hi all,

   The new RC build is ready, I propose we start RC test now. several QA
 tasks have been created.

 The main task 120401 to track all of sub tasks.
 120401 https://issues.apache.org/ooo/show_bug.cgi?id=120401  [QA
 Task][Release Testing]AOO 3.4.1 RC rev. 1366353

 Sub task for what should be test:
 120402 https://issues.apache.org/ooo/show_bug.cgi?id=120402  [QA
 Task][Release Testing]Installation test for AOO 3.4.1 RC rev 1366353


I will take this one:
120402 https://issues.apache.org/ooo/show_bug.cgi?id=120402  [QA
Task][Release Testing]Installation test for AOO 3.4.1 RC rev 1366353


 120403 https://issues.apache.org/ooo/show_bug.cgi?id=120403  [QA
 Task][Release Testing]General testing for AOO 3.4.1 RC rev. 1366353
 120404 https://issues.apache.org/ooo/show_bug.cgi?id=120404  [QA
 Task][Release Testing]Native language testing for AOO 3.4.1 RC rev. 1366353
 120407 https://issues.apache.org/ooo/show_bug.cgi?id=120407  [QA
 Task][Release Testing]BVT for AOO 3.4.1 RC rev 1366353
 120408 https://issues.apache.org/ooo/show_bug.cgi?id=120408  [QA
 Task][Release Testing]PVT for AOO 3.4.1 RC rev 1366353


 Is there any volunteer will take ownership of above testing task.
 --


 Thanks  Best Regards, Yan Ji




-- 
Regards,
Lou QingLe


Re: [QA][CALL FOR REVIEW]Silent install/uninstall OpenOffice installation package

2012-07-31 Thread lou ql
Hi, I create a new patch which contains supporting for Mac, the hard code
is also removed.

Please help to review again. Thanks.

On Mon, Jul 30, 2012 at 2:24 PM, Zhe Liu aliu...@gmail.com wrote:

 Hi,
 I took  a look at it.  I found you hard coded
 Apache_OpenOffice_incubating_3.4.1_Win_x86_install_en-US.exe in
 build.xml. The exe name  changes depending on release version and
 revision.  Mac OS X is missed.


 2012/7/30 lou ql louqin...@gmail.com:
  Hi,
 
  The patch including silent installuninstall script for EXE, RPM and DEB
  packages.
  please help to review,thanks~
 
  https://issues.apache.org/ooo/show_bug.cgi?id=120322
  --
  Regards,
  Lou QingLe



 --
 Best Regards
 From aliu...@gmail.com




-- 
Regards,
Lou QingLe


[QA][CALL FOR REVIEW]Silent install/uninstall OpenOffice installation package

2012-07-30 Thread lou ql
Hi,

The patch including silent installuninstall script for EXE, RPM and DEB
packages.
please help to review,thanks~

https://issues.apache.org/ooo/show_bug.cgi?id=120322
-- 
Regards,
Lou QingLe


suggest to make language package depend on base package

2012-07-27 Thread lou ql
On windows, I installed Aoo3.4 en-US full installation package then zh-CN
language package upon it.

Then I upgrade to Aoo 3.4.1 en-US full installation set.

Upgrade smoothly, while the 3.4 zh-CN language package remains and is used
by the new 3.4.1 openoffice.

My suggestion is to uninstall the corresponding language package while
removing Aoo full installation set, atomatically, then user has to
re-install the new version of language package after upgrade to new version.

My reason:
1. if there are any UI change or any new translated string updated in
current release, user may miss them
2. release No. and revision in help-about: it's not translated now. but
once translated there may be a mistake: install aoo 3.4.1 base package and
using 3.4 language package, what the revison should be?


-- 
Regards,
Lou QingLe


Re: [RELEASE][3.4.1]: current status

2012-07-19 Thread lou ql
On Wed, Jul 18, 2012 at 5:25 PM, Jürgen Schmidt
jogischm...@googlemail.comwrote:

 Hi,

 I would like to give a short update where we are with 3.4.1

 Open issues or issues where the release blocker flag is requested:

 Release blocker
 * #119206# presenter console does not install on r1309668
 The problem is currently how to trigger the installation of bundled
 extensions after an upgrade installation. It's under investigation...

 Requested release blocker
 * #120257# Standard Dictionary does not recognize any words.
 We need a verification based on Andre's last comment because we can't
 reproduce it.

 * #120286# product version should be changed from 3.4 to 3.4.1
 We didn't add micro version info in all places before, especially not
 the system integration parts. Anyway I changed the product version in a
 prominent place to 3.4.1 and build a new windows version
 (
 http://people.apache.org/~jsc/signing_test/Apache_OpenOffice_incubating_3.4.1_Win_x86_install_en-US.exe
 ).
 This version is also signed with my self-signed test certificate (if
 somebody want to take a look on this as well, I can provide the cert
 info for local testing).
 It would be helpful if somebody else can give this version a try and can
 test it. Do an upgrade installation on 3.4 and check if everything works
 as expected.


clean install and upgrade from 3.4 against this build on my win7, it works
well.

The versions in:
installer panel,
desktop shortcut,
start menu,
quickstarter in Startup
help-about
help-check for update

are all changed to be 3.4.1. I added comments into BZ.


 I hope to get clarification on this issues until the end of the week.

 Juergen




-- 
Regards,
Lou QingLe


Re: Another Quickstarter adjustment

2012-07-18 Thread lou ql
When upgrade on Windows, the installer will kill the quickstarter
automatically without warning.

But if upgrade with openoffice running, with the window opening, there will
be a message asks user to close openoffice or quickstarter.  Info in this
message can be adjust and remove the quickstarter string?

But for multi-user system, if quickstarter is running by another user, this
warning massage is still needed.

On Wed, Jul 18, 2012 at 2:39 PM, Rory O'Farrell ofarr...@iol.ie wrote:


 A common problem with installation is that it objects to having the
 Quickstarter running.  Inexperienced users often are baffled by a message
 to close Openoffice before installation can proceed; they are not aware
 that the Quickstarter may be running in the System tray.  Would it be
 possible to modify the Installation procedure so that it automatically
 kills any running Quickstarter?

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




-- 
Regards,
Lou QingLe


Re: Another Quickstarter adjustment

2012-07-18 Thread lou ql
On Wed, Jul 18, 2012 at 3:21 PM, Rory O'Farrell ofarr...@iol.ie wrote:

 On Wed, 18 Jul 2012 15:04:56 +0800
 lou ql louqin...@gmail.com wrote:

  When upgrade on Windows, the installer will kill the quickstarter
  automatically without warning.

 Is this a new feature in AOO 3.4.x?  It was not my experience with earlier
 OOo versions.  If the Quickstarter was present in the System Tray under
 Windows, without OpenOffice running as an application, then one got the
 message.


I'm not sure, but it's the behavior when upgrading to 3.4.1


 
  But if upgrade with openoffice running, with the window opening, there
 will
  be a message asks user to close openoffice or quickstarter.  Info in this
  message can be adjust and remove the quickstarter string?

 It would be helpful to users (and a least effort temporary fix) to say in
 the error message that the Quickstarter might be running.  As a long term
 aim the Quickstarter should be autmatically killed by the Installation.

 
  But for multi-user system, if quickstarter is running by another user,
 this
  warning massage is still needed.
 
  On Wed, Jul 18, 2012 at 2:39 PM, Rory O'Farrell ofarr...@iol.ie wrote:
 
  
   A common problem with installation is that it objects to having the
   Quickstarter running.  Inexperienced users often are baffled by a
 message
   to close Openoffice before installation can proceed; they are not aware
   that the Quickstarter may be running in the System tray.  Would it be
   possible to modify the Installation procedure so that it automatically
   kills any running Quickstarter?
  
   --
   Rory O'Farrell ofarr...@iol.ie
  
 
 
 
  --
  Regards,
  Lou QingLe


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




-- 
Regards,
Lou QingLe


Should quickstarter be enabled or disabled by default?

2012-07-17 Thread lou ql
Clean install:
1. Win7: quickstarter is disabled by default after a fresh install

2. Ubuntu 10.04: quickstarter is enabled by default after a fresh install

Upgrade: Enable quickstarter before upgrade

1. Win7, upgrade from OO3.3 to Aoo 3.4.1, quickstarter is still enabled
after upgrade

2. Win7, upgrade from Aoo 3.4 to Aoo 3.4.1, quickstarter is disabled after
upgrade

3. Ubuntu 10.04, upgrade from Aoo 3.4 to Aoo 3.4.1, quickstarter is still
enabled after upgrade
-- 
Regards,
Lou QingLe


I reopened Bug 119206: presenter console does not install on r1309668

2012-07-17 Thread lou ql
Hi, all

I reopened bug 119206: https://issues.apache.org/ooo/show_bug.cgi?id=119206

since it fails when upgrade from 3.4 to 3.4.1 or uninstall 3.4 then install
3.4.1 but leave user profile unremoved after uninstall.

-- 
Regards,
Lou QingLe


Re: [wiki][help] I cannot log into QA pages

2012-07-15 Thread lou ql
Thank you, TJ, it works for me.

On Fri, Jul 13, 2012 at 3:27 PM, tj t...@apache.org wrote:

 Hi


 On 7/12/2012 21:48, liu ping wrote:

 I meet the same condition on IE 8 ,but delete all the
 cookies/history/temporarily data ..., IE work well

 I also execute the below step on firefox browser, work well

 On Fri, Jul 13, 2012 at 9:11 AM, lou ql louqin...@gmail.com wrote:

  Click the login/create account at the top-right corner, then enter my
 username and password, click login

 the page refreshed, but at the top-rigth corner, it still display log
 in/create account but not my name...

 I click it again

 the page containing user name and password fields appears, while the
 top-right corner displays my name now...

 Then I click my contributions and select the page I want to edit.

 unfortunately, log in/create account displaying in the coming page
 thus I
 cannot edit the page...

 I tried reopen the web browser, clean the historycookies, with firefox
 or
 IE, all fails...

 I can login the main page(
 http://wiki.services.**openoffice.org/wiki/Main_Pagehttp://wiki.services.openoffice.org/wiki/Main_Page
 )**,
 and also correct when I go to those I never opened. But once I open the
 QA
 pages, I will be kicked out.

 --
 Regards,
 Lou QingLe


  This is a stale page problem, caused by the interaction between Apache
 Traffic Server and the MediaWiki software. Some tuning by a site maintainer
 is needed to fix it. You may encounter the problem during login, or just
 after editing a page.

 There is a good workaround (purge=1) detailed at:
 http://wiki.services.**openoffice.org/wiki/Moving_Dayhttp://wiki.services.openoffice.org/wiki/Moving_Day
 **

 /tj/






-- 
Regards,
Lou QingLe


Re: [QA]I create a wiki page to locate installation test cases

2012-07-12 Thread lou ql
Yes, I will work for this in the later days.

one case, one table, and a contents at the beginning, just like the vclauto
page.

On Thu, Jul 12, 2012 at 1:37 PM, Ji Yan yanji...@gmail.com wrote:

 Qing Le,

   Thanks for summarizing installation test in detail. One more suggestion,
 would you please separate verification point from case steps? It will let
 other understand your case more clearly.

 2012/7/12 lou ql louqin...@gmail.com

  Hi, all
 
  I draft some test cases for installation including clean install and
  upgrade for RPM, DEB and Windows .exe packages and post here:
  http://wiki.services.openoffice.org/wiki/QA/AOO341_TestCase/Installation
 
  Please feel free to supplement it.
 
  --
  Regards,
  Lou QingLe
 



 --


 Thanks  Best Regards, Yan Ji




-- 
Regards,
Lou QingLe


Re: [QA]I create a wiki page to locate installation test cases

2012-07-12 Thread lou ql
I refresh the outline.

Please ignore the table at the end. It will be removed once test cases
finish.

On Thu, Jul 12, 2012 at 1:37 PM, Ji Yan yanji...@gmail.com wrote:

 Qing Le,

   Thanks for summarizing installation test in detail. One more suggestion,
 would you please separate verification point from case steps? It will let
 other understand your case more clearly.

 2012/7/12 lou ql louqin...@gmail.com

  Hi, all
 
  I draft some test cases for installation including clean install and
  upgrade for RPM, DEB and Windows .exe packages and post here:
  http://wiki.services.openoffice.org/wiki/QA/AOO341_TestCase/Installation
 
  Please feel free to supplement it.
 
  --
  Regards,
  Lou QingLe
 



 --


 Thanks  Best Regards, Yan Ji




-- 
Regards,
Lou QingLe


[wiki][help] I cannot log into QA pages

2012-07-12 Thread lou ql
Click the login/create account at the top-right corner, then enter my
username and password, click login

the page refreshed, but at the top-rigth corner, it still display log
in/create account but not my name...

I click it again

the page containing user name and password fields appears, while the
top-right corner displays my name now...

Then I click my contributions and select the page I want to edit.

unfortunately, log in/create account displaying in the coming page thus I
cannot edit the page...

I tried reopen the web browser, clean the historycookies, with firefox or
IE, all fails...

I can login the main page(http://wiki.services.openoffice.org/wiki/Main_Page),
and also correct when I go to those I never opened. But once I open the QA
pages, I will be kicked out.

-- 
Regards,
Lou QingLe


will the product version change from 3.4 to 3.4.1?

2012-07-12 Thread lou ql
I install 1359641 build on my XP and notice that on install panels the
product version is still 3.4 but not 3.4.1.

The shortcuts on desktop and start menu remain 3.4.

But the version No. in help-about has been updated to 3.4.1

-- 
Regards,
Lou QingLe


[QA]I create a wiki page to locate installation test cases

2012-07-11 Thread lou ql
Hi, all

I draft some test cases for installation including clean install and
upgrade for RPM, DEB and Windows .exe packages and post here:
http://wiki.services.openoffice.org/wiki/QA/AOO341_TestCase/Installation

Please feel free to supplement it.

-- 
Regards,
Lou QingLe


Re: [PROPOSAL] propose a normal release build for upgrade testing

2012-07-09 Thread lou ql
product name of the dev snapshot build is OOo-DEV, different from the
stable build openoffice.org, thus it will not replace the installed aoo
3.4, that means we cannot upgrade from Aoo 3.4 to dev snapshot build.

on Linux, the snapshot build doesn't provide the desktop integration
package.

On Mon, Jul 9, 2012 at 1:55 PM, Shenfeng Liu liush...@gmail.com wrote:

 QL  Ji,
   Can I know the difference between current dev snapshot build and the
 official build you'd like to have?

 - Simon


 2012/7/9 Ji Yan yanji...@gmail.com

  +1
  To do release to release upgrade, the official build is needed.
 
  2012/7/9 lou ql louqin...@gmail.com
 
   We cannot perform upgrade testing against dev snapshot build.
  
   To find the issues more earlier, propose the normal release build for
   testing.
  
 
 
 
  --
 
 
  Thanks  Best Regards, Yan Ji
 



Re: [QA]Suggest to list specific verify steps or process in Bugzilla

2012-07-09 Thread lou ql
agree. and I will follow this when file, confirm and verify bugs.

On Mon, Jul 9, 2012 at 11:35 AM, Li Feng Wang phoenix.wan...@gmail.comwrote:

 Hi, all,

   When I verify AOO3.4.1 resolved release blocker defects in Bugzilla, I
 found there may be some understanding not consistent about defect, between
 defect reporter and verify tester.
   For better verify, I suggest to describe verify steps or process when
 change defect status to Confirmed or Closed.

 --
 Best Wishes, LiFeng Wang



[PROPOSAL] propose a normal release build for upgrade testing

2012-07-08 Thread lou ql
We cannot perform upgrade testing against dev snapshot build.

To find the issues more earlier, propose the normal release build for
testing.


Re: [QE]3.4.1 snapshot builds installation testing

2012-06-27 Thread lou ql
On Wed, Jun 27, 2012 at 3:22 PM, Oliver-Rainer Wittmann 
orwittm...@googlemail.com wrote:

 Hi,


 On 26.06.2012 08:57, Ariel Constenla-Haile wrote:

 Hi lou ql

 On Tue, Jun 26, 2012 at 02:30:12PM +0800, lou ql wrote:

Today I tested RPM build r1351960:
Apache_OpenOffice_incubating-**Dev_AOO341m1_Linux_x86_**
 install-rpm_en-US.tar.gz

There are no desktop-integration rpm packages...


 This is as designed: Developer Snapshot builds do not have
 system/desktop integration (yes, the naming we've been using is rather
 confusing, because we've been naming betas with desktop integration also
 Dev. Snapshots, and we've been placing them all in the same page - IMHO
 something we should fix in the future, in OOo times the distinction
 between Dev. Snaps. - builds from trunk - and alphas/betas
 - builds from current release branch - was more clear).

 installed on redhat 6.1 and suse 11:
1. install: rpm -ivh *.rpm, pass
2. version No. in help-about panel is 3.4.1
3. package name list by command rpm -qa | grep ooo contains 3.4.1
4. launch from /opt/ooo-dev3/program/soffice, works
5. bundled Extensions: 5 English dictionaries, Presentation Minimizer,
Presenter Console
6. English dic works: red wave lines under misspelled words,
 suggestions
appears in context menus
7. a module about CoinMP library exists in
/opt/ooo-dev3/share/readme/**NOTICE file
8. help-check for Update failed. I attached the screenshot


 yes, this is a non existent URL:

 http://www.openoffice.org/**projects/update/aoo341/check.**
 Update?pkgfmt=rpmhttp://www.openoffice.org/projects/update/aoo341/check.Update?pkgfmt=rpm
 does not exist.


 In the meanwhile I have create this HTTP resource.
 The AOO 3.4.1 update function should now respond that the installed
 version is up to date.


Yes,  it's correct now.


 Best regards, Oliver.



[QE]3.4.1 snapshot builds installation testing

2012-06-26 Thread lou ql
Today I tested RPM build r1351960:
Apache_OpenOffice_incubating-Dev_AOO341m1_Linux_x86_install-rpm_en-US.tar.gz

There are no desktop-integration rpm packages...

installed on redhat 6.1 and suse 11:
1. install: rpm -ivh *.rpm, pass
2. version No. in help-about panel is 3.4.1
3. package name list by command rpm -qa | grep ooo contains 3.4.1
4. launch from /opt/ooo-dev3/program/soffice, works
5. bundled Extensions: 5 English dictionaries, Presentation Minimizer,
Presenter Console
6. English dic works: red wave lines under misspelled words, suggestions
appears in context menus
7. a module about CoinMP library exists in
/opt/ooo-dev3/share/readme/NOTICE file
8. help-check for Update failed. I attached the screenshot
9. no quickstarter
10. remove: rpm -e `rpm -qa | grep ooo`, pass

not try upgrade:
1: 3.4 not support upgrade on linux
2: the snapshot build has different package name and cannot replace the
released openoffice


Re: [QE]3.4.1 snapshot builds installation testing

2012-06-26 Thread lou ql
On Tue, Jun 26, 2012 at 2:57 PM, Ariel Constenla-Haile
arie...@apache.orgwrote:

 Hi lou ql

 On Tue, Jun 26, 2012 at 02:30:12PM +0800, lou ql wrote:
 Today I tested RPM build r1351960:
 
  Apache_OpenOffice_incubating-Dev_AOO341m1_Linux_x86_install-rpm_en-US.tar.gz
 
 There are no desktop-integration rpm packages...

 This is as designed: Developer Snapshot builds do not have
 system/desktop integration (yes, the naming we've been using is rather
 confusing, because we've been naming betas with desktop integration also
 Dev. Snapshots, and we've been placing them all in the same page - IMHO
 something we should fix in the future, in OOo times the distinction
 between Dev. Snaps. - builds from trunk - and alphas/betas
 - builds from current release branch - was more clear).

 installed on redhat 6.1 and suse 11:
 1. install: rpm -ivh *.rpm, pass
 2. version No. in help-about panel is 3.4.1
 3. package name list by command rpm -qa | grep ooo contains 3.4.1
 4. launch from /opt/ooo-dev3/program/soffice, works
 5. bundled Extensions: 5 English dictionaries, Presentation Minimizer,
 Presenter Console
 6. English dic works: red wave lines under misspelled words,
 suggestions
 appears in context menus
 7. a module about CoinMP library exists in
 /opt/ooo-dev3/share/readme/NOTICE file
 8. help-check for Update failed. I attached the screenshot

 yes, this is a non existent URL:

 http://www.openoffice.org/projects/update/aoo341/check.Update?pkgfmt=rpm
 does not exist.

 9. no quickstarter

 You have to enable it:
 Tools - Options... - OOo-Dev - Memory - check Enable systray
 Quickstarter


I enable the quickstarter and encountered a crash: *Bug
120095*https://issues.apache.org/ooo/show_bug.cgi?id=120095

The crash also exists in Aoo 3.4, but since the Quickstarter is disabled in
3.4.1 by default, and those who like it being enabled will encounter this
crash more easier, I propose this as release block


 10. remove: rpm -e `rpm -qa | grep ooo`, pass
 
 not try upgrade:
 1: 3.4 not support upgrade on linux
 2: the snapshot build has different package name and cannot replace
 the
 released openoffice

 this two are obvious: this is a Developer Snapshot, it is not supposed
 to update the current default installation (though in theory it should
 update any other previous Developer Snapshot - in theory == update is
 completely broken on Linux, a full removal is required).


 Regards
 --
 Ariel Constenla-Haile
 La Plata, Argentina



[RELEASE][3.4.1]:propose bug 120095(openoffice crashes when the first time to exit quickstarter after it being enabled) as release blocker

2012-06-26 Thread lou ql
since quickstarter is disabled by default now, the user who want to enable
it will encounter this crash


Re: Draft chapters of Getting Started with AOO need reviewers

2012-04-24 Thread lou ql
I notice that in page 4 of Preface, Help system it describes the help
menu as *Apache OpenOffice Help*. But actually the menu is *OpenOffice.org
Help*. My build is r1325589 on Windows XP SP3.

Which is correct? or both are OK?

On 24 April 2012 18:18, Jean Weber jeanwe...@gmail.com wrote:

 I realise that most people are thoroughly preparing for the impending
 release of AOO, but IMO user docs are important too, so...

 A reminder that draft  chapters of Getting Started with AOO need
 reviewers; you can find the chapters here.

 http://www.odfauthors.org/apache-openoffice/english/user-guides/getting-started-3.4/drafts

 --Jean



bug 119259 raised for IP clearance: Gentium Basic and Gentium Book Basic coming back

2012-04-20 Thread lou ql
I select the external component in Bugzilla but there is no AOO340-dev
version, I used version58 instead.


Re: Installation on RHEL

2012-03-27 Thread lou ql
On redhat 6.1 it works fine.

But on Suse 11 SP1,  I tried on two SUSEs:
SUSE1. with oo3.2 pre-installed and never installed oo3.4, install OK,
launch OK. The problem is: oo3.2 and oo3.4 coexist

SUSE2. oo3.2 is removed. Not sure if installed oo3.4 before, install OK,
cannot launch. Error messages:
javaldx failed. User must select a JRE from options
dialog!/opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
`GLIBC_2.11' not found (required by
/opt/openoffice.org3/program/../basis-link/program/libsvt.so)
/opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
`GLIBC_2.11' not found (required by
/opt/openoffice.org3/program/../basis-link/program/libvcl.so)

I also tried install oo3.3, it works fine.

I will do more testing on SUSE2 tomorrow.


On 27 March 2012 11:28, Yan Ji yanji...@gmail.com wrote:

 Hi,
It seems the linux rpm package is built on RedHat 6 which glibc version
 is higher than RedHat 5. So the program failed to start. You can try it on
 RedHat 6 system.

 Thanks  Best Regards, Yan Ji

 On Mar 26, 2012, at 10:55 PM, q...@imsoftwaresystems.com wrote:

  Hi,
 
  Thanks for the reply. It is a 32 bit one. It is a fresh RHEL 5.1.x
  install.  The same build we could install on ubuntu 11.x  and invoke AOO
  3.4 and did some testing also. Sure we shall submit this issue.
 
  Thanks  Regards,
  Ram,
  Im Software Systems
 
 
 
 
 
  On Mon, 26 Mar 2012 22:44:39 +0800, xia zhao lilyzh...@gmail.com
 wrote:
  Ram,
 
  What's your RHEL 5.1? 64 bits or 32 bit? Can install AOO on linux but
  couldn't invoke it, this probloem ever exist two months ago on some
  environment but has been fixed as I know. But I am not sure if it due to
  the same error message as you described below.
 
  Also, please track your issue by BugZilla.
  https://issues.apache.org/ooo/
 
  Best Regrads,
 
  Lily
 
 
  2012/3/26 q...@imsoftwaresystems.com
 
 
 
  Hi , We tried to install OOo_3.4.0_Linux_x86_install-rpm_en-US.tar.gz
  on RHEL 5.1 . We could install but not able to invoke AOO3.4 . We are
  getting these errors.
 
 
  /opt/openoffice.org3/program/../basis-link/ure-link/bin/javaldx:
  /lib/libc.so.6: version `GLIBC_2.7' not found (required by
  /opt/openoffice.org/ure/bin/../lib/libuno_sal.so.3)
 
 
  /opt/openoffice.org3/program/../basis-link/ure-link/bin/javaldx:
  /lib/libc.so.6: version `GLIBC_2.7' not found (required by
  /opt/openoffice.org/ure/bin/../lib/libxml2.so.2)
 
 
  /opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
  `GLIBC_2.7' not found (required by
 
 /opt/openoffice.org3/program/../basis-link/ure-link/lib/libuno_sal.so.3)
 
 
  /opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
  `GLIBC_2.11' not found (required by
  /opt/openoffice.org3/program/../basis-link/program/libsvt.so)
 
 
  /opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
  `GLIBC_2.7' not found (required by
  /opt/openoffice.org3/program/../basis-link/program/libsvt.so)
 
 
  /opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
  `GLIBC_2.11' not found (required by
  /opt/openoffice.org3/program/../basis-link/program/libvcl.so)
 
 
  /opt/openoffice.org3/program/soffice.bin: /lib/libc.so.6: version
  `GLIBC_2.7' not found (required by
 
 
 
 /opt/openoffice.org3/program/../basis-link/program/../ure-link/lib/libxml2.so.2)
 
 
  These files do exist in the system but still getting these errors. Any
  idea on what the problem could be.
 
  Thanks  Regards,
 
 
  q...@imsoftwaresystems.com [1]
 
 
 
  Links:
  --
  [1]
  mailto:q...@imsoftwaresystems.com
 




[RC build testing]the .exe packages are not signed

2012-03-23 Thread lou ql
on Windows 7, when I double-click the package to install, a User Account
Control message will appear and the publisher is Unknown, will this be
fixed at the final version?


encountered non-reproduced crash when calling help

2012-03-22 Thread lou ql
I have English openoffice installed and then installed zh_CN package.

Launch Openoffice, new a spreadsheet. and working with Changes for some
time

in Edit-Changes-Show dialog, with Range checkbox checked, but the editbox
is empty, I clicked the Help button, then openoffice crashed...


Re: encountered non-reproduced crash when calling help

2012-03-22 Thread lou ql
I also tried zh_TW yesterday and today, not reproduced either... I will do
more about Changes later

On 22 March 2012 23:59, xia zhao lilyzh...@gmail.com wrote:

 Qing Le,

 I don't think this kind of crash related to language package, it should
 something related change tracking. You may try more in this area with
 different language package.

 I couldn't reproduce this crash against my Windows XP with same language
 package.

 Lily

 2012/3/22 lou ql louqin...@gmail.com

  I have English openoffice installed and then installed zh_CN package.
 
  Launch Openoffice, new a spreadsheet. and working with Changes for some
  time
 
  in Edit-Changes-Show dialog, with Range checkbox checked, but the
 editbox
  is empty, I clicked the Help button, then openoffice crashed...
 



Re: [BZ]no AOO340-dev in version list?

2012-03-22 Thread lou ql
l10n

On 23 March 2012 13:16, Herbert Duerr h...@apache.org wrote:

 On 03/23/2012 04:08 AM, lou ql wrote:

 I cannot find AOO340-dev in the version list when I new bug...


 When you tried to file the new issue the website
 https://issues.apache.org/ooo/**enter_bug.cgihttps://issues.apache.org/ooo/enter_bug.cgiasked:
 First, you must pick a product on which to enter a bug
 Which product did you select?

 Herbert



Re: [BZ]no AOO340-dev in version list?

2012-03-22 Thread lou ql
I can see it now, Thanks

On 23 March 2012 13:50, Herbert Duerr h...@apache.org wrote:

 On 03/23/2012 06:30 AM, lou ql wrote:

 l10n


 Now issues can be filed against l10n's AOO340-dev version.
 Also porting didn't have this version, but it has it now.

 Herbert



Re: WebDAV issue report: open one file repeatly will

2012-03-13 Thread lou ql
no, it's still existing. I have raised
119054https://issues.apache.org/ooo/show_bug.cgi?id=119054for it.

On 12 March 2012 20:18, Oliver-Rainer Wittmann orwittm...@googlemail.comwrote:

 Hi,


 On 09.03.2012 07:07, lou ql wrote:

 Ubuntu 10.04

 1. Launch oo3.4
 2. Click File-open
 3. enter http://9.123.153.36/webdav, then press Enter
 4. enter username and password, the remote folder is opened.
 5. select a .odt file then click Open, the selected document will open
 6. with the document opening, click File-open again, current location is
 still the remote folder
 7. select the same .odt file as that in step 5, then click open, nothing
 happened since the document is already opened
 8. close the opening .odt file, then click File-open again

 issue 1:  current location change to local /home/username

 9. enter http://9.123.153.36/webdav, then press Enter

 issue 2: error reading data from the internet, server error message:
 Forbidden

 10. Click File-open then try again to open the URL, nothing happened
 after
 hit Open button

 11. Exit openoffice then relauch, File-Open, the remote folder is opened
 now
 12. Double-click the .odt file to open, ASCII Filter Options dialog
 appears...accept the default selections then click Open, an empty document
 openes...the images and text in the .odt are not loaded

 Exit openoffice, then kill the office process can repair this..

 I didn't report in Bugzilla since I'm not sure whether my webdav server is
 correct set or not, I'm afraid others cannot reproduce this..


 Is this issue already solved as the other issue which have been discussed
 in thread WebDAV support: oo3.3 and oo3.4 are affecting each other?

 If not, I think it would be the best to submit an issue in bugzilla for it.

 Thanks and best regards, Oliver.



Re: WebDAV support: oo3.3 and oo3.4 are affecting each other

2012-03-11 Thread lou ql
On 9 March 2012 18:10, eric b eric.bach...@free.fr wrote:

 Hi,



 Disclaimer : the mail is not well quoted, so I'm not sure who I'm
 answering. Apologies if ever my answer is not clear.


 Le 9 mars 12 à 03:05, lou ql a écrit :


 2. a dialog appears asking for usernamepassword
 3. enter correct username/password, then press Enter
 4. the folder opened and I can see all contents
 5. close it. do some other operations: copy image then
 paste...open/close...
 6. click File-open in openoffice then insert
 http://9.123.153.36/webdavand click Open
 Nothing happened...

 it seems you did an intensive testing. But I can't reproduce the problems
 testing against a server running on Ubuntu and MacOS with clients based on
 OOo3.3 or AOO3.4 r1296433 on Windows 7 and MacOS.

 How do you run this on Mac openoffice? I cannot type into the open dialog
 on Mac 10.6, but can only select the local folders or the mounted folders.



 To open URL directly with the Mac OS X version, you need to use the
 OpenOffice.org Open dialog box (not the Apple native one).

 To achieve that, you'll have to open the preferences ( Apple +  ,  key)
 or Tools -Options. Once done, in OpenOffice.org - General - check the
 OpenOffice.org dialog box.

 Then quit AOOo, and try to Open a file - URL will be allowed (but you'll
 lose the native box).

 See:  http://ftp.educoo.org/home/**ApacheOpenOffice.org/open_URL/**
 AOOo_open_fr.pdfhttp://ftp.educoo.org/home/ApacheOpenOffice.org/open_URL/AOOo_open_fr.pdf

 (sorry, french version  only).

 Thank you, Eric, I can do it on Mac now.

I also tried this on Windows, open Tool-Options dialog, in
OpenOffice.org-Gernal, check on use OpenOffice.org save/open dialogs,
then, I can connect to my webdav server...This works on both the two XPs
that I mentioned before...

So, the problem is:

cannot connect to the webdav server by using system's native open dialog
but it's OK when using the openoffice open dialog.

While, system's open/save dialog is used by default





  The same when I want to insert an image via URL from
 Insert-Picture-From File I attached the open dialog, can you show me
 where do you type the URL? Thank you so much..

 and, is there anybody can help me to recover my XP?  I tried uninstall
 openoffice and Ooo-dev then remove the user profile and the folder in
 C:\Program Files, then re-install oo3.3 this morning, but it still cannot
 connect to the WebDAV


 Ok I should say I was able to open documents (in sub-directories, with
 spaces or special characters in the name) edit and save the documents.

 Has anybody else tried to connect to a WebDAV server?


 Yes, me. Long time ago.  We even had a patch for that, but it was refused,
 because it could cause an issue with Calc. I don't remind the issue number
 in IssueZilla, so you'll have to search using webdav keyword os something
 similar.


 HTH

 Eric

 --
 qɔᴉɹə
 Projet OOo4Kids : 
 http://wiki.ooo4kids.org/**index.php/Main_Pagehttp://wiki.ooo4kids.org/index.php/Main_Page
 L'association EducOOo : http://www.educoo.org
 Blog : http://eric.bachard.org/news








Re: WebDAV support: oo3.3 and oo3.4 are affecting each other

2012-03-08 Thread lou ql
On 8 March 2012 18:12, Jürgen Schmidt jogischm...@googlemail.com wrote:

 On 3/8/12 4:11 AM, lou ql wrote:

 I'm testing IP clearance-libneon these days. You can find the details
 from
 here:
 https://cwiki.apache.org/**confluence/display/OOOUSERS/**
 IP_Clearance+Impacthttps://cwiki.apache.org/confluence/display/OOOUSERS/IP_Clearance+Impact

 To test WebDAV supporting,  I set up a simple WebDAV server. It's the
 first
 time for me to do this, and I just test the server on XP SP3 with oo3.3 as
 client.

 background:
 on the XP,  I installed both oo3.3 and Ooo-dev. Then upgrade oo3.3 to
 r1293550 and found WebDAV doesn't work, then I uninstall r1293550 and
 re-install oo3.3. With this oo3.3 I test my WebDAV server:
 1. click File-open in openoffice then insert
 http://9.123.153.36/webdavand click Open

 2. a dialog appears asking for usernamepassword
 3. enter correct username/password, then press Enter
 4. the folder opened and I can see all contents, then I select a .odt file
 to open, succeeds.
 So, I say my server works.

 Yesterday I download r1296433 and upgrade oo3.3 to this latest build, then
 repeat above steps. But in open dialog I found the pass
 http://9.123.153.36/webdav is remembered, and it works.

 To avoid impact of user profile of oo3.3, I kill all process and rename
 folder C:\Documents and Settings\Administrator\**Application
 Data\OpenOffice.org, then relaunch openoffice and try again, but in step 1
 it says the file name is invalid...

 Reuse the old user profile, it works.

 Reuse the new one, it doesn't work.

 So, I thought there may be some settings in user profile which is set when
 installing.

 Then, I find a clean XP SP3, I never installed openoffice on it, and
 install oo3.4 r1296433. But it doesn't work with error the above file
 name
 is invalid...

 May be the server is invalid? Back to the original XP, I uninstall oo3.4,
 remove the user profiles, re-install oo3.3, unfortunately, 3.3 doesn't
 work
 either, with the same error message

 then I tried on Ubuntu 10.04: remove oo3.4 r1293550 which is upgraded from
 oo 3.3, then install latest r1296433, repeat the steps, works

 But when I modify then save, there is an Error message:
 Error saving the document libnero:
 Error transferring data to the internet.
 Server error mesage: Internal Server Error

 Maybe the permission on server is incorrect set? I will check later.

 So, the server is working, but oo3.3 cannot work now...except for user
 profile in C:\Documents and Settings\Administrator\**Application
 Data\OpenOffice.org, there is another place that openoffice is using?

 other platforms I tried:

 win7-64, intalled oo3.3, used for days, then uninstall and install oo3.4
 r1296433:
 1. click open then insert http://9.123.153.36/webdav and click Open
 2. a dialog appears asking for usernamepassword
 3. enter correct user/password, then press Enter
 Nothing happened...

 Redhat 6.1: installed oo3.3, upgraded to a local build r1296612, then
 uninstall and re-install the r1296433
 1. click File-open in openoffice then insert
 http://9.123.153.36/webdavand click Open

 2. a dialog appears asking for usernamepassword
 3. enter correct username/password, then press Enter
 4. the folder opened and I can see all contents
 5. close it. do some other operations: copy image then
 paste...open/close...
 6. click File-open in openoffice then insert
 http://9.123.153.36/webdavand click Open
 Nothing happened...

  it seems you did an intensive testing. But I can't reproduce the
 problems testing against a server running on Ubuntu and MacOS with clients
 based on OOo3.3 or AOO3.4 r1296433 on Windows 7 and MacOS.


How do you run this on Mac openoffice? I cannot type into the open dialog
on Mac 10.6, but can only select the local folders or the mounted folders.
The same when I want to insert an image via URL from Insert-Picture-From
File I attached the open dialog, can you show me where do you type the
URL? Thank you so much..

and, is there anybody can help me to recover my XP?  I tried uninstall
openoffice and Ooo-dev then remove the user profile and the folder in
C:\Program Files, then re-install oo3.3 this morning, but it still cannot
connect to the WebDAV



 Ok I should say I was able to open documents (in sub-directories, with
 spaces or special characters in the name) edit and save the documents.

 Has anybody else tried to connect to a WebDAV server?

 But I noticed a problem with https which needs further investigation, I
 will submit an issue for that.

 Juergen



Re: cannot paste a web image into a presentation?

2012-03-07 Thread lou ql
I'm doing with the second way, it works in document and spreadsheet, also
works in MS office PPT.

On 6 March 2012 18:35, Oliver-Rainer Wittmann orwittm...@googlemail.comwrote:

 Hi,


 On 06.03.2012 03:41, lou ql wrote:

 URL:
 https://cwiki.apache.org/**confluence/display/OOOUSERS/**
 AOO+3.4+Unofficial+Developer+**Snapshotshttps://cwiki.apache.org/confluence/display/OOOUSERS/AOO+3.4+Unofficial+Developer+Snapshots

 I tried copy the logo at the topleft of this page then paste into
 document/spreadsheet/**presentation, and find that the picture cannot be
 pasted into presentation. But I can do this in MS office 2010


 Currently, I have problems reproducing your problem.

 Can you please be a little bit more specific?
 How do you copy the image?
 Are you using a browser? Which one?

 I have done the following using latest snapshot build for Windows, rev.
 1296433:
 - open the website in Firefox
 - open context menu for the image
 - choose Copy Image
 - open an empty presentation document
 - hit keys Ctrl-V
 -- bitmap is pasted into the presentation.
 (Unfortunately, its background is black. I am experiencing the same in MS
 Paint. Thus, I assume that the copy process of Firefox does not recognized
 a possible existing Alpha channel for the transparency.)

 My 2nd try was:
 - open the website in Firefox
 - make a selection of the image using the mouse
 - hit keys Ctrl-C
 - open an empty presentation document
 - hit keys Ctrl-V
 -- nothing happens (the same happens in OOo 3.3). Reason for this is that
 the presentation document can not interpret the HTML in the clipboard.

 My 3rd try was:
 - open the website in Firefox
 - open context menu for the image
 - choose Copy Image Location
 - open an empty presentation document
 - menu Insert - Picture - From file
 - paste image URL into File name field
 - check checkbox Link
 - hit button Open
 -- image is inserted as linked image. It takes some time to download the
 image from the internet - I also had to allow the soffice.bin process to
 access the internet.


 Best regards, Oliver.



WebDAV support: oo3.3 and oo3.4 are affecting each other

2012-03-07 Thread lou ql
I'm testing IP clearance-libneon these days. You can find the details from
here:
https://cwiki.apache.org/confluence/display/OOOUSERS/IP_Clearance+Impact

To test WebDAV supporting,  I set up a simple WebDAV server. It's the first
time for me to do this, and I just test the server on XP SP3 with oo3.3 as
client.

background:
on the XP,  I installed both oo3.3 and Ooo-dev. Then upgrade oo3.3 to
r1293550 and found WebDAV doesn't work, then I uninstall r1293550 and
re-install oo3.3. With this oo3.3 I test my WebDAV server:
1. click File-open in openoffice then insert
http://9.123.153.36/webdavand click Open
2. a dialog appears asking for usernamepassword
3. enter correct username/password, then press Enter
4. the folder opened and I can see all contents, then I select a .odt file
to open, succeeds.
So, I say my server works.

Yesterday I download r1296433 and upgrade oo3.3 to this latest build, then
repeat above steps. But in open dialog I found the pass
http://9.123.153.36/webdav is remembered, and it works.

To avoid impact of user profile of oo3.3, I kill all process and rename
folder C:\Documents and Settings\Administrator\Application
Data\OpenOffice.org, then relaunch openoffice and try again, but in step 1
it says the file name is invalid...

Reuse the old user profile, it works.

Reuse the new one, it doesn't work.

So, I thought there may be some settings in user profile which is set when
installing.

Then, I find a clean XP SP3, I never installed openoffice on it, and
install oo3.4 r1296433. But it doesn't work with error the above file name
is invalid...

May be the server is invalid? Back to the original XP, I uninstall oo3.4,
remove the user profiles, re-install oo3.3, unfortunately, 3.3 doesn't work
either, with the same error message

then I tried on Ubuntu 10.04: remove oo3.4 r1293550 which is upgraded from
oo 3.3, then install latest r1296433, repeat the steps, works

But when I modify then save, there is an Error message:
Error saving the document libnero:
Error transferring data to the internet.
Server error mesage: Internal Server Error

Maybe the permission on server is incorrect set? I will check later.

So, the server is working, but oo3.3 cannot work now...except for user
profile in C:\Documents and Settings\Administrator\Application
Data\OpenOffice.org, there is another place that openoffice is using?

other platforms I tried:

win7-64, intalled oo3.3, used for days, then uninstall and install oo3.4
r1296433:
1. click open then insert http://9.123.153.36/webdav and click Open
2. a dialog appears asking for usernamepassword
3. enter correct user/password, then press Enter
Nothing happened...

Redhat 6.1: installed oo3.3, upgraded to a local build r1296612, then
uninstall and re-install the r1296433
1. click File-open in openoffice then insert
http://9.123.153.36/webdavand click Open
2. a dialog appears asking for usernamepassword
3. enter correct username/password, then press Enter
4. the folder opened and I can see all contents
5. close it. do some other operations: copy image then paste...open/close...
6. click File-open in openoffice then insert
http://9.123.153.36/webdavand click Open
Nothing happened...


[IP clearance] neon: web image cannot be loaded on XP/Mac and it will cause crash on Ubuntu

2012-03-01 Thread lou ql
on XP/Mac: copy a web image then paste into document, the image cannot be
loaded and only the placeholder can be seen.

and on Ubuntu 10.04, openoffice crashes when loading the image, bug
119000https://issues.apache.org/ooo/show_bug.cgi?id=119000has been
raised to report this. It may be a release blocker.


Re: Apply for member of qa-team

2012-03-01 Thread lou ql
Thanks.

On 1 March 2012 22:53, Rob Weir robw...@apache.org wrote:

 On Thu, Mar 1, 2012 at 2:24 AM, lou ql louqin...@gmail.com wrote:
  Hi,  Could you please add me to qa-team group? I cannot see the queris..
 

 Done.

 -Rob

  Thanks.
 
  On 28 February 2012 21:37, Rob Weir robw...@apache.org wrote:
 
  On Tue, Feb 28, 2012 at 4:21 AM, Shenfeng Liu liush...@gmail.com
 wrote:
   +1
   My bugzilla account as no permission currently. What should I do to
 add
   myself to any of the group below? Or how can those shared query be
 public
   available to people like me?
   Can any one help? Thanks very much!
  
 
  I just added liush...@gmail.com to the qa-team group.
 
  -Rob
 
   2012/2/27 xia zhao lilyzh...@gmail.com
  
   I created several queries for AOO 3.4 and hope anybody can view these
   queries and run the results. But when I tried to share my search
   result(query) to group, I only can find canconfirm,
  qa-users,canedit
   groups. People who are not in these groups can't view these queries.
 Can
   any Bugzilla admin can help setup one normal group, I means the ones
 who
   can create bug in Bugzilla, to view these public queries? Thanks a
 lot!
  
  
   Best Regards,
  
   Lily
  
 



Re: Success installing AOO on Windows 7

2012-02-29 Thread lou ql
On 1 March 2012 10:10, YangTerry polo8...@hotmail.com wrote:


 Failed to send with screenshot.

 This issue repro only in Writer editor. Other editor are fine.
 And the build number is 1293550.


There are two r1293550 builds, which one are you using? I just clean
installed the one provides full normal install sets, it works fine.


  From: polo8...@hotmail.com
  To: ooo-dev@incubator.apache.org
  Subject: RE: Success installing AOO on Windows 7
  Date: Thu, 1 Mar 2012 10:06:33 +0800
 
 
 
 
 
  Hi all,
  There is an issue at my side, After installed AOO 3.4 at my Win7 64bit
 machine, check with all editor there is blank menu and toolbar in the UI.
 
 
  But other editor is fine, Is there anyone can confirm this issue on Win7
 64bit machine?
 
  Thanks,
  Terry
 
   Date: Thu, 1 Mar 2012 09:49:09 +1000
   Subject: Success installing AOO on Windows 7
   From: jeanwe...@gmail.com
   To: ooo-dev@incubator.apache.org
  
   AFAIK this Windows 7 machine has all Win7 updates installed. It has
   OOo 3.3 and LO3.4 on it. I removed a previous ooo-dev (3.2!) following
   instructions Rory pointed me to. When I got the most up to date
   Windows installation file for AOO (from the cwiki page), it installed
   with no problem and appears to be working and has all the menus and
   toolbars. I'll test it more later when actually doing things.
  
   The only thing I noticed was that the splash screen on startup came
   up, disappeared, and then came up again, before the program actually
   started for the first time. This has not occurred on startup since
   then.
  
   --Jean
 
 




report builder extension: cannot be installed into r1293550 on XP, win7 64-bit or Ubuntu

2012-02-29 Thread lou ql
On 1 March 2012 03:49, drew jensen drewjensen.in...@gmail.com wrote:

 On Wed, 2012-02-29 at 09:18 -0500, Rob Weir wrote:
  As we approach the first Release Candidate for Apache OpenOffice 3.4,
  it would be wonderful if we could have some more volunteers testing
  the latest dev snapshots builds. Following is some information on what
  this requires, and how you can help.
 
  First, if you have never tested a pre-release product before, know
  that bugs are expected. That is the purpose of testing, to find bugs
  so they can be fixed. Bugs could range from UI glitches, to incorrect
  formatting to crashes or even data corruption.  So you probably don't
  want to use a test build for mission-critical tasks. Of course, I
  assume you have already backed up your important documents.  You do
  have backups, right?  Ideally you can do your testing on a separate
  machine from your main work machine, so if something goes wrong you
  will not interfere with your other work.
 
  The above are all sensible precautions when testing any pre-release
  software product.
 
  If you are ready to test, you can download the latest developer
  snapshot build from this page:
 
 
 https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+3.4+Unofficial+Developer+Snapshots
 
  We could use help verifying the install in all real-world scenarios,
  on clean OS installs, as upgrades to previous versions of OOo and as
  installs on machines where LibreOffice or Symphony are already
  installed.

 Installed on Ubuntu 11.04 alongside LibO 3.5 (64bit), OpenJDK 1.6 - no
 problems.

 Installed a few extensions - mixed results
 - Report Builder - install good, a couple of quick reports, good.


I installed it to the ooo-dev r1291124 successfully on XP.  But today when
I try to install into r1293550, there always be a message Could not create
java implementation loader, I tried on XP, win7 64-bit and Ubuntu, by
using the build which provides full normal install sets...

In IP_clearance page (
https://cwiki.apache.org/confluence/display/OOOUSERS/IP_Clearance) I notice
that several libararies are removed which are used by report builder
extension, should this extension still be usable without those libararies?
What's the impact of the removing?

- a couple of addon, custom spell checkers - all good
 - PostgreSQL SDB extension - failure to load, missing file.
 - Template Changer - hangs AOO during install (twice)
 - MySQL - no reason to try (that is a huge hit guys)

 Will go ahead and do this all on Vista (32Bit) w/ existing 3.3 later
 today.

 So - looking at the test page I guess the Bases test are mine to
 add..and I'll start when I have the Vista VM running.. :-/ how ironic
 for that to be the case today.. (sorry comment not likely to be
 understood by many here, but a few may)

 Otherwise - I suppose bugzilla will also be in order here and there.

 Good job by the way...

 //drew



 
  Once you have installed, launch OpenOffice and look at the Help/About
  box.  If the revision shown there matches the build you installed
  (e..g, r1293550) then the install was a success. Please send a short
  note to the ooo-dev@incubator.apache.org telling us what platform and
  scenario you installed (fresh install, upgrade, install next to
  LibreOffice, etc.).  This will help us understand what scenarios have
  already been attempted and which have not.
 
  After you have installed, there are three approaches to testing, of
  increasing degrees of formality:
 
  1) Just use the dev snapshot for your ordinary work, doing your
  ordinary tasks.  When you observe a bug, submit a report on this to
  Bugzilla.
 
  2) Self-directed testing.  Pick an area of the product that you
  understand well, like printing or text formatting, or slide show
  transitions.  Spend an hour or two trying to exercise that feature in
  all its variations.  If there is a dialog box, try manipulating all of
  its values.  If it is a formatting option, create a document that uses
  all variations.   Try to break it.  Try to think like a bug.
 
  A special area that could use attention is version compatibility.
  Take all of your OpenOffice.org 3.3 documents and open them up on AOO
  3.4.  Any errors?  Formatting issues?  Crashes? Missing data?   Ditto
  for opening Microsoft Office documents.  Are there any regressions,
  e.g., things that worked in 3.3 but now break in 3.4?  Try it in the
  other direction as well.  If you create a document in AOO 3.4, can it
  be read correctly in OOo 3.3?  Did we do anything that breaks
  backwards compatibility?
 
  Another special area is to verify the translations.  Install a
  multi-language install or a language pack and check the translation
  for completeness and accuracy.  If it looks good, please send a note
  to the list, so we know it has already been verified. If there are
  bugs, please enter into Bugzilla.
 
  3) Cover test cases from the test plan
 
  A 3.4 test plan is on the wiki here:
  

Apply for member of qa-team

2012-02-29 Thread lou ql
Hi,  Could you please add me to qa-team group? I cannot see the queris..

Thanks.

On 28 February 2012 21:37, Rob Weir robw...@apache.org wrote:

 On Tue, Feb 28, 2012 at 4:21 AM, Shenfeng Liu liush...@gmail.com wrote:
  +1
  My bugzilla account as no permission currently. What should I do to add
  myself to any of the group below? Or how can those shared query be public
  available to people like me?
  Can any one help? Thanks very much!
 

 I just added liush...@gmail.com to the qa-team group.

 -Rob

  2012/2/27 xia zhao lilyzh...@gmail.com
 
  I created several queries for AOO 3.4 and hope anybody can view these
  queries and run the results. But when I tried to share my search
  result(query) to group, I only can find canconfirm,
 qa-users,canedit
  groups. People who are not in these groups can't view these queries. Can
  any Bugzilla admin can help setup one normal group, I means the ones who
  can create bug in Bugzilla, to view these public queries? Thanks a lot!
 
 
  Best Regards,
 
  Lily
 



[Bugzilla] search function doesn't work

2012-02-28 Thread lou ql
When I search in Bugzilla, the following error occurs:

Apache OOo Bugzilla has encountered an internal error. You may have found a
bug in Apache OOo Bugzilla! Or, you may have followed a deep link that
contains information Bugzilla doesn't understand. Remember: *Garbage In,
Garbage Out!*

If you are sure that you didn't cause this error, please save this page and
send it to bugzilla-ad...@apache.org with details of what you were doing at
the time this message appeared. We *especially* want to know the URL of the
page you were on before you got this message.

URL:
https://issues.apache.org/ooo/buglist.cgi?resolution=---;emailassigned_to1=1;emailreporter1=1;emailtype1=exact;email1=louqingle%40gmail.com;list_id=7190
  undef error - Cannot determine local time zone

Traceback:


Re: confirm subscribe to ooo-dev@incubator.apache.org

2012-02-19 Thread lou ql
On 20 February 2012 01:03, Josef Latt josef.l...@gmx.net wrote:



 Am 19.02.2012 18:01, schrieb 
 ooo-dev-help@incubator.apache.**orgooo-dev-h...@incubator.apache.org
 :

 Hi! This is the ezmlm program. I'm managing the
 ooo-dev@incubator.apache.org mailing list.

 I'm working for my owner, who can be reached
 at ooo-dev-owner@incubator.**apache.orgooo-dev-ow...@incubator.apache.org
 .

 To confirm that you would like

josef.l...@gmx.net

 added to the ooo-dev mailing list, please send
 a short reply to this address:

ooo-dev-sc.1329670888.**inaidcmpaoiindmkemee-Josef.**Latt=
 gmx.net@incubator.apache.**org gmx@incubator.apache.org

 Usually, this happens when you just hit the reply button.
 If this does not work, simply copy the address and paste it into
 the To: field of a new message.

 or click here:

 mailto:ooo-dev-sc.1329670888.**inaidcmpaoiindmkemee-Josef.**Lattooo-dev-sc.1329670888.inaidcmpaoiindmkemee-Josef.Latt
 =gmx.net@incubator.apache.**org gmx@incubator.apache.org

 This confirmation serves two purposes. First, it verifies that I am able
 to get mail through to you. Second, it protects you in case someone
 forges a subscription request in your name.

 Please note that ALL Apache dev- and user- mailing lists are publicly
 archived.  Do familiarize yourself with Apache's public archive policy at

 
 http://www.apache.org/**foundation/public-archives.**htmlhttp://www.apache.org/foundation/public-archives.html

 prior to subscribing and posting messages to ooo-dev@incubator.apache.org
 .
 If you're not sure whether or not the policy applies to this mailing list,
 assume it does unless the list name contains the word private in it.

 Some mail programs are broken and cannot handle long addresses. If you
 cannot reply to this request, instead send a message to
 ooo-dev-request@incubator.**apache.orgooo-dev-requ...@incubator.apache.org
  and put the
 entire address listed above into the Subject: line.


 --- Administrative commands for the ooo-dev list ---

 I can handle administrative requests automatically. Please
 do not send them to the list address! Instead, send
 your message to the correct command address:

 To subscribe to the list, send a message to:

 ooo-dev-subscribe@incubator.**apache.orgooo-dev-subscr...@incubator.apache.org
 

 To remove your address from the list, send a message to:

 ooo-dev-unsubscribe@**incubator.apache.orgooo-dev-unsubscr...@incubator.apache.org
 

 Send mail to the following for info and FAQ for this list:
ooo-dev-info@incubator.**apache.orgooo-dev-i...@incubator.apache.org
 
ooo-dev-faq@incubator.apache.**org ooo-dev-...@incubator.apache.org
 

 Similar addresses exist for the digest list:

 ooo-dev-digest-subscribe@**incubator.apache.orgooo-dev-digest-subscr...@incubator.apache.org
 

 ooo-dev-digest-unsubscribe@**incubator.apache.orgooo-dev-digest-unsubscr...@incubator.apache.org
 

 To get messages 123 through 145 (a maximum of 100 per request), mail:

 ooo-dev-get.123_145@**incubator.apache.orgooo-dev-get.123_...@incubator.apache.org
 

 To get an index with subject and author for messages 123-456 , mail:

 ooo-dev-index.123_456@**incubator.apache.orgooo-dev-index.123_...@incubator.apache.org
 

 They are always returned as sets of 100, max 2000 per request,
 so you'll actually get 100-499.

 To receive all messages with the same subject as message 12345,
 send a short message to:

 ooo-dev-thread.12345@**incubator.apache.orgooo-dev-thread.12...@incubator.apache.org
 

 The messages should contain one line or word of text to avoid being
 treated as sp@m, but I will ignore their content.
 Only the ADDRESS you send to is important.

 You can start a subscription for an alternate address,
 for example john@host.domain, just add a hyphen and your
 address (with '=' instead of '@') after the command word:
 ooo-dev-subscribe-john=host.**dom...@incubator.apache.orghost.dom...@incubator.apache.org
 

 To stop subscription for this address, mail:
 ooo-dev-unsubscribe-john=host**.dom...@incubator.apache.orghost.dom...@incubator.apache.org
 

 In both cases, I'll send a confirmation message to that address. When
 you receive it, simply reply to it to complete your subscription.

 If despite following these instructions, you do not get the
 desired results, please contact my owner at
 ooo-dev-owner@incubator.**apache.org ooo-dev-ow...@incubator.apache.org.
 Please be patient, my owner is a
 lot slower than I am ;-)

 --- Enclosed is a copy of the request I received.

 Return-Path:Josef.Latt@gmx.**net josef.l...@gmx.net
 Received: (qmail 6284 invoked by uid 99); 19 Feb 2012 17:01:28 -
 Received: from athena.apache.org (HELO athena.apache.org)
 (140.211.11.136)
 by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 19 Feb 2012 17:01:28
 +
 X-ASF-Spam-Status: No, hits=-5.2 required=10.0
tests=ASF_EMPTY_LIST_OPS,ASF_**LIST_OPS,MISSING_SUBJECT,RCVD_**
 IN_DNSWL_NONE,SPF_PASS
 X-Spam-Check-By: 

how to install individual component on linux?

2012-02-16 Thread lou ql
I'm running on redhat 6.1.

In installing guide it says:

Installing individual components is the same as above but only requires
the specific module be
installed. For example, install all core rpms and then install those for
each module you wish, such
as, openoffice.org-impress-2.0.0-1.i586.rpm to install only Impress

so, I installed ooodev-ure-3.4.0-9586.i586.rpm and the 7 core packages.
then try ooo-dev3-calc-3.4XXX.rpm..
but dependency massage appears: ooo-dev3 is needed. when I install
ooo-dev3, ooobasis-dev3.4-images is needed...

then I followed the message and installed:
 ooobasis-dev3.4-images-.rpm
 ooo-dev3-3.4.rpm
 ooobasis-dev3.4-calc-XXX.rpm
 ooo-dev3-calc.XXX.rpm

But, soffice cannot run after that...

Then I tried another way:
1. remove all the packages installed except ooodev-ure by command rpm -e
`rpm -qa | grep ooo`
2. install all basis rpms: rpm -ivh ooobasis*.rpm
3. install ooo-dev3-3.4.0XXX.rpm
4. run soffice from /opt/dev3, succeed, and all the components are able to
be used. I can new each type of application...

There are still 7 rpms not installed:
ooo-dev3-base...rpm
ooo-dev3-calc...rpm
ooo-dev3-draw...rpm
ooo-dev3-en-US...rpm
ooo-dev3-impress...rpm
ooo-dev3-math...rpm
ooo-dev3-writer...rpm

What are they used for?