You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openoffice.apache.org by Andrea Pescetti <pe...@apache.org> on 2015/07/26 12:28:31 UTC

Re: Bootstrap download failures, mainly from http://sourceforge.net/projects/oooextras.mirror/files

On 24/06/2015 Kay Schenk wrote:
> On 06/23/2015 11:15 PM, Andrea Pescetti wrote:
>> Before we do anything with it, can we decide on the name?
>> oooextras.mirror is clearly confusing since it is not a mirror ...
> I thought the SF mirror was just that -- a mirror of
> /trunk/external_sources ... the Google Code area was a direct upload

I'm reviewing these issues since we need to remove the dependency on 
Google Code in the 4.1.2 sources (reason is very simple: Google Code 
won't offer a downloads sections any longer, by their own universal 
policy, nothing to do with OpenOffice).

Just a few clarifications:

1) The thing we need to have mirrored is not 
http://svn.apache.org/viewvc/openoffice/trunk/ext_sources/ (our SVN is 
OK); the thing we want to mirror is 
https://code.google.com/a/apache-extras.org/p/ooo-extras/downloads/list 
; the two are different since the former does not contain the "Category 
B" dependencies; for example, hunspell is only in the latter.

2) http://sourceforge.net/projects/oooextras.mirror/files/ is already 
configured correctly to be a copy of the Google Code one; trunk uses it 
and it builds correctly.

3) I had proposed to change the name of oooextras.mirror for clarity 
since we could use simply http://sourceforge.net/projects/oooextras ; I 
would make the change before we release 4.1.2 (lazy consensus).

4) Once the above is done, we remove the dependency on Google Code in 
both trunk and 4.1.2.

5) The whole Apache Extras is going to be moved to SourceForge, if I 
understand correctly from community lists; but it will be a collection 
of individual SourceForge repositories, so we can definitely move and 
just use it without need to coordinate with other projects; then "our" 
project will be put in the appropriate container.

Regards,
   Andrea.

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


Re: Disable arrow for customizing toolbar

Posted by Riccardo Arzenton <ri...@yacme.com>.
Thanks!

Il'll give it a try


----- Messaggio originale -----
Da: "Oliver Brinzing" <Ol...@gmx.de>
A: dev@openoffice.apache.org
Inviato: Lunedì, 27 luglio 2015 18:57:59
Oggetto: Re: Disable arrow for customizing toolbar

Hi,

> Is it possibile to disable the little arrow used in a toolbar for customizing it?

see https://wiki.openoffice.org/wiki/Documentation/DevGuide/WritingUNO/AddOns/Toolbars

you can add a "<Module>WindowState.xcu" file to change settings for custom toolbars, for example:

<?xml version="1.0" encoding="UTF-8"?>
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" 
xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="CalcWindowState" 
oor:package="org.openoffice.Office.UI">
	<node oor:name="UIElements">
		<node oor:name="States">
			<node oor:name="private:resource/toolbar/addon_my.toolbar" oor:op="replace">
				<prop oor:name="ContextSensitive" oor:type="xs:boolean">
					<value>false</value>
				</prop>
				<prop oor:name="UIName" oor:type="xs:string">
					<value>My Toolbar</value>
				</prop>
				<prop oor:name="Visible" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="NoClose" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="SoftClose" oor:type="xs:boolean">
					<value>false</value>
				</prop>
				<prop oor:name="HideFromToolbarMenu" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="Locked" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="Pos" oor:type="xs:string">
					<value>2147483647,2147483647</value>
				</prop>
				<prop oor:name="Size" oor:type="xs:string">
					<value>0,0</value>
				</prop>
				<prop oor:name="Docked" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="DockingArea" oor:type="xs:int">
					<value>3</value>
				</prop>
				<prop oor:name="DockPos" oor:type="xs:string">
					<value>0,0</value>
				</prop>
			</node>

		</node>
	</node>
</oor:component-data>


but i am not sure, if it works for the standard toolbars.

Oliver


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


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


Re: Disable arrow for customizing toolbar

Posted by Oliver Brinzing <Ol...@gmx.de>.
Hi,

> Is it possibile to disable the little arrow used in a toolbar for customizing it?

see https://wiki.openoffice.org/wiki/Documentation/DevGuide/WritingUNO/AddOns/Toolbars

you can add a "<Module>WindowState.xcu" file to change settings for custom toolbars, for example:

