Writer

2014-09-03 Thread John H Sneed
I would like you to provide something like  CTRL+P  function = 'go to page
n'

I know Ctrl+P triggers the Printer functions now.
Just think about it?


Program Called "LibreOffice" is a copy of OpenOffice

2014-09-03 Thread Amt Gaming
The website is here- http://www.libreoffice.org/
Here is a picture (1 sec vid) of the application-


Hope You guys can get this fixed, i love you guys' software btw[?]


LibreOffice.mp4
Description: video/mp4

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

Re: Writer

2014-09-03 Thread Rory O'Farrell
On Tue, 2 Sep 2014 21:14:27 -0500
John H Sneed  wrote:

> I would like you to provide something like  CTRL+P  function = 'go to page
> n'
> 
> I know Ctrl+P triggers the Printer functions now.
> Just think about it?

Try using the Navigator (F5 to turn on/off). The page selector in the top bar 
gets you speedily to the selected page.

Each program uses its own selection of shortcuts. If you wish it to match those 
of some other program it might be quicker and better to use that program rather 
than attempt to turn it to a clone of such program.


-- 
Rory O'Farrell 

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



Re: Program Called "LibreOffice" is a copy of OpenOffice

2014-09-03 Thread rehrumesh
They are a different organization.






From: Amt Gaming
Sent: ‎Wednesday‎, ‎September‎ ‎3‎, ‎2014 ‎5‎:‎39‎ ‎AM
To: dev@openoffice.apache.org





The website is here- http://www.libreoffice.org/
Here is a picture (1 sec vid) of the application-







Hope You guys can get this fixed, i love you guys' software btw
-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org

Re: Link to oooforum

2014-09-03 Thread Andrew Douglas Pitonyak
Side note: It occurred to me that some of my "failures" may be 
attributed to the site simply not responding since it stopped responding 
last night.




On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:


Well, I find the entire thing rather confusing. For example, I can 
extract the table of text as follows:


TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results 
ATTR=NAME:search_author CONTENT=RobinColvin

TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results ATTR=*

'Extract the table text.
TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I want to extract all of the URLs in the table, well, I can't 
figure out how to do that. I am able to enumerate the first two links 
as follows:


TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results 
ATTR=NAME:search_author CONTENT=RobinColvin

TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results ATTR=*

TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

I had trouble simply extracting all of them, so, I tried to use java 
script to call iMacro, but that never returned from the first iimPlay


var spammer="RobinColvin"

window.alert("Read for '" + spammer + "'");

var search_macro;
search_macro ="CODE:";
search_macro +="URL 
GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
search_macro +="TAG POS=1 TYPE=INPUT:TEXT 
FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author 
CONTENT="+spammer+"\n";
search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT 
FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";




var links = [];
var iLink = 1;
var iMaxLink = 100
var link = "";
var extract_link_macro;

window.alert(search_macro);

// Perform the search!
iimPlay(search_macro)

window.alert("Finished with search!");

do {
  extract_link_macro ="CODE:";
  extract_link_macro +="TAG POS="+iLink+"1 TYPE=A 
ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";

  iimPlay(extract_link_macro);
  link=iimGetLastExtract();
  if(link!="#EANF#") {
links.push(link);
iLink = iLink + 1;
  }
} while (link != "#EANF#" && iLink <= iMaxLink)

window.alert("found " + iLink + " links");


If I assume that I have already searched, then I can extract all of 
the links by using "loop execute" and then using a macro similar to:


TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I loop 50 times, it exports everything from that one page into 
three files. It seems that it does not easily support doing the entire 
thing in one shot; at least while using a loop!


At least by listing the extract command 50 times I end up with only 
one file.


this is not a simple thing and it still does not get me to my end game.

On 09/02/2014 10:23 AM, Alexandro Colorado wrote:

On 9/2/14, Andrew Douglas Pitonyak  wrote:
There is very little difference between what an admin and a user 
sees in

this context.

To find the posts, I use the regular search. The returned list is the
same for an admin as well as a regular user. While displaying a thread,
there is an admin link that allows me to remove the thread and there is
a link to remove each post in the thread. There is also a link on the
bottom of each thread to navigate to a special admin page that provides
some extra functions such as delete a user (but deleting the user does
not remove their posts).

I did an excercise and try deleting my own posts from oooforum. I see
what you mean (and what I was missing). There is no checkbox to mark
all the posts like it would be on -- let say  -- the PM page where a
checkbox is able to mass delete all links.

I understand now your point on looping through non secuential links. I
went on the iMacros forum and found some tips responding to a
positioning loop.
http://forum.imacros.net/viewtopic.php?f=8&p=37399

Hope this helps.




On 09/01/2014 11:00 PM, Alexandro Colorado wrote:

Unfortunately I dont admin any forum to see what you are seen, so I
only have access to the forum search engine but I know that the Admin
(the one able to delete the forum) is a different view.





--
Andrew Pitonyak
My Macro Document: http://www.pitonyak.org/AndrewMacro.odt
Info:  http://www.pitonyak.org/oo.php


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



Re: Forward planning for OO 5.0

2014-09-03 Thread Mathias Röllig

Am 06.05.2014 um 10:49 schrieb Rory O'Farrell:

Now that OO 4.1 is released (and the tidy up of loose ends is in
progress), perhaps it is time to start discussion on proposals for
improvements and additions to OO 5.0.

Where should this best be done?


After 4 month I ask if there is a place found to discuss and collect 
features and foremost bugs that must be fixed until 5.0?


e. g. issue 105098 is one for the Mac users.

Regards, Mathias

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



Re: Student Project

2014-09-03 Thread Deborah Digges
Thank you for your help and time; I will take a look at the issues and try
to solve some of them.

I have completed the build and install, and have also taken a look at the
architecture.
If you do come across a project that has the needed mix of mentors, I'd be
glad to be a part of it.






On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk  wrote:

