RASCSI/python/web
dependabot[bot] 017acbfd09 Bump jinja2 from 3.1.3 to 3.1.4 in /python/web
Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.3 to 3.1.4.
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/jinja/compare/3.1.3...3.1.4)

---
updated-dependencies:
- dependency-name: jinja2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-05-07 09:33:07 +09:00
..
mock/bin Add web UI notification for under voltage/throttling events (#1203) 2023-08-31 23:23:12 -07:00
service-infra revert moving webmin to sub-path 2023-11-18 16:12:46 +00:00
src Commit refreshed localizations 2024-05-01 16:07:41 +09:00
tests Web UI: Rework the Attach Device section to be universal (#1393) 2023-12-07 17:38:24 -08:00
.prettierrc.json New theme for web UI (#957) 2022-11-14 09:32:15 -08:00
.stylelintrc.json Bump stylelint to 15.10.2 and remove deprecated module (#1189) 2023-07-28 22:53:12 -07:00
README.md Run pybabel extract against the src subdir to pull in only piscsi strings (#1032) 2022-12-11 14:17:14 -08:00
__init__.py restructuring towards python client library #455 (#613) 2022-01-21 15:08:29 -08:00
babel.cfg Remove Jinja extentions that are now built in (#1008) 2022-11-28 13:05:19 -08:00
genisoimage_hfs_resource_fork_map.txt Added ability to set the TYPE/CREATOR resource fork attributes of file(s) inside newly-created cd-rom ISO images of type HFS (#1377) 2023-11-19 15:39:02 -08:00
package-lock.json Bump postcss from 8.4.18 to 8.4.31 in /python/web (#1241) 2023-10-22 19:06:48 +09:00
package.json Bump stylelint to 15.10.2 and remove deprecated module (#1189) 2023-07-28 22:53:12 -07:00
pyproject.toml Run web API test suite in GitHub Actions (#1009) 2022-12-04 14:31:57 +00:00
requirements-dev.txt Bump werkzeug from 3.0.1 to 3.0.3 in /python/web 2024-05-07 09:32:39 +09:00
requirements.txt Bump jinja2 from 3.1.3 to 3.1.4 in /python/web 2024-05-07 09:33:07 +09:00
start.sh reset Python venv if RESET_VENV is set 2023-11-13 17:52:05 -05:00
translation_update.sh Create venv if it is missing (#1089) 2023-02-03 22:24:21 -08:00

README.md

PiSCSI Web

Setup local dev env

# Change to python/web/src
$ cd python/web
# Make a virtual env named venv
$ python3 -m venv venv
# Use that virtual env in this shell
$ source venv/bin/activate
# Install requirements
$ pip install -r requirements.txt
# Use mocks and a temp dir - start the web server
$ BASE_DIR=/tmp/images/ PATH=$PATH:`pwd`/mock/bin/ cd python/web && PYTHON_COMMON_PATH=$(dirname $PWD)/common/src PYTHONPATH=$PWD/src:${PYTHON_COMMON_PATH} python3 src/web.py

Mocks for local development

You may edit the files under mock/bin to simulate Linux command responses. TODO: piscsi-web uses protobuf commands to send and receive data from piscsi. A separate mocking solution will be needed for this interface.

(Optional) Pushing to the Pi via git

This is a setup for pushing code changes from your local development environment to the Raspberry Pi without a roundtrip to the remote GitHub repository.

Setup a bare repo on the piscsi

$ ssh pi@piscsi
$ mkdir /home/pi/dev.git && cd /home/pi/dev.git
$ git --bare init
Initialized empty Git repository in /home/pi/dev.git

Locally

$ cd ~/source/PISCSI
$ git remote add pi ssh://pi@piscsi/home/pi/dev.git
$ git push pi master

Localizing the Web Interface

We use the Flask-Babel library and Flask/Jinja2 extension for internationalization (i18n).

It uses the 'pybabel' command line tool for extracting and compiling localizations. The Web Interface start script will automatically compile localizations upon launch.

Activate the Python venv in src/web/ to use it:

$ cd python/web
$ source venv/bin/activate
$ pybabel --help

To create a new localization, it needs to be added to the LANGAUGES constant in web/settings.py. To localize messages coming from the PiSCSI backend, update also code in raspberrypi/localizer.cpp in the PiSCSI C++ code.

Once this is done, it is time to localize the Python code. The below steps are derived from the Flask-Babel documentation.

First, generate the raw messages.pot file containing extracted strings.

$ pybabel extract -F babel.cfg -o messages.pot src

Initialize a new localization

When adding a localization for a new language, initialize the directory structure. Replace 'xx' with the two character code for the language.

$ pybabel init -i messages.pot -d src/translations -l xx

Update an existing localization

Tip: Use the script translation_update.sh in this dir to automatically extract strings, update existing localizations, and print translation statistics.

After strings have been added or changed in the code, update the existing localizations.

$ pybabel update -i messages.pot -d src/translations

Then edit the updated messages.po file for your language. Make sure to update fuzzy strings and translate new ones.

When you are ready to contribute new or updated localizations, use the same Gitflow Workflow as used for any code contributions to submit PRs against the develop branch.

Working with PO files

See the GNU gettext documentation for an introduction to the PO file format.

We make heavy use of python-format for formatting, for instance:

#: file_cmds.py:353
#, python-format
msgid "%(file_name)s downloaded to %(save_dir)s"
msgstr "Laddade ner %(file_name)s till %(save_dir)s"

There are also a few instances of formatting in JavaScript:

#: templates/index.html:381
msgid "Server responded with code: {{statusCode}}"
msgstr "Servern svarade med kod: {{statusCode}}"

And with html tags:

#: templates/index.html:304
#, python-format
msgid ""
"Emulates a SCSI DaynaPORT Ethernet Adapter. <a href=\"%(url)s\">Host "
"drivers and configuration required</a>."
msgstr ""
"Emulerar en SCSI DaynaPORT ethernet-adapter. <a href=\"%(url)s\">Kräver "
"drivrutiner och inställningar</a>."

Contributing to the project

New or updated localizations are treated just like any other code change. See the project README for further information.

(Optional) See translation stats for a localization

Install the gettext package and use msgfmt to see the translation progress.

$ sudo apt install gettext
$ cd python/web/src
$ msgfmt --statistics translations/sv/LC_MESSAGES/messages.po
215 translated messages, 1 untranslated message.