<?xml version="1.0" encoding="UTF-8"?>
<oor:component-data xmlns:oor="http://openoffice.org/2001/registry" 
xmlns:xs="http://www.w3.org/2001/XMLSchema" oor:name="CalcWindowState" 
oor:package="org.openoffice.Office.UI">
	<node oor:name="UIElements">
		<node oor:name="States">
			<node oor:name="private:resource/toolbar/addon_my.toolbar" oor:op="replace">
				<prop oor:name="ContextSensitive" oor:type="xs:boolean">
					<value>false</value>
				</prop>
				<prop oor:name="UIName" oor:type="xs:string">
					<value>My Toolbar</value>
				</prop>
				<prop oor:name="Visible" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="NoClose" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="SoftClose" oor:type="xs:boolean">
					<value>false</value>
				</prop>
				<prop oor:name="HideFromToolbarMenu" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="Locked" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="Pos" oor:type="xs:string">
					<value>2147483647,2147483647</value>
				</prop>
				<prop oor:name="Size" oor:type="xs:string">
					<value>0,0</value>
				</prop>
				<prop oor:name="Docked" oor:type="xs:boolean">
					<value>true</value>
				</prop>
				<prop oor:name="DockingArea" oor:type="xs:int">
					<value>3</value>
				</prop>
				<prop oor:name="DockPos" oor:type="xs:string">
					<value>0,0</value>
				</prop>
			</node>

		</node>
	</node>
</oor:component-data>


but i am not sure, if it works for the standard toolbars.

Oliver


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


Disable arrow for customizing toolbar

Posted by Riccardo Arzenton <ri...@yacme.com>.
Hi to all! 
Is it possibile to disable the little arrow used in a toolbar for customizing it? 


Thanks! 



Re: Bootstrap download failures, mainly from http://sourceforge.net/projects/oooextras.mirror/files

Posted by Kay Schenk <ka...@gmail.com>.

On 07/26/2015 03:28 AM, Andrea Pescetti wrote:
> On 24/06/2015 Kay Schenk wrote:
>> On 06/23/2015 11:15 PM, Andrea Pescetti wrote:
>>> Before we do anything with it, can we decide on the name?
>>> oooextras.mirror is clearly confusing since it is not a mirror ...
>> I thought the SF mirror was just that -- a mirror of
>> /trunk/external_sources ... the Google Code area was a direct upload
> 
> I'm reviewing these issues since we need to remove the dependency on
> Google Code in the 4.1.2 sources (reason is very simple: Google Code
> won't offer a downloads sections any longer, by their own universal
> policy, nothing to do with OpenOffice).
> 
> Just a few clarifications:
> 
> 1) The thing we need to have mirrored is not
> http://svn.apache.org/viewvc/openoffice/trunk/ext_sources/ (our SVN is
> OK); the thing we want to mirror is
> https://code.google.com/a/apache-extras.org/p/ooo-extras/downloads/list
> ; the two are different since the former does not contain the "Category
> B" dependencies; for example, hunspell is only in the latter.

OK. Looking at this list and what's included vs the items in:

http://svn.apache.org/viewvc/openoffice/trunk/main/external_deps.lst?revision=1654306&view=markup

is confusing to me.

Are further changes to external_deps.lst required?


> 
> 2) http://sourceforge.net/projects/oooextras.mirror/files/ is already
> configured correctly to be a copy of the Google Code one; trunk uses it
> and it builds correctly.
> 
> 3) I had proposed to change the name of oooextras.mirror for clarity
> since we could use simply http://sourceforge.net/projects/oooextras ; I
> would make the change before we release 4.1.2 (lazy consensus).
> 
> 4) Once the above is done, we remove the dependency on Google Code in
> both trunk and 4.1.2.
> 
> 5) The whole Apache Extras is going to be moved to SourceForge, if I
> understand correctly from community lists; but it will be a collection
> of individual SourceForge repositories, so we can definitely move and
> just use it without need to coordinate with other projects; then "our"
> project will be put in the appropriate container.
> 
> Regards,
>   Andrea.
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@openoffice.apache.org
> For additional commands, e-mail: dev-help@openoffice.apache.org
> 

-- 
--------------------------------------------
MzK

"Way down deep, we're all motivated by
 the  same urges.  Cats have the courage
 to live by them."
                        -- Jim Davis


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