Merge lp:~pimvullers/pantheon-files/fix-983560 into lp:~elementary-apps/pantheon-files/trunk

Proposed by Pim Vullers
Status: Rejected
Rejected by: xapantu
Proposed branch: lp:~pimvullers/pantheon-files/fix-983560
Merge into: lp:~elementary-apps/pantheon-files/trunk
Diff against target: 798 lines (+253/-481)
9 files modified
libwidgets/tests/tests-pathbar.vala (+1/-1)
schemas/CMakeLists.txt (+2/-2)
schemas/org.gnome.marlin.gschema.xml (+0/-233)
schemas/org.gnome.marlin.gschema.xml.moved (+0/-228)
schemas/org.gnome.marlin.plugins.gschema.xml (+0/-11)
schemas/org.pantheon.files.gschema.xml (+233/-0)
schemas/org.pantheon.files.plugins.gschema.xml (+11/-0)
src/marlin-application.c (+5/-5)
src/tests/marlintests.c (+1/-1)
To merge this branch: bzr merge lp:~pimvullers/pantheon-files/fix-983560
Reviewer Review Type Date Requested Status
elementary Apps team Pending
Review via email: mp+111999@code.launchpad.net

Commit message

Fixed bug #983560 (again)

Description of the change

Fixed bug #983560 (again)

To post a comment you must log in.
Revision history for this message
xapantu (xapantu) wrote :

Thanks, I've just merged your marlin branch, so, this one is not useful anymore, sorry for the delay :(

Unmerged revisions

858. By Pim Vullers

