summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--ranger/colorschemes/jungle.py75
-rw-r--r--ranger/shared/settings.py28
2 files changed, 26 insertions, 77 deletions
diff --git a/ranger/colorschemes/jungle.py b/ranger/colorschemes/jungle.py
index 8d408fa0..e6c3307f 100644
--- a/ranger/colorschemes/jungle.py
+++ b/ranger/colorschemes/jungle.py
@@ -16,75 +16,16 @@
 from ranger.gui.colorscheme import ColorScheme
 from ranger.gui.color import *
 
-class Default(ColorScheme):
-	def use(self, context):
-		fg, bg, attr = default_colors
-
-		if context.reset:
-			pass
-
-		elif context.in_browser:
-			if context.selected:
-				attr = reverse
-			else:
-				attr = normal
-
-			if context.empty or context.error:
-				bg = red
-
-			if context.media:
-				fg = magenta # fruits
-
-			if context.container:
-				fg = red # flowers
-
-			if context.directory:
-				fg = green # trees =)
-
-			elif context.executable and not \
-					any((context.media, context.container)):
-				fg = yellow # banananas
-
-			if context.link:
-				fg = context.good and cyan or magenta
+from ranger.colorschemes.default import Default as SubClass
 
-			if context.main_column and context.selected:
-				attr |= bold
-
-		elif context.in_titlebar:
-			attr |= bold
-
-			if context.hostname:
-				fg = green
-
-			elif context.directory:
-				fg = blue
-
-			elif context.link:
-				fg = cyan
-
-			elif context.keybuffer:
-				fg = yellow
-				attr = normal
-
-		elif context.in_statusbar:
-			if context.permissions or context.link:
-				if context.good:
-					fg = cyan
-				elif context.bad:
-					fg = magenta
-
-		if context.text:
-			if context.highlight:
-				attr |= reverse
-				fg = yellow
+class Default(SubClass):
+	def use(self, context):
+		fg, bg, attr = SubClass.use(self, context)
 
-		if context.in_taskview:
-			if context.title:
-				fg = yellow
-				attr |= reverse
+		if context.directory and not context.marked:
+			fg = green
 
-			if context.selected:
-				attr |= reverse
+		if context.in_titlebar and context.hostname:
+			fg = red if context.bad else blue
 
 		return fg, bg, attr
diff --git a/ranger/shared/settings.py b/ranger/shared/settings.py
index 36728b48..c01e5796 100644
--- a/ranger/shared/settings.py
+++ b/ranger/shared/settings.py
@@ -13,7 +13,9 @@
 # You should have received a copy of the GNU General Public License
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
+import types
 from ranger.ext.openstruct import OpenStruct
+from ranger.gui.colorscheme import ColorScheme
 
 ALLOWED_SETTINGS = {
 	'show_hidden': bool,
@@ -29,7 +31,7 @@ ALLOWED_SETTINGS = {
 	'scroll_offset': int,
 	'preview_files': bool,
 	'flushinput': bool,
-	'colorscheme': object,
+	'colorscheme': (ColorScheme, types.ModuleType),
 	'hidden_filter': lambda x: isinstance(x, str) or hasattr(x, 'match'),
 }
 
@@ -70,20 +72,26 @@ class SettingsAware(object):
 		# If a module is specified as the colorscheme, replace it with one
 		# valid colorscheme inside that module.
 
+		all_content = options.colorscheme.__dict__.items()
+
 		if isclass(options.colorscheme) and \
 				issubclass(options.colorscheme, ColorScheme):
 			options.colorscheme = options.colorscheme()
 
 		elif ismodule(options.colorscheme):
-			for var_name in dir(options.colorscheme):
-				var = getattr(options.colorscheme, var_name)
-				if var != ColorScheme and isclass(var) \
-						and issubclass(var, ColorScheme):
-					options.colorscheme = var()
-					break
+			if hasattr(options.colorscheme, 'Default') \
+			and isclass(options.colorscheme.Default) \
+			and issubclass(options.colorscheme.Default, ColorScheme):
+				options.colorscheme = options.colorscheme.Default()
 			else:
-				raise Exception("The module contains no valid colorscheme!")
-
+				for name, var in options.colorscheme.__dict__.items():
+					if var != ColorScheme and isclass(var) \
+					and issubclass(var, ColorScheme):
+						options.colorscheme = var()
+						break
+				else:
+					raise Exception("The module contains no " \
+							"valid colorscheme!")
 		else:
 			raise Exception("Cannot locate colorscheme!")
 
@@ -104,5 +112,5 @@ def check_option_types(opt):
 		else:
 			assert isinstance(optvalue, typ), \
 				"The option `" + name + "' has an incorrect type!"\
-				" Expected " + str(typ) + "!"
+				" Got " + str(type(optvalue)) + ", expected " + str(typ) + "!"
 	return True
6:42:12 +0200 improved debug module' href='/akspecs/ranger/commit/code/debug.rb?h=v0.2.5&id=ede8afcdf4c75093afafe94a73b94798f97cc241'>ede8afcd ^
34bfb32e ^
ede8afcd ^













34bfb32e ^

ede8afcd ^












8a6f5eab ^







ede8afcd ^

8a6f5eab ^

a0de7f95 ^
8a6f5eab ^

a0de7f95 ^
8a6f5eab ^



a0de7f95 ^
8a6f5eab ^
ede8afcd ^
a0de7f95 ^
8a6f5eab ^





a0de7f95 ^
ede8afcd ^

8a6f5eab ^




ede8afcd ^





8a6f5eab ^

34bfb32e ^
8a6f5eab ^


ede8afcd ^





8a6f5eab ^


34bfb32e ^
8a6f5eab ^

34bfb32e ^
ede8afcd ^





8a6f5eab ^
99b31925 ^
8a6f5eab ^


34bfb32e ^
ede8afcd ^












34bfb32e ^
8a6f5eab ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222