>
>
> On 09/01/2014 10:25 AM, Deborah Digges wrote:
> > Hello,
> >
> > It's great to hear from you!
> > * We work primarily on unix machines - ubuntu specifically. IDEs we have
> > worked on include Eclipse, NetBeans and Aptana studio.
> > * I know git, but am not very experienced with it. I have worked briefly
> > with perforce.
> > * The course evaluation would be in the beginning of December, so that
> > gives us time till the end of November to complete the project.
> >
> > If there is any more information I could provide you with, I'd be more
> than
> > glad to.
> > I'll be going through the link you've mentioned shortly. Once again,
> thank
> > you for your response.
> >
> > Regards,
> > Deborah
>
> The specific project I was thinking about seems to be lacking in the
> needed mix of mentors at the moment.
>
> We do have a listing of "easy" and "simple" hacks from our development
> orientation page:
>
> http://openoffice.apache.org/orientation/intro-development.html
>
> Feel free to take a look at these, and get involved by fixing some of
> these issues if you like. We have quite a number of Ubuntu builders who
> can answer questions on this list. Good luck with your open source project.
>
>
> >
> >
> >
> > On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk 
> wrote:
> >
> >> On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges <
> >> deborah.gertrude.dig...@gmail.com> wrote:
> >>
> >>> Hello,
> >>>
> >>> I am a *4th year* Computer Science student. As a part of a course -
> "The
> >>> Architecture of Open source technologies", I am required to contribute
> to
> >>> an open source project.
> >>>
> >>> The project is needed to be done by a team of *3 members*.The semester
> >> ends
> >>> by* November*, so that gives me *three months* to work on the project.
> >> The
> >>> course requires us to work *8 hours a week*. Also, the course
> emphasizes
> >> on
> >>> making code contributions.
> >>>
> >>> I am familiar with C,C++ and python, and I am eager to pick up
> additional
> >>> skills that are required.
> >>>
> >>> Please could you help me in this task, as I am quite new to open
> source.
> >>>
> >>> Looking forward to your response,
> >>> Thanks,
> >>> Deborah Digges.
> >>>
> >>
> >> Hello Deborah --
> >> Thanks for contacting Apache OpenOffice. We'd love to have you
> contribute
> >> to this project.  We will try to identify a specific task for your team.
> >>
> >> First, I think we need more information from you to make this
> successful:
> >>
> >> * please tell us more about your development environment -- OS, IDE, etc
> >> * what is your experience with source version management tools? svn,
> git,
> >> etc
> >> * your semester ends "by November" meaning the end of November?
> >>
> >> There are many references to open source participation available. Here's
> >> one that gives a perspective from a participant's viewpoint that you may
> >> find helpful.
> >>
> >>
> >>
> http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/
> >>
> >>
> >> --
> >>
> >>
> -
> >> MzK
> >>
> >> "Nothing will work unless you do."
> >> -- Maya Angelou
> >>
> >
>
> --
> -
> MzK
>
> "Nothing will work unless you do."
> -- Maya Angelou
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Re: Sourceforge and commercial ads

2014-09-03 Thread FR web forum
Hello list,

New ad to have a fake AOO.
See: http://hpics.li/c0340e7

This ad jump to a para-site:
h**p://openoffice.updateavenue.com


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



Website: broken link to old Release Notes in download page

2014-09-03 Thread Andrea Pescetti

If you open
http://www.openoffice.org/download/
and change the version to "4.0.1", the Release Notes link changes correctly.

If you set it to "4.1.0", the Release Notes link will change into
http://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.1+Release+Notes
which is wrong since those are the 4.1.1 release notes.

Can somebody have a look?

Thanks,
  Andrea.

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



Re: Sourceforge and commercial ads

2014-09-03 Thread Roberto Galoppini
Thanks for heads up, I've passed it over to our AdOps to remove it.

Roberto

Il mercoledì 3 settembre 2014, FR web forum  ha scritto:

> Hello list,
>
> New ad to have a fake AOO.
> See: http://hpics.li/c0340e7
>
> This ad jump to a para-site:
> h**p://openoffice.updateavenue.com
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> 
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 
>
>


Re: Student Project

2014-09-03 Thread Kay Schenk


On 09/03/2014 06:37 AM, Deborah Digges wrote:
> Thank you for your help and time; I will take a look at the issues and try
> to solve some of them.
> 
> I have completed the build and install, and have also taken a look at the
> architecture.

Great news that you succeeded with your build! This is really super!

> If you do come across a project that has the needed mix of mentors, I'd be
> glad to be a part of it.

Mostly, I didn't want to delay your efforts to find a semester project.
Hopefully, you'll find some of the "easy" fixes to your liking.

Hoping we can hear more from you and your team soon. Keep up the good work!

> 
> 
> 
> 
> 
> 
> On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk  wrote:
> 
>>
>>
>> On 09/01/2014 10:25 AM, Deborah Digges wrote:
>>> Hello,
>>>
>>> It's great to hear from you!
>>> * We work primarily on unix machines - ubuntu specifically. IDEs we have
>>> worked on include Eclipse, NetBeans and Aptana studio.
>>> * I know git, but am not very experienced with it. I have worked briefly
>>> with perforce.
>>> * The course evaluation would be in the beginning of December, so that
>>> gives us time till the end of November to complete the project.
>>>
>>> If there is any more information I could provide you with, I'd be more
>> than
>>> glad to.
>>> I'll be going through the link you've mentioned shortly. Once again,
>> thank
>>> you for your response.
>>>
>>> Regards,
>>> Deborah
>>
>> The specific project I was thinking about seems to be lacking in the
>> needed mix of mentors at the moment.
>>
>> We do have a listing of "easy" and "simple" hacks from our development
>> orientation page:
>>
>> http://openoffice.apache.org/orientation/intro-development.html
>>
>> Feel free to take a look at these, and get involved by fixing some of
>> these issues if you like. We have quite a number of Ubuntu builders who
>> can answer questions on this list. Good luck with your open source project.
>>
>>
>>>
>>>
>>>
>>> On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk 
>> wrote:
>>>
 On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges <
 deborah.gertrude.dig...@gmail.com> wrote:

> Hello,
>
> I am a *4th year* Computer Science student. As a part of a course -
>> "The
> Architecture of Open source technologies", I am required to contribute
>> to
> an open source project.
>
> The project is needed to be done by a team of *3 members*.The semester
 ends
> by* November*, so that gives me *three months* to work on the project.
 The
> course requires us to work *8 hours a week*. Also, the course
>> emphasizes
 on
> making code contributions.
>
> I am familiar with C,C++ and python, and I am eager to pick up
>> additional
> skills that are required.
>
> Please could you help me in this task, as I am quite new to open
>> source.
>
> Looking forward to your response,
> Thanks,
> Deborah Digges.
>

 Hello Deborah --
 Thanks for contacting Apache OpenOffice. We'd love to have you
>> contribute
 to this project.  We will try to identify a specific task for your team.

 First, I think we need more information from you to make this
>> successful:

 * please tell us more about your development environment -- OS, IDE, etc
 * what is your experience with source version management tools? svn,
>> git,
 etc
 * your semester ends "by November" meaning the end of November?

 There are many references to open source participation available. Here's
 one that gives a perspective from a participant's viewpoint that you may
 find helpful.



>> http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/


 --


>> -
 MzK

 "Nothing will work unless you do."
 -- Maya Angelou

>>>
>>
>> --
>> -
>> MzK
>>
>> "Nothing will work unless you do."
>> -- Maya Angelou
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org
>>
>>
> 

-- 
-
MzK

"Nothing will work unless you do."
-- Maya Angelou

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