Fixed bug #983560 (again)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'config.vala.cmake' (properties changed: +x to -x)
2=== modified file 'libwidgets/tests/tests-pathbar.vala'
3--- libwidgets/tests/tests-pathbar.vala 2012-06-02 16:34:27 +0000
4+++ libwidgets/tests/tests-pathbar.vala 2012-06-26 04:06:22 +0000
5@@ -183,7 +183,7 @@
6 {
7 Gtk.init(ref args);
8 Test.init(ref args);
9- //Preferences.settings = new GLib.Settings("org.gnome.marlin.preferences");
10+ //Preferences.settings = new GLib.Settings("org.pantheon.files.preferences");
11
12 add_pathbar_tests ();
13
14
15=== modified file 'schemas/CMakeLists.txt'
16--- schemas/CMakeLists.txt 2012-06-03 11:16:37 +0000
17+++ schemas/CMakeLists.txt 2012-06-26 04:06:22 +0000
18@@ -1,3 +1,3 @@
19 include(GSettings)
20-add_schema("org.gnome.marlin.gschema.xml")
21-add_schema("org.gnome.marlin.plugins.gschema.xml")
22+add_schema("org.pantheon.files.gschema.xml")
23+add_schema("org.pantheon.files.plugins.gschema.xml")
24
25=== removed file 'schemas/org.gnome.marlin.gschema.xml'
26--- schemas/org.gnome.marlin.gschema.xml 2012-06-11 08:26:48 +0000
27+++ schemas/org.gnome.marlin.gschema.xml 1970-01-01 00:00:00 +0000
28@@ -1,233 +0,0 @@
29-<?xml version="1.0" encoding="UTF-8"?>
30-<schemalist>
31- <enum id="viewmode">
32- <value value="0" nick="icon"/>
33- <value value="1" nick="list"/>
34- <value value="2" nick="compact"/>
35- <value value="3" nick="miller_columns"/>
36- </enum>
37- <enum id="org.gnome.marlin.ZoomLevel">
38- <value value="0" nick="smallest"/>
39- <value value="1" nick="smaller"/>
40- <value value="2" nick="small"/>
41- <value value="3" nick="normal"/>
42- <value value="4" nick="large"/>
43- <value value="5" nick="larger"/>
44- <value value="6" nick="largest"/>
45- </enum>
46- <enum id="contextviewmode">
47- <value value="0" nick="horizontal"/>
48- <value value="1" nick="vertical"/>
49- <value value="2" nick="auto"/>
50- </enum>
51- <enum id="dateformatmode">
52- <value value="0" nick="iso"/>
53- <value value="1" nick="locale"/>
54- <value value="2" nick="informal"/>
55- </enum>
56-
57- <schema path="/apps/marlin/preferences/" id="org.gnome.marlin.preferences">
58- <key type="b" name="auto-theme">
59- <default>true</default>
60- <summary>Auto-theme</summary>
61- <description>Automaticly theme Marlin's specific widgets</description>
62- </key>
63- <key type="b" name="show-menubar">
64- <default>false</default>
65- <summary>Show the menubar</summary>
66- <description>Show the menubar</description>
67- </key>
68- <key type="as" name="plugins-enabled">
69- <default>[]</default>
70- <summary>Enabled Plugins</summary>
71- <description>Enabled Plugins</description>
72- </key>
73- <key type="b" name="show-sidebar">
74- <default>true</default>
75- <summary>Show the sidebar</summary>
76- <description>Show the sidebar</description>
77- </key>
78- <key type="b" name="show-hiddenfiles">
79- <default>false</default>
80- <summary>Show hidden files</summary>
81- <description>If set to true, hidden files will also be shown (files starting with a "." for example)</description>
82- </key>
83- <key type="b" name="start-with-contextview">
84- <default>false</default>
85- <summary>Show the context view pane</summary>
86- <description>Show the context view pane</description>
87- </key>
88- <key type="b" name="rgba-colormap">
89- <default>false</default>
90- <summary>enable rgba window</summary>
91- <description>If set to true, rgba will be enabled, you'll need a gtk engine supporting rgba, like murrine. Compiz can have some problems like drawings shadows ...</description>
92- </key>
93- <key name="date-format" enum="dateformatmode">
94- <default>'iso'</default>
95- <summary>Date Format</summary>
96- <description>The format of file dates. Possible values are "locale", "iso", and "informal".</description>
97- </key>
98- <key type="b" name="single-click">
99- <default>true</default>
100- <summary>single click</summary>
101- <description>Whether items are activated by single clicks instead of dubble clicks</description>
102- </key>
103- <key type="i" name="single-click-timeout">
104- <default>0</default>
105- <range min="0" max="1000"/>
106- <summary>single click timeout</summary>
107- <description>
108- The amount of time which the item under the mouse cursor will be selected automatically in single click mode. A value of 0 disables the automatic selection.
109- </description>
110- </key>
111- <key type="b" name="interpret-desktop-files">
112- <default>true</default>
113- <summary>interpret desktop files</summary>
114- <description>If true the desktop files would be interpreted, a desktop file can represent an executable, a directory etc. (their filename, type and some other properties would be the target ones)</description>
115- </key>
116- <key name="contextview-orientation" enum="contextviewmode">
117- <default>'auto'</default>
118- <summary>Context View Panel orientation</summary>
119- <description>
120- Auto Context View Panel orientation means the panel would be horizontal or vertical depending on the size of your window.
121- </description>
122- </key>
123- <key name="default-viewmode" enum="viewmode">
124- <default>'icon'</default>
125- <summary>Default viewmode when browsing</summary>
126- <description>
127- The default viewmode to be used when opening a new tab or window
128- </description>
129- </key>
130- <key type="b" name="toolbar-primary-css-style">
131- <default>true</default>
132- <summary>toolbar css style</summary>
133- <description>Set the toolbar css style to primary-toolbar.</description>
134- </key>
135- <key type="as" name="toolbar-items">
136- <default>[ 'Back', 'Forward', 'LocationEntry', 'ViewSwitcher']</default>
137- <summary>List of actions present in the toolbar</summary>
138- <description>
139- List of actions present in the toolbar
140- </description>
141- </key>
142- <key name="sidebar-zoom-level" enum="org.gnome.marlin.ZoomLevel">
143- <default>'smallest'</default>
144- <summary>Size of the icons in the Places sidebar</summary>
145- <description>Zoom level used by the places sidebar.</description>
146- </key>
147- <key type="b" name="sidebar-cat-personal-expander">
148- <default>true</default>
149- <summary>Categorie personal expander</summary>
150- <description>Expand/Collapse categorie Personal</description>
151- </key>
152- <key type="b" name="sidebar-cat-devices-expander">
153- <default>true</default>
154- <summary>Categorie Devices expander</summary>
155- <description>Expand/Collapse categorie Devices</description>
156- </key>
157- <key type="b" name="sidebar-cat-network-expander">
158- <default>true</default>
159- <summary>Categorie Network expander</summary>
160- <description>Expand/Collapse categorie Network</description>
161- </key>
162- <key type="b" name="properties-dlg-info">
163- <default>true</default>
164- <summary>Properties Info expander</summary>
165- <description>Expand/collapse Info panel</description>
166- </key>
167- <key type="b" name="properties-dlg-permissions">
168- <default>true</default>
169- <summary>Properties Permissions expander</summary>
170- <description>Expand/collapse Permissions panel</description>
171- </key>
172- <key type="b" name="properties-dlg-preview">
173- <default>true</default>
174- <summary>Properties Preview expander</summary>
175- <description>Expand/collapse Preview panel</description>
176- </key>
177- <key type="s" name="geometry">
178- <default>''</default>
179- <summary>The geometry string for a navigation window.</summary>
180- <description>A string containing the saved geometry and coordinates string for navigation windows.</description>
181- </key>
182- <key type="b" name="maximized">
183- <default>false</default>
184- <summary>Whether the navigation window should be maximized.</summary>
185- <description>Whether the navigation window should be maximized by default.</description>
186- </key>
187- <key type="i" name="sidebar-width">
188- <default>148</default>
189- <summary>Width of the side pane</summary>
190- <description>The default width of the side pane in new windows.</description>
191- </key>
192- <key type="b" name="confirm-trash">
193- <default>true</default>
194- <summary>Confirm trash</summary>
195- <description>Confirm trash</description>
196- </key>
197- <key type="s" name="previewer-path">
198- <default>''</default>
199- <summary>Path of the previewer.</summary>
200- <description>Path of the previewer or executable name (if path already definied in PATH environnment variable). If no path is set, then the space bindkey would just activate the selected items instead of previewing them</description>
201- </key>
202- </schema>
203-
204- <schema path="/apps/marlin/icon-view/" id="org.gnome.marlin.icon-view">
205- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
206- <default>'normal'</default>
207- <summary>icon default zoom level</summary>
208- <description>Default Zoom level used by the icon view.</description>
209- </key>
210- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
211- <default>'normal'</default>
212- <summary>icon zoom level</summary>
213- <description>Zoom level used by the icon view.</description>
214- </key>
215- </schema>
216-
217- <schema path="/apps/marlin/list-view/" id="org.gnome.marlin.list-view">
218- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
219- <default>'smallest'</default>
220- <summary>icon default zoom level</summary>
221- <description>Default Zoom level used by the list view.</description>
222- </key>
223- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
224- <default>'smallest'</default>
225- <summary>icon zoom level</summary>
226- <description>Zoom level used by the list view.</description>
227- </key>
228- </schema>
229-
230- <schema path="/apps/marlin/compact-view/" id="org.gnome.marlin.compact-view">
231- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
232- <default>'smallest'</default>
233- <summary>icon default zoom level</summary>
234- <description>Default Zoom level used by the compact view.</description>
235- </key>
236- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
237- <default>'smallest'</default>
238- <summary>icon zoom level</summary>
239- <description>Zoom level used by the compact view.</description>
240- </key>
241- </schema>
242-
243- <schema path="/apps/marlin/column-view/" id="org.gnome.marlin.column-view">
244- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
245- <default>'smallest'</default>
246- <summary>icon default zoom level</summary>
247- <description>Default Zoom level used by the column view.</description>
248- </key>
249- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
250- <default>'smallest'</default>
251- <summary>icon zoom level</summary>
252- <description>Zoom level used by the column view.</description>
253- </key>
254- <key type="i" name="preferred-column-width">
255- <default>180</default>
256- <summary>prefered column width</summary>
257- <description>The column width preferred by the miller column view.</description>
258- </key>
259- </schema>
260-
261-</schemalist>
262
263=== removed file 'schemas/org.gnome.marlin.gschema.xml.moved'
264--- schemas/org.gnome.marlin.gschema.xml.moved 2012-06-11 09:25:17 +0000
265+++ schemas/org.gnome.marlin.gschema.xml.moved 1970-01-01 00:00:00 +0000
266@@ -1,228 +0,0 @@
267-<?xml version="1.0" encoding="UTF-8"?>
268-<schemalist>
269- <enum id="viewmode">
270- <value value="0" nick="icon"/>
271- <value value="1" nick="list"/>
272- <value value="2" nick="compact"/>
273- <value value="3" nick="miller_columns"/>
274- </enum>
275- <enum id="org.gnome.marlin.ZoomLevel">
276- <value value="0" nick="smallest"/>
277- <value value="1" nick="smaller"/>
278- <value value="2" nick="small"/>
279- <value value="3" nick="normal"/>
280- <value value="4" nick="large"/>
281- <value value="5" nick="larger"/>
282- <value value="6" nick="largest"/>
283- </enum>
284- <enum id="contextviewmode">
285- <value value="0" nick="horizontal"/>
286- <value value="1" nick="vertical"/>
287- <value value="2" nick="auto"/>
288- </enum>
289- <enum id="dateformatmode">
290- <value value="0" nick="iso"/>
291- <value value="1" nick="locale"/>
292- <value value="2" nick="informal"/>
293- </enum>
294-
295- <schema path="/apps/marlin/preferences/" id="org.gnome.marlin.preferences">
296- <key type="b" name="show-menubar">
297- <default>false</default>
298- <summary>Show the menubar</summary>
299- <description>Show the menubar</description>
300- </key>
301- <key type="as" name="plugins-enabled">
302- <default>[]</default>
303- <summary>Enabled Plugins</summary>
304- <description>Enabled Plugins</description>
305- </key>
306- <key type="b" name="show-sidebar">
307- <default>true</default>
308- <summary>Show the sidebar</summary>
309- <description>Show the sidebar</description>
310- </key>
311- <key type="b" name="show-hiddenfiles">
312- <default>false</default>
313- <summary>Show hidden files</summary>
314- <description>If set to true, hidden files will also be shown (files starting with a "." for example)</description>
315- </key>
316- <key type="b" name="start-with-contextview">
317- <default>false</default>
318- <summary>Show the context view pane</summary>
319- <description>Show the context view pane</description>
320- </key>
321- <key type="b" name="rgba-colormap">
322- <default>false</default>
323- <summary>enable rgba window</summary>
324- <description>If set to true, rgba will be enabled, you'll need a gtk engine supporting rgba, like murrine. Compiz can have some problems like drawings shadows ...</description>
325- </key>
326- <key name="date-format" enum="dateformatmode">
327- <default>'iso'</default>
328- <summary>Date Format</summary>
329- <description>The format of file dates. Possible values are "locale", "iso", and "informal".</description>
330- </key>
331- <key type="b" name="single-click">
332- <default>true</default>
333- <summary>single click</summary>
334- <description>Whether items are activated by single clicks instead of dubble clicks</description>
335- </key>
336- <key type="i" name="single-click-timeout">
337- <default>0</default>
338- <range min="0" max="1000"/>
339- <summary>single click timeout</summary>
340- <description>
341- The amount of time which the item under the mouse cursor will be selected automatically in single click mode. A value of 0 disables the automatic selection.
342- </description>
343- </key>
344- <key type="b" name="interpret-desktop-files">
345- <default>true</default>
346- <summary>interpret desktop files</summary>
347- <description>If true the desktop files would be interpreted, a desktop file can represent an executable, a directory etc. (their filename, type and some other properties would be the target ones)</description>
348- </key>
349- <key name="contextview-orientation" enum="contextviewmode">
350- <default>'auto'</default>
351- <summary>Context View Panel orientation</summary>
352- <description>
353- Auto Context View Panel orientation means the panel would be horizontal or vertical depending on the size of your window.
354- </description>
355- </key>
356- <key name="default-viewmode" enum="viewmode">
357- <default>'icon'</default>
358- <summary>Default viewmode when browsing</summary>
359- <description>
360- The default viewmode to be used when opening a new tab or window
361- </description>
362- </key>
363- <key type="b" name="toolbar-primary-css-style">
364- <default>true</default>
365- <summary>toolbar css style</summary>
366- <description>Set the toolbar css style to primary-toolbar.</description>
367- </key>
368- <key type="as" name="toolbar-items">
369- <default>[ 'Back', 'Forward', 'ViewSwitcher', 'LocationEntry']</default>
370- <summary>List of actions present in the toolbar</summary>
371- <description>
372- List of actions present in the toolbar
373- </description>
374- </key>
375- <key name="sidebar-zoom-level" enum="org.gnome.marlin.ZoomLevel">
376- <default>'smallest'</default>
377- <summary>Size of the icons in the Places sidebar</summary>
378- <description>Zoom level used by the places sidebar.</description>
379- </key>
380- <key type="b" name="sidebar-cat-personal-expander">
381- <default>true</default>
382- <summary>Categorie personal expander</summary>
383- <description>Expand/Collapse categorie Personal</description>
384- </key>
385- <key type="b" name="sidebar-cat-devices-expander">
386- <default>true</default>
387- <summary>Categorie Devices expander</summary>
388- <description>Expand/Collapse categorie Devices</description>
389- </key>
390- <key type="b" name="sidebar-cat-network-expander">
391- <default>true</default>
392- <summary>Categorie Network expander</summary>
393- <description>Expand/Collapse categorie Network</description>
394- </key>
395- <key type="b" name="properties-dlg-info">
396- <default>true</default>
397- <summary>Properties Info expander</summary>
398- <description>Expand/collapse Info panel</description>
399- </key>
400- <key type="b" name="properties-dlg-permissions">
401- <default>true</default>
402- <summary>Properties Permissions expander</summary>
403- <description>Expand/collapse Permissions panel</description>
404- </key>
405- <key type="b" name="properties-dlg-preview">
406- <default>true</default>
407- <summary>Properties Preview expander</summary>
408- <description>Expand/collapse Preview panel</description>
409- </key>
410- <key type="s" name="geometry">
411- <default>''</default>
412- <summary>The geometry string for a navigation window.</summary>
413- <description>A string containing the saved geometry and coordinates string for navigation windows.</description>
414- </key>
415- <key type="b" name="maximized">
416- <default>false</default>
417- <summary>Whether the navigation window should be maximized.</summary>
418- <description>Whether the navigation window should be maximized by default.</description>
419- </key>
420- <key type="i" name="sidebar-width">
421- <default>148</default>
422- <summary>Width of the side pane</summary>
423- <description>The default width of the side pane in new windows.</description>
424- </key>
425- <key type="b" name="confirm-trash">
426- <default>true</default>
427- <summary>Confirm trash</summary>
428- <description>Confirm trash</description>
429- </key>
430- <key type="s" name="previewer-path">
431- <default>''</default>
432- <summary>Path of the previewer.</summary>
433- <description>Path of the previewer or executable name (if path already definied in PATH environnment variable). If no path is set, then the space bindkey would just activate the selected items instead of previewing them</description>
434- </key>
435- </schema>
436-
437- <schema path="/apps/marlin/icon-view/" id="org.gnome.marlin.icon-view">
438- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
439- <default>'normal'</default>
440- <summary>icon default zoom level</summary>
441- <description>Default Zoom level used by the icon view.</description>
442- </key>
443- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
444- <default>'normal'</default>
445- <summary>icon zoom level</summary>
446- <description>Zoom level used by the icon view.</description>
447- </key>
448- </schema>
449-
450- <schema path="/apps/marlin/list-view/" id="org.gnome.marlin.list-view">
451- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
452- <default>'smallest'</default>
453- <summary>icon default zoom level</summary>
454- <description>Default Zoom level used by the list view.</description>
455- </key>
456- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
457- <default>'smallest'</default>
458- <summary>icon zoom level</summary>
459- <description>Zoom level used by the list view.</description>
460- </key>
461- </schema>
462-
463- <schema path="/apps/marlin/compact-view/" id="org.gnome.marlin.compact-view">
464- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
465- <default>'smallest'</default>
466- <summary>icon default zoom level</summary>
467- <description>Default Zoom level used by the compact view.</description>
468- </key>
469- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
470- <default>'smallest'</default>
471- <summary>icon zoom level</summary>
472- <description>Zoom level used by the compact view.</description>
473- </key>
474- </schema>
475-
476- <schema path="/apps/marlin/column-view/" id="org.gnome.marlin.column-view">
477- <key name="default-zoom-level" enum="org.gnome.marlin.ZoomLevel">
478- <default>'smallest'</default>
479- <summary>icon default zoom level</summary>
480- <description>Default Zoom level used by the column view.</description>
481- </key>
482- <key name="zoom-level" enum="org.gnome.marlin.ZoomLevel">
483- <default>'smallest'</default>
484- <summary>icon zoom level</summary>
485- <description>Zoom level used by the column view.</description>
486- </key>
487- <key type="i" name="preferred-column-width">
488- <default>180</default>
489- <summary>prefered column width</summary>
490- <description>The column width preferred by the miller column view.</description>
491- </key>
492- </schema>
493-
494-</schemalist>
495
496=== removed file 'schemas/org.gnome.marlin.plugins.gschema.xml'
497--- schemas/org.gnome.marlin.plugins.gschema.xml 2012-06-03 11:16:37 +0000
498+++ schemas/org.gnome.marlin.plugins.gschema.xml 1970-01-01 00:00:00 +0000
499@@ -1,11 +0,0 @@
500-<?xml version="1.0" encoding="UTF-8"?>
501-<schemalist>
502- <schema path="/apps/marlin/plugins/openterminal/" id="org.gnome.marlin.plugins.openterminal">
503- <key type="s" name="default-terminal">
504- <default>'gnome-terminal --working-directory='</default>
505- <summary>Terminal</summary>
506- <description>Terminal</description>
507- </key>
508- </schema>
509-
510-</schemalist>
511
512=== added file 'schemas/org.pantheon.files.gschema.xml'
513--- schemas/org.pantheon.files.gschema.xml 1970-01-01 00:00:00 +0000
514+++ schemas/org.pantheon.files.gschema.xml 2012-06-26 04:06:22 +0000
515@@ -0,0 +1,233 @@
516+<?xml version="1.0" encoding="UTF-8"?>
517+<schemalist>
518+ <enum id="org.pantheon.files.viewmode">
519+ <value value="0" nick="icon"/>
520+ <value value="1" nick="list"/>
521+ <value value="2" nick="compact"/>
522+ <value value="3" nick="miller_columns"/>
523+ </enum>
524+ <enum id="org.pantheon.files.zoomlevel">
525+ <value value="0" nick="smallest"/>
526+ <value value="1" nick="smaller"/>
527+ <value value="2" nick="small"/>
528+ <value value="3" nick="normal"/>
529+ <value value="4" nick="large"/>
530+ <value value="5" nick="larger"/>
531+ <value value="6" nick="largest"/>
532+ </enum>
533+ <enum id="org.pantheon.files.contextviewmode">
534+ <value value="0" nick="horizontal"/>
535+ <value value="1" nick="vertical"/>
536+ <value value="2" nick="auto"/>
537+ </enum>
538+ <enum id="org.pantheon.files.dateformatmode">
539+ <value value="0" nick="iso"/>
540+ <value value="1" nick="locale"/>
541+ <value value="2" nick="informal"/>
542+ </enum>
543+
544+ <schema path="/org/pantheon/files/preferences/" id="org.pantheon.files.preferences">
545+ <key type="b" name="auto-theme">
546+ <default>true</default>
547+ <summary>Auto-theme</summary>
548+ <description>Automaticly theme Marlin's specific widgets</description>
549+ </key>
550+ <key type="b" name="show-menubar">
551+ <default>false</default>
552+ <summary>Show the menubar</summary>
553+ <description>Show the menubar</description>
554+ </key>
555+ <key type="as" name="plugins-enabled">
556+ <default>[]</default>
557+ <summary>Enabled Plugins</summary>
558+ <description>Enabled Plugins</description>
559+ </key>
560+ <key type="b" name="show-sidebar">
561+ <default>true</default>
562+ <summary>Show the sidebar</summary>
563+ <description>Show the sidebar</description>
564+ </key>
565+ <key type="b" name="show-hiddenfiles">
566+ <default>false</default>
567+ <summary>Show hidden files</summary>
568+ <description>If set to true, hidden files will also be shown (files starting with a "." for example)</description>
569+ </key>
570+ <key type="b" name="start-with-contextview">
571+ <default>false</default>
572+ <summary>Show the context view pane</summary>
573+ <description>Show the context view pane</description>
574+ </key>
575+ <key type="b" name="rgba-colormap">
576+ <default>false</default>
577+ <summary>enable rgba window</summary>
578+ <description>If set to true, rgba will be enabled, you'll need a gtk engine supporting rgba, like murrine. Compiz can have some problems like drawings shadows ...</description>
579+ </key>
580+ <key name="date-format" enum="org.pantheon.files.dateformatmode">
581+ <default>'iso'</default>
582+ <summary>Date Format</summary>
583+ <description>The format of file dates. Possible values are "locale", "iso", and "informal".</description>
584+ </key>
585+ <key type="b" name="single-click">
586+ <default>true</default>
587+ <summary>single click</summary>
588+ <description>Whether items are activated by single clicks instead of dubble clicks</description>
589+ </key>
590+ <key type="i" name="single-click-timeout">
591+ <default>0</default>
592+ <range min="0" max="1000"/>
593+ <summary>single click timeout</summary>
594+ <description>
595+ The amount of time which the item under the mouse cursor will be selected automatically in single click mode. A value of 0 disables the automatic selection.
596+ </description>
597+ </key>
598+ <key type="b" name="interpret-desktop-files">
599+ <default>true</default>
600+ <summary>interpret desktop files</summary>
601+ <description>If true the desktop files would be interpreted, a desktop file can represent an executable, a directory etc. (their filename, type and some other properties would be the target ones)</description>
602+ </key>
603+ <key name="contextview-orientation" enum="org.pantheon.files.contextviewmode">
604+ <default>'auto'</default>
605+ <summary>Context View Panel orientation</summary>
606+ <description>
607+ Auto Context View Panel orientation means the panel would be horizontal or vertical depending on the size of your window.
608+ </description>
609+ </key>
610+ <key name="default-viewmode" enum="org.pantheon.files.viewmode">
611+ <default>'icon'</default>
612+ <summary>Default viewmode when browsing</summary>
613+ <description>
614+ The default viewmode to be used when opening a new tab or window
615+ </description>
616+ </key>
617+ <key type="b" name="toolbar-primary-css-style">
618+ <default>true</default>
619+ <summary>toolbar css style</summary>
620+ <description>Set the toolbar css style to primary-toolbar.</description>
621+ </key>
622+ <key type="as" name="toolbar-items">
623+ <default>[ 'Back', 'Forward', 'LocationEntry', 'ViewSwitcher']</default>
624+ <summary>List of actions present in the toolbar</summary>
625+ <description>
626+ List of actions present in the toolbar
627+ </description>
628+ </key>
629+ <key name="sidebar-zoom-level" enum="org.pantheon.files.zoomlevel">
630+ <default>'smallest'</default>
631+ <summary>Size of the icons in the Places sidebar</summary>
632+ <description>Zoom level used by the places sidebar.</description>
633+ </key>
634+ <key type="b" name="sidebar-cat-personal-expander">
635+ <default>true</default>
636+ <summary>Categorie personal expander</summary>
637+ <description>Expand/Collapse categorie Personal</description>
638+ </key>
639+ <key type="b" name="sidebar-cat-devices-expander">
640+ <default>true</default>
641+ <summary>Categorie Devices expander</summary>
642+ <description>Expand/Collapse categorie Devices</description>
643+ </key>
644+ <key type="b" name="sidebar-cat-network-expander">
645+ <default>true</default>
646+ <summary>Categorie Network expander</summary>
647+ <description>Expand/Collapse categorie Network</description>
648+ </key>
649+ <key type="b" name="properties-dlg-info">
650+ <default>true</default>
651+ <summary>Properties Info expander</summary>
652+ <description>Expand/collapse Info panel</description>
653+ </key>
654+ <key type="b" name="properties-dlg-permissions">
655+ <default>true</default>
656+ <summary>Properties Permissions expander</summary>
657+ <description>Expand/collapse Permissions panel</description>
658+ </key>
659+ <key type="b" name="properties-dlg-preview">
660+ <default>true</default>
661+ <summary>Properties Preview expander</summary>
662+ <description>Expand/collapse Preview panel</description>
663+ </key>
664+ <key type="s" name="geometry">
665+ <default>''</default>
666+ <summary>The geometry string for a navigation window.</summary>
667+ <description>A string containing the saved geometry and coordinates string for navigation windows.</description>
668+ </key>
669+ <key type="b" name="maximized">
670+ <default>false</default>
671+ <summary>Whether the navigation window should be maximized.</summary>
672+ <description>Whether the navigation window should be maximized by default.</description>
673+ </key>
674+ <key type="i" name="sidebar-width">
675+ <default>148</default>
676+ <summary>Width of the side pane</summary>
677+ <description>The default width of the side pane in new windows.</description>
678+ </key>
679+ <key type="b" name="confirm-trash">
680+ <default>true</default>
681+ <summary>Confirm trash</summary>
682+ <description>Confirm trash</description>
683+ </key>
684+ <key type="s" name="previewer-path">
685+ <default>''</default>
686+ <summary>Path of the previewer.</summary>
687+ <description>Path of the previewer or executable name (if path already definied in PATH environnment variable). If no path is set, then the space bindkey would just activate the selected items instead of previewing them</description>
688+ </key>
689+ </schema>
690+
691+ <schema path="/org/pantheon/files/icon-view/" id="org.pantheon.files.icon-view">
692+ <key name="default-zoom-level" enum="org.pantheon.files.zoomlevel">
693+ <default>'normal'</default>
694+ <summary>icon default zoom level</summary>
695+ <description>Default Zoom level used by the icon view.</description>
696+ </key>
697+ <key name="zoom-level" enum="org.pantheon.files.zoomlevel">
698+ <default>'normal'</default>
699+ <summary>icon zoom level</summary>
700+ <description>Zoom level used by the icon view.</description>
701+ </key>
702+ </schema>
703+
704+ <schema path="/org/pantheon/files/list-view/" id="org.pantheon.files.list-view">
705+ <key name="default-zoom-level" enum="org.pantheon.files.zoomlevel">
706+ <default>'smallest'</default>
707+ <summary>icon default zoom level</summary>
708+ <description>Default Zoom level used by the list view.</description>
709+ </key>
710+ <key name="zoom-level" enum="org.pantheon.files.zoomlevel">
711+ <default>'smallest'</default>
712+ <summary>icon zoom level</summary>
713+ <description>Zoom level used by the list view.</description>
714+ </key>
715+ </schema>
716+
717+ <schema path="/org/pantheon/files/compact-view/" id="org.pantheon.files.compact-view">
718+ <key name="default-zoom-level" enum="org.pantheon.files.zoomlevel">
719+ <default>'smallest'</default>
720+ <summary>icon default zoom level</summary>
721+ <description>Default Zoom level used by the compact view.</description>
722+ </key>
723+ <key name="zoom-level" enum="org.pantheon.files.zoomlevel">
724+ <default>'smallest'</default>
725+ <summary>icon zoom level</summary>
726+ <description>Zoom level used by the compact view.</description>
727+ </key>
728+ </schema>
729+
730+ <schema path="/org/pantheon/files/column-view/" id="org.pantheon.files.column-view">
731+ <key name="default-zoom-level" enum="org.pantheon.files.zoomlevel">
732+ <default>'smallest'</default>
733+ <summary>icon default zoom level</summary>
734+ <description>Default Zoom level used by the column view.</description>
735+ </key>
736+ <key name="zoom-level" enum="org.pantheon.files.zoomlevel">
737+ <default>'smallest'</default>
738+ <summary>icon zoom level</summary>
739+ <description>Zoom level used by the column view.</description>
740+ </key>
741+ <key type="i" name="preferred-column-width">
742+ <default>180</default>
743+ <summary>prefered column width</summary>
744+ <description>The column width preferred by the miller column view.</description>
745+ </key>
746+ </schema>
747+
748+</schemalist>
749
750=== added file 'schemas/org.pantheon.files.plugins.gschema.xml'
751--- schemas/org.pantheon.files.plugins.gschema.xml 1970-01-01 00:00:00 +0000
752+++ schemas/org.pantheon.files.plugins.gschema.xml 2012-06-26 04:06:22 +0000
753@@ -0,0 +1,11 @@
754+<?xml version="1.0" encoding="UTF-8"?>
755+<schemalist>
756+ <schema path="/org/pantheon/files/plugins/openterminal/" id="org.pantheon.files.plugins.openterminal">
757+ <key type="s" name="default-terminal">
758+ <default>'gnome-terminal --working-directory='</default>
759+ <summary>Terminal</summary>
760+ <description>Terminal</description>
761+ </key>
762+ </schema>
763+
764+</schemalist>
765
766=== modified file 'src/marlin-application.c'
767--- src/marlin-application.c 2012-06-11 09:25:17 +0000
768+++ src/marlin-application.c 2012-06-26 04:06:22 +0000
769@@ -558,11 +558,11 @@
770 init_schemas (void)
771 {
772 /* gsettings parameters */
773- settings = g_settings_new ("org.gnome.marlin.preferences");
774- marlin_icon_view_settings = g_settings_new ("org.gnome.marlin.icon-view");
775- marlin_list_view_settings = g_settings_new ("org.gnome.marlin.list-view");
776- marlin_compact_view_settings = g_settings_new ("org.gnome.marlin.compact-view");
777- marlin_column_view_settings = g_settings_new ("org.gnome.marlin.column-view");
778+ settings = g_settings_new ("org.pantheon.files.preferences");
779+ marlin_icon_view_settings = g_settings_new ("org.pantheon.files.icon-view");
780+ marlin_list_view_settings = g_settings_new ("org.pantheon.files.list-view");
781+ marlin_compact_view_settings = g_settings_new ("org.pantheon.files.compact-view");
782+ marlin_column_view_settings = g_settings_new ("org.pantheon.files.column-view");
783
784 /* bind settings with GOFPreferences */
785 g_settings_bind (settings, "show-hiddenfiles",
786
787=== modified file 'src/tests/marlintests.c'
788--- src/tests/marlintests.c 2012-06-03 11:16:37 +0000
789+++ src/tests/marlintests.c 2012-06-26 04:06:22 +0000
790@@ -30,7 +30,7 @@
791 g_thread_init (NULL);
792 gtk_test_init (&argc, &argv);
793
794- settings = g_settings_new ("org.gnome.marlin.preferences");
795+ settings = g_settings_new ("org.pantheon.files.preferences");
796
797 /* FIXME: tags should be initialized. */
798 //tags = marlin_view_tags_new ();

Subscribers

People subscribed via source and target branches

to all changes: