summary refs log tree commit diff stats
path: root/getwtxt.yml
Commit message (Expand)AuthorAgeFilesLines
* added support for TLS and hostname resolutionBen Morrison2019-06-111-0/+11
* check if behind reverse proxyBen Morrison2019-06-111-0/+4
* added sqlite3 as optionBen Morrison2019-06-081-1/+2
* added db type, assets dir to config v0.2.2Ben Morrison2019-06-051-0/+5
* cli flags for db path/type, assets dir. systemd unit file. makefile.Ben Morrison2019-06-051-1/+1
* expanding options for databases. abstractions for database push/pull functionsBen Morrison2019-06-041-1/+6
* flags for config file/type, added to -hBen Morrison2019-05-271-6/+10
* changed config format to yaml, commented config fileBen Morrison2019-05-271-0/+71
uthor hut <hut@lavabit.com> 2009-12-25 21:59:51 +0100 committer hut <hut@lavabit.com> 2009-12-25 21:59:51 +0100 random updates' href='/akspecs/ranger/commit/ranger.py?h=v1.0.1&id=5c210a96a0e4bb74cd096edb045fc3814b78450c'>5c210a96 ^
a66c4a26 ^
3de15ddd ^
a66c4a26 ^


f027adc0 ^
5c210a96 ^

3de15ddd ^

5c210a96 ^
fb275079 ^

5c210a96 ^
3d566884 ^
a1d7ed6e ^
3d566884 ^
f8e96a97 ^
465bff73 ^





f027adc0 ^
f8e96a97 ^

0b5c4cbe ^
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
                     
              
                                                
                                                                               
 




                                                                         

               


                                                                 
    
                                                                


        
 

                                                                

                                                           
 

                                                              
                              
    
                               
 
                                   





                                                               
 

              
 
#!/usr/bin/python -OO
# coding=utf-8
# ranger: Browse your files inside the terminal.
# -----------------------------------------------------------------------------

# An embedded shell script. It allows you to change the directory
# of the parent shell to the last visited directory in ranger after exit.
# For more information, check out doc/cd-after-exit.txt
# To enable this, start ranger with:
#     source /path/ranger /path/ranger
"""":
if [ $1 ]; then
	RANGER="$1"
	shift
	cd "`$RANGER --cd-after-exit \"$@\" 3>&1 1>&2 2>&3 3>&-`"
else
	echo "usage: source path/to/ranger.py path/to/ranger.py"
fi
return 1
"""

# Redefine the docstring, since the previous one was hijacked to
# embed a shellscript.
__doc__ = """Ranger - file browser for the unix terminal"""


# Importing the main method may fail if the ranger directory
# is neither in the same directory as this file, nor in one of
# pythons global import paths.
try:
	from ranger import main

except ImportError as errormessage:
	if str(errormessage).endswith("main"):
		print("Can't import the main module.")
		print("To run an uninstalled copy of ranger,")
		print("launch ranger.py in the top directory.")
	else:
		raise

else:
	main()