Re: Website: broken link to old Release Notes in download page

2014-09-03 Thread Marcus (OOo)

Am 09/03/2014 06:08 PM, schrieb Andrea Pescetti:

If you open
http://www.openoffice.org/download/
and change the version to "4.0.1", the Release Notes link changes
correctly.

If you set it to "4.1.0", the Release Notes link will change into
http://cwiki.apache.org/confluence/display/OOOUSERS/AOO+4.1.1+Release+Notes
which is wrong since those are the 4.1.1 release notes.

Can somebody have a look?


fixed.

Root cause was simply a wrong link that was used to point to the release 
notes.


Marcus


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



Re: Student Project

2014-09-03 Thread Amali Praveena Soban Kumar
Hi Deborah,
It is great you finished the build and install so quickly; which version of 
Ubuntu are you using?
Thanks,
Amali. 


On Thursday, 4 September 2014, 3:15, Kay Schenk  wrote:
  




On 09/03/2014 06:37 AM, Deborah Digges wrote:
> Thank you for your help and time; I will take a look at the issues and try
> to solve some of them.
> 
> I have completed the build and install, and have also taken a look at the
> architecture.

Great news that you succeeded with your build! This is really super!

> If you do come across a project that has the needed mix of mentors, I'd be
> glad to be a part of it.

Mostly, I didn't want to delay your efforts to find a semester project.
Hopefully, you'll find some of the "easy" fixes to your liking.

Hoping we can hear more from you and your team soon. Keep up the good work!

> 
> 
> 
> 
> 
> 
> On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk  wrote:
> 
>>
>>
>> On 09/01/2014 10:25 AM, Deborah Digges wrote:
>>> Hello,
>>>
>>> It's great to hear from you!
>>> * We work primarily on unix machines - ubuntu specifically. IDEs we have
>>> worked on include Eclipse, NetBeans and Aptana studio.
>>> * I know git, but am not very experienced with it. I have worked briefly
>>> with perforce.
>>> * The course evaluation would be in the beginning of December, so that
>>> gives us time till the end of November to complete the project.
>>>
>>> If there is any more information I could provide you with, I'd be more
>> than
>>> glad to.
>>> I'll be going through the link you've mentioned shortly. Once again,
>> thank
>>> you for your response.
>>>
>>> Regards,
>>> Deborah
>>
>> The specific project I was thinking about seems to be lacking in the
>> needed mix of mentors at the moment.
>>
>> We do have a listing of "easy" and "simple" hacks from our development
>> orientation page:
>>
>> http://openoffice.apache.org/orientation/intro-development.html
>>
>> Feel free to take a look at these, and get involved by fixing some of
>> these issues if you like. We have quite a number of Ubuntu builders who
>> can answer questions on this list. Good luck with your open source project.
>>
>>
>>>
>>>
>>>
>>> On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk 
>> wrote:
>>>
 On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges <
 deborah.gertrude.dig...@gmail.com> wrote:

> Hello,
>
> I am a *4th year* Computer Science student. As a part of a course -
>> "The
> Architecture of Open source technologies", I am required to contribute
>> to
> an open source project.
>
> The project is needed to be done by a team of *3 members*.The semester
 ends
> by* November*, so that gives me *three months* to work on the project.
 The
> course requires us to work *8 hours a week*. Also, the course
>> emphasizes
 on
> making code contributions.
>
> I am familiar with C,C++ and python, and I am eager to pick up
>> additional
> skills that are required.
>
> Please could you help me in this task, as I am quite new to open
>> source.
>
> Looking forward to your response,
> Thanks,
> Deborah Digges.
>

 Hello Deborah --
 Thanks for contacting Apache OpenOffice. We'd love to have you
>> contribute
 to this project.  We will try to identify a specific task for your team.

 First, I think we need more information from you to make this
>> successful:

 * please tell us more about your development environment -- OS, IDE, etc
 * what is your experience with source version management tools? svn,
>> git,
 etc
 * your semester ends "by November" meaning the end of November?

 There are many references to open source participation available. Here's
 one that gives a perspective from a participant's viewpoint that you may
 find helpful.



>> http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/


 --


>> -
 MzK

 "Nothing will work unless you do."
 -- Maya Angelou

>>>
>>
>> --
>> -
>> MzK
>>
>> "Nothing will work unless you do."
>> -- Maya Angelou
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> For additional commands, e-mail: dev-h...@openoffice.apache.org

>>
>>
> 

-- 
-
MzK

"Nothing will work unless you do."
-- Maya Angelou

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

Problem building AOO

2014-09-03 Thread zimuzo ezeozue
Please I ran into a little fix while building on my Ubuntu 12.04 machine.
Something related with my toolkit module.

I would be very glad for any help or suggestion

Thanks.

P.S Here is the error log I get:

=
Building module toolkit
=

Entering
/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/toolkit/prj

cd .. && make -s -r -j1   && make -s -r deliverlog
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/layout/layout-post.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/layout/layout-pre.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/layout/layout.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxaccessiblecomponent.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxcontainer.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxdevice.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxfont.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxmenu.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxsystemdependentwindow.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxtoolkit.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxtopwindow.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxwindow.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxwindows.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrol.hxx' has a high resolution
time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrolbase.hxx' has a high resolution
time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrolmodel.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrols.hxx' has a high resolution
time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/dllapi.h' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/accessibilityclient.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/accessiblefactory.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/convert.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/emptyfontdescriptor.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/ex

Re: Link to oooforum

2014-09-03 Thread Andrew Douglas Pitonyak
Yeah, even when I build an iMacro to remove a single post based on a 
hard coded URL, oooforum is so slow, that it fails to respond in 60 
seconds after saying "yes, remove that like I asked" and then the macro 
itself stops running. I set the timeout to 10 minutes, will see if that 
is sufficient. That said, when the forum is so slow, hardly seems worth 
the effort.


On 09/03/2014 08:41 AM, Andrew Douglas Pitonyak wrote:
Side note: It occurred to me that some of my "failures" may be 
attributed to the site simply not responding since it stopped 
responding last night.




On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:


Well, I find the entire thing rather confusing. For example, I can 
extract the table of text as follows:


TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results 
ATTR=NAME:search_author CONTENT=RobinColvin

TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results ATTR=*

'Extract the table text.
TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I want to extract all of the URLs in the table, well, I can't 
figure out how to do that. I am able to enumerate the first two links 
as follows:


TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results 
ATTR=NAME:search_author CONTENT=RobinColvin

TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results ATTR=*

TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

I had trouble simply extracting all of them, so, I tried to use java 
script to call iMacro, but that never returned from the first iimPlay


var spammer="RobinColvin"

window.alert("Read for '" + spammer + "'");

