Outdated banner on homepage

2020-12-13 Thread Pedro Lino
Hi all

Is it possible to remove the outdated banner to ApacheCon on the openoffice.org 
footer?

I can simply comment the HTML code if this is not a problem.

Otherwise if there is a more bureaucratic path please let me know which steps 
to take.

Regards,
Pedro

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



Re: Broken_Link: "https://wiki.openoffice.org/wiki/Documentation/DevGuide/Basic/Accessing_Libraries_from_Basic"-rm201208-

2020-12-13 Thread Dick Groskamp



On 2020/12/11 22:37:20, Carl Marcum  wrote: 
> It's been awhile since I've done any PHP so I've been doing some testing 
> in an online PHP Sandbox [1].
> 
> [1] https://sandbox.onlinephpfunctions.com/
> 
> See below:
> 
> On 12/11/20 3:30 PM, Dave Fisher wrote:
> >
> > Sent from my iPhone
> >
> >> On Dec 11, 2020, at 11:46 AM, Dick Groskamp  wrote:
> >>
> >> 
> >>
> >>> On 2020/12/11 19:34:47, Matthias Seidel  
> >>> wrote:
> >>> Hi Dick,
> >>>
>  Am 11.12.20 um 20:29 schrieb Dick Groskamp:
> 
>  On 2020/12/11 17:23:20, Matthias Seidel  
>  wrote:
> > Hi Dick,
> >
> > Am 11.12.20 um 17:14 schrieb Dick Groskamp:
> >
> > The extension is not broken, it is outdated. It cannot be updated
> > because that would need a newer version of Wiki.
> > However, our AOO skin for the Wiki must be adapted to the newer Wiki
> > version...
> >
> > At least that is what I understood from Andrea's posts regarding the
> > Wiki server in 2019 [1]
> >
>  Well, if it is outdated and it doesn't do its job, I think it is broken.
>  What I meant to say is that it doesn't work the way it was designed 
>  anymore.
> > See above, the extension is not ours. It is from mediaWiki.org (?)
> >
>  Well, I think it is ours. It was especially created by former developers 
>  for this purpose and it is probably nowhere else available/usable and 
>  just works on our wiki.
> >>> Who would that developer be?! Do you know a name?
> >> It was somewhere up in this thread:
> >> // Extension credits that will show up on Special:Version
> >> $wgExtensionCredits['parserhook'][] = array(
> >>  'name' => 'IDL Tags',
> >>  'version' => '1.0.2',
> >>  'author' => array( 'Clayton Cornell', 'Terry Ellison' ),
> > This clearly an OOo extension.
> >
> > Clayton didn’t really join AOO and Terry did the Forum move but seemed to 
> > get frustrated and left.
> >
> > I think that the approach could be separate from Carl’s new Wiki VM effort.
> >
> > Someone will need to look at the current VM and try your idea about 
> > changing the function.
> >
> > If Andrea can’t then I’ll have a look early next week.
> >
> > Regards,
> > Dave
> >
> >>  'description' => 'Manage the IDL links in the OOo Dev Guide ',
> >>  'url' =>
> >> 'http://wiki.openoffice.org/wiki/Wiki_maintenance/IDLTagExtension',
> >> );
> >>> Isn't it more likely that it is a mediawiki extension like:
> >>>
> >>> https://www.mediawiki.org/wiki/Extension:SyntaxHighlight
> >>>
> >> That is probably where the confusion comes from. You can develop your own 
> >> extensions if you want, just like our own .oxt's. The whole IDLTags 
> >> extension is the PHP-page Carl copied from the configuration. That's all
>  I haven't read Andrea's post yet, I focused more on getting this 
>  defective extension IDLTags repaired.
> >>> Well, that would be a workaround for the moment, but we should "simply"
> >>> fix the source of the problem...
> >>>
> >> With "source of the problem" I assume you mean upgrading the wiki version 
> >> and updating the skin
> >> etc as mentioned in Andrea's post
> >>
> >> As far as I know has Carl a new updated VM  available to go along with 
> >> that, but he has a tiny
> >> problem getting access. I think that will be the next step.
> >>
> >>
> 
> I think Arrigo's finding about the deprecated method may be it.
> 
> I have commented out the old method call and folled with the replacement.
> Testing a string that might be used in  tag:
>  $input = 'com.sun.star.uno.XComponentContext:getServiceManager';
> print("input = $input \n");
> 
> // $page = ereg_replace('\.','/',$input);
> $page = preg_replace('/\./','/',$input);
> print("page = $page \n");
> 
> // $anchor = ereg_replace (':','.html#',$page);
> $anchor = preg_replace ('/:/','.html#',$page);
> print("anchor = $anchor \n");
> 
> // $function = ereg_replace ('^.*:','',$page);
> $function = preg_replace ('/^.*:/','',$page);
> print("function = $function \n");
> 
> $output = 'http://api.openoffice.org/docs/common/ref/' . 
> $anchor.'" class="external text">' . $function.'';
> print("output = $output \n");
> ?>
> 
> which outputs:
> input = com.sun.star.uno.XComponentContext:getServiceManager
> page = com/sun/star/uno/XComponentContext:getServiceManager
> anchor = com/sun/star/uno/XComponentContext.html#getServiceManager
> function = getServiceManager
> output =  href="http://api.openoffice.org/docs/common/ref/com/sun/star/uno/XComponentContext.html#getServiceManager";
>  
> class="external text">getServiceManager
> 
> which I think is a correct link.
> 
> I can take a shot at the production fix unless someone has concerns.
> 
> Best regards,
> Carl
> 
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 
> 
Carl, all

