From c9383c72b2f62bee90050d02a307381cb6bfa536 Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 19 Apr 2010 23:43:48 +0200 Subject: updated pydoc --- doc/pydoc/all_tests.html | 14 - doc/pydoc/ranger.__main__.html | 34 ++- doc/pydoc/ranger.container.commandlist.html | 17 +- doc/pydoc/ranger.container.html | 3 +- doc/pydoc/ranger.container.keybuffer.html | 41 +-- doc/pydoc/ranger.defaults.apps.html | 11 +- doc/pydoc/ranger.defaults.keys.html | 380 ------------------------ doc/pydoc/ranger.defaults.options.html | 20 +- doc/pydoc/ranger.ext.accumulator.html | 2 +- doc/pydoc/ranger.ext.command_parser.html | 21 +- doc/pydoc/ranger.ext.get_all_modules.html | 35 --- doc/pydoc/ranger.ext.html | 12 +- doc/pydoc/ranger.ext.human_readable.html | 8 + doc/pydoc/ranger.ext.move.html | 17 +- doc/pydoc/ranger.ext.waitpid_no_intr.html | 14 +- doc/pydoc/ranger.fsobject.directory.html | 26 +- doc/pydoc/ranger.fsobject.file.html | 10 +- doc/pydoc/ranger.fsobject.fsobject.html | 33 +- doc/pydoc/ranger.fsobject.html | 2 +- doc/pydoc/ranger.fsobject.loader.html | 2 +- doc/pydoc/ranger.gui.bar.html | 4 - doc/pydoc/ranger.gui.defaultui.html | 19 +- doc/pydoc/ranger.gui.mouse_event.html | 2 + doc/pydoc/ranger.gui.ui.html | 16 +- doc/pydoc/ranger.gui.widgets.browsercolumn.html | 14 +- doc/pydoc/ranger.gui.widgets.browserview.html | 6 + doc/pydoc/ranger.gui.widgets.console.html | 50 ++-- doc/pydoc/ranger.gui.widgets.pager.html | 4 +- doc/pydoc/ranger.gui.widgets.statusbar.html | 2 + doc/pydoc/ranger.gui.widgets.taskview.html | 4 +- doc/pydoc/ranger.gui.widgets.titlebar.html | 23 +- doc/pydoc/ranger.shared.settings.html | 10 +- doc/pydoc/test.html | 52 ---- doc/pydoc/test.tc_bookmarks.html | 216 -------------- doc/pydoc/test.tc_colorscheme.html | 210 ------------- doc/pydoc/test.tc_directory.html | 218 -------------- doc/pydoc/test.tc_displayable.html | 367 ----------------------- doc/pydoc/test.tc_history.html | 202 ------------- doc/pydoc/test.tc_keyapi.html | 194 ------------ doc/pydoc/test.tc_ui.html | 204 ------------- doc/pydoc/test.test.html | 14 - 41 files changed, 247 insertions(+), 2286 deletions(-) delete mode 100644 doc/pydoc/all_tests.html delete mode 100644 doc/pydoc/ranger.defaults.keys.html delete mode 100644 doc/pydoc/ranger.ext.get_all_modules.html delete mode 100644 doc/pydoc/test.html delete mode 100644 doc/pydoc/test.tc_bookmarks.html delete mode 100644 doc/pydoc/test.tc_colorscheme.html delete mode 100644 doc/pydoc/test.tc_directory.html delete mode 100644 doc/pydoc/test.tc_displayable.html delete mode 100644 doc/pydoc/test.tc_history.html delete mode 100644 doc/pydoc/test.tc_keyapi.html delete mode 100644 doc/pydoc/test.tc_ui.html delete mode 100644 doc/pydoc/test.test.html diff --git a/doc/pydoc/all_tests.html b/doc/pydoc/all_tests.html deleted file mode 100644 index 50c143ee..00000000 --- a/doc/pydoc/all_tests.html +++ /dev/null @@ -1,14 +0,0 @@ - - -Python: module all_tests - - - - -
 
- 
all_tests
index
/home/hut/ranger/all_tests.py
-

Run all the tests inside the test/ directory as a test suite.

- - \ No newline at end of file diff --git a/doc/pydoc/ranger.__main__.html b/doc/pydoc/ranger.__main__.html index a0ec1557..52cd201e 100644 --- a/doc/pydoc/ranger.__main__.html +++ b/doc/pydoc/ranger.__main__.html @@ -6,7 +6,7 @@  
ranger.__main__ (version 1.0.4)
 
- 
ranger.__main__
index
/home/hut/ranger/ranger/__main__.py

# coding=utf-8
@@ -32,16 +32,40 @@ Modules         -
os
+
ranger.ext.curses_interrupt_handler
+
os
+
ranger
sys
-

+

-
 
Functions
       
main()
initialize objects and run the filemanager
+
load_settings(fm, clean)
+
main()
initialize objects and run the filemanager
parse_arguments()
Parse the program arguments
-
+

signal(...)
signal(sig, action) -> action

+Set the action for the given signal.  The action can be SIG_DFL,
+SIG_IGN, or a callable Python object.  The previous action is
+returned.  See getsignal() for possible return values.

+*** IMPORTANT NOTICE ***
+A signal handler function is called with two arguments:
+the first is the signal number, the second is the interrupted stack frame.
+

+ + + + + +
 
+Data
       DEFAULT_CONFDIR = '~/.ranger'
+LC_ALL = 6
+SIGINT = 2
+SUPPRESS_HELP = 'SUPPRESSHELP'
+USAGE = '%prog [options] [path/filename]'
+__version__ = '1.0.4'
\ No newline at end of file diff --git a/doc/pydoc/ranger.container.commandlist.html b/doc/pydoc/ranger.container.commandlist.html index 6b17bb06..bf0cec6c 100644 --- a/doc/pydoc/ranger.container.commandlist.html +++ b/doc/pydoc/ranger.container.commandlist.html @@ -8,21 +8,8 @@  
 
ranger.container.commandlist
index
/home/hut/ranger/ranger/container/commandlist.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

+>index
/home/hut/ranger/ranger/container/commandlist.pyc
+

diff --git a/doc/pydoc/ranger.container.html b/doc/pydoc/ranger.container.html index 2e464299..dcc5958d 100644 --- a/doc/pydoc/ranger.container.html +++ b/doc/pydoc/ranger.container.html @@ -22,6 +22,7 @@ used to manage stored data

commandlist
history
keybuffer
-
tags
+
keymap
+tags
\ No newline at end of file diff --git a/doc/pydoc/ranger.container.keybuffer.html b/doc/pydoc/ranger.container.keybuffer.html index 5ebc033a..c3f30471 100644 --- a/doc/pydoc/ranger.container.keybuffer.html +++ b/doc/pydoc/ranger.container.keybuffer.html @@ -25,6 +25,14 @@ # along with this program.  If not, see <http://www.gnu.org/licenses/>.

+ + + + +
 
+Modules
       
curses
+

+ @@ -44,22 +52,19 @@ - + + +
 
Classes
 
class KeyBuffer(__builtin__.object)
    
   The evaluator and storage for pressed keys
 
  Methods defined here:
-
__init__(self)
+
__init__(self, keymap, direction_keys)
__str__(self)
returns a concatenation of all characters
-
append(self, key)
Append a key to the keybuffer, or initial numbers to
-the number attribute.
- -
clear(self)
Clear the keybuffer and restore the initial state
+
add(self, key)
Add a key and evaluate it
-
tuple_with_numbers(self)
Get a tuple of ascii codes.
+
assign(self, keymap, direction_keys)
Change the keymap and direction keys of the keybuffer
-
tuple_without_numbers(self)
Get a tuple of ascii codes.
-If the keybuffer starts with numbers, those will
-be left out. To access them, use keybuffer.number
+
clear(self)
Reset the keybuffer.  Do this once before the first usage.

Data descriptors defined here:
@@ -71,19 +76,15 @@ Data descriptors defined here:

- - - - -
 
-Functions
       
to_string(i)
-

- -
 
Data
       NINE = 57
-ZERO = 48
+ANYKEY = 9002
+DIRKEY = 9001
+MAX_ALIAS_RECURSION = 20
+PASSIVE_ACTION = 9003
+digitlist = set([48, 49, 50, 51, 52, 53, ...])
+digits = '0123456789' \ No newline at end of file diff --git a/doc/pydoc/ranger.defaults.apps.html b/doc/pydoc/ranger.defaults.apps.html index a759a187..4f38da10 100644 --- a/doc/pydoc/ranger.defaults.apps.html +++ b/doc/pydoc/ranger.defaults.apps.html @@ -45,10 +45,11 @@ This example modifies the behaviour of "feh"  Modules         -
os
+
ranger.api.commands
+
os
re
sys
-

+

-
 
@@ -95,6 +96,8 @@ Methods defined here:
app_eye_of_gnome(self, c)
+
app_fceux(self, c)
+
app_feh(self, c)
app_firefox(self, c)
@@ -158,6 +161,6 @@ Data descriptors inherited from ranger.sh Data
       INTERPRETED_LANGUAGES = <_sre.SRE_Pattern object>
-PIPE = -1
+DELETE_WARNING = 'delete seriously? '
+INTERPRETED_LANGUAGES = <_sre.SRE_Pattern object> \ No newline at end of file diff --git a/doc/pydoc/ranger.defaults.keys.html b/doc/pydoc/ranger.defaults.keys.html deleted file mode 100644 index ee20b40b..00000000 --- a/doc/pydoc/ranger.defaults.keys.html +++ /dev/null @@ -1,380 +0,0 @@ - - -Python: module ranger.defaults.keys - - - - -
 
- 
ranger.defaults.keys
index
/home/hut/ranger/ranger/defaults/keys.py
-

This is the default key configuration file of ranger.
-Syntax for binding keys: map(*keys, fnc)

-keys are one or more key-combinations which are either:
-* a string
-* an integer which represents an ascii code
-* a tuple of integers

-fnc is a function which is called with the CommandArgument object.

-The CommandArgument object has these attributes:
-arg.fm: the file manager instance
-arg.wdg: the widget or ui instance
-arg.n: the number typed before the key combination (if allowed)
-arg.keys: the string representation of the used key combination
-arg.keybuffer: the keybuffer instance

-Check ranger.keyapi for more information

-

- - - - - -
 
-Modules
       
ranger.gui.widgets.console_mode
-
os
-

- - - - - -
 
-Functions
       
baudrate(...)
-
beep(...)
-
can_change_color(...)
-
cbreak(...)
-
color_content(...)
-
color_pair(...)
-
curs_set(...)
-
def_prog_mode(...)
-
def_shell_mode(...)
-
delay_output(...)
-
doupdate(...)
-
echo(...)
-
endwin(...)
-
erasechar(...)
-
filter(...)
-
flash(...)
-
flushinp(...)
-
getmouse(...)
-
getsyx(...)
-
getwin(...)
-
halfdelay(...)
-
has_colors(...)
-
has_ic(...)
-
has_il(...)
-
has_key(...)
-
init_color(...)
-
init_pair(...)
-
initialize_commands(map)
Initialize the commands for the main user interface
-
initialize_console_commands(map)
Initialize the commands for the console widget only
-
initialize_embedded_pager_commands(map)
-
initialize_pager_commands(map)
-
initialize_taskview_commands(map)
Initialize the commands for the TaskView widget
-
intrflush(...)
-
is_term_resized(...)
-
isendwin(...)
-
keyname(...)
-
killchar(...)
-
longname(...)
-
meta(...)
-
mouseinterval(...)
-
mousemask(...)
-
napms(...)
-
newpad(...)
-
newwin(...)
-
nl(...)
-
nocbreak(...)
-
noecho(...)
-
nonl(...)
-
noqiflush(...)
-
noraw(...)
-
pair_content(...)
-
pair_number(...)
-
putp(...)
-
qiflush(...)
-
raw(...)
-
reset_prog_mode(...)
-
reset_shell_mode(...)
-
resetty(...)
-
resize_term(...)
-
resizeterm(...)
-
savetty(...)
-
setsyx(...)
-
setupterm(...)
-
termattrs(...)
-
termname(...)
-
tigetflag(...)
-
tigetnum(...)
-
tigetstr(...)
-
tparm(...)
-
typeahead(...)
-
ungetch(...)
-
ungetmouse(...)
-
use_default_colors(...)
-
use_env(...)
-

- - - - - -
 
-Data
       ACK = 6
