diff options
author | Rachit Gupta <rachitgupta1792@gmail.com> | 2014-06-30 15:28:05 +0530 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-08-14 19:43:29 +0200 |
commit | 49b08326e3ac2a805373f255b3b0fd2c6fa165fa (patch) | |
tree | c69a338596fc044f7f8463d7ef3c1ade6a134d5b /officecfg | |
parent | 4017908018a0ccc771247f09c47798dd20644db3 (diff) |
Changed application of personas through extensions procedure.
The PersonasEntry template in the registry now stores the setting as
splitted values rather than ';' separated terms. The corresponding ';'
separated setting is prepared and stored.
Change-Id: I154d519c475a48763a75b5c35ad20f170c1d7996
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Common.xcs | 29 |
1 files changed, 25 insertions, 4 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs index d5e926b12b85..6548445053ed 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs @@ -810,16 +810,37 @@ <info> <desc>Stores the details of the installed personas.</desc> </info> + <prop oor:name="PersonaName" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>The Persona's name</desc> + </info> + </prop> <prop oor:name="PersonaPreview" oor:type="xs:string" oor:nillable="false"> <info> <desc>Name of the preview file for the Persona to show in the UI</desc> </info> </prop> - <prop oor:name="PersonaSettings" oor:type="xs:string" oor:nillable="false"> + <prop oor:name="PersonaHeader" oor:type="xs:string" oor:nillable="false"> <info> - <desc>Names of the header and footer images, and colors for text and - accent. When set, the value has form - "header.jpg;footer.jpg;#RGBTXT;#RGBACC".</desc> + <desc>Name of the header file for the Persona</desc> + </info> + <value/> + </prop> + <prop oor:name="PersonaFooter" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Name of the footer file for the Persona</desc> + </info> + <value/> + </prop> + <prop oor:name="PersonaTextColor" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Value of the text color for the Persona</desc> + </info> + <value/> + </prop> + <prop oor:name="PersonaAccentColor" oor:type="xs:string" oor:nillable="false"> + <info> + <desc>Value of the accent color for the Persona</desc> </info> <value/> </prop> |