if this works maybe it can be considered to

Re: Outdated banner on homepage

2020-12-13 Thread Matthias Seidel
Hi Pedro,

Am 13.12.20 um 13:09 schrieb Pedro Lino:
> Hi all
>
> Is it possible to remove the outdated banner to ApacheCon on the 
> openoffice.org footer?
>
> I can simply comment the HTML code if this is not a problem.

As I already wrote you, these banners are controlled by the ASF. You can
see them on every ASF project page.

Please do not touch the code!

Regards,

   Matthias

>
> Otherwise if there is a more bureaucratic path please let me know which steps 
> to take.
>
> Regards,
> Pedro
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Outdated banner on homepage

2020-12-13 Thread Pedro Lino
Hi Matthias, all

> On 12/13/2020 12:14 PM Matthias Seidel  wrote:

> As I already wrote you, these banners are controlled by the ASF. You can
> see them on every ASF project page.
> 
> Please do not touch the code!

I already read your opinion in the previous email. Is this a written rule? If 
so there should be a warning in the footer code.

Still it does not make sense to leave an outdated banner. The banner can be 
hidden by simply commenting the code.

If I am not allowed to change it, I'm officially requesting someone to do it.

Regards,
Pedro

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



Re: Outdated banner on homepage

2020-12-13 Thread Matthias Seidel
Hi Pedro,

Am 13.12.20 um 13:26 schrieb Pedro Lino:
> Hi Matthias, all
>
>> On 12/13/2020 12:14 PM Matthias Seidel  wrote:
>> As I already wrote you, these banners are controlled by the ASF. You can
>> see them on every ASF project page.
>>
>> Please do not touch the code!
> I already read your opinion in the previous email. Is this a written rule? If 
> so there should be a warning in the footer code.
This is not my opinion, it is a requirement.
>
> Still it does not make sense to leave an outdated banner. The banner can be 
> hidden by simply commenting the code.
>
> If I am not allowed to change it, I'm officially requesting someone to do it.

Then speak to the appropiate persons at Apache... ;-)

Regards,

   Matthias

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



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Outdated banner on homepage

2020-12-13 Thread Dave Fisher



Sent from my iPhone

> On Dec 13, 2020, at 4:26 AM, Pedro Lino  
> wrote:
> 
> Hi Matthias, all
> 
>>> On 12/13/2020 12:14 PM Matthias Seidel  wrote:
>> 
>> As I already wrote you, these banners are controlled by the ASF. You can
>> see them on every ASF project page.
>> 
>> Please do not touch the code!
> 
> I already read your opinion in the previous email. Is this a written rule? If 
> so there should be a warning in the footer code.
> 
> Still it does not make sense to leave an outdated banner. The banner can be 
> hidden by simply commenting the code.
> 
> If I am not allowed to change it, I'm officially requesting someone to do it.

The event banner is something the ASF wants on all websites.

I agree it is outdated. This graphic is controlled by the Apachecon committee 
and Community Dev.

A note to d...@community.apache.org should be sent requesting an update.

Regards,
Dave

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


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



[GitHub] [openoffice] cbmarcum commented on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


cbmarcum commented on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744009606


   When I open the pr89.odt file from the PR89.zip I see a discrepancy  in the 
characters 6th row left column vs. the image in the right column.
   
