about summary refs log tree commit diff stats
path: root/shell/int-stack.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-08-10 04:51:02 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-08-10 04:51:02 -0700
commit7f972dfc7c433bd0a3cf4a93c8c62bbb392d69b5 (patch)
tree871e1e91f660e9bb2b94d881ee67550329891698 /shell/int-stack.mu
parentc7d2682aa787b280beb8708288f3e5ca0db1fcd4 (diff)
downloadmu-7f972dfc7c433bd0a3cf4a93c8c62bbb392d69b5.tar.gz
undo my stupid format for post/comment ids
Now items just have a field for parent id.
Diffstat (limited to 'shell/int-stack.mu')
0 files changed, 0 insertions, 0 deletions
colorschemes/__init__.py?id=f2d8598d2b0ce36a8f275800cd2d0164ec672abb'>^
3de15ddd ^


465bff73 ^








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













                                                                          

                                                
                                                      

                                                     
                                            






                                                           

                                                                     


                                            








                                          
# Copyright (c) 2009, 2010 hut <hut@lavabit.com>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

"""Colorschemes are required to be located here,
or in the CONFDIR/colorschemes/ directory"""
from ranger.ext.get_all_modules import get_all_modules
from os.path import expanduser, dirname, exists, join

__all__ = get_all_modules(dirname(__file__))

from ranger.colorschemes import *

confpath = expanduser('~/.ranger')
if exists(join(confpath, 'colorschemes')):
	initpy = join(confpath, 'colorschemes/__init__.py')
	if not exists(initpy):
		open(initpy, 'w').write("""# Automatically generated:
from ranger.ext.get_all_modules import get_all_modules
from os.path import dirname

__all__ = get_all_modules(dirname(__file__))
""")

	try:
		import sys
		sys.path[0:0] = [confpath]
		from colorschemes import *
	except ImportError:
		pass