myregex is gone. Thanks Paolo Pastori
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
"""
|
||||
| This file is part of the web2py Web Framework
|
||||
| Copyrighted by Massimo Di Pierro <mdipierro@cs.depaul.edu>
|
||||
| License: LGPLv3 (http://www.gnu.org/licenses/lgpl.html)
|
||||
|
||||
Useful regexes
|
||||
---------------
|
||||
"""
|
||||
|
||||
import re
|
||||
|
||||
# pattern to find defined tables
|
||||
|
||||
regex_tables = re.compile(
|
||||
"""^[\w]+\.define_table\(\s*[\'\"](?P<name>\w+)[\'\"]""",
|
||||
flags=re.M)
|
||||
|
||||
# pattern to find exposed functions in controller
|
||||
|
||||
regex_expose = re.compile(
|
||||
'^def\s+(?P<name>_?[a-zA-Z0-9]\w*)\( *\)\s*:',
|
||||
flags=re.M)
|
||||
|
||||
regex_longcomments = re.compile('(""".*?"""|'+"'''.*?''')", re.DOTALL)
|
||||
|
||||
regex_include = re.compile(
|
||||
'(?P<all>\{\{\s*include\s+[\'"](?P<name>[^\'"]*)[\'"]\s*\}\})')
|
||||
|
||||
regex_extend = re.compile(
|
||||
'^\s*(?P<all>\{\{\s*extend\s+[\'"](?P<name>[^\'"]+)[\'"]\s*\}\})', re.MULTILINE)
|
||||
Submodule gluon/packages/dal updated: cd1b2ed6d9...3815fbe9b6
Reference in New Issue
Block a user