IAL32 commented on code in PR #28894:
URL: https://github.com/apache/airflow/pull/28894#discussion_r1069164745


##########
airflow/www/app.py:
##########
@@ -81,10 +82,18 @@ def create_app(config=None, testing=False):
 
     flask_app.config["PERMANENT_SESSION_LIFETIME"] = 
timedelta(minutes=settings.get_session_lifetime_config())
     flask_app.config.from_pyfile(settings.WEBSERVER_CONFIG, silent=True)
-    flask_app.config["APP_NAME"] = conf.get(section="webserver", 
key="instance_name", fallback="Airflow")
     flask_app.config["TESTING"] = testing
     flask_app.config["SQLALCHEMY_DATABASE_URI"] = conf.get("database", 
"SQL_ALCHEMY_CONN")
 
+    instance_name = conf.get(section="webserver", key="instance_name", 
fallback="Airflow")
+    instance_name_has_markup = conf.getboolean(
+        section="webserver", key="instance_name_has_markup", fallback=False
+    )
+    if instance_name_has_markup:
+        instance_name = re.sub(r"<[^<]+?>", "", instance_name)

Review Comment:
   > Do we want to also un-escape the value? (for &amp; etc) 
   
   Something like https://docs.python.org/3/library/html.html#html.unescape ?
   
   From the docs:
   > Convert all named and numeric character references (e.g. `&gt;`, `&#62;`, 
`&#x3e;`) in the string s to the corresponding Unicode characters. This 
function uses the rules defined by the HTML 5 standard for both valid and 
invalid character references, and the [list of HTML 5 named character 
references](https://docs.python.org/3/library/html.entities.html#html.entities.html5).
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to