![pr89](https://user-images.githubusercontent.com/19439139/102013440-36a49100-3d1e-11eb-8a2e-5874f584ce5b.png)
   It is the same with a trunk build I had before this PR and after.  Also with 
a old AOO418 build I had so I think it's maybe the document and not a result of 
this PR.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [openoffice] cbmarcum edited a comment on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


cbmarcum edited a comment on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744009606


   When I open the pr89.odt file from the PR89.zip I see a discrepancy  in the 
characters 6th row left column vs. the image in the right column.
   
![pr89](https://user-images.githubusercontent.com/19439139/102013440-36a49100-3d1e-11eb-8a2e-5874f584ce5b.png)
   It is the same with a trunk build I had before this PR and after.  Also with 
a old AOO418 build I had so I think it's maybe the document and not a result of 
this PR.
   I will add that exports from all 3 of those match the ODT.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [openoffice] cbmarcum edited a comment on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


cbmarcum edited a comment on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744009606


   When I open the pr89.odt file from the PR89.zip I see a discrepancy  in the 
characters 6th row left column vs. the image in the right column. The pr89.pdf 
matches.
   
![pr89](https://user-images.githubusercontent.com/19439139/102013440-36a49100-3d1e-11eb-8a2e-5874f584ce5b.png)
   It is the same with a trunk build I had before this PR and after.  Also with 
a old AOO418 build I had so I think it's maybe the document and not a result of 
this PR.
   I will add that exports from all 3 of those match the ODT.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [openoffice] Pilot-Pirx commented on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


Pilot-Pirx commented on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744013286


   I don't see a mismatch in the odt (opened with AOO 4.1.8 on Ubuntu 16.04)
   Also no problems on Windows with AOO 4.2.0-dev.
   
   Do you have the font (Noto Sans CJK SC) installed?



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [openoffice] ardovm commented on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


ardovm commented on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744016761


   @cbmarcum thank you for the detailed review.
   
   I don't know Korean, unfortunately, but from this page:
   
https://fonts.google.com/?subset=korean&preview.text=%ED%95%98&preview.text_type=custom
   it seems that you are seeing a different font representing the same 
characters. In particular this one: 하
   Maybe you don't have the font "Noto Sans CJK SC" available in your system?
   
   The PDF matches because it contains embedded font subsets... and that is 
what this PR is about, after all ;-)
   
   I hope this makes sense!



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



Reporting broken download link

2020-12-13 Thread Volker Höhfeld

Sehr geehrte Damen und Herren,

der Computer sagt nach dem herungerladen,

Aphe_OpenOffice_4 Image nicht anerkannt.

*Problembeschreibung*   *Ersetze diesen Text und beschreibe das Problem

(Was funktioniert nicht? Was wird erwartet?)*
*Browser Variablen* *Werte*
navigator.appCodeName   Mozilla
navigator.appName   Netscape
navigator.appVersion5.0 (Macintosh)
navigator.platform  MacIntel
navigator.oscpu Intel Mac OS X 10.16
navigator.cpuClass  undefined
navigator.product   Gecko
navigator.productSub20100101
navigator.vendor
navigator.vendorSub
navigator.language  de
navigator.browserLanguage   undefined
navigator.userLanguage  undefined
navigator.systemLanguageundefined
navigator.userAgent Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16;
rv:83.0) Gecko/20100101 Firefox/83.0
Debian / Ubuntu / IceWeasel ?   Nein / Nein / Nein
*Stabiles Release*
*JavaScript Funktionen/Variablen*   *Werte*
Language ISO code   de
Language ISO code (from select box) de
Release matrix platform position (full) 9
Release matrix platform position (lp)   10
Release matrix platform array data  y,187
Release matrix language array data
de,German,Deutsch,y,de/downloads/index.html
UI platform nameOS X (version >= 10.7) (DMG)
UI platform name (not supported)
Platform (short)mac64
URL platform name (full)MacOS_x86-64_install
URL platform name (lp)  MacOS_x86-64_langpack
URL platform name (from select box) mac64
Version (from select box)   4.1.8
File name (full)Apache_OpenOffice_4.1.8_MacOS_x86-64_install_de.dmg
File name (lp)  Apache_OpenOffice_4.1.8_MacOS_x86-64_langpack_de.dmg
File extension  .dmg
File size (full) (MB)   187
File size (lp) (MB) 19
Release infoMilestone AOO418m3 | Build ID 9803 | Git hash 18848f57b6 |
Veröffentlicht 2020-11-10
Download file link (full)
https://sourceforge.net/projects/openofficeorg.mirror/files/4.1.8/binaries/de/Apache_OpenOffice_4.1.8_MacOS_x86-64_install_de.dmg/download

Download file link (lp)
https://sourceforge.net/projects/openofficeorg.mirror/files/4.1.8/binaries/de/Apache_OpenOffice_4.1.8_MacOS_x86-64_langpack_de.dmg/download

Checksum file link (full) (SHA256)
https://downloads.apache.org/openoffice/4.1.8/binaries/de/Apache_OpenOffice_4.1.8_MacOS_x86-64_install_de.dmg.sha256

Checksum file link (lp) (SHA256)
https://downloads.apache.org/openoffice/4.1.8/binaries/de/Apache_OpenOffice_4.1.8_MacOS_x86-64_langpack_de.dmg.sha256

Base URL to SourceForge.net
https://sourceforge.net/projects/openofficeorg.mirror/files/4.1.8/binaries/
Base URL to Apache Archive
https://archive.apache.org/dist/openoffice/4.1.8
getLinkSelection() (download URL)   undefined
isLanguageSupported() (true/false) ?true
Show the sub-box (true/false) ? true
General error (true/false) ?false



Re: Outdated banner on homepage

2020-12-13 Thread Pedro Lino
Hi Dave, all

> On 12/13/2020 12:32 PM Dave Fisher  wrote:

> The event banner is something the ASF wants on all websites.

Agreed. But if there is no event to be announced there is no need to keep the 
banner until there is a new one, right? 
 
> I agree it is outdated. This graphic is controlled by the Apachecon committee 
> and Community Dev.
> A note to d...@community.apache.org should be sent requesting an update.

I will do that. Thank you for the address

I still think there should be a comment in the footer HTML, something like



Is it acceptable that I send this suggestion in the same email?

Regards,
Pedro

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



[GitHub] [openoffice] cbmarcum commented on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


cbmarcum commented on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744035475


   I figured it out.  I had Noto Sans CJK SC font's installed but they had 
weight modifiers Light, Medium, Bold in the font names.  Once I changed them it 
appeared correctly. Thanks!



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



[GitHub] [openoffice] cbmarcum edited a comment on pull request #89: Use std::vector instead of fixed-size array of cffLocal objects

2020-12-13 Thread GitBox


cbmarcum edited a comment on pull request #89:
URL: https://github.com/apache/openoffice/pull/89#issuecomment-744035475


   I figured it out.  I had Noto Sans CJK SC font's installed but they had 
weight modifiers Light, Medium, Bold in the font names.  Once I changed them it 
appeared correctly. Thanks!
   And The PDF exported correctly.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



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



Re: Outdated banner on homepage

2020-12-13 Thread Dave Fisher
Hi -

Sent from my iPhone

> On Dec 13, 2020, at 7:37 AM, Pedro Lino  
> wrote:
> 
> Hi Dave, all
> 
>>> On 12/13/2020 12:32 PM Dave Fisher  wrote:
>> 
>> The event banner is something the ASF wants on all websites.
> 
> Agreed. But if there is no event to be announced there is no need to keep the 
> banner until there is a new one, right? 

This pandemic year has been unusual. If we comment it out then we have to know 
when to uncomment.

> 
>> I agree it is outdated. This graphic is controlled by the Apachecon 
>> committee and Community Dev.
>> A note to d...@community.apache.org should be sent requesting an update.
> 
> I will do that. Thank you for the address
> 
> I still think there should be a comment in the footer HTML, something like
> 
> 

Let’s wait until you get an answer from your email.

The graphic is changed for each event as planned, and we would normally do 
nothing.

> 
> Is it acceptable that I send this suggestion in the same email?

Just state your issue and see the response. I’ll be paying attention and will 
ping.

You might find this page interesting: 
https://whimsy.apache.org/site/check/events

Regards,
Dave

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


issue with dmake clean

2020-12-13 Thread Carl Marcum

Hi all,

Just ran into something.

I ran 'dmake clean' from main probably without having ran source 
 and it removed all of my directories under main.


Looks like it ran 'rm -rf */'

Best regards,
Carl

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



Re: Outdated banner on homepage

2020-12-13 Thread Marcus

Am 13.12.20 um 18:46 schrieb Dave Fisher:



On Dec 13, 2020, at 7:37 AM, Pedro Lino  wrote:

Hi Dave, all


On 12/13/2020 12:32 PM Dave Fisher  wrote:


The event banner is something the ASF wants on all websites.


Agreed. But if there is no event to be announced there is no need to keep the 
banner until there is a new one, right?


This pandemic year has been unusual. If we comment it out then we have to know 
when to uncomment.


I think Pedro suggested to put a comment before the code part that is 
controlled / filled from outside of our project. Then everybody can see 
what is coming from us and from other parts of the ASF.


BTW:
Here is the linked graphic:
/.../git.ooo-site/assets/footer.html

Just put the comment at the top of the file and thats it.

My suggestion, extended from Pedro's text:




Marcus




I agree it is outdated. This graphic is controlled by the Apachecon committee 
and Community Dev.
A note to d...@community.apache.org should be sent requesting an update.


I will do that. Thank you for the address

I still think there should be a comment in the footer HTML, something like




Let’s wait until you get an answer from your email.

The graphic is changed for each event as planned, and we would normally do 
nothing.



Is it acceptable that I send this suggestion in the same email?


Just state your issue and see the response. I’ll be paying attention and will 
ping.

You might find this page interesting: 
https://whimsy.apache.org/site/check/events



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



Re: Reporting broken download link

2020-12-13 Thread Marcus

Am 12.12.20 um 17:57 schrieb Volker Höhfeld:

before sending an answer to the author:


der Computer sagt nach dem herungerladen,

Aphe_OpenOffice_4 Image nicht anerkannt.


In English:
"
After the download the computer says,
Aphe_OpenOffice_4 Image not found
"

I've no clue about Mac but is this an indication for the Gatekeeper 
problem that is mentioned in the release notes? Or is it actually a 
different problem?


Thanks

Marcus




*Problembeschreibung* *Ersetze diesen Text und beschreibe das Problem

(Was funktioniert nicht? Was wird erwartet?)*
*Browser Variablen* *Werte*
navigator.appCodeName Mozilla
navigator.appName Netscape
navigator.appVersion 5.0 (Macintosh)
navigator.platform MacIntel
navigator.oscpu Intel Mac OS X 10.16
navigator.cpuClass undefined
navigator.product Gecko
navigator.productSub 20100101
navigator.vendor
navigator.vendorSub
navigator.language de
navigator.browserLanguage undefined
navigator.userLanguage undefined
navigator.systemLanguage undefined
navigator.userAgent Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16;
rv:83.0) Gecko/20100101 Firefox/83.0
[...]



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



Re: Outdated banner on homepage

2020-12-13 Thread Pedro Lino
Hi Marcus, all

> On 12/13/2020 6:43 PM Marcus  wrote:

> I think Pedro suggested to put a comment before the code part that is 
> controlled / filled from outside of our project. Then everybody can see 
> what is coming from us and from other parts of the ASF.

> Just put the comment at the top of the file and thats it.
> 
> My suggestion, extended from Pedro's text:
> 
> 

That was exactly my suggestion. 
Thank you for the feedback!

Regards,
Pedro

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



Re: issue with dmake clean

2020-12-13 Thread Matthias Seidel
Hi Carl,

Am 13.12.20 um 19:02 schrieb Carl Marcum:
> Hi all,
>
> Just ran into something.
>
> I ran 'dmake clean' from main probably without having ran source
>  and it removed all of my directories under main.

Tried to do that on Windows (Cygwin64), went into main, did "autoconf",
"dmake clean":

$ dmake clean
-bash: dmake: command not found

Only after "source winenv.set.sh" it did clean up what it should...

Regards,

   Matthias

>
> Looks like it ran 'rm -rf */'
>
> Best regards,
> Carl
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>



smime.p7s
Description: S/MIME Cryptographic Signature


Re: Outdated banner on homepage

2020-12-13 Thread Dave Fisher


> On Dec 13, 2020, at 10:43 AM, Marcus  wrote:
> 
> Am 13.12.20 um 18:46 schrieb Dave Fisher:
>>> On Dec 13, 2020, at 7:37 AM, Pedro Lino  
>>> wrote:
>>> 
>>> Hi Dave, all
>>> 
> On 12/13/2020 12:32 PM Dave Fisher  wrote:
 
 The event banner is something the ASF wants on all websites.
>>> 
>>> Agreed. But if there is no event to be announced there is no need to keep 
>>> the banner until there is a new one, right?
>> This pandemic year has been unusual. If we comment it out then we have to 
>> know when to uncomment.
> 
> I think Pedro suggested to put a comment before the code part that is 
> controlled / filled from outside of our project. Then everybody can see what 
> is coming from us and from other parts of the ASF.
> 
> BTW:
> Here is the linked graphic:
> /.../git.ooo-site/assets/footer.html
> 
> Just put the comment at the top of the file and thats it.
> 
> My suggestion, extended from Pedro's text:
> 
> 
>> Let’s wait until you get an answer from your email.
>> The graphic is changed for each event as planned, and we would normally do 
>> nothing.
>>> 
>>> Is it acceptable that I send this suggestion in the same email?
>> Just state your issue and see the response. I’ll be paying attention and 
>> will ping.
>> You might find this page interesting: 
>> https://whimsy.apache.org/site/check/events
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 



