MCPcopy Create free account

hub / github.com/ahmedkhlief/muddyc3-Revived / types & classes

Types & classes138 in github.com/ahmedkhlief/muddyc3-Revived

↓ 23 callersClass_Node
lib/web/db.py:1325
↓ 15 callersClassSQLQuery
You can pass this sort of thing as a clause in any db function. Otherwise, you can pass a dictionary to the keyword argument `vars` and t
lib/web/db.py:126
↓ 5 callersClassPrettyTable
lib/prettytable.py:45
↓ 5 callersClassTextNode
lib/web/template.py:548
↓ 4 callersClassTemplate
lib/web/template.py:878
↓ 3 callersClassBrowserError
lib/web/browser.py:41
↓ 3 callersClassParser
Parser Base.
lib/web/template.py:79
↓ 3 callersClassSQLParam
Parameter in SQLQuery. >>> q = SQLQuery(["SELECT * FROM test WHERE name=", SQLParam("joe")]) >>> q <sql: "SELECT * F
lib/web/db.py:76
↓ 3 callersClassSecurityError
The template seems to be trying to do something naughty.
lib/web/template.py:1133
↓ 3 callersClassStorage
A Storage object is like a dictionary except `obj.foo` can be used in addition to `obj['foo']`. >>> o = storage(a=1) >>>
lib/web/utils.py:51
↓ 2 callersClassAttributeList
List of atributes of input. >>> a = AttributeList(type='text', name='x', value=20) >>> a <attrs: 'name="x" type="text" value="20"
lib/web/form.py:196
↓ 2 callersClassCodeNode
lib/web/template.py:639
↓ 2 callersClassParser
Parser to parse string templates like "Hello $name". Loosely based on <http://lfw.org/python/Itpl.py> (public domain, Ka-Ping Yee)
lib/web/db.py:1339
↓ 2 callersClassPythonTokenizer
Utility wrapper over python tokenizer.
lib/web/template.py:480
↓ 2 callersClassSafeEval
Safe evaluator for binding params to db queries.
lib/web/db.py:1430
↓ 2 callersClassUnknownParamstyle
raised for unsupported db paramstyles (currently supported: qmark, numeric, format, pyformat)
lib/web/db.py:67
↓ 2 callersClass_InternalError
500 Internal Server Error`.
lib/web/webapi.py:324
↓ 2 callersClass_ItplError
lib/web/db.py:51
↓ 2 callersClass_NotFound
`404 Not Found` error.
lib/web/webapi.py:196
↓ 2 callersClass_UnavailableForLegalReasons
`451 Unavailable For Legal Reasons` error.
lib/web/webapi.py:301
↓ 1 callersClassAppHandler
urllib2 handler to handle requests using web.py application.
lib/web/browser.py:225
↓ 1 callersClassAssignmentNode
lib/web/template.py:579
↓ 1 callersClassBetterIter
Iterator like object with 2 support for 2 look aheads.
lib/web/template.py:330
↓ 1 callersClassDefwithNode
lib/web/template.py:526
↓ 1 callersClassDispatch
lib/web/utils.py:395
↓ 1 callersClassExpressionNode
lib/web/template.py:560
↓ 1 callersClassFakeSocket
lib/web/httpserver.py:250
↓ 1 callersClassForLoopContext
Stackable context for ForLoop to support nested for loops.
lib/web/template.py:811
↓ 1 callersClassGAE_Render
lib/web/template.py:1057
↓ 1 callersClassLineNode
lib/web/template.py:591
↓ 1 callersClassLogMiddleware
WSGI middleware for logging the status.
lib/web/httpserver.py:242
↓ 1 callersClassMyApplication
core/webserver.py:11
↓ 1 callersClassParseError
lib/web/template.py:1129
↓ 1 callersClassReloader
Checks to see if any loaded modules have changed on disk and, if so, reloads them.
lib/web/application.py:689
↓ 1 callersClassRender
The most preferred way of using templates. render = web.template.render('templates') print render.foo() Optiona
lib/web/template.py:973
↓ 1 callersClassSafeVisitor
Make sure code is safe by walking through the AST. Code considered unsafe if: * it has restricted AST nodes (only nodes defi
lib/web/template.py:1223
↓ 1 callersClassSessionExpired
lib/web/session.py:34
↓ 1 callersClassStatementNode
lib/web/template.py:653
↓ 1 callersClassStaticApp
WSGI application for serving static files.
lib/web/httpserver.py:166
↓ 1 callersClassStaticMiddleware
WSGI middleware for serving static files.
lib/web/httpserver.py:220
↓ 1 callersClassSuiteNode
Suite is a list of sections.
lib/web/template.py:707
↓ 1 callersClassTableHandler
lib/prettytable.py:1260
↓ 1 callersClassTransaction
Database transaction.
lib/web/db.py:452
↓ 1 callersClassUnknownDB
raised for unsupported dbms
lib/web/db.py:46
↓ 1 callersClassValidator
lib/web/form.py:431
↓ 1 callersClassVarNode
lib/web/template.py:694
↓ 1 callersClass_EmailMessage
lib/web/utils.py:1447
↓ 1 callersClass_hack
lib/web/utils.py:263
↓ 1 callersClass_re_subm_proxy
lib/web/utils.py:511
↓ 1 callersClassapplication
Application to delegate requests based on path. >>> urls = ("/hello", "hello") >>> app = application(urls, globals())
lib/web/application.py:43
↓ 1 callersClasscmd
core/cmd.py:8
↓ 1 callersClassdummy_engine
Transaction Engine used instead of subtransaction_engine when sub transactions are not supported.
lib/web/db.py:487
↓ 1 callersClasssubtransaction_engine
Transaction Engine used in sub transactions.
lib/web/db.py:471
↓ 1 callersClasstransaction_engine
Transaction Engine used in top level transactions.
lib/web/db.py:459
ClassAppBrowser
Browser interface to test web.py apps. b = AppBrowser(app) b.open('/') b.follow_link(text='Login')
lib/web/browser.py:201
ClassBadRequest
`400 Bad Request` error.
lib/web/webapi.py:160
ClassBaseTemplate
lib/web/template.py:842
ClassBlockNode
lib/web/template.py:608
ClassBrowser
lib/web/browser.py:45
ClassButton
HTML Button. >>> Button("save").render() u'<button id="save" name="save">save</button>' >>> Button("action", value="save", html="
lib/web/form.py:384
ClassCaptureStdout
r""" Captures everything `func` prints to stdout and returns it instead. >>> def idiot(): ... print("foo") >>> ca
lib/web/utils.py:1112
ClassCheckbox
Checkbox input. >>> Checkbox('foo', value='bar', checked=True).render() u'<input checked="checked" id="foo_bar" name="foo" type="check
lib/web/form.py:346
ClassCompiledTemplate
lib/web/template.py:960
ClassConflict
`409 Conflict` error.
lib/web/webapi.py:253
ClassCounter
Keeps count of how many times something is added. >>> c = counter() >>> c.add('x') >>> c.add('x') >>> c.add('
lib/web/utils.py:172
ClassDB
Database
lib/web/db.py:523
ClassDBStore
Store for saving a session in database Needs a table with the following columns: session_id CHAR(128) UNIQUE NOT NULL, at
lib/web/session.py:275
ClassDefNode
lib/web/template.py:677
ClassDiskStore
Store for saving a session on disk. >>> import tempfile >>> root = tempfile.mkdtemp() >>> s = DiskStore(root)
lib/web/session.py:209
ClassDropdown
r"""Dropdown/select input. >>> Dropdown(name='foo', args=['a', 'b', 'c'], value='b').render() u'<select id="foo" name="foo">\n
lib/web/form.py:252
ClassElifNode
lib/web/template.py:673
ClassElseNode
lib/web/template.py:669
ClassFile
File input. >>> File(name='f').render() u'<input id="f" name="f" type="file"/>'
lib/web/form.py:420
ClassFirebirdDB
Firebird Database.
lib/web/db.py:1083
ClassForLoop
Wrapper for expression in for stament to support loop.xxx helpers. >>> loop = ForLoop() >>> for x in loop.setup(['a', 'b
lib/web/template.py:772
ClassForNode
lib/web/template.py:624
ClassForbidden
`403 Forbidden` error.
lib/web/webapi.py:184
ClassForm
r""" HTML form. >>> f = Form(Textbox("x")) >>> f.render() u'<table>\n <tr><th><label for="x">x</label></th><t
lib/web/form.py:23
ClassFound
A `302 Found` redirect.
lib/web/webapi.py:124
ClassGone
`410 Gone` error.
lib/web/webapi.py:265
ClassGroupedDropdown
r"""Grouped Dropdown/select input. >>> GroupedDropdown(name='car_type', args=(('Swedish Cars', ('Volvo', 'Saab')), ('German Cars', ('Me
lib/web/form.py:292
ClassHTTPError
lib/web/webapi.py:72
ClassHidden
Hidden Input. >>> Hidden(name='foo', value='bar').render() u'<input id="foo" name="foo" type="hidden" value="bar"/>'
lib/web/form.py:406
ClassIfNode
lib/web/template.py:665
ClassInput
lib/web/form.py:137
ClassIterBetter
Returns an object that can be used as an iterator but can also be used via __getitem__ (although it cannot go backwards -- that is, you
lib/web/utils.py:638
ClassMSSQLDB
lib/web/db.py:1123
ClassMemoize
'Memoizes' a function, caching its return values for each input. If `expires` is specified, values are recalculated after `expires` seconds.
lib/web/utils.py:424
ClassMutableMapping
lib/web/template.py:54
ClassMySQLDB
lib/web/db.py:1008
ClassNoMethod
A `405 Method Not Allowed` error.
lib/web/webapi.py:219
ClassNotAcceptable
`406 Not Acceptable` error.
lib/web/webapi.py:241
ClassNotModified
A `304 Not Modified` status.
lib/web/webapi.py:142
ClassOracleDB
lib/web/db.py:1174
ClassPassword
Password input. >>> Password(name='password', value='secret').render() u'<input id="password" name="password" type="password"
lib/web/form.py:227
ClassPostgresDB
Postgres driver.
lib/web/db.py:956
ClassPreconditionFailed
`412 Precondition Failed` error.
lib/web/webapi.py:277
ClassProfile
Profiles `func` and returns a tuple containing its output and a string with human-readable profiling information. >>> import
lib/web/utils.py:1141
ClassRadio
lib/web/form.py:321
ClassRedirect
A `301 Moved Permanently` redirect.
lib/web/webapi.py:101
next →1–100 of 138, ranked by callers