diff options
Diffstat (limited to 'officecfg/registry')
3 files changed, 147 insertions, 2 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs b/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs new file mode 100755 index 000000000000..7ff91464727d --- /dev/null +++ b/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/Settings.xcs @@ -0,0 +1,98 @@ +<?xml version="1.0"?> +<oor:component-schema xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" oor:name="Settings" oor:package="org.openoffice.Office.OOoImprovement" xml:lang="en-US"> + <info> + <desc>Contains preferences for the OpenOffice.org Improvement Program components.</desc> + </info> + <templates/> + <component> + <group oor:name="Participation"> + <info> + <desc>invitations to usage tracking etc.</desc> + </info> + <prop oor:name="OfficeStartCounterdown" oor:type="xs:int"> + <info> + <desc>the number of starts that will be skipped before the user will get invited to the + OpenOffice.org Improvement Program. If this is zero the user will get asked. + </desc> + </info> + <value>1</value> + </prop> + <prop oor:name="InvitationAccepted" oor:type="xs:boolean"> + <info> + <desc>true, if the user accepted the invitation.</desc> + </info> + <value>false</value> + </prop> + <prop oor:name="ShowedInvitation" oor:type="xs:boolean"> + <info> + <desc>true, if the user was already invited.</desc> + </info> + <value>false</value> + </prop> + <prop oor:name="DeliveredPrebundled" oor:type="xs:boolean"> + <info> + <desc>true, if the extension is prebundled - is set by an onFirstRunInitialization job. + (currently not implemented)</desc> + </info> + <value>false</value> + </prop> + <prop oor:name="HelpUrl" oor:type="xs:string"> + <info> + <desc>the url where additional infomation can be found.</desc> + </info> + <value>http://wiki.services.openoffice.org/wiki/User_Experience/OpenOffice.org_User_Feedback_Program</value> + </prop> + </group> + <group oor:name="Counters"> + <info> + <desc>counts of recorded events, uploaded reports etc.</desc> + </info> + <prop oor:name="UploadedReports" oor:type="xs:int"> + <info> + <desc>the number of reports uploaded.</desc> + </info> + <value>0</value> + </prop> + <prop oor:name="LoggedEvents" oor:type="xs:int"> + <info> + <desc>the number of events in zipped or already uploaded report.</desc> + </info> + <value>0</value> + </prop> + <prop oor:name="FailedAttempts" oor:type="xs:int"> + <info> + <desc>the number of failed upload tries.</desc> + </info> + <value>0</value> + </prop> + </group> + <group oor:name="Upload"> + <info> + <desc>settings on destination for uploading reports</desc> + </info> + <prop oor:name="SoapUrl" oor:type="xs:string"> + <info> + <desc>the url where reports get send to.</desc> + </info> + <value>http://report.services.openoffice.org:80/soap/servlet/rpcrouter</value> + </prop> + <prop oor:name="SoapIdAdditions" oor:type="xs:string"> + <info> + <desc>Additions to the SoapId for automated testing + DO NOT SET THIS VALUE UNLESS YOU KNOW WHAT YOU ARE DOING! + </desc> + </info> + <value></value> + </prop> + <prop oor:name="ReporterEmail" oor:type="xs:string"> + <info> + <desc>The Emailaddress to fill out in the reportmail.xml file. + DO NOT SET THIS VALUE UNLESS YOU KNOW WHAT YOU ARE DOING! + Its only purpose is testing and quality assureance. + </desc> + </info> + <value></value> + </prop> + </group> + </component> +</oor:component-schema> diff --git a/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/makefile.mk b/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/makefile.mk new file mode 100644 index 000000000000..1504d979b5eb --- /dev/null +++ b/officecfg/registry/schema/org/openoffice/Office/OOoImprovement/makefile.mk @@ -0,0 +1,46 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2008 by Sun Microsystems, Inc. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# $RCSfile: $ +# +# $Revision: $ +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* +PRJ=..$/..$/..$/..$/..$/.. + +PRJNAME=officecfg +TARGET=schema_ooOImprovement +PACKAGE=org.openoffice.Office.OOoImprovement + +.INCLUDE : settings.mk +.INCLUDE : $(PRJ)$/util$/makefile.pmk + +# --- Targets ------------------------------------------------------ + +XCSFILES= \ + Settings.xcs + +.INCLUDE : target.mk + diff --git a/officecfg/registry/schema/org/openoffice/Office/makefile.mk b/officecfg/registry/schema/org/openoffice/Office/makefile.mk index 4d21f778ec1f..320ec8eed2ce 100644 --- a/officecfg/registry/schema/org/openoffice/Office/makefile.mk +++ b/officecfg/registry/schema/org/openoffice/Office/makefile.mk @@ -78,8 +78,9 @@ XCSFILES= \ ExtendedColorScheme.xcs \ TypeDetection.xcs \ TabBrowse.xcs \ - Paths.xcs \ - Histories.xcs + Paths.xcs \ + Histories.xcs \ + OOoImprovement.xcs .INCLUDE : target.mk |