var search_macro;
search_macro ="CODE:";
search_macro +="URL 
GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
search_macro +="TAG POS=1 TYPE=INPUT:TEXT 
FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author 
CONTENT="+spammer+"\n";
search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT 
FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";




var links = [];
var iLink = 1;
var iMaxLink = 100
var link = "";
var extract_link_macro;

window.alert(search_macro);

// Perform the search!
iimPlay(search_macro)

window.alert("Finished with search!");

do {
  extract_link_macro ="CODE:";
  extract_link_macro +="TAG POS="+iLink+"1 TYPE=A 
ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";

  iimPlay(extract_link_macro);
  link=iimGetLastExtract();
  if(link!="#EANF#") {
links.push(link);
iLink = iLink + 1;
  }
} while (link != "#EANF#" && iLink <= iMaxLink)

window.alert("found " + iLink + " links");


If I assume that I have already searched, then I can extract all of 
the links by using "loop execute" and then using a macro similar to:


TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I loop 50 times, it exports everything from that one page into 
three files. It seems that it does not easily support doing the 
entire thing in one shot; at least while using a loop!


At least by listing the extract command 50 times I end up with only 
one file.


this is not a simple thing and it still does not get me to my end game.

On 09/02/2014 10:23 AM, Alexandro Colorado wrote:

On 9/2/14, Andrew Douglas Pitonyak  wrote:
There is very little difference between what an admin and a user 
sees in

this context.

To find the posts, I use the regular search. The returned list is the
same for an admin as well as a regular user. While displaying a 
thread,
there is an admin link that allows me to remove the thread and 
there is

a link to remove each post in the thread. There is also a link on the
bottom of each thread to navigate to a special admin page that 
provides

some extra functions such as delete a user (but deleting the user does
not remove their posts).

I did an excercise and try deleting my own posts from oooforum. I see
what you mean (and what I was missing). There is no checkbox to mark
all the posts like it would be on -- let say  -- the PM page where a
checkbox is able to mass delete all links.

I understand now your point on looping through non secuential links. I
went on the iMacros forum and found some tips responding to a
positioning loop.
http://forum.imacros.net/viewtopic.php?f=8&p=37399

Hope this helps.




On 09/01/2014 11:00 PM, Alexandro Colorado wrote:

Unfortunately I dont admin any forum to see what you are seen, so I
only have access to the forum search engine but I know that the Admin
(the one able to delete the forum) is a different view.







--
Andrew Pitonyak
My Macro Document: http://www.pitonyak.org/AndrewMacro.odt
Info:  http://www.pitonyak.org/oo.php


-

Re: Link to oooforum

2014-09-03 Thread Alexandro Colorado
I agree, sorry to see the sad state of the forum. Maybe all this
should be let known to the owner so he can take measurses. I dont
think anyone want to see oooforum go.

On 9/3/14, Andrew Douglas Pitonyak  wrote:
> Yeah, even when I build an iMacro to remove a single post based on a
> hard coded URL, oooforum is so slow, that it fails to respond in 60
> seconds after saying "yes, remove that like I asked" and then the macro
> itself stops running. I set the timeout to 10 minutes, will see if that
> is sufficient. That said, when the forum is so slow, hardly seems worth
> the effort.
>
> On 09/03/2014 08:41 AM, Andrew Douglas Pitonyak wrote:
>> Side note: It occurred to me that some of my "failures" may be
>> attributed to the site simply not responding since it stopped
>> responding last night.
>>
>>
>>
>> On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:
>>>
>>> Well, I find the entire thing rather confusing. For example, I can
>>> extract the table of text as follows:
>>>
>>> TAB T=1
>>> URL GOTO=http://www.oooforum.org/forum/search.phtml
>>> TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
>>> ATTR=NAME:search_author CONTENT=RobinColvin
>>> TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results ATTR=*
>>>
>>> 'Extract the table text.
>>> TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
>>> SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv
>>>
>>> If I want to extract all of the URLs in the table, well, I can't
>>> figure out how to do that. I am able to enumerate the first two links
>>> as follows:
>>>
>>> TAB T=1
>>> URL GOTO=http://www.oooforum.org/forum/search.phtml
>>> TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
>>> ATTR=NAME:search_author CONTENT=RobinColvin
>>> TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results ATTR=*
>>>
>>> TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
>>> TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
>>> SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv
>>>
>>> I had trouble simply extracting all of them, so, I tried to use java
>>> script to call iMacro, but that never returned from the first iimPlay
>>>
>>> var spammer="RobinColvin"
>>>
>>> window.alert("Read for '" + spammer + "'");
>>>
>>> var search_macro;
>>> search_macro ="CODE:";
>>> search_macro +="URL
>>> GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
>>> search_macro +="TAG POS=1 TYPE=INPUT:TEXT
>>> FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author
>>> CONTENT="+spammer+"\n";
>>> search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT
>>> FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";
>>>
>>>
>>>
>>> var links = [];
>>> var iLink = 1;
>>> var iMaxLink = 100
>>> var link = "";
>>> var extract_link_macro;
>>>
>>> window.alert(search_macro);
>>>
>>> // Perform the search!
>>> iimPlay(search_macro)
>>>
>>> window.alert("Finished with search!");
>>>
>>> do {
>>>   extract_link_macro ="CODE:";
>>>   extract_link_macro +="TAG POS="+iLink+"1 TYPE=A
>>> ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";
>>>   iimPlay(extract_link_macro);
>>>   link=iimGetLastExtract();
>>>   if(link!="#EANF#") {
>>> links.push(link);
>>> iLink = iLink + 1;
>>>   }
>>> } while (link != "#EANF#" && iLink <= iMaxLink)
>>>
>>> window.alert("found " + iLink + " links");
>>>
>>>
>>> If I assume that I have already searched, then I can extract all of
>>> the links by using "loop execute" and then using a macro similar to:
>>>
>>> TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
>>> SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv
>>>
>>> If I loop 50 times, it exports everything from that one page into
>>> three files. It seems that it does not easily support doing the
>>> entire thing in one shot; at least while using a loop!
>>>
>>> At least by listing the extract command 50 times I end up with only
>>> one file.
>>>
>>> this is not a simple thing and it still does not get me to my end game.
>>>
>>> On 09/02/2014 10:23 AM, Alexandro Colorado wrote:
 On 9/2/14, Andrew Douglas Pitonyak  wrote:
> There is very little difference between what an admin and a user
> sees in
> this context.
>
> To find the posts, I use the regular search. The returned list is the
> same for an admin as well as a regular user. While displaying a
> thread,
> there is an admin link that allows me to remove the thread and
> there is
> a link to remove each post in the thread. There is also a link on the
> bottom of each thread to navigate to a special admin page that
> provides
> some extra functions such as delete a user (but deleting the user does
> not remove their posts).
 I did an excercise and try deleting my own posts from oooforum. I see
 what you mean (and what I was missing). There is no checkbox to mark
 all the posts like it would be on -- let say  -- the PM page where a
 checkbox is able to mass delete al

Re: Link to oooforum

2014-09-03 Thread Alexandro Colorado
For the record, you could do this also on our forums at
https://forum.openoffice.org/en/

This will give you a fast server to work on until oooforum is back in
shape. Trying to delete your own post could do the trick enough to
test it.

On 9/3/14, Alexandro Colorado  wrote:
> I agree, sorry to see the sad state of the forum. Maybe all this
> should be let known to the owner so he can take measurses. I dont
> think anyone want to see oooforum go.
>
> On 9/3/14, Andrew Douglas Pitonyak  wrote:
>> Yeah, even when I build an iMacro to remove a single post based on a
>> hard coded URL, oooforum is so slow, that it fails to respond in 60
>> seconds after saying "yes, remove that like I asked" and then the macro
>> itself stops running. I set the timeout to 10 minutes, will see if that
>> is sufficient. That said, when the forum is so slow, hardly seems worth
>> the effort.
>>
>> On 09/03/2014 08:41 AM, Andrew Douglas Pitonyak wrote:
>>> Side note: It occurred to me that some of my "failures" may be
>>> attributed to the site simply not responding since it stopped
>>> responding last night.
>>>
>>>
>>>
>>> On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:

 Well, I find the entire thing rather confusing. For example, I can
 extract the table of text as follows:

 TAB T=1
 URL GOTO=http://www.oooforum.org/forum/search.phtml
 TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
 ATTR=NAME:search_author CONTENT=RobinColvin
 TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
 ATTR=*

 'Extract the table text.
 TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
 SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

 If I want to extract all of the URLs in the table, well, I can't
 figure out how to do that. I am able to enumerate the first two links
 as follows:

 TAB T=1
 URL GOTO=http://www.oooforum.org/forum/search.phtml
 TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
 ATTR=NAME:search_author CONTENT=RobinColvin
 TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
 ATTR=*

 TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
 TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
 SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

 I had trouble simply extracting all of them, so, I tried to use java
 script to call iMacro, but that never returned from the first iimPlay

 var spammer="RobinColvin"

 window.alert("Read for '" + spammer + "'");

 var search_macro;
 search_macro ="CODE:";
 search_macro +="URL
 GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
 search_macro +="TAG POS=1 TYPE=INPUT:TEXT
 FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author
 CONTENT="+spammer+"\n";
 search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT
 FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";



 var links = [];
 var iLink = 1;
 var iMaxLink = 100
 var link = "";
 var extract_link_macro;

 window.alert(search_macro);

 // Perform the search!
 iimPlay(search_macro)

 window.alert("Finished with search!");

 do {
   extract_link_macro ="CODE:";
   extract_link_macro +="TAG POS="+iLink+"1 TYPE=A
 ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";
   iimPlay(extract_link_macro);
   link=iimGetLastExtract();
   if(link!="#EANF#") {
 links.push(link);
 iLink = iLink + 1;
   }
 } while (link != "#EANF#" && iLink <= iMaxLink)

 window.alert("found " + iLink + " links");


 If I assume that I have already searched, then I can extract all of
 the links by using "loop execute" and then using a macro similar to:

 TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
 SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

 If I loop 50 times, it exports everything from that one page into
 three files. It seems that it does not easily support doing the
 entire thing in one shot; at least while using a loop!

 At least by listing the extract command 50 times I end up with only
 one file.

 this is not a simple thing and it still does not get me to my end game.

 On 09/02/2014 10:23 AM, Alexandro Colorado wrote:
> On 9/2/14, Andrew Douglas Pitonyak  wrote:
>> There is very little difference between what an admin and a user
>> sees in
>> this context.
>>
>> To find the posts, I use the regular search. The returned list is the
>> same for an admin as well as a regular user. While displaying a
>> thread,
>> there is an admin link that allows me to remove the thread and
>> there is
>> a link to remove each post in the thread. There is also a link on the
>> bottom of each thread to navigate to

Re: Link to oooforum

2014-09-03 Thread Andrew Douglas Pitonyak
The next version of the forum software used by oooforum supports 
deleting all posts by the user. Also, there is an add-on for the version 
2 (I think) that also supports this.


The official forum runs great, no need to test there. It is sufficiently 
moderated that there are no particular issues.


On 09/03/2014 05:28 PM, Alexandro Colorado wrote:

For the record, you could do this also on our forums at
https://forum.openoffice.org/en/

This will give you a fast server to work on until oooforum is back in
shape. Trying to delete your own post could do the trick enough to
test it.

On 9/3/14, Alexandro Colorado  wrote:

I agree, sorry to see the sad state of the forum. Maybe all this
should be let known to the owner so he can take measurses. I dont
think anyone want to see oooforum go.

On 9/3/14, Andrew Douglas Pitonyak  wrote:

Yeah, even when I build an iMacro to remove a single post based on a
hard coded URL, oooforum is so slow, that it fails to respond in 60
seconds after saying "yes, remove that like I asked" and then the macro
itself stops running. I set the timeout to 10 minutes, will see if that
is sufficient. That said, when the forum is so slow, hardly seems worth
the effort.

On 09/03/2014 08:41 AM, Andrew Douglas Pitonyak wrote:

Side note: It occurred to me that some of my "failures" may be
attributed to the site simply not responding since it stopped
responding last night.



On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:

Well, I find the entire thing rather confusing. For example, I can
extract the table of text as follows:

TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
ATTR=NAME:search_author CONTENT=RobinColvin
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
ATTR=*

'Extract the table text.
TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I want to extract all of the URLs in the table, well, I can't
figure out how to do that. I am able to enumerate the first two links
as follows:

TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
ATTR=NAME:search_author CONTENT=RobinColvin
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
ATTR=*

TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

I had trouble simply extracting all of them, so, I tried to use java
script to call iMacro, but that never returned from the first iimPlay

var spammer="RobinColvin"

window.alert("Read for '" + spammer + "'");

var search_macro;
search_macro ="CODE:";
search_macro +="URL
GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
search_macro +="TAG POS=1 TYPE=INPUT:TEXT
FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author
CONTENT="+spammer+"\n";
search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT
FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";



var links = [];
var iLink = 1;
var iMaxLink = 100
var link = "";
var extract_link_macro;

window.alert(search_macro);

// Perform the search!
iimPlay(search_macro)

window.alert("Finished with search!");

do {
   extract_link_macro ="CODE:";
   extract_link_macro +="TAG POS="+iLink+"1 TYPE=A
ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";
   iimPlay(extract_link_macro);
   link=iimGetLastExtract();
   if(link!="#EANF#") {
 links.push(link);
 iLink = iLink + 1;
   }
} while (link != "#EANF#" && iLink <= iMaxLink)

