about summary refs log tree commit diff stats
path: root/doc
Commit message (Expand)AuthorAgeFilesLines
...
* Merge branch 'squigglezworth-master'toonn2018-09-083-15/+31
|\
| * Fix documentationtoonn2018-09-082-19/+16
| * Upda
#!/usr/bin/python3
"""Generate pydoc documentation and move it to the doc directory.
THIS WILL DELETE ALL EXISTING HTML FILES IN THAT DIRECTORY, so don't
store important content there."""

import pydoc, os, sys
if __name__ == '__main__':
	docdir = 'doc/pydoc'
	os.chdir(sys.path[0])
	try: os.mkdir(docdir)
	except: pass


	for fname in os.listdir(docdir):
		if fname.endswith('.html'):
			os.remove(os.path.join(docdir, fname))

	pydoc.writedocs('.')
	pydoc.writedoc('curses')
	pydoc.writedoc('curses.ascii')
	pydoc.writedoc('os')
	pydoc.writedoc('os.path')
	pydoc.writedoc('sys')

	for fname in os.listdir('.'):
		if fname.endswith('.html'):
			os.rename(fname, os.path.join(docdir, fname))
='2018-07-03 11:31:49 -0400'>2018-07-03
2-92/+77
| |/ / |/| |
* | | New setting: relative_current_zeroWojciech Siewierski2018-06-172-0/+9
* | | Regenerate man pagestoonn2018-06-072-2/+11
* | | Merge branch 'kitty-img-preview'toonn2018-06-073-3/+31
|\ \ \
| * | | Fixed manpages, tmux handlingmark-dawn2018-05-293-16/+9
| * | | Unstretched Image Previewsmark-dawn2018-05-291-2/+1
| * | | Automatic network detection, python2 and Exception fixesmark-dawn2018-05-291-5/+2
| * | | Grammar Fixesmark-dawn2018-05-291-8/+4
| * | | Bugfixes & Improvementsmark-dawn2018-05-292-0/+11
| * | | Kitty image display alpha, merge-readymark-dawn2018-05-292-0/+32
* | | | Merge branch 'master' of https://github.com/esm7/rangerErez Shermer2018-06-072-24/+64
|\ \ \ \ | | |/ / | |/| |
| * | | Make the w3m delay configurableWojciech Siewierski2018-06-011-0/+5
| |/ /
| * | Merge branch 'rangerpath'toonn2018-05-142-18/+40
| |\ \
| | * | Document change in :cd behaviortoonn2018-04-032-10/+12
| | * | Added positional arguments section to manpagetoonn2018-03-312-7/+27
| * | | Merge branch 'master' into mutoolhut2018-05-132-6/+19
| |\ \ \
| | * \ \ Merge branch 'custom_free_space'toonn2018-05-092-0/+7
| | |\ \ \
| | | * | | Add new option to disable display of free disk space in statusbarStephane Fontaine2018-02-242-0/+7
| | * | | | Merge branch 'systemconf'toonn2018-05-082-8/+14
| | |\ \ \ \
| | | * | | | Document system-wide configuration files.toonn2018-05-082-5/+11
| * | | | | | Refix typo "sytem"toonn2018-04-162-2/+2
| * | | | | | Add support for mutool pdf previews in scope.shtoonn2018-04-162-6/+6
| |/ / / / /
| * | | / / Apply patch from debian package: 0004-fix-type-in-manpage.patchhut2018-04-011-1/+1
| | |_|/ / | |/| | |
* / | | | Proper usage of the bidi settingErez Shermer2018-06-071-0/+6
|/ / / /
* | | | doc/ranger.1: Reorder the settings alphabeticallyWojciech Siewierski2018-03-053-9/+9
* | | | Update the manpageWojciech Siewierski2018-03-041-1/+5
* | | | Add the 'hint_collapse_threshold' that controls when the submaps are collapsedWojciech Siewierski2018-03-041-0/+5
| |/ / |/| |
* | | elaborated on how to tag a commithut2018-02-221-1/+3