Re: issue with dmake clean

2020-12-13 Thread Carl Marcum

Hi Matthias,

On 12/13/20 4:29 PM, Matthias Seidel wrote:

Hi Carl,

Am 13.12.20 um 19:02 schrieb Carl Marcum:

Hi all,

Just ran into something.

I ran 'dmake clean' from main probably without having ran source
 and it removed all of my directories under main.

Tried to do that on Windows (Cygwin64), went into main, did "autoconf",
"dmake clean":

$ dmake clean
-bash: dmake: command not found

Only after "source winenv.set.sh" it did clean up what it should...

It could be because I have a built and installed dmake on my system.

Thanks for checking!



Regards,

    Matthias


Looks like it ran 'rm -rf */'

Best regards,
Carl

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




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



Re: Outdated banner on homepage

2020-12-13 Thread Marcus

Am 13.12.20 um 22:51 schrieb Dave Fisher:



On Dec 13, 2020, at 10:43 AM, Marcus  wrote:

Am 13.12.20 um 18:46 schrieb Dave Fisher:

On Dec 13, 2020, at 7:37 AM, Pedro Lino  wrote:

Hi Dave, all


On 12/13/2020 12:32 PM Dave Fisher  wrote:


The event banner is something the ASF wants on all websites.


Agreed. But if there is no event to be announced there is no need to keep the 
banner until there is a new one, right?

This pandemic year has been unusual. If we comment it out then we have to know 
when to uncomment.


I think Pedro suggested to put a comment before the code part that is 
controlled / filled from outside of our project. Then everybody can see what is 
coming from us and from other parts of the ASF.

BTW:
Here is the linked graphic:
/.../git.ooo-site/assets/footer.html

Just put the comment at the top of the file and thats it.

My suggestion, extended from Pedro's text:



Let’s wait until you get an answer from your email.
The graphic is changed for each event as planned, and we would normally do 
nothing.


Is it acceptable that I send this suggestion in the same email?

Just state your issue and see the response. I’ll be paying attention and will 
ping.
You might find this page interesting: 
https://whimsy.apache.org/site/check/events



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



Re: Outdated banner on homepage

2020-12-13 Thread Dave Fisher



Sent from my iPhone

> On Dec 13, 2020, at 3:22 PM, Marcus  wrote:
> 
> Am 13.12.20 um 22:51 schrieb Dave Fisher:
 On Dec 13, 2020, at 10:43 AM, Marcus  wrote:
>>> 
>>> Am 13.12.20 um 18:46 schrieb Dave Fisher:
> On Dec 13, 2020, at 7:37 AM, Pedro Lino  
> wrote:
> 
> Hi Dave, all
> 
>>> On 12/13/2020 12:32 PM Dave Fisher  wrote:
>> 
>> The event banner is something the ASF wants on all websites.
> 
> Agreed. But if there is no event to be announced there is no need to keep 
> the banner until there is a new one, right?
 This pandemic year has been unusual. If we comment it out then we have to 
 know when to uncomment.
>>> 
>>> I think Pedro suggested to put a comment before the code part that is 
>>> controlled / filled from outside of our project. Then everybody can see 
>>> what is coming from us and from other parts of the ASF.
>>> 
>>> BTW:
>>> Here is the linked graphic:
>>> /.../git.ooo-site/assets/footer.html
>>> 
>>> Just put the comment at the top of the file and thats it.
>>> 
>>> My suggestion, extended from Pedro's text:
>>> 
>>> 
 Let’s wait until you get an answer from your email.
 The graphic is changed for each event as planned, and we would normally do 
 nothing.
> 
> Is it acceptable that I send this suggestion in the same email?
 Just state your issue and see the response. I’ll be paying attention and 
 will ping.
 You might find this page interesting: 
 https://whimsy.apache.org/site/check/events
> 
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
> 


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