window.alert("found " + iLink + " links");


If I assume that I have already searched, then I can extract all of
the links by using "loop execute" and then using a macro similar to:

TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I loop 50 times, it exports everything from that one page into
three files. It seems that it does not easily support doing the
entire thing in one shot; at least while using a loop!

At least by listing the extract command 50 times I end up with only
one file.

this is not a simple thing and it still does not get me to my end game.

On 09/02/2014 10:23 AM, Alexandro Colorado wrote:

On 9/2/14, Andrew Douglas Pitonyak  wrote:

There is very little difference between what an admin and a user
sees in
this context.

To find the posts, I use the regular search. The returned list is the
same for an admin as well as a regular user. While displaying a
thread,
there is an admin link that allows me to remove the thread and
there is
a link to remove each post in the thread. There is also a link on the
bottom of each thread to navigate to a special admin page that
provides
some extra functions such as delete a user (but deleting the user
does
not remove their posts).

I did an excercise and try deleting my own posts from oooforum. I see
what you m

Re: Link to oooforum

2014-09-03 Thread Alexandro Colorado
Sorry the way I understood you couldnt work confortable at oooforum
because of its unresponsiveness. So I suggest using the official
forums to test the iMacros until they are up there to perform all the
tasks.

But I most have missed something.
Regards.

On 9/3/14, Andrew Douglas Pitonyak  wrote:
> The next version of the forum software used by oooforum supports
> deleting all posts by the user. Also, there is an add-on for the version
> 2 (I think) that also supports this.
>
> The official forum runs great, no need to test there. It is sufficiently
> moderated that there are no particular issues.
>
> On 09/03/2014 05:28 PM, Alexandro Colorado wrote:
>> For the record, you could do this also on our forums at
>> https://forum.openoffice.org/en/
>>
>> This will give you a fast server to work on until oooforum is back in
>> shape. Trying to delete your own post could do the trick enough to
>> test it.
>>
>> On 9/3/14, Alexandro Colorado  wrote:
>>> I agree, sorry to see the sad state of the forum. Maybe all this
>>> should be let known to the owner so he can take measurses. I dont
>>> think anyone want to see oooforum go.
>>>
>>> On 9/3/14, Andrew Douglas Pitonyak  wrote:
 Yeah, even when I build an iMacro to remove a single post based on a
 hard coded URL, oooforum is so slow, that it fails to respond in 60
 seconds after saying "yes, remove that like I asked" and then the macro
 itself stops running. I set the timeout to 10 minutes, will see if that
 is sufficient. That said, when the forum is so slow, hardly seems worth
 the effort.

 On 09/03/2014 08:41 AM, Andrew Douglas Pitonyak wrote:
> Side note: It occurred to me that some of my "failures" may be
> attributed to the site simply not responding since it stopped
> responding last night.
>
>
>
> On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:
>> Well, I find the entire thing rather confusing. For example, I can
>> extract the table of text as follows:
>>
>> TAB T=1
>> URL GOTO=http://www.oooforum.org/forum/search.phtml
>> TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
>> ATTR=NAME:search_author CONTENT=RobinColvin
>> TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
>> ATTR=*
>>
>> 'Extract the table text.
>> TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
>> SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv
>>
>> If I want to extract all of the URLs in the table, well, I can't
>> figure out how to do that. I am able to enumerate the first two links
>> as follows:
>>
>> TAB T=1
>> URL GOTO=http://www.oooforum.org/forum/search.phtml
>> TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
>> ATTR=NAME:search_author CONTENT=RobinColvin
>> TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
>> ATTR=*
>>
>> TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
>> TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
>> SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv
>>
>> I had trouble simply extracting all of them, so, I tried to use java
>> script to call iMacro, but that never returned from the first iimPlay
>>
>> var spammer="RobinColvin"
>>
>> window.alert("Read for '" + spammer + "'");
>>
>> var search_macro;
>> search_macro ="CODE:";
>> search_macro +="URL
>> GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
>> search_macro +="TAG POS=1 TYPE=INPUT:TEXT
>> FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author
>> CONTENT="+spammer+"\n";
>> search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT
>> FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";
>>
>>
>>
>> var links = [];
>> var iLink = 1;
>> var iMaxLink = 100
>> var link = "";
>> var extract_link_macro;
>>
>> window.alert(search_macro);
>>
>> // Perform the search!
>> iimPlay(search_macro)
>>
>> window.alert("Finished with search!");
>>
>> do {
>>extract_link_macro ="CODE:";
>>extract_link_macro +="TAG POS="+iLink+"1 TYPE=A
>> ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";
>>iimPlay(extract_link_macro);
>>link=iimGetLastExtract();
>>if(link!="#EANF#") {
>>  links.push(link);
>>  iLink = iLink + 1;
>>}
>> } while (link != "#EANF#" && iLink <= iMaxLink)
>>
>> window.alert("found " + iLink + " links");
>>
>>
>> If I assume that I have already searched, then I can extract all of
>> the links by using "loop execute" and then using a macro similar to:
>>
>> TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
>> SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv
>>
>> If I loop 50 times, it exports everything from that one page into
>> 

Re: Link to oooforum

2014-09-03 Thread Andrew Douglas Pitonyak
Oh, yes, sorry, I could test on the official forum, but, the forum 
itself is laid out very differently so I don't think that it would work 
very well. The big issue that I see at the moment is that if I follow my 
multi-step method to create a "kill the spam" scripts, it takes a very 
long time to run. I changed the timeout to 10 minutes. This is so slow 
that it just feels silly to even bother trying to remove the spam.


For certain testing would go much faster on the official forum since it 
works well and is performs quickly


On 09/03/2014 05:43 PM, Alexandro Colorado wrote:

Sorry the way I understood you couldnt work confortable at oooforum
because of its unresponsiveness. So I suggest using the official
forums to test the iMacros until they are up there to perform all the
tasks.

But I most have missed something.
Regards.

On 9/3/14, Andrew Douglas Pitonyak  wrote:

The next version of the forum software used by oooforum supports
deleting all posts by the user. Also, there is an add-on for the version
2 (I think) that also supports this.

The official forum runs great, no need to test there. It is sufficiently
moderated that there are no particular issues.

On 09/03/2014 05:28 PM, Alexandro Colorado wrote:

For the record, you could do this also on our forums at
https://forum.openoffice.org/en/

This will give you a fast server to work on until oooforum is back in
shape. Trying to delete your own post could do the trick enough to
test it.

On 9/3/14, Alexandro Colorado  wrote:

I agree, sorry to see the sad state of the forum. Maybe all this
should be let known to the owner so he can take measurses. I dont
think anyone want to see oooforum go.

On 9/3/14, Andrew Douglas Pitonyak  wrote:

Yeah, even when I build an iMacro to remove a single post based on a
hard coded URL, oooforum is so slow, that it fails to respond in 60
seconds after saying "yes, remove that like I asked" and then the macro
itself stops running. I set the timeout to 10 minutes, will see if that
is sufficient. That said, when the forum is so slow, hardly seems worth
the effort.

On 09/03/2014 08:41 AM, Andrew Douglas Pitonyak wrote:

Side note: It occurred to me that some of my "failures" may be
attributed to the site simply not responding since it stopped
responding last night.



On 09/03/2014 01:17 AM, Andrew Douglas Pitonyak wrote:

Well, I find the entire thing rather confusing. For example, I can
extract the table of text as follows:

TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
ATTR=NAME:search_author CONTENT=RobinColvin
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
ATTR=*

'Extract the table text.
TAG POS=7 TYPE=TABLE ATTR=TXT:* EXTRACT=TXT
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I want to extract all of the URLs in the table, well, I can't
figure out how to do that. I am able to enumerate the first two links
as follows:

TAB T=1
URL GOTO=http://www.oooforum.org/forum/search.phtml
TAG POS=1 TYPE=INPUT:TEXT FORM=ACTION:search.phtml?mode=results
ATTR=NAME:search_author CONTENT=RobinColvin
TAG POS=1 TYPE=INPUT:SUBMIT FORM=ACTION:search.phtml?mode=results
ATTR=*

TAG POS=1 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
TAG POS=2 TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

I had trouble simply extracting all of them, so, I tried to use java
script to call iMacro, but that never returned from the first iimPlay

var spammer="RobinColvin"

window.alert("Read for '" + spammer + "'");

var search_macro;
search_macro ="CODE:";
search_macro +="URL
GOTO=http://www.oooforum.org/forum/search.phtml"+"\n";;
search_macro +="TAG POS=1 TYPE=INPUT:TEXT
FORM=ACTION:search.phtml?mode=results ATTR=NAME:search_author
CONTENT="+spammer+"\n";
search_macro +="TAG POS=1 TYPE=INPUT:SUBMIT
FORM=ACTION:search.phtml?mode=results ATTR=*"+"\n";



var links = [];
var iLink = 1;
var iMaxLink = 100
var link = "";
var extract_link_macro;

window.alert(search_macro);

// Perform the search!
iimPlay(search_macro)

window.alert("Finished with search!");

do {
extract_link_macro ="CODE:";
extract_link_macro +="TAG POS="+iLink+"1 TYPE=A
ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF"+"\n";
iimPlay(extract_link_macro);
link=iimGetLastExtract();
if(link!="#EANF#") {
  links.push(link);
  iLink = iLink + 1;
}
} while (link != "#EANF#" && iLink <= iMaxLink)

window.alert("found " + iLink + " links");


If I assume that I have already searched, then I can extract all of
the links by using "loop execute" and then using a macro similar to:

TAG POS={{!LOOP}} TYPE=A ATTR=HREF:*&&CLASS:topictitle EXTRACT=HREF
SAVEAS TYPE=EXTRACT FOLDER=* FILE=mytable_{{!NOW:yymmdd_hhnnss}}.csv

If I loop 50 times, it exports everything from that one page into
three files. It seems that it does not easily support doing the
entire thing in one shot; at leas

Re: Problem building AOO

2014-09-03 Thread Amali Praveena Soban Kumar
hi zimuzo,
Can you please tell me what version of g++ you're using? try building with 
g++4.8.2 or whatever default compiler version available in your Ubuntu 12.02 
virtual machine.
Thanks,
Amali. 


On Thursday, 4 September 2014, 7:03, zimuzo ezeozue  
wrote:
  


Please I ran into a little fix while building on my Ubuntu 12.04 machine.
Something related with my toolkit module.

I would be very glad for any help or suggestion

Thanks.

P.S Here is the error log I get:

=
Building module toolkit
=

Entering
/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/toolkit/prj

