mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 08:26:11 +00:00
This causes `upgrade-zulip-from-git`, as well as a no-option run of `tools/build-release-tarball`, to produce a Zulip install running Python 3, rather than Python 2. In particular this means that the virtualenv we create, in which all application code runs, is Python 3. One shebang line, on `zulip-ec2-configure-interfaces`, explicitly keeps Python 2, and at least one external ops script, `wal-e`, also still runs on Python 2. See discussion on the respective previous commits that made those explicit. There may also be some other third-party scripts we use, outside of this source tree and running outside our virtualenv, that still run on Python 2.
42 lines
1.1 KiB
Python
Executable File
42 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
from __future__ import absolute_import
|
|
from __future__ import print_function
|
|
|
|
from lib.find_add_class import display, find
|
|
import glob
|
|
import argparse
|
|
import sys
|
|
|
|
# check for the venv
|
|
from lib import sanity_check
|
|
sanity_check.check_venv(__file__)
|
|
|
|
def process_files():
|
|
# type: () -> None
|
|
|
|
description = '''
|
|
Use this tool to find HTML classes that we use in our JS code.
|
|
This looks for calls to addClass, and if you use the -v option,
|
|
you will get a display of (fn, html_class) tuples that
|
|
represent addClass calls.
|
|
|
|
If you call it with no options, the tool acts as a linter, and
|
|
it will complain if it can't resolve the class for an addClass()
|
|
call.
|
|
'''
|
|
|
|
parser = argparse.ArgumentParser(description=description)
|
|
parser.add_argument('-v', '--verbose',
|
|
action='store_true', default=False,
|
|
help='show where calls are')
|
|
args = parser.parse_args()
|
|
|
|
fns = glob.glob('static/js/*.js')
|
|
if args.verbose:
|
|
display(fns)
|
|
else:
|
|
find(fns)
|
|
|
|
if __name__ == '__main__':
|
|
process_files()
|