-ALLOWED_BOOKMARK_KEYS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789`'"
-ALL_MOUSE_EVENTS = 134217727
-A_ALTCHARSET = 4194304
-A_ATTRIBUTES = 4294967040
-A_BLINK = 524288
-A_BOLD = 2097152
-A_CHARTEXT = 255
-A_COLOR = 65280
-A_DIM = 1048576
-A_HORIZONTAL = 33554432
-A_INVIS = 8388608
-A_LEFT = 67108864
-A_LOW = 134217728
-A_NORMAL = 0
-A_PROTECT = 16777216
-A_REVERSE = 262144
-A_RIGHT = 268435456
-A_STANDOUT = 65536
-A_TOP = 536870912
-A_UNDERLINE = 131072
-A_VERTICAL = 1073741824
-BEL = 7
-BS = 8
-BUTTON1_CLICKED = 4
-BUTTON1_DOUBLE_CLICKED = 8
-BUTTON1_PRESSED = 2
-BUTTON1_RELEASED = 1
-BUTTON1_TRIPLE_CLICKED = 16
-BUTTON2_CLICKED = 256
-BUTTON2_DOUBLE_CLICKED = 512
-BUTTON2_PRESSED = 128
-BUTTON2_RELEASED = 64
-BUTTON2_TRIPLE_CLICKED = 1024
-BUTTON3_CLICKED = 16384
-BUTTON3_DOUBLE_CLICKED = 32768
-BUTTON3_PRESSED = 8192
-BUTTON3_RELEASED = 4096
-BUTTON3_TRIPLE_CLICKED = 65536
-BUTTON4_CLICKED = 1048576
-BUTTON4_DOUBLE_CLICKED = 2097152
-BUTTON4_PRESSED = 524288
-BUTTON4_RELEASED = 262144
-BUTTON4_TRIPLE_CLICKED = 4194304
-BUTTON_ALT = 67108864
-BUTTON_CTRL = 16777216
-BUTTON_SHIFT = 33554432
-CAN = 24
-COLOR_BLACK = 0
-COLOR_BLUE = 4
-COLOR_CYAN = 6
-COLOR_GREEN = 2
-COLOR_MAGENTA = 5
-COLOR_RED = 1
-COLOR_WHITE = 7
-COLOR_YELLOW = 3
-CR = 13
-DC1 = 17
-DC2 = 18
-DC3 = 19
-DC4 = 20
-DEL = 127
-DLE = 16
-EM = 25
-ENQ = 5
-EOT = 4
-ERR = -1
-ESC = 27
-ETB = 23
-ETX = 3
-FF = 12
-FS = 28
-GS = 29
-HT = 9
-KEY_A1 = 348
-KEY_A3 = 349
-KEY_B2 = 350
-KEY_BACKSPACE = 263
-KEY_BEG = 354
-KEY_BREAK = 257
-KEY_BTAB = 353
-KEY_C1 = 351
-KEY_C3 = 352
-KEY_CANCEL = 355
-KEY_CATAB = 342
-KEY_CLEAR = 333
-KEY_CLOSE = 356
-KEY_COMMAND = 357
-KEY_COPY = 358
-KEY_CREATE = 359
-KEY_CTAB = 341
-KEY_DC = 330
-KEY_DL = 328
-KEY_DOWN = 258
-KEY_EIC = 332
-KEY_END = 360
-KEY_ENTER = 343
-KEY_EOL = 335
-KEY_EOS = 334
-KEY_EXIT = 361
-KEY_F0 = 264
-KEY_F1 = 265
-KEY_F10 = 274
-KEY_F11 = 275
-KEY_F12 = 276
-KEY_F13 = 277
-KEY_F14 = 278
-KEY_F15 = 279
-KEY_F16 = 280
-KEY_F17 = 281
-KEY_F18 = 282
-KEY_F19 = 283
-KEY_F2 = 266
-KEY_F20 = 284
-KEY_F21 = 285
-KEY_F22 = 286
-KEY_F23 = 287
-KEY_F24 = 288
-KEY_F25 = 289
-KEY_F26 = 290
-KEY_F27 = 291
-KEY_F28 = 292
-KEY_F29 = 293
-KEY_F3 = 267
-KEY_F30 = 294
-KEY_F31 = 295
-KEY_F32 = 296
-KEY_F33 = 297
-KEY_F34 = 298
-KEY_F35 = 299
-KEY_F36 = 300
-KEY_F37 = 301
-KEY_F38 = 302
-KEY_F39 = 303
-KEY_F4 = 268
-KEY_F40 = 304
-KEY_F41 = 305
-KEY_F42 = 306
-KEY_F43 = 307
-KEY_F44 = 308
-KEY_F45 = 309
-KEY_F46 = 310
-KEY_F47 = 311
-KEY_F48 = 312
-KEY_F49 = 313
-KEY_F5 = 269
-KEY_F50 = 314
-KEY_F51 = 315
-KEY_F52 = 316
-KEY_F53 = 317
-KEY_F54 = 318
-KEY_F55 = 319
-KEY_F56 = 320
-KEY_F57 = 321
-KEY_F58 = 322
-KEY_F59 = 323
-KEY_F6 = 270
-KEY_F60 = 324
-KEY_F61 = 325
-KEY_F62 = 326
-KEY_F63 = 327
-KEY_F7 = 271
-KEY_F8 = 272
-KEY_F9 = 273
-KEY_FIND = 362
-KEY_HELP = 363
-KEY_HOME = 262
-KEY_IC = 331
-KEY_IL = 329
-KEY_LEFT = 260
-KEY_LL = 347
-KEY_MARK = 364
-KEY_MAX = 511
-KEY_MESSAGE = 365
-KEY_MIN = 257
-KEY_MOUSE = 409
-KEY_MOVE = 366
-KEY_NEXT = 367
-KEY_NPAGE = 338
-KEY_OPEN = 368
-KEY_OPTIONS = 369
-KEY_PPAGE = 339
-KEY_PREVIOUS = 370
-KEY_PRINT = 346
-KEY_REDO = 371
-KEY_REFERENCE = 372
-KEY_REFRESH = 373
-KEY_REPLACE = 374
-KEY_RESET = 345
-KEY_RESIZE = 410
-KEY_RESTART = 375
-KEY_RESUME = 376
-KEY_RIGHT = 261
-KEY_SAVE = 377
-KEY_SBEG = 378
-KEY_SCANCEL = 379
-KEY_SCOMMAND = 380
-KEY_SCOPY = 381
-KEY_SCREATE = 382
-KEY_SDC = 383
-KEY_SDL = 384
-KEY_SELECT = 385
-KEY_SEND = 386
-KEY_SEOL = 387
-KEY_SEXIT = 388
-KEY_SF = 336
-KEY_SFIND = 389
-KEY_SHELP = 390
-KEY_SHOME = 391
-KEY_SIC = 392
-KEY_SLEFT = 393
-KEY_SMESSAGE = 394
-KEY_SMOVE = 395
-KEY_SNEXT = 396
-KEY_SOPTIONS = 397
-KEY_SPREVIOUS = 398
-KEY_SPRINT = 399
-KEY_SR = 337
-KEY_SREDO = 400
-KEY_SREPLACE = 401
-KEY_SRESET = 344
-KEY_SRIGHT = 402
-KEY_SRSUME = 403
-KEY_SSAVE = 404
-KEY_SSUSPEND = 405
-KEY_STAB = 340
-KEY_SUNDO = 406
-KEY_SUSPEND = 407
-KEY_UNDO = 408
-KEY_UP = 259
-LF = 10
-NAK = 21
-NARG_KEYWORD = 'narg'
-NL = 10
-NUL = 0
-OK = 0
-RANGERDIR = '/home/hut/ranger/ranger'
-REPORT_MOUSE_POSITION = 134217728
-RS = 30
-SI = 15
-SO = 14
-SOH = 1
-SP = 32
-STX = 2
-SUB = 26
-SYN = 22
-TAB = 9
-US = 31
-VT = 11
-controlnames = ['NUL', 'SOH', 'STX', 'ETX', 'EOT', 'ENQ', 'ACK', 'BEL', 'BS', 'HT', 'LF', 'VT', 'FF', 'CR', 'SO', 'SI', 'DLE', 'DC1', 'DC2', 'DC3', ...]
-fm = <ranger.api.keys.Wrapper object>
-version = '2.2'
-wdg = <ranger.api.keys.Wrapper object>
- \ No newline at end of file diff --git a/doc/pydoc/ranger.defaults.options.html b/doc/pydoc/ranger.defaults.options.html index fae9598c..db0c9512 100644 --- a/doc/pydoc/ranger.defaults.options.html +++ b/doc/pydoc/ranger.defaults.options.html @@ -32,8 +32,11 @@ of the values stay the same.

       
ranger.colorschemes
+ranger.api.apps
ranger.gui.color
-
re
+ranger.api.commands
+
ranger.api.keys
+re

@@ -41,16 +44,22 @@ of the values stay the same.

Data -
       autosave_bookmarks = True
+
DELETE_WARNING = 'delete seriously? '
+autosave_bookmarks = True
collapse_preview = True
colorscheme = 'default'
colorscheme_overlay = None
+column_ratios = (1, 1, 4, 3)
+dirname_in_tabs = False
+display_size_in_main_column = True
+display_size_in_status_bar = False
draw_bookmark_borders = True
draw_borders = False
flushinput = True
hidden_filter = <_sre.SRE_Pattern object>
-max_filesize_for_preview = 307200
+max_console_history_size = 20
max_history_size = 20
+mouse_enabled = True
preview_directories = True
preview_files = True
save_console_history = True
@@ -58,9 +67,12 @@ of the values stay the same.

shorten_title = 3
show_cursor = False
show_hidden = False
+show_hidden_bookmarks = True
sort = 'basename'
sort_case_insensitive = False
sort_directories_first = True
sort_reverse = False
-update_title = True
+tilde_in_titlebar = True
+update_title = True
+xterm_alt_key = False \ No newline at end of file diff --git a/doc/pydoc/ranger.ext.accumulator.html b/doc/pydoc/ranger.ext.accumulator.html index 170aeea0..e812c025 100644 --- a/doc/pydoc/ranger.ext.accumulator.html +++ b/doc/pydoc/ranger.ext.accumulator.html @@ -54,7 +54,7 @@

get_list(self)
OVERRIDE THIS
-
move(self, relative=0, absolute=None, pages=None, narg=None)
+
move(self, narg=None, **keywords)
move_to_obj(self, arg, attr=None)
diff --git a/doc/pydoc/ranger.ext.command_parser.html b/doc/pydoc/ranger.ext.command_parser.html index 9e6fc950..4944b924 100644 --- a/doc/pydoc/ranger.ext.command_parser.html +++ b/doc/pydoc/ranger.ext.command_parser.html @@ -25,6 +25,14 @@ # along with this program.  If not, see <http://www.gnu.org/licenses/>.

+ + + + +
 
+Modules
       
re
+

+ @@ -54,8 +62,12 @@
chunk(self, n, otherwise='')
Chunks are pieces of the command seperated by spaces
+
parse_setting_line(self)
+
rest(self, n, otherwise='')
Rests are the strings which come after each word.
+
start(self, n)
+
Data descriptors defined here:
__dict__
@@ -64,5 +76,12 @@ Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)
-
 
Classes
+

+ + + + + +
 
+Data
       SETTINGS_RE = <_sre.SRE_Pattern object>
\ No newline at end of file diff --git a/doc/pydoc/ranger.ext.get_all_modules.html b/doc/pydoc/ranger.ext.get_all_modules.html deleted file mode 100644 index 98a88675..00000000 --- a/doc/pydoc/ranger.ext.get_all_modules.html +++ /dev/null @@ -1,35 +0,0 @@ - - -Python: module ranger.ext.get_all_modules - - - - -
 
- 
ranger.ext.get_all_modules
index
/home/hut/ranger/ranger/ext/get_all_modules.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Functions
       
get_all_modules(dirname)
returns a list of strings containing the names of modules in a directory
-
- \ No newline at end of file diff --git a/doc/pydoc/ranger.ext.html b/doc/pydoc/ranger.ext.html index a625bf53..f4413800 100644 --- a/doc/pydoc/ranger.ext.html +++ b/doc/pydoc/ranger.ext.html @@ -20,16 +20,18 @@
accumulator
command_parser
curses_interrupt_handler
-get_all_modules
+direction
get_executables
human_readable
iter_tools
-mount_path
-
move
+keybinding_parser
+
mount_path
+move
openstruct
shell_escape
-shutil_generatorized
-
signal_dispatcher
+
shutil_generatorized
+signal_dispatcher
+tree
waitpid_no_intr
\ No newline at end of file diff --git a/doc/pydoc/ranger.ext.human_readable.html b/doc/pydoc/ranger.ext.human_readable.html index a4d71ea9..efcb6494 100644 --- a/doc/pydoc/ranger.ext.human_readable.html +++ b/doc/pydoc/ranger.ext.human_readable.html @@ -25,6 +25,14 @@ # along with this program.  If not, see <http://www.gnu.org/licenses/>.

+ + + + +
 
+Modules
       
math
+

+ diff --git a/doc/pydoc/ranger.ext.move.html b/doc/pydoc/ranger.ext.move.html index d3858ab4..6c06f913 100644 --- a/doc/pydoc/ranger.ext.move.html +++ b/doc/pydoc/ranger.ext.move.html @@ -8,21 +8,8 @@
 
Functions
 
 
ranger.ext.move
index
/home/hut/ranger/ranger/ext/move.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

+>index
/home/hut/ranger/ranger/ext/move.pyc
+

diff --git a/doc/pydoc/ranger.ext.waitpid_no_intr.html b/doc/pydoc/ranger.ext.waitpid_no_intr.html index 4f141858..c0ef5666 100644 --- a/doc/pydoc/ranger.ext.waitpid_no_intr.html +++ b/doc/pydoc/ranger.ext.waitpid_no_intr.html @@ -30,6 +30,16 @@ Functions -
       
waitpid_no_intr(pid)
catch interrupts which occur while using os.waitpid
-
+

waitpid(...)
waitpid(pid, options) -> (pid, status)

+Wait for completion of a given child process.
+
waitpid_no_intr(pid)
catch interrupts which occur while using os.waitpid
+

+ + + + + +
 
+Data
       EINTR = 4
\ No newline at end of file diff --git a/doc/pydoc/ranger.fsobject.directory.html b/doc/pydoc/ranger.fsobject.directory.html index 23481285..79dfc957 100644 --- a/doc/pydoc/ranger.fsobject.directory.html +++ b/doc/pydoc/ranger.fsobject.directory.html @@ -86,8 +86,6 @@ Methods defined here:

__bool__ = __nonzero__(self)
-
__del__(self)
-
__eq__(self, other)
Check for equality of the directories paths
__hash__(self)
@@ -147,6 +145,8 @@ outdated or not done yet
Data and other attributes defined here:
+
content_loaded = False
+
content_outdated = False
cycle_list = None
@@ -175,12 +175,6 @@ Data and other attributes defined here:
mount_path = '/'
-
old_filter = None
- -
old_hidden_filter = None
- -
old_show_hidden = None
-
order_outdated = False
scroll_begin = 0
@@ -195,6 +189,8 @@ Methods inherited from
__str__(self)
returns a string containing the absolute path
+
determine_infostring(self)
+
get_description(self)
get_permission_string(self)
@@ -235,8 +231,6 @@ Data and other attributes inherited from
infostring = None +
is_device = False
+ +
is_fifo = False
+
is_file = False
-
islink = False
+
is_link = False
+ +
is_socket = False
last_used = None
@@ -305,7 +305,7 @@ Data and other attributes inherited from
ranger.ext.accumulator.Accumulator:
get_height(self)
OVERRIDE THIS
-
move(self, relative=0, absolute=None, pages=None, narg=None)
+
move(self, narg=None, **keywords)
pointer_is_synced(self)
@@ -394,5 +394,5 @@ Fractions of a second may be present if  Data         -BAD_INFO = None +BAD_INFO = '?' \ No newline at end of file diff --git a/doc/pydoc/ranger.fsobject.file.html b/doc/pydoc/ranger.fsobject.file.html index 5365ad59..01188d95 100644 --- a/doc/pydoc/ranger.fsobject.file.html +++ b/doc/pydoc/ranger.fsobject.file.html @@ -73,6 +73,8 @@ Methods inherited from
__str__(self)
returns a string containing the absolute path
+
determine_infostring(self)
+
get_description(self)
get_permission_string(self)
@@ -129,9 +131,15 @@ Data and other attributes inherited from Modules         -
time
-

+
os
+
stat
+

+ + + +
 
@@ -74,6 +75,8 @@ Methods defined here:
__str__(self)
returns a string containing the absolute path
+
determine_infostring(self)
+
get_description(self)
get_permission_string(self)
@@ -130,11 +133,17 @@ Data and other attributes defined here:
infostring = None
+
is_device = False
+
is_directory = False
+
is_fifo = False
+
is_file = False
-
islink = False
+
is_link = False
+ +
is_socket = False
last_used = None
@@ -184,15 +193,27 @@ Data and other attributes inherited from +
 
+Functions
       
time(...)
time() -> floating point number

+Return the current time in seconds since the Epoch.
+Fractions of a second may be present if the system clock provides them.
+

+ - -
 
Data
       BAD_INFO = None
+
BAD_INFO = '?'
CONTAINER_EXTENSIONS = ['rar', 'zip', 'tar', 'gz', 'bz', 'bz2', 'tgz', '7z', 'iso', 'cab']
-DOCUMENT_BASENAMES = ['README', 'TODO', 'LICENSE', 'COPYING', 'INSTALL']
-DOCUMENT_EXTENSIONS = ['pdf', 'doc', 'ppt', 'odt']
+DOCUMENT_BASENAMES = ()
+DOCUMENT_EXTENSIONS = ()
+PIPE = -1
T_DIRECTORY = 'directory'
T_FILE = 'file'
T_NONEXISTANT = 'nonexistant'
diff --git a/doc/pydoc/ranger.fsobject.html b/doc/pydoc/ranger.fsobject.html index 864aef98..7014418a 100644 --- a/doc/pydoc/ranger.fsobject.html +++ b/doc/pydoc/ranger.fsobject.html @@ -102,7 +102,7 @@ Data descriptors inherited from exceptio Data
       BAD_INFO = None
+
BAD_INFO = '?'
T_DIRECTORY = 'directory'
T_FILE = 'file'
T_NONEXISTANT = 'nonexistant'
diff --git a/doc/pydoc/ranger.fsobject.loader.html b/doc/pydoc/ranger.fsobject.loader.html index e4124e75..c387f773 100644 --- a/doc/pydoc/ranger.fsobject.loader.html +++ b/doc/pydoc/ranger.fsobject.loader.html @@ -105,7 +105,7 @@ Stop after approximately self.seconds_of_work_time Data and other attributes defined here:
-
seconds_of_work_time = 0.10000000000000001
+
seconds_of_work_time = 0.029999999999999999

Data and other attributes inherited from ranger.shared.FileManagerAware:
diff --git a/doc/pydoc/ranger.gui.bar.html b/doc/pydoc/ranger.gui.bar.html index b4036c14..0eab7f3b 100644 --- a/doc/pydoc/ranger.gui.bar.html +++ b/doc/pydoc/ranger.gui.bar.html @@ -231,9 +231,5 @@ Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)
-
-Data and other attributes defined here:
-
fixed = False
-
\ No newline at end of file diff --git a/doc/pydoc/ranger.gui.defaultui.html b/doc/pydoc/ranger.gui.defaultui.html index 8318872a..7bc180ed 100644 --- a/doc/pydoc/ranger.gui.defaultui.html +++ b/doc/pydoc/ranger.gui.defaultui.html @@ -71,7 +71,7 @@ Methods defined here:

notify(self, *a, **k)
-
open_console(self, mode, string='')
+
open_console(self, mode, string='', prompt=None)
open_embedded_pager(self)
@@ -91,7 +91,7 @@ Methods defined here:

Methods inherited from ranger.gui.ui.UI:
-
__init__(self, commandlist=None, env=None, fm=None)
+
__init__(self, env=None, fm=None)
destroy(self)
Destroy all widgets and turn off curses
@@ -99,10 +99,12 @@ Methods inherited from ranger.gui.ui.UI:
finalize(self)
Finalize every object in container and refresh the window
-
get_next_key(self)
Waits for key input and returns the pressed key
+
handle_input(self)
handle_key(self, key)
Handles key input
+
handle_keys(self, *keys)
+
handle_mouse(self)
Handles mouse input
initialize(self)
initialize curses, then call setup (at the first time) and resize.
@@ -121,8 +123,6 @@ Data and other attributes inherited from ranger.
load_mode = False
-
mousemask = 268435455
-
Methods inherited from
ranger.gui.displayable.DisplayableContainer:
add_child(self, obj)
Add the objects to the container.
@@ -183,12 +183,5 @@ Methods inherited from ranger.shared.settings.SettingsAware:
settings = {}
-

- - - - - -
 
-Data
       RATIO = (3, 3, 12, 9)
+ \ No newline at end of file diff --git a/doc/pydoc/ranger.gui.mouse_event.html b/doc/pydoc/ranger.gui.mouse_event.html index 7802b9a1..8ad837c8 100644 --- a/doc/pydoc/ranger.gui.mouse_event.html +++ b/doc/pydoc/ranger.gui.mouse_event.html @@ -62,6 +62,8 @@

key_invalid(self)
+
mouse_wheel_direction(self)
+
pressed(self, n)
Returns whether the mouse key n is pressed
shift(self)
diff --git a/doc/pydoc/ranger.gui.ui.html b/doc/pydoc/ranger.gui.ui.html index 9beffb00..f0aece1d 100644 --- a/doc/pydoc/ranger.gui.ui.html +++ b/doc/pydoc/ranger.gui.ui.html @@ -31,11 +31,10 @@        
_curses
-curses
+
curses
os
-socket
sys
-

+

-
 
@@ -70,7 +69,7 @@
Methods defined here:
-
__init__(self, commandlist=None, env=None, fm=None)
+
__init__(self, env=None, fm=None)
destroy(self)
Destroy all widgets and turn off curses
@@ -78,10 +77,12 @@ Methods defined here:
finalize(self)
Finalize every object in container and refresh the window
-
get_next_key(self)
Waits for key input and returns the pressed key
+
handle_input(self)
handle_key(self, key)
Handles key input
+
handle_keys(self, *keys)
+
handle_mouse(self)
Handles mouse input
initialize(self)
initialize curses, then call setup (at the first time) and resize.
@@ -106,8 +107,6 @@ Data and other attributes defined here:
load_mode = False
-
mousemask = 268435455
-
Methods inherited from ranger.gui.displayable.DisplayableContainer:
add_child(self, obj)
Add the objects to the container.
@@ -175,5 +174,6 @@ Data and other attributes inherited from Data
       TERMINALS_WITH_TITLE = ('xterm', 'xterm-256color', 'rxvt', 'rxvt-256color', 'rxvt-unicode', 'aterm', 'Eterm', 'screen', 'screen-256color')
+MOUSEMASK = 268435455
+TERMINALS_WITH_TITLE = ('xterm', 'xterm-256color', 'rxvt', 'rxvt-256color', 'rxvt-unicode', 'aterm', 'Eterm', 'screen', 'screen-256color') \ No newline at end of file diff --git a/doc/pydoc/ranger.gui.widgets.browsercolumn.html b/doc/pydoc/ranger.gui.widgets.browsercolumn.html index 4b324217..eaa97563 100644 --- a/doc/pydoc/ranger.gui.widgets.browsercolumn.html +++ b/doc/pydoc/ranger.gui.widgets.browsercolumn.html @@ -18,7 +18,8 @@        
re
-

+stat
+

-
 
@@ -71,9 +72,11 @@ level <0 => parent directories
poke(self)
+
request_redraw(self)
+
resize(self, y, x, hei, wid)
-
scroll(self, relative)
scroll by n lines
+
scroll(self, n)
scroll down by n lines

Data and other attributes defined here:
@@ -99,9 +102,7 @@ Methods inherited from ranger.gui.
finalize(self)
-
move(self, relative=0, absolute=None, pages=None, narg=None)
- -
move_horizontal(self, relative=0, absolute=None, narg=None)
+
move(self, narg=None, **kw)
open(self)
@@ -186,6 +187,7 @@ Fractions of a second may be present if  Data
       PREVIEW_BLACKLIST = <_sre.SRE_Pattern object>
+
BAD_INFO = '?'
+PREVIEW_BLACKLIST = <_sre.SRE_Pattern object>
PREVIEW_WHITELIST = <_sre.SRE_Pattern object>
\ No newline at end of file diff --git a/doc/pydoc/ranger.gui.widgets.browserview.html b/doc/pydoc/ranger.gui.widgets.browserview.html index 627a62bf..ca15d9e8 100644 --- a/doc/pydoc/ranger.gui.widgets.browserview.html +++ b/doc/pydoc/ranger.gui.widgets.browserview.html @@ -62,6 +62,8 @@ Methods defined here:

__init__(self, win, ratios, preview=True)
+
change_ratios(self, ratios, resize=True)
+
click(self, event)
close_pager(self)
@@ -74,10 +76,14 @@ Methods defined here:
poke(self)
+
request_clear(self)
+
resize(self, y, x, hei, wid)
Resize all the columns according to the given ratio

Data and other attributes defined here:
+
draw_bookmarks = False
+
need_clear = False
preview = True
diff --git a/doc/pydoc/ranger.gui.widgets.console.html b/doc/pydoc/ranger.gui.widgets.console.html index 277c87bc..cb84b0cb 100644 --- a/doc/pydoc/ranger.gui.widgets.console.html +++ b/doc/pydoc/ranger.gui.widgets.console.html @@ -18,11 +18,10 @@ commands, searching and executing files.

Modules         -
ranger.defaults.commands
-
curses
+
curses
ranger
string
-

+

-
 
@@ -113,11 +112,11 @@ Methods inherited from Console
init(self)
override this. Called directly after class change
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
on_line_change(self)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -129,8 +128,6 @@ Methods inherited from Console Data and other attributes inherited from Console:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -250,11 +247,11 @@ Methods defined here:
init(self)
override this. Called directly after class change
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
on_line_change(self)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -268,8 +265,6 @@ Methods defined here:
Data and other attributes defined here:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -396,11 +391,11 @@ Methods inherited from Console
init(self)
override this. Called directly after class change
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
on_line_change(self)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -412,8 +407,6 @@ Methods inherited from Console Data and other attributes inherited from Console:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -566,11 +559,11 @@ Methods inherited from Console
history_move(self, n)
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
on_line_change(self)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -582,8 +575,6 @@ Methods inherited from Console Data and other attributes inherited from Console:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -731,9 +722,9 @@ Methods inherited from Console
init(self)
override this. Called directly after class change
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -745,8 +736,6 @@ Methods inherited from Console Data and other attributes inherited from Console:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -902,11 +891,11 @@ Methods inherited from Console
history_move(self, n)
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
on_line_change(self)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -918,8 +907,6 @@ Methods inherited from Console Data and other attributes inherited from Console:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -1046,11 +1033,11 @@ Methods inherited from Console
history_move(self, n)
-
move(self, relative=0, absolute=None)
+
move(self, **keywords)
on_line_change(self)
-
open(self, mode, string='')
+
open(self, mode, string='', prompt=None)
paste(self)
@@ -1064,8 +1051,6 @@ Methods inherited from Console Data and other attributes inherited from Console:
allow_close = False
-
commandlist = None
-
copy = ''
histories = None
@@ -1146,7 +1131,8 @@ Data and other attributes inherited from Data
       DEFAULT_HISTORY = 0
+
ALLOWED_FLAGS = 'sdpSDP'
+DEFAULT_HISTORY = 0
OPEN_HISTORY = 3
QUICKOPEN_HISTORY = 2
SEARCH_HISTORY = 1
diff --git a/doc/pydoc/ranger.gui.widgets.pager.html b/doc/pydoc/ranger.gui.widgets.pager.html index 9705600f..c46fc373 100644 --- a/doc/pydoc/ranger.gui.widgets.pager.html +++ b/doc/pydoc/ranger.gui.widgets.pager.html @@ -63,9 +63,7 @@ Methods defined here:

finalize(self)
-
move(self, relative=0, absolute=None, pages=None, narg=None)
- -
move_horizontal(self, relative=0, absolute=None, narg=None)
+
move(self, narg=None, **kw)
open(self)
diff --git a/doc/pydoc/ranger.gui.widgets.statusbar.html b/doc/pydoc/ranger.gui.widgets.statusbar.html index 1a97d532..169692b9 100644 --- a/doc/pydoc/ranger.gui.widgets.statusbar.html +++ b/doc/pydoc/ranger.gui.widgets.statusbar.html @@ -95,6 +95,8 @@ Methods defined here:
notify(self, text, duration=4, bad=False)
+
request_redraw(self)
+
Data and other attributes defined here:
groups = {}
diff --git a/doc/pydoc/ranger.gui.widgets.taskview.html b/doc/pydoc/ranger.gui.widgets.taskview.html index 28c63c4e..5ee06814 100644 --- a/doc/pydoc/ranger.gui.widgets.taskview.html +++ b/doc/pydoc/ranger.gui.widgets.taskview.html @@ -70,7 +70,7 @@ Methods defined here:
press(self, key)
-
task_move(self, absolute, i=None)
+
task_move(self, to, i=None)
task_remove(self, i=None)
@@ -140,7 +140,7 @@ Methods inherited from ranger.
get_height(self)
OVERRIDE THIS
-
move(self, relative=0, absolute=None, pages=None, narg=None)
+
move(self, narg=None, **keywords)
move_to_obj(self, arg, attr=None)
diff --git a/doc/pydoc/ranger.gui.widgets.titlebar.html b/doc/pydoc/ranger.gui.widgets.titlebar.html index 0938452d..b8b4829c 100644 --- a/doc/pydoc/ranger.gui.widgets.titlebar.html +++ b/doc/pydoc/ranger.gui.widgets.titlebar.html @@ -47,12 +47,18 @@ It displays the current path among other thin
Methods defined here:
+
__init__(self, *args, **keywords)
+
click(self, event)
Handle a MouseEvent
draw(self)
+
request_redraw(self)
+
Data and other attributes defined here:
+
need_redraw = False
+
old_cf = None
old_keybuffer = None
@@ -61,6 +67,8 @@ Data and other attributes defined here:
result = None
+
tab_width = 0
+
throbber = ' '

@@ -70,8 +78,6 @@ Methods inherited from ranger.
__contains__(self, item)
Is item inside the boundaries?
item can be an iterable like [y, x] or an object with x and y methods.
-
__init__(self, win, env=None, fm=None, settings=None)
-
__nonzero__(self)
Always True
__str__(self)
@@ -124,16 +130,5 @@ Methods inherited from ranger.shared.settings.SettingsAware:
settings = {}
-

- - - - - -
 
-Functions
       
floor(...)
floor(x)

-Return the floor of x as a float.
-This is the largest integral value <= x.
-
+ \ No newline at end of file diff --git a/doc/pydoc/ranger.shared.settings.html b/doc/pydoc/ranger.shared.settings.html index f50c6569..4415a12e 100644 --- a/doc/pydoc/ranger.shared.settings.html +++ b/doc/pydoc/ranger.shared.settings.html @@ -31,7 +31,8 @@        
ranger
-

+sys
+

-
 
@@ -72,10 +73,14 @@ Methods defined here:
__init__(self)
+
__iter__(self)
+
__setattr__(self, name, value)
__setitem__ = __setattr__(self, name, value)
+
types_of(self, name)
+
Methods inherited from ranger.ext.signal_dispatcher.SignalDispatcher:
signal_bind(self, signal_name, function, priority=0.5, weak=False)
@@ -121,6 +126,5 @@ Data and other attributes defined here:
Data
       ALLOWED_SETTINGS = {'autosave_bookmarks': <type 'bool'>, 'collapse_preview': <type 'bool'>, 'colorscheme': <type 'str'>, 'colorscheme_overlay': (<type 'NoneType'>, <type 'function'>), 'draw_bookmark_borders': <type 'bool'>, 'draw_borders': <type 'bool'>, 'flushinput': <type 'bool'>, 'hidden_filter': <function <lambda>>, 'max_filesize_for_preview': (<type 'int'>, <type 'NoneType'>), 'max_history_size': (<type 'int'>, <type 'NoneType'>), ...}
-COMPAT_MAP = {'sort_directories_first': 'directories_first', 'sort_reverse': 'reverse'}
+ALLOWED_SETTINGS = {'autosave_bookmarks': <type 'bool'>, 'collapse_preview': <type 'bool'>, 'colorscheme': <type 'str'>, 'colorscheme_overlay': (<type 'NoneType'>, <type 'function'>), 'column_ratios': (<type 'tuple'>, <type 'list'>, <type 'set'>), 'dirname_in_tabs': <type 'bool'>, 'display_size_in_main_column': <type 'bool'>, 'display_size_in_status_bar': <type 'bool'>, 'draw_bookmark_borders': <type 'bool'>, 'draw_borders': <type 'bool'>, ...} \ No newline at end of file diff --git a/doc/pydoc/test.html b/doc/pydoc/test.html deleted file mode 100644 index 69b6f644..00000000 --- a/doc/pydoc/test.html +++ /dev/null @@ -1,52 +0,0 @@ - - -Python: package test - - - - -
 
- 
test
index
/home/hut/ranger/test/__init__.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Package Contents
       
tc_bookmarks
-tc_colorscheme
-tc_commandlist
-
tc_directory
-tc_displayable
-tc_ext
-
tc_history
-tc_keyapi
-tc_signal
-
tc_ui
-test
-

- - - - - -
 
-Data
       __all__ = ['tc_keyapi', 'tc_history', 'tc_colorscheme', 'tc_bookmarks', 'tc_ext', 'tc_directory', 'tc_commandlist', 'tc_colorscheme', 'tc_keyapi', 'tc_history', 'tc_commandlist', 'tc_signal', 'tc_displayable', 'tc_signal', 'tc_directory', 'tc_ui', 'tc_ui', 'tc_bookmarks', 'tc_ext', 'tc_displayable']
- \ No newline at end of file diff --git a/doc/pydoc/test.tc_bookmarks.html b/doc/pydoc/test.tc_bookmarks.html deleted file mode 100644 index 0d14d5d6..00000000 --- a/doc/pydoc/test.tc_bookmarks.html +++ /dev/null @@ -1,216 +0,0 @@ - - -Python: module test.tc_bookmarks - - - - -
 
- 
test.tc_bookmarks
index
/home/hut/ranger/test/tc_bookmarks.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
os
-
time
-
unittest
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
TestDisplayable -
-
-
-

- - - - - -
 
-class TestDisplayable(unittest.TestCase)
    
Method resolution order:
-
TestDisplayable
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
setUp(self)
- -
tearDown(self)
- -
test_adding_bookmarks(self)
- -
test_messing_around(self)
- -
test_sharing_bookmarks_between_instances(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- - - - - -
 
-Data
       BMFILE = '/home/hut/ranger/test/testdir/bookmarks'
-TESTDIR = '/home/hut/ranger/test/testdir'
- \ No newline at end of file diff --git a/doc/pydoc/test.tc_colorscheme.html b/doc/pydoc/test.tc_colorscheme.html deleted file mode 100644 index be917eb1..00000000 --- a/doc/pydoc/test.tc_colorscheme.html +++ /dev/null @@ -1,210 +0,0 @@ - - -Python: module test.tc_colorscheme - - - - -
 
- 
test.tc_colorscheme
index
/home/hut/ranger/test/tc_colorscheme.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
random
-
ranger
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
Test -
-
-
-

- - - - - -
 
-class Test(unittest.TestCase)
    
Method resolution order:
-
Test
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
setUp(self)
- -
test_colorschemes(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
tearDown(self)
Hook method for deconstructing the test fixture after testing it.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- - - - - -
 
-Data
       CONTEXT_KEYS = ['reset', 'error', 'in_browser', 'in_statusbar', 'in_titlebar', 'in_console', 'in_pager', 'in_taskview', 'directory', 'file', 'hostname', 'executable', 'media', 'link', 'video', 'audio', 'image', 'media', 'document', 'container', ...]
- \ No newline at end of file diff --git a/doc/pydoc/test.tc_directory.html b/doc/pydoc/test.tc_directory.html deleted file mode 100644 index 6ec13991..00000000 --- a/doc/pydoc/test.tc_directory.html +++ /dev/null @@ -1,218 +0,0 @@ - - -Python: module test.tc_directory - - - - -
 
- 
test.tc_directory
index
/home/hut/ranger/test/tc_directory.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
ranger.fsobject
-
unittest
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
Test1 -
-
-
-

- - - - - -
 
-class Test1(unittest.TestCase)
    
Method resolution order:
-
Test1
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
test_after_content_loaded(self)
- -
test_initial_condition(self)
- -
test_load_if_outdated(self)
- -
test_nonexistant_dir(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
setUp(self)
Hook method for setting up the test fixture before exercising it.
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
tearDown(self)
Hook method for deconstructing the test fixture after testing it.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- - - - - -
 
-Data
       NONEXISTANT_DIR = '/home/hut/ranger/test/testdir/nonexistant'
-TESTDIR = '/home/hut/ranger/test/testdir'
-TESTFILE = '/home/hut/ranger/test/testdir/testfile5234148'
- \ No newline at end of file diff --git a/doc/pydoc/test.tc_displayable.html b/doc/pydoc/test.tc_displayable.html deleted file mode 100644 index f4e4ac64..00000000 --- a/doc/pydoc/test.tc_displayable.html +++ /dev/null @@ -1,367 +0,0 @@ - - -Python: module test.tc_displayable - - - - -
 
- 
test.tc_displayable
index
/home/hut/ranger/test/tc_displayable.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
curses
-
unittest
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
TestDisplayableWithCurses -
TestWithFakeCurses -
-
-
-

- - - - - -
 
-class TestDisplayableWithCurses(unittest.TestCase)
    
Method resolution order:
-
TestDisplayableWithCurses
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
setUp(self)
- -
tearDown(self)
- -
test_boundaries(self)
- -
test_click(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- - - - - -
 
-class TestWithFakeCurses(unittest.TestCase)
    
Method resolution order:
-
TestWithFakeCurses
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
setUp(self)
- -
tearDown(self)
- -
test_colorscheme(self)
- -
test_focused_object(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- - - - - -
 
-Data
       gWin = None
- \ No newline at end of file diff --git a/doc/pydoc/test.tc_history.html b/doc/pydoc/test.tc_history.html deleted file mode 100644 index 3c12d220..00000000 --- a/doc/pydoc/test.tc_history.html +++ /dev/null @@ -1,202 +0,0 @@ - - -Python: module test.tc_history - - - - -
 
- 
test.tc_history
index
/home/hut/ranger/test/tc_history.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
unittest
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
Test -
-
-
-

- - - - - -
 
-class Test(unittest.TestCase)
    
Method resolution order:
-
Test
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
test_history(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
setUp(self)
Hook method for setting up the test fixture before exercising it.
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
tearDown(self)
Hook method for deconstructing the test fixture after testing it.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- \ No newline at end of file diff --git a/doc/pydoc/test.tc_keyapi.html b/doc/pydoc/test.tc_keyapi.html deleted file mode 100644 index 5feea805..00000000 --- a/doc/pydoc/test.tc_keyapi.html +++ /dev/null @@ -1,194 +0,0 @@ - - -Python: module test.tc_keyapi - - - - -
 
- 
test.tc_keyapi
index
/home/hut/ranger/test/tc_keyapi.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
Test -
-
-
-

- - - - - -
 
-class Test(unittest.TestCase)
    
Method resolution order:
-
Test
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
test_wrapper(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
setUp(self)
Hook method for setting up the test fixture before exercising it.
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
tearDown(self)
Hook method for deconstructing the test fixture after testing it.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- \ No newline at end of file diff --git a/doc/pydoc/test.tc_ui.html b/doc/pydoc/test.tc_ui.html deleted file mode 100644 index 90b9ca9c..00000000 --- a/doc/pydoc/test.tc_ui.html +++ /dev/null @@ -1,204 +0,0 @@ - - -Python: module test.tc_ui - - - - -
 
- 
test.tc_ui
index
/home/hut/ranger/test/tc_ui.py
-

# Copyright (C) 2009, 2010  Roman Zimbelmann <romanz@lavabit.com>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.

-

- - - - - -
 
-Modules
       
curses
-
ranger.gui.ui
-
unittest
-

- - - - - -
 
-Classes
       
-
unittest.TestCase(__builtin__.object) -
-
-
Test -
-
-
-

- - - - - -
 
-class Test(unittest.TestCase)
    
Method resolution order:
-
Test
-
unittest.TestCase
-
__builtin__.object
-
-
-Methods defined here:
-
setUp(self)
- -
tearDown(self)
- -
test_passing(self)
- -
-Methods inherited from unittest.TestCase:
-
__call__(self, *args, **kwds)
- -
__eq__(self, other)
- -
__hash__(self)
- -
__init__(self, methodName='runTest')
Create an instance of the class that will use the named test
-method when executed. Raises a ValueError if the instance does
-not have a method with the specified name.
- -
__ne__(self, other)
- -
__repr__(self)
- -
__str__(self)
- -
assertAlmostEqual = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertAlmostEquals = failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertEqual = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertEquals = failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
assertFalse = failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
assertNotAlmostEqual = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotAlmostEquals = failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
assertNotEqual = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertNotEquals = failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
assertRaises = failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
assertTrue = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
assert_ = failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
countTestCases(self)
- -
debug(self)
Run the test without collecting errors in a TestResult
- -
defaultTestResult(self)
- -
fail(self, msg=None)
Fail immediately, with the given message.
- -
failIf(self, expr, msg=None)
Fail the test if the expression is true.
- -
failIfAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are equal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failIfEqual(self, first, second, msg=None)
Fail if the two objects are equal as determined by the '=='
-operator.
- -
failUnless(self, expr, msg=None)
Fail the test unless the expression is true.
- -
failUnlessAlmostEqual(self, first, second, places=7, msg=None)
Fail if the two objects are unequal as determined by their
-difference rounded to the given number of decimal places
-(default 7) and comparing to zero.

-Note that decimal places (from zero) are usually not the same
-as significant digits (measured from the most signficant digit).
- -
failUnlessEqual(self, first, second, msg=None)
Fail if the two objects are unequal as determined by the '=='
-operator.
- -
failUnlessRaises(self, excClass, callableObj, *args, **kwargs)
Fail unless an exception of class excClass is thrown
-by callableObj when invoked with arguments args and keyword
-arguments kwargs. If a different type of exception is
-thrown, it will not be caught, and the test case will be
-deemed to have suffered an error, exactly as for an
-unexpected exception.
- -
id(self)
- -
run(self, result=None)
- -
shortDescription(self)
Returns a one-line description of the test, or None if no
-description has been provided.

-The default implementation of this method returns the first line of
-the specified test method's docstring.
- -
-Data descriptors inherited from unittest.TestCase:
-
__dict__
-
dictionary for instance variables (if defined)
-
-
__weakref__
-
list of weak references to the object (if defined)
-
-
-Data and other attributes inherited from unittest.TestCase:
-
failureException = <type 'exceptions.AssertionError'>
Assertion failed.
- -

- \ No newline at end of file diff --git a/doc/pydoc/test.test.html b/doc/pydoc/test.test.html deleted file mode 100644 index 14c090fd..00000000 --- a/doc/pydoc/test.test.html +++ /dev/null @@ -1,14 +0,0 @@ - - -Python: module test.test - - - - -
 
- 
test.test
index
/home/hut/ranger/test/test.py
-

Workaround to allow running single test cases directly

- - \ No newline at end of file -- cgit 1.4.1-2-gfad0