cd .. && make -s -r -j1   && make -s -r deliverlog
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/layout/layout-post.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/layout/layout-pre.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/layout/layout.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxaccessiblecomponent.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxcontainer.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxdevice.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxfont.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxmenu.hxx' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxsystemdependentwindow.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxtoolkit.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxtopwindow.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxwindow.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/awt/vclxwindows.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrol.hxx' has a high resolution
time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrolbase.hxx' has a high resolution
time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrolmodel.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/controls/unocontrols.hxx' has a high resolution
time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/dllapi.h' has a high resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/accessibilityclient.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/accessiblefactory.hxx' has a high
resolution time stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
unxlngi6.pro/inc/toolkit/helper/convert.hxx' has a high resolution time
stamp
make: *** Warning: .LOW_RESOLUTION_TIME file
`/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/tr

Re: Forward planning for OO 5.0

2014-09-03 Thread Kay Schenk
On Wed, Sep 3, 2014 at 6:04 AM, Mathias Röllig 
wrote:

> Am 06.05.2014 um 10:49 schrieb Rory O'Farrell:
>
>  Now that OO 4.1 is released (and the tidy up of loose ends is in
>> progress), perhaps it is time to start discussion on proposals for
>> improvements and additions to OO 5.0.
>>
>> Where should this best be done?
>>
>
> After 4 month I ask if there is a place found to discuss and collect
> features and foremost bugs that must be fixed until 5.0?
>
> e. g. issue 105098 is one for the Mac users.
>
> Regards, Mathias


Two ideas --

* You could start with the QA list, and once a consensus is reached,
initiate a discussion on "dev"

* You could use an existing planning page on cwiki to make these issues
more visible--

 https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+5.0

Please feel free to rename it and/or change the title to something that
more fits with what you're describing, and just start listing issues that
have a high priority for the next release or provide a public link to a
search for them on this new page you create.  And, then initiate a
discussion on "dev".

To a certain extent, active developers do go through BZ and search for
these, but, giving them more attention by listing them,  as a basis for
discussion here is probably a good idea.

If you don't have a cwiki account, just apply for one.

There are a variety of ways to do what you want to do. Get creative! :)




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


-- 
-
MzK

"Nothing will work unless you do."
-- Maya Angelou


Re: Student Project

2014-09-03 Thread Deborah Digges
Hello,

Thank you, Amali. I'm currently working on version 12.04 .
Thanks,
Deborah Digges
On Sep 4, 2014 2:05 AM, "Amali Praveena Soban Kumar" <
samaliprave...@yahoo.com.au> wrote:

> Hi Deborah,
> It is great you finished the build and install so quickly; which version
> of Ubuntu are you using?
> Thanks,
> Amali.
>
>
> On Thursday, 4 September 2014, 3:15, Kay Schenk 
> wrote:
>
>
>
>
>
> On 09/03/2014 06:37 AM, Deborah Digges wrote:
> > Thank you for your help and time; I will take a look at the issues and
> try
> > to solve some of them.
> >
> > I have completed the build and install, and have also taken a look at the
> > architecture.
>
> Great news that you succeeded with your build! This is really super!
>
> > If you do come across a project that has the needed mix of mentors, I'd
> be
> > glad to be a part of it.
>
> Mostly, I didn't want to delay your efforts to find a semester project.
> Hopefully, you'll find some of the "easy" fixes to your liking.
>
> Hoping we can hear more from you and your team soon. Keep up the good work!
>
> >
> >
> >
> >
> >
> >
> > On Wed, Sep 3, 2014 at 5:56 AM, Kay Schenk  wrote:
> >
> >>
> >>
> >> On 09/01/2014 10:25 AM, Deborah Digges wrote:
> >>> Hello,
> >>>
> >>> It's great to hear from you!
> >>> * We work primarily on unix machines - ubuntu specifically. IDEs we
> have
> >>> worked on include Eclipse, NetBeans and Aptana studio.
> >>> * I know git, but am not very experienced with it. I have worked
> briefly
> >>> with perforce.
> >>> * The course evaluation would be in the beginning of December, so that
> >>> gives us time till the end of November to complete the project.
> >>>
> >>> If there is any more information I could provide you with, I'd be more
> >> than
> >>> glad to.
> >>> I'll be going through the link you've mentioned shortly. Once again,
> >> thank
> >>> you for your response.
> >>>
> >>> Regards,
> >>> Deborah
> >>
> >> The specific project I was thinking about seems to be lacking in the
> >> needed mix of mentors at the moment.
> >>
> >> We do have a listing of "easy" and "simple" hacks from our development
> >> orientation page:
> >>
> >> http://openoffice.apache.org/orientation/intro-development.html
> >>
> >> Feel free to take a look at these, and get involved by fixing some of
> >> these issues if you like. We have quite a number of Ubuntu builders who
> >> can answer questions on this list. Good luck with your open source
> project.
> >>
> >>
> >>>
> >>>
> >>>
> >>> On Mon, Sep 1, 2014 at 10:43 PM, Kay Schenk 
> >> wrote:
> >>>
>  On Fri, Aug 29, 2014 at 1:19 AM, Deborah Digges <
>  deborah.gertrude.dig...@gmail.com> wrote:
> 
> > Hello,
> >
> > I am a *4th year* Computer Science student. As a part of a course -
> >> "The
> > Architecture of Open source technologies", I am required to
> contribute
> >> to
> > an open source project.
> >
> > The project is needed to be done by a team of *3 members*.The
> semester
>  ends
> > by* November*, so that gives me *three months* to work on the
> project.
>  The
> > course requires us to work *8 hours a week*. Also, the course
> >> emphasizes
>  on
> > making code contributions.
> >
> > I am familiar with C,C++ and python, and I am eager to pick up
> >> additional
> > skills that are required.
> >
> > Please could you help me in this task, as I am quite new to open
> >> source.
> >
> > Looking forward to your response,
> > Thanks,
> > Deborah Digges.
> >
> 
>  Hello Deborah --
>  Thanks for contacting Apache OpenOffice. We'd love to have you
> >> contribute
>  to this project.  We will try to identify a specific task for your
> team.
> 
>  First, I think we need more information from you to make this
> >> successful:
> 
>  * please tell us more about your development environment -- OS, IDE,
> etc
>  * what is your experience with source version management tools? svn,
> >> git,
>  etc
>  * your semester ends "by November" meaning the end of November?
> 
>  There are many references to open source participation available.
> Here's
>  one that gives a perspective from a participant's viewpoint that you
> may
>  find helpful.
> 
> 
> 
> >>
> http://blog.cobia.net/cobiacomm/2013/03/13/open-source-community-participation/
> 
> 
>  --
> 
> 
> >>
> -
>  MzK
> 
>  "Nothing will work unless you do."
>  -- Maya Angelou
> 
> >>>
> >>
> >> --
> >>
> -
> >> MzK
> >>
> >> "Nothing will work unless you do."
> >> -- Maya Angelou
> >>
> >> -
> >> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> >> For additional commands, e-mail: de

Re: Problem building AOO

2014-09-03 Thread zimuzo ezeozue
I was using* g++ 4.6*, I updated to *g++ (Ubuntu 4.8.1-2ubuntu1~12.04)
4.8.1, *but I'm still experiencing the same problem:

1 module(s):
toolkit
need(s) to be rebuilt

Reason(s):

ERROR: error 65280 occurred while making
/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/toolkit/prj

Thanks.


On Wed, Sep 3, 2014 at 11:23 PM, Amali Praveena Soban Kumar <
samaliprave...@yahoo.com.au> wrote:

> hi zimuzo,
> Can you please tell me what version of g++ you're using? try building with
> g++4.8.2 or whatever default compiler version available in your Ubuntu
> 12.02 virtual machine.
> Thanks,
> Amali.
>
>
> On Thursday, 4 September 2014, 7:03, zimuzo ezeozue <
> zimuzostan...@gmail.com> wrote:
>
>
>
> Please I ran into a little fix while building on my Ubuntu 12.04 machine.
> Something related with my toolkit module.
>
> I would be very glad for any help or suggestion
>
> Thanks.
>
> P.S Here is the error log I get:
>
> =
> Building module toolkit
> =
>
> Entering
> /media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/toolkit/prj
>
> cd .. && make -s -r -j1   && make -s -r deliverlog
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/layout/layout-post.hxx' has a high resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/layout/layout-pre.hxx' has a high resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/layout/layout.hxx' has a high resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxaccessiblecomponent.hxx' has a high
> resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxcontainer.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxdevice.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxfont.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxmenu.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxsystemdependentwindow.hxx' has a high
> resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxtoolkit.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxtopwindow.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxwindow.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/awt/vclxwindows.hxx' has a high resolution time
> stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/controls/unocontrol.hxx' has a high resolution
> time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/controls/unocontrolbase.hxx' has a high
> resolution
> time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/controls/unocontrolmodel.hxx' has a high
> resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/controls/unocontrols.hxx' has a high resolution
> time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/trunk/main/solver/420/
> unxlngi6.pro/inc/toolkit/dllapi.h' has a high resolution time stamp
> make: *** Warning: .LOW_RESOLUTION_TIME file
> `/media/9071b95c-05b6-46c8-9539-a8644c449313/Dev/AOO/tru

Licensing

2014-09-03 Thread Alicia LaRocque
Hello, my name is Alicia larocque and i am interested in using the symbols of 
your open office drawing application on a business workbook. Are these symbols 
copyrighted or could I use them and publish them in my workbook? 

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