2020-11-17 02:39:23 +01:00
|
|
|
from typing import Callable, List, Optional
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2020-04-18 11:48:00 +02:00
|
|
|
class FormattedException(Exception):
|
|
|
|
pass
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2016-08-31 00:43:08 +02:00
|
|
|
class TemplateParserException(Exception):
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def __init__(self, message: str) -> None:
|
2017-02-21 13:53:52 +01:00
|
|
|
self.message = message
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def __str__(self) -> str:
|
2017-02-21 13:53:52 +01:00
|
|
|
return self.message
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-02-21 13:53:52 +01:00
|
|
|
class TokenizationException(Exception):
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def __init__(self, message: str, line_content: Optional[str] = None) -> None:
|
2017-02-21 13:53:52 +01:00
|
|
|
self.message = message
|
|
|
|
self.line_content = line_content
|
2016-08-31 00:43:08 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-05 11:57:15 +01:00
|
|
|
class TokenizerState:
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def __init__(self) -> None:
|
2016-08-02 00:14:01 +02:00
|
|
|
self.i = 0
|
|
|
|
self.line = 1
|
|
|
|
self.col = 1
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2017-11-05 11:57:15 +01:00
|
|
|
class Token:
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def __init__(self, kind: str, s: str, tag: str, line: int, col: int, line_span: int) -> None:
|
2016-08-02 00:14:01 +02:00
|
|
|
self.kind = kind
|
|
|
|
self.s = s
|
|
|
|
self.tag = tag
|
|
|
|
self.line = line
|
|
|
|
self.col = col
|
2017-02-16 20:25:53 +01:00
|
|
|
self.line_span = line_span
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def tokenize(text: str) -> List[Token]:
|
|
|
|
def advance(n: int) -> None:
|
2016-08-02 00:14:01 +02:00
|
|
|
for _ in range(n):
|
|
|
|
state.i += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
if state.i >= 0 and text[state.i - 1] == "\n":
|
2016-08-02 00:14:01 +02:00
|
|
|
state.line += 1
|
|
|
|
state.col = 1
|
|
|
|
else:
|
|
|
|
state.col += 1
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at(s: str) -> bool:
|
2021-02-12 08:19:30 +01:00
|
|
|
return text[state.i : state.i + len(s)] == s
|
2016-08-02 00:14:01 +02:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_htmlcomment() -> bool:
|
2017-02-03 04:26:35 +01:00
|
|
|
return looking_at("<!--")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_handlebarcomment() -> bool:
|
2017-02-23 18:12:52 +01:00
|
|
|
return looking_at("{{!")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_djangocomment() -> bool:
|
2017-02-23 18:12:52 +01:00
|
|
|
return looking_at("{#")
|
|
|
|
|
2018-04-03 10:09:00 +02:00
|
|
|
def looking_at_handlebarpartial() -> bool:
|
2019-07-11 04:05:28 +02:00
|
|
|
return looking_at("{{>")
|
2018-04-03 10:09:00 +02:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_html_start() -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return looking_at("<") and not looking_at("</")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_html_end() -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return looking_at("</")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_handlebars_start() -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return looking_at("{{#") or looking_at("{{^")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_handlebars_end() -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return looking_at("{{/")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_django_start() -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return looking_at("{% ") and not looking_at("{% end")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_django_end() -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return looking_at("{% end")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_jinja2_end_whitespace_stripped() -> bool:
|
2019-04-16 12:54:01 +02:00
|
|
|
return looking_at("{%- end")
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def looking_at_jinja2_start_whitespace_stripped_type2() -> bool:
|
2019-04-16 12:54:01 +02:00
|
|
|
# This function detects tag like {%- if foo -%}...{% endif %}
|
|
|
|
return looking_at("{%-") and not looking_at("{%- end")
|
|
|
|
|
2016-08-02 00:14:01 +02:00
|
|
|
state = TokenizerState()
|
|
|
|
tokens = []
|
|
|
|
|
|
|
|
while state.i < len(text):
|
2017-02-21 13:53:52 +01:00
|
|
|
try:
|
2017-02-23 18:12:52 +01:00
|
|
|
if looking_at_htmlcomment():
|
2017-02-21 13:53:52 +01:00
|
|
|
s = get_html_comment(text, state.i)
|
|
|
|
tag = s[4:-3]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "html_comment"
|
2017-02-23 18:12:52 +01:00
|
|
|
elif looking_at_handlebarcomment():
|
|
|
|
s = get_handlebar_comment(text, state.i)
|
|
|
|
tag = s[3:-2]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "handlebar_comment"
|
2017-02-23 18:12:52 +01:00
|
|
|
elif looking_at_djangocomment():
|
|
|
|
s = get_django_comment(text, state.i)
|
|
|
|
tag = s[2:-2]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "django_comment"
|
2018-04-03 10:09:00 +02:00
|
|
|
elif looking_at_handlebarpartial():
|
|
|
|
s = get_handlebar_partial(text, state.i)
|
|
|
|
tag = s[9:-2]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "handlebars_singleton"
|
2017-02-21 13:53:52 +01:00
|
|
|
elif looking_at_html_start():
|
|
|
|
s = get_html_tag(text, state.i)
|
2021-02-12 08:20:45 +01:00
|
|
|
if s.endswith("/>"):
|
2020-04-19 13:08:35 +02:00
|
|
|
end_offset = -2
|
|
|
|
else:
|
|
|
|
end_offset = -1
|
|
|
|
tag_parts = s[1:end_offset].split()
|
2017-02-21 13:53:52 +01:00
|
|
|
|
|
|
|
if not tag_parts:
|
|
|
|
raise TemplateParserException("Tag name missing")
|
|
|
|
|
|
|
|
tag = tag_parts[0]
|
|
|
|
|
2021-04-21 00:46:14 +02:00
|
|
|
if tag == "!DOCTYPE":
|
|
|
|
kind = "html_doctype"
|
|
|
|
elif s.endswith("/>"):
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "html_singleton"
|
2017-02-21 13:53:52 +01:00
|
|
|
else:
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "html_start"
|
2017-02-21 13:53:52 +01:00
|
|
|
elif looking_at_html_end():
|
|
|
|
s = get_html_tag(text, state.i)
|
|
|
|
tag = s[2:-1]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "html_end"
|
2017-02-21 13:53:52 +01:00
|
|
|
elif looking_at_handlebars_start():
|
|
|
|
s = get_handlebars_tag(text, state.i)
|
|
|
|
tag = s[3:-2].split()[0]
|
2021-04-05 22:05:31 +02:00
|
|
|
if tag.startswith("*"):
|
|
|
|
tag = tag[1:]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "handlebars_start"
|
2017-02-21 13:53:52 +01:00
|
|
|
elif looking_at_handlebars_end():
|
|
|
|
s = get_handlebars_tag(text, state.i)
|
|
|
|
tag = s[3:-2]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "handlebars_end"
|
2017-02-21 13:53:52 +01:00
|
|
|
elif looking_at_django_start():
|
|
|
|
s = get_django_tag(text, state.i)
|
|
|
|
tag = s[3:-2].split()[0]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "django_start"
|
2019-04-16 12:54:01 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if s[-3] == "-":
|
|
|
|
kind = "jinja2_whitespace_stripped_start"
|
2017-02-21 13:53:52 +01:00
|
|
|
elif looking_at_django_end():
|
|
|
|
s = get_django_tag(text, state.i)
|
|
|
|
tag = s[6:-3]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "django_end"
|
2019-04-16 12:54:01 +02:00
|
|
|
elif looking_at_jinja2_end_whitespace_stripped():
|
|
|
|
s = get_django_tag(text, state.i)
|
|
|
|
tag = s[7:-3]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "jinja2_whitespace_stripped_end"
|
2019-04-16 12:54:01 +02:00
|
|
|
elif looking_at_jinja2_start_whitespace_stripped_type2():
|
2020-01-16 21:12:02 +01:00
|
|
|
s = get_django_tag(text, state.i, stripped=True)
|
2019-04-16 12:54:01 +02:00
|
|
|
tag = s[3:-3].split()[0]
|
2021-02-12 08:20:45 +01:00
|
|
|
kind = "jinja2_whitespace_stripped_type2_start"
|
2016-08-07 15:28:17 +02:00
|
|
|
else:
|
2017-02-21 13:53:52 +01:00
|
|
|
advance(1)
|
|
|
|
continue
|
|
|
|
except TokenizationException as e:
|
2020-04-18 11:48:00 +02:00
|
|
|
raise FormattedException(
|
2021-05-10 07:02:14 +02:00
|
|
|
f'''{e.message} at line {state.line} col {state.col}:"{e.line_content}"''',
|
2020-04-18 11:48:00 +02:00
|
|
|
)
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
line_span = len(s.split("\n"))
|
2016-08-02 00:14:01 +02:00
|
|
|
token = Token(
|
|
|
|
kind=kind,
|
|
|
|
s=s,
|
2020-01-16 21:12:02 +01:00
|
|
|
tag=tag.strip(),
|
2016-08-02 00:14:01 +02:00
|
|
|
line=state.line,
|
|
|
|
col=state.col,
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
line_span=line_span,
|
2016-08-02 00:14:01 +02:00
|
|
|
)
|
|
|
|
tokens.append(token)
|
|
|
|
advance(len(s))
|
2018-04-03 10:09:00 +02:00
|
|
|
|
|
|
|
def add_pseudo_end_token(kind: str) -> None:
|
2017-02-16 20:25:53 +01:00
|
|
|
token = Token(
|
2018-04-03 10:09:00 +02:00
|
|
|
kind=kind,
|
2021-02-12 08:20:45 +01:00
|
|
|
s="</" + tag + ">",
|
2017-02-16 20:25:53 +01:00
|
|
|
tag=tag,
|
|
|
|
line=state.line,
|
|
|
|
col=state.col,
|
python: Use trailing commas consistently.
Automatically generated by the following script, based on the output
of lint with flake8-comma:
import re
import sys
last_filename = None
last_row = None
lines = []
for msg in sys.stdin:
m = re.match(
r"\x1b\[35mflake8 \|\x1b\[0m \x1b\[1;31m(.+):(\d+):(\d+): (\w+)", msg
)
if m:
filename, row_str, col_str, err = m.groups()
row, col = int(row_str), int(col_str)
if filename == last_filename:
assert last_row != row
else:
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
with open(filename) as f:
lines = f.readlines()
last_filename = filename
last_row = row
line = lines[row - 1]
if err in ["C812", "C815"]:
lines[row - 1] = line[: col - 1] + "," + line[col - 1 :]
elif err in ["C819"]:
assert line[col - 2] == ","
lines[row - 1] = line[: col - 2] + line[col - 1 :].lstrip(" ")
if last_filename is not None:
with open(last_filename, "w") as f:
f.writelines(lines)
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-10 05:23:40 +02:00
|
|
|
line_span=1,
|
2017-02-16 20:25:53 +01:00
|
|
|
)
|
|
|
|
tokens.append(token)
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if kind == "html_singleton":
|
2018-04-03 10:09:00 +02:00
|
|
|
# Here we insert a Pseudo html_singleton_end tag so as to have
|
|
|
|
# ease of detection of end of singleton html tags which might be
|
|
|
|
# needed in some cases as with our html pretty printer.
|
2021-02-12 08:20:45 +01:00
|
|
|
add_pseudo_end_token("html_singleton_end")
|
|
|
|
if kind == "handlebars_singleton":
|
2018-04-03 10:09:00 +02:00
|
|
|
# We insert a pseudo handlbar end tag for singleton cases of
|
|
|
|
# handlebars like the partials. This helps in indenting multi line partials.
|
2021-02-12 08:20:45 +01:00
|
|
|
add_pseudo_end_token("handlebars_singleton_end")
|
2018-04-03 10:09:00 +02:00
|
|
|
|
2016-08-02 00:14:01 +02:00
|
|
|
return tokens
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2021-04-21 00:46:14 +02:00
|
|
|
HTML_VOID_TAGS = {
|
|
|
|
"area",
|
|
|
|
"base",
|
|
|
|
"br",
|
|
|
|
"col",
|
|
|
|
"command",
|
|
|
|
"embed",
|
|
|
|
"hr",
|
|
|
|
"img",
|
|
|
|
"input",
|
|
|
|
"keygen",
|
|
|
|
"link",
|
|
|
|
"meta",
|
|
|
|
"param",
|
|
|
|
"source",
|
|
|
|
"track",
|
|
|
|
"wbr",
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
def validate(
|
|
|
|
fn: Optional[str] = None, text: Optional[str] = None, check_indent: bool = True
|
|
|
|
) -> None:
|
2016-08-04 01:44:15 +02:00
|
|
|
assert fn or text
|
|
|
|
|
|
|
|
if fn is None:
|
2021-02-12 08:20:45 +01:00
|
|
|
fn = "<in memory file>"
|
2016-08-04 01:44:15 +02:00
|
|
|
|
|
|
|
if text is None:
|
2020-04-09 21:51:58 +02:00
|
|
|
with open(fn) as f:
|
2019-07-14 21:37:08 +02:00
|
|
|
text = f.read()
|
2016-08-04 01:44:15 +02:00
|
|
|
|
2020-04-18 11:48:00 +02:00
|
|
|
try:
|
|
|
|
tokens = tokenize(text)
|
|
|
|
except FormattedException as e:
|
2021-02-12 08:19:30 +01:00
|
|
|
raise TemplateParserException(
|
2021-02-12 08:20:45 +01:00
|
|
|
f"""
|
2020-06-13 08:57:35 +02:00
|
|
|
fn: {fn}
|
2021-02-12 08:20:45 +01:00
|
|
|
{e}"""
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2017-11-05 11:57:15 +01:00
|
|
|
class State:
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def __init__(self, func: Callable[[Token], None]) -> None:
|
2016-08-02 00:14:01 +02:00
|
|
|
self.depth = 0
|
2021-04-21 00:46:14 +02:00
|
|
|
self.foreign = False
|
2016-08-02 00:14:01 +02:00
|
|
|
self.matcher = func
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def no_start_tag(token: Token) -> None:
|
2021-02-12 08:19:30 +01:00
|
|
|
raise TemplateParserException(
|
2021-02-12 08:20:45 +01:00
|
|
|
f"""
|
2016-08-02 00:14:01 +02:00
|
|
|
No start tag
|
2020-06-13 08:59:37 +02:00
|
|
|
fn: {fn}
|
2016-08-02 00:14:01 +02:00
|
|
|
end tag:
|
2020-06-13 08:59:37 +02:00
|
|
|
{token.tag}
|
|
|
|
line {token.line}, col {token.col}
|
2021-02-12 08:20:45 +01:00
|
|
|
"""
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2016-08-02 00:14:01 +02:00
|
|
|
|
|
|
|
state = State(no_start_tag)
|
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def start_tag_matcher(start_token: Token) -> None:
|
2016-08-02 00:14:01 +02:00
|
|
|
state.depth += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
start_tag = start_token.tag.strip("~")
|
2016-08-02 00:14:01 +02:00
|
|
|
start_line = start_token.line
|
|
|
|
start_col = start_token.col
|
|
|
|
|
|
|
|
old_matcher = state.matcher
|
2021-04-21 00:46:14 +02:00
|
|
|
old_foreign = state.foreign
|
|
|
|
|
|
|
|
if start_tag in ["math", "svg"]:
|
|
|
|
state.foreign = True
|
2016-11-29 07:22:02 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def f(end_token: Token) -> None:
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
end_tag = end_token.tag.strip("~")
|
2016-08-02 00:14:01 +02:00
|
|
|
end_line = end_token.line
|
|
|
|
end_col = end_token.col
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if start_tag == "a":
|
2016-08-18 16:17:06 +02:00
|
|
|
max_lines = 3
|
|
|
|
else:
|
|
|
|
max_lines = 1
|
|
|
|
|
2016-08-02 00:14:01 +02:00
|
|
|
problem = None
|
2021-02-12 08:20:45 +01:00
|
|
|
if (start_tag == "code") and (end_line == start_line + 1):
|
|
|
|
problem = "Code tag is split across two lines."
|
2016-08-02 00:14:01 +02:00
|
|
|
if start_tag != end_tag:
|
2021-02-12 08:20:45 +01:00
|
|
|
problem = "Mismatched tag."
|
2016-08-18 16:17:06 +02:00
|
|
|
elif check_indent and (end_line > start_line + max_lines):
|
|
|
|
if end_col != start_col:
|
2021-02-12 08:20:45 +01:00
|
|
|
problem = "Bad indentation."
|
2016-08-02 00:14:01 +02:00
|
|
|
if problem:
|
2021-02-12 08:19:30 +01:00
|
|
|
raise TemplateParserException(
|
2021-02-12 08:20:45 +01:00
|
|
|
f"""
|
2020-06-13 08:59:37 +02:00
|
|
|
fn: {fn}
|
|
|
|
{problem}
|
2016-08-02 00:14:01 +02:00
|
|
|
start:
|
2020-06-13 08:59:37 +02:00
|
|
|
{start_token.s}
|
|
|
|
line {start_line}, col {start_col}
|
2016-08-02 00:14:01 +02:00
|
|
|
end tag:
|
2020-06-13 08:59:37 +02:00
|
|
|
{end_tag}
|
|
|
|
line {end_line}, col {end_col}
|
2021-02-12 08:20:45 +01:00
|
|
|
"""
|
2021-02-12 08:19:30 +01:00
|
|
|
)
|
2016-08-02 00:14:01 +02:00
|
|
|
state.matcher = old_matcher
|
2021-04-21 00:46:14 +02:00
|
|
|
state.foreign = old_foreign
|
2016-08-02 00:14:01 +02:00
|
|
|
state.depth -= 1
|
2021-02-12 08:19:30 +01:00
|
|
|
|
2016-08-02 00:14:01 +02:00
|
|
|
state.matcher = f
|
|
|
|
|
|
|
|
for token in tokens:
|
|
|
|
kind = token.kind
|
|
|
|
tag = token.tag
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if kind == "html_start":
|
2021-04-21 00:46:14 +02:00
|
|
|
if not state.foreign and tag in HTML_VOID_TAGS:
|
|
|
|
raise TemplateParserException(
|
|
|
|
f"Tag must be self-closing: {tag} at {fn} line {token.line}, col {token.col}"
|
|
|
|
)
|
2016-08-07 15:28:17 +02:00
|
|
|
start_tag_matcher(token)
|
2021-04-21 00:46:14 +02:00
|
|
|
elif kind == "html_singleton":
|
|
|
|
if not state.foreign and tag not in HTML_VOID_TAGS:
|
|
|
|
raise TemplateParserException(
|
|
|
|
f"Tag must not be self-closing: {tag} at {fn} line {token.line}, col {token.col}"
|
|
|
|
)
|
2021-02-12 08:20:45 +01:00
|
|
|
elif kind == "html_end":
|
2016-08-02 00:14:01 +02:00
|
|
|
state.matcher(token)
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
elif kind == "handlebars_start":
|
2016-08-02 00:14:01 +02:00
|
|
|
start_tag_matcher(token)
|
2021-02-12 08:20:45 +01:00
|
|
|
elif kind == "handlebars_end":
|
2016-08-02 00:14:01 +02:00
|
|
|
state.matcher(token)
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
elif kind in {
|
2021-02-12 08:20:45 +01:00
|
|
|
"django_start",
|
|
|
|
"jinja2_whitespace_stripped_start",
|
|
|
|
"jinja2_whitespace_stripped_type2_start",
|
2021-02-12 08:19:30 +01:00
|
|
|
}:
|
2016-08-02 00:14:01 +02:00
|
|
|
if is_django_block_tag(tag):
|
|
|
|
start_tag_matcher(token)
|
2021-02-12 08:20:45 +01:00
|
|
|
elif kind in {"django_end", "jinja2_whitespace_stripped_end"}:
|
2016-08-02 00:14:01 +02:00
|
|
|
state.matcher(token)
|
|
|
|
|
|
|
|
if state.depth != 0:
|
2021-02-12 08:20:45 +01:00
|
|
|
raise TemplateParserException("Missing end tag")
|
2016-08-02 00:14:01 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def is_django_block_tag(tag: str) -> bool:
|
2016-08-02 00:14:01 +02:00
|
|
|
return tag in [
|
2021-02-12 08:20:45 +01:00
|
|
|
"autoescape",
|
|
|
|
"block",
|
|
|
|
"comment",
|
|
|
|
"for",
|
|
|
|
"if",
|
|
|
|
"ifequal",
|
|
|
|
"macro",
|
|
|
|
"verbatim",
|
|
|
|
"blocktrans",
|
|
|
|
"trans",
|
|
|
|
"raw",
|
|
|
|
"with",
|
2016-08-02 00:14:01 +02:00
|
|
|
]
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_handlebars_tag(text: str, i: int) -> str:
|
2016-08-02 00:14:01 +02:00
|
|
|
end = i + 2
|
2021-02-12 08:20:45 +01:00
|
|
|
while end < len(text) - 1 and text[end] != "}":
|
2016-08-02 00:14:01 +02:00
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
if text[end] != "}" or text[end + 1] != "}":
|
2021-02-12 08:19:30 +01:00
|
|
|
raise TokenizationException('Tag missing "}}"', text[i : end + 2])
|
|
|
|
s = text[i : end + 2]
|
2016-08-02 00:14:01 +02:00
|
|
|
return s
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_django_tag(text: str, i: int, stripped: bool = False) -> str:
|
2016-08-02 00:14:01 +02:00
|
|
|
end = i + 2
|
2020-01-16 21:12:02 +01:00
|
|
|
if stripped:
|
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
while end < len(text) - 1 and text[end] != "%":
|
2016-08-02 00:14:01 +02:00
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
if text[end] != "%" or text[end + 1] != "}":
|
2021-02-12 08:19:30 +01:00
|
|
|
raise TokenizationException('Tag missing "%}"', text[i : end + 2])
|
|
|
|
s = text[i : end + 2]
|
2016-08-02 00:14:01 +02:00
|
|
|
return s
|
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_html_tag(text: str, i: int) -> str:
|
2016-08-02 00:14:01 +02:00
|
|
|
quote_count = 0
|
|
|
|
end = i + 1
|
2017-02-21 13:53:52 +01:00
|
|
|
unclosed_end = 0
|
2021-02-12 08:20:45 +01:00
|
|
|
while end < len(text) and (text[end] != ">" or quote_count % 2 != 0 and text[end] != "<"):
|
2016-08-02 00:14:01 +02:00
|
|
|
if text[end] == '"':
|
|
|
|
quote_count += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
if not unclosed_end and text[end] == "<":
|
2017-02-21 13:53:52 +01:00
|
|
|
unclosed_end = end
|
2016-08-02 00:14:01 +02:00
|
|
|
end += 1
|
2017-02-21 13:53:52 +01:00
|
|
|
if quote_count % 2 != 0:
|
|
|
|
if unclosed_end:
|
2021-05-10 07:02:14 +02:00
|
|
|
raise TokenizationException("Unbalanced quotes", text[i:unclosed_end])
|
2017-02-21 13:53:52 +01:00
|
|
|
else:
|
2021-05-10 07:02:14 +02:00
|
|
|
raise TokenizationException("Unbalanced quotes", text[i : end + 1])
|
2021-02-12 08:20:45 +01:00
|
|
|
if end == len(text) or text[end] != ">":
|
2021-02-12 08:19:30 +01:00
|
|
|
raise TokenizationException('Tag missing ">"', text[i : end + 1])
|
|
|
|
s = text[i : end + 1]
|
2016-08-02 00:14:01 +02:00
|
|
|
return s
|
2017-02-03 04:26:35 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_html_comment(text: str, i: int) -> str:
|
2017-02-03 04:26:35 +01:00
|
|
|
end = i + 7
|
2017-02-21 13:53:52 +01:00
|
|
|
unclosed_end = 0
|
2017-02-03 04:26:35 +01:00
|
|
|
while end <= len(text):
|
2021-02-12 08:20:45 +01:00
|
|
|
if text[end - 3 : end] == "-->":
|
2017-02-03 04:26:35 +01:00
|
|
|
return text[i:end]
|
2021-02-12 08:20:45 +01:00
|
|
|
if not unclosed_end and text[end] == "<":
|
2017-02-21 13:53:52 +01:00
|
|
|
unclosed_end = end
|
2017-02-03 04:26:35 +01:00
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
raise TokenizationException("Unclosed comment", text[i:unclosed_end])
|
2017-02-23 18:12:52 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_handlebar_comment(text: str, i: int) -> str:
|
2017-02-23 18:12:52 +01:00
|
|
|
end = i + 5
|
|
|
|
unclosed_end = 0
|
|
|
|
while end <= len(text):
|
2021-02-12 08:20:45 +01:00
|
|
|
if text[end - 2 : end] == "}}":
|
2017-02-23 18:12:52 +01:00
|
|
|
return text[i:end]
|
2021-02-12 08:20:45 +01:00
|
|
|
if not unclosed_end and text[end] == "<":
|
2017-02-23 18:12:52 +01:00
|
|
|
unclosed_end = end
|
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
raise TokenizationException("Unclosed comment", text[i:unclosed_end])
|
2017-02-23 18:12:52 +01:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_django_comment(text: str, i: int) -> str:
|
2017-02-23 18:12:52 +01:00
|
|
|
end = i + 4
|
|
|
|
unclosed_end = 0
|
|
|
|
while end <= len(text):
|
2021-02-12 08:20:45 +01:00
|
|
|
if text[end - 2 : end] == "#}":
|
2017-02-23 18:12:52 +01:00
|
|
|
return text[i:end]
|
2021-02-12 08:20:45 +01:00
|
|
|
if not unclosed_end and text[end] == "<":
|
2017-02-23 18:12:52 +01:00
|
|
|
unclosed_end = end
|
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
raise TokenizationException("Unclosed comment", text[i:unclosed_end])
|
2018-04-03 10:09:00 +02:00
|
|
|
|
2021-02-12 08:19:30 +01:00
|
|
|
|
python: Convert function type annotations to Python 3 style.
Generated by com2ann (slightly patched to avoid also converting
assignment type annotations, which require Python 3.6), followed by
some manual whitespace adjustment, and six fixes for runtime issues:
- def __init__(self, token: Token, parent: Optional[Node]) -> None:
+ def __init__(self, token: Token, parent: "Optional[Node]") -> None:
-def main(options: argparse.Namespace) -> NoReturn:
+def main(options: argparse.Namespace) -> "NoReturn":
-def fetch_request(url: str, callback: Any, **kwargs: Any) -> Generator[Callable[..., Any], Any, None]:
+def fetch_request(url: str, callback: Any, **kwargs: Any) -> "Generator[Callable[..., Any], Any, None]":
-def assert_server_running(server: subprocess.Popen[bytes], log_file: Optional[str]) -> None:
+def assert_server_running(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> None:
-def server_is_up(server: subprocess.Popen[bytes], log_file: Optional[str]) -> bool:
+def server_is_up(server: "subprocess.Popen[bytes]", log_file: Optional[str]) -> bool:
- method_kwarg_pairs: List[FuncKwargPair],
+ method_kwarg_pairs: "List[FuncKwargPair]",
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
2020-04-19 03:48:37 +02:00
|
|
|
def get_handlebar_partial(text: str, i: int) -> str:
|
2018-04-03 10:09:00 +02:00
|
|
|
end = i + 10
|
|
|
|
unclosed_end = 0
|
|
|
|
while end <= len(text):
|
2021-02-12 08:20:45 +01:00
|
|
|
if text[end - 2 : end] == "}}":
|
2018-04-03 10:09:00 +02:00
|
|
|
return text[i:end]
|
2021-02-12 08:20:45 +01:00
|
|
|
if not unclosed_end and text[end] == "<":
|
2018-04-03 10:09:00 +02:00
|
|
|
unclosed_end = end
|
|
|
|
end += 1
|
2021-02-12 08:20:45 +01:00
|
|
|
raise TokenizationException("Unclosed partial", text[i:unclosed_end])
|