Commit 703bc461 authored by dpapad's avatar dpapad Committed by Commit Bot

WebUI: Add explicit compress="false" on files passed to unpack_pak.py

These files are purposefully not compressed, since unpack_pack.py
does not support decompressing files.

This is part of a series of CLs, in preparation of compressing all
HTML, JS, CSS, SVG files by default (meaning without requiring
compress="gzip" to be specified).

Bug: 1068407
Change-Id: I2467173ec95bd5086fbbde262dc5206d9112b032
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2149638Reviewed-by: default avatarJohn Lee <johntlee@chromium.org>
Commit-Queue: John Lee <johntlee@chromium.org>
Commit-Queue: dpapad <dpapad@chromium.org>
Auto-Submit: dpapad <dpapad@chromium.org>
Cr-Commit-Position: refs/heads/master@{#759390}
parent cedd9fdb
...@@ -14,80 +14,95 @@ ...@@ -14,80 +14,95 @@
<includes> <includes>
<include name="IDR_BOOKMARKS_APP_JS" <include name="IDR_BOOKMARKS_APP_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/app.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/app.js"
use_base_dir="false" type ="BINDATA" preprocess="true" /> use_base_dir="false" compress="false" type="BINDATA" preprocess="true" />
<include name="IDR_BOOKMARKS_COMMAND_MANAGER_JS" <include name="IDR_BOOKMARKS_COMMAND_MANAGER_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/command_manager.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/command_manager.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_EDIT_DIALOG_JS" <include name="IDR_BOOKMARKS_EDIT_DIALOG_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/edit_dialog.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/edit_dialog.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_FOLDER_NODE_JS" <include name="IDR_BOOKMARKS_FOLDER_NODE_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/folder_node.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/folder_node.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_ITEM_JS" <include name="IDR_BOOKMARKS_ITEM_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/item.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/item.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_LIST_JS" <include name="IDR_BOOKMARKS_LIST_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/list.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/list.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_ROUTER_JS" <include name="IDR_BOOKMARKS_ROUTER_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/router.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/router.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_SHARED_STYLE_JS" <include name="IDR_BOOKMARKS_SHARED_STYLE_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/shared_style.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/shared_style.js"
use_base_dir="false" type ="BINDATA" preprocess="true" /> use_base_dir="false" compress="false" type="BINDATA" preprocess="true" />
<include name="IDR_BOOKMARKS_SHARED_VARS_JS" <include name="IDR_BOOKMARKS_SHARED_VARS_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/shared_vars.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/shared_vars.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_BOOKMARKS_TOOLBAR_JS" <include name="IDR_BOOKMARKS_TOOLBAR_JS"
file="${root_gen_dir}/chrome/browser/resources/bookmarks/toolbar.js" file="${root_gen_dir}/chrome/browser/resources/bookmarks/toolbar.js"
use_base_dir="false" type ="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
</includes> </includes>
<structures> <structures>
<structure name="IDR_BOOKMARKS_ACTIONS_JS" <structure name="IDR_BOOKMARKS_ACTIONS_JS"
file="actions.js" file="actions.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_API_LISTENER_JS" <structure name="IDR_BOOKMARKS_API_LISTENER_JS"
file="api_listener.js" file="api_listener.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_BOOKMARKS_HTML" <structure name="IDR_BOOKMARKS_BOOKMARKS_HTML"
file="bookmarks.html" file="bookmarks.html"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_BOOKMARKS_JS" <structure name="IDR_BOOKMARKS_BOOKMARKS_JS"
file="bookmarks.js" file="bookmarks.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_BROWSER_PROXY_JS" <structure name="IDR_BOOKMARKS_BROWSER_PROXY_JS"
file="browser_proxy.js" file="browser_proxy.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_CONSTANTS_JS" <structure name="IDR_BOOKMARKS_CONSTANTS_JS"
file="constants.js" file="constants.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_DEBOUNCER_JS" <structure name="IDR_BOOKMARKS_DEBOUNCER_JS"
file="debouncer.js" file="debouncer.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_DIALOG_FOCUS_MANAGER_JS" <structure name="IDR_BOOKMARKS_DIALOG_FOCUS_MANAGER_JS"
file="dialog_focus_manager.js" file="dialog_focus_manager.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_DND_MANAGER_JS" <structure name="IDR_BOOKMARKS_DND_MANAGER_JS"
file="dnd_manager.js" file="dnd_manager.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_MOUSE_FOCUS_BEHAVIOR_JS" <structure name="IDR_BOOKMARKS_MOUSE_FOCUS_BEHAVIOR_JS"
file="mouse_focus_behavior.js" file="mouse_focus_behavior.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_REDUCERS_JS" <structure name="IDR_BOOKMARKS_REDUCERS_JS"
file="reducers.js" file="reducers.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_STORE_CLIENT_JS" <structure name="IDR_BOOKMARKS_STORE_CLIENT_JS"
file="store_client.js" file="store_client.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_STORE_JS" <structure name="IDR_BOOKMARKS_STORE_JS"
file="store.js" file="store.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_TYPES_JS" <structure name="IDR_BOOKMARKS_TYPES_JS"
file="types.js" file="types.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_BOOKMARKS_UTIL_JS" <structure name="IDR_BOOKMARKS_UTIL_JS"
file="util.js" file="util.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
</structures> </structures>
</release> </release>
......
...@@ -14,51 +14,64 @@ ...@@ -14,51 +14,64 @@
<includes> <includes>
<include name="IDR_DOWNLOADS_IMAGES_INCOGNITO_MARKER_SVG" <include name="IDR_DOWNLOADS_IMAGES_INCOGNITO_MARKER_SVG"
file="images\incognito_marker.svg" file="images\incognito_marker.svg"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_DOWNLOADS_IMAGES_NO_DOWNLOADS_SVG" <include name="IDR_DOWNLOADS_IMAGES_NO_DOWNLOADS_SVG"
file="images\no_downloads.svg" file="images\no_downloads.svg"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_DOWNLOADS_MOJO_LITE_JS" <include name="IDR_DOWNLOADS_MOJO_LITE_JS"
file="${root_gen_dir}\chrome\browser\ui\webui\downloads\downloads.mojom-lite.js" file="${root_gen_dir}\chrome\browser\ui\webui\downloads\downloads.mojom-lite.js"
use_base_dir="false" use_base_dir="false"
type="BINDATA" /> compress="false"
type="chrome_html" />
<include name="IDR_DOWNLOADS_MANAGER_JS" <include name="IDR_DOWNLOADS_MANAGER_JS"
file="${root_gen_dir}\chrome\browser\resources\downloads\manager.js" file="${root_gen_dir}\chrome\browser\resources\downloads\manager.js"
use_base_dir="false" use_base_dir="false"
preprocess="true" preprocess="true"
compress="false"
type="chrome_html" /> type="chrome_html" />
<include name="IDR_DOWNLOADS_ITEM_JS" <include name="IDR_DOWNLOADS_ITEM_JS"
file="${root_gen_dir}\chrome\browser\resources\downloads\item.js" file="${root_gen_dir}\chrome\browser\resources\downloads\item.js"
use_base_dir="false" use_base_dir="false"
compress="false"
type="chrome_html" /> type="chrome_html" />
<include name="IDR_DOWNLOADS_TOOLBAR_JS" <include name="IDR_DOWNLOADS_TOOLBAR_JS"
file="${root_gen_dir}\chrome\browser\resources\downloads\toolbar.js" file="${root_gen_dir}\chrome\browser\resources\downloads\toolbar.js"
use_base_dir="false" use_base_dir="false"
compress="false"
type="chrome_html" /> type="chrome_html" />
<include name="IDR_DOWNLOADS_ICONS_JS" <include name="IDR_DOWNLOADS_ICONS_JS"
file="${root_gen_dir}\chrome\browser\resources\downloads\icons.js" file="${root_gen_dir}\chrome\browser\resources\downloads\icons.js"
use_base_dir="false" use_base_dir="false"
compress="false"
type="chrome_html" /> type="chrome_html" />
</includes> </includes>
<structures> <structures>
<structure name="IDR_DOWNLOADS_DOWNLOADS_HTML" <structure name="IDR_DOWNLOADS_DOWNLOADS_HTML"
file="downloads.html" file="downloads.html"
preprocess="true" preprocess="true"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_DOWNLOADS_BROWSER_PROXY_JS" <structure name="IDR_DOWNLOADS_BROWSER_PROXY_JS"
file="browser_proxy.js" file="browser_proxy.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_DOWNLOADS_CONSTANTS_JS" <structure name="IDR_DOWNLOADS_CONSTANTS_JS"
file="constants.js" file="constants.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_DOWNLOADS_DOWNLOADS_JS" <structure name="IDR_DOWNLOADS_DOWNLOADS_JS"
file="downloads.js" file="downloads.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_DOWNLOADS_ICON_LOADER_JS" <structure name="IDR_DOWNLOADS_ICON_LOADER_JS"
file="icon_loader.js" file="icon_loader.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_DOWNLOADS_SEARCH_SERVICE_JS" <structure name="IDR_DOWNLOADS_SEARCH_SERVICE_JS"
file="search_service.js" file="search_service.js"
compress="false"
type="chrome_html" /> type="chrome_html" />
</structures> </structures>
</release> </release>
......
...@@ -15,65 +15,75 @@ ...@@ -15,65 +15,75 @@
<!-- Generated Polymer 3 elements --> <!-- Generated Polymer 3 elements -->
<include name="IDR_HISTORY_APP_JS" <include name="IDR_HISTORY_APP_JS"
file="${root_gen_dir}/chrome/browser/resources/history/app.js" file="${root_gen_dir}/chrome/browser/resources/history/app.js"
use_base_dir="false" type="BINDATA" preprocess="true" /> use_base_dir="false" compress="false" type="BINDATA" preprocess="true" />
<include name="IDR_HISTORY_HISTORY_ITEM_JS" <include name="IDR_HISTORY_HISTORY_ITEM_JS"
file="${root_gen_dir}/chrome/browser/resources/history/history_item.js" file="${root_gen_dir}/chrome/browser/resources/history/history_item.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_HISTORY_LIST_JS" <include name="IDR_HISTORY_HISTORY_LIST_JS"
file="${root_gen_dir}/chrome/browser/resources/history/history_list.js" file="${root_gen_dir}/chrome/browser/resources/history/history_list.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_HISTORY_TOOLBAR_JS" <include name="IDR_HISTORY_HISTORY_TOOLBAR_JS"
file="${root_gen_dir}/chrome/browser/resources/history/history_toolbar.js" file="${root_gen_dir}/chrome/browser/resources/history/history_toolbar.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_ROUTER_JS" <include name="IDR_HISTORY_ROUTER_JS"
file="${root_gen_dir}/chrome/browser/resources/history/router.js" file="${root_gen_dir}/chrome/browser/resources/history/router.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_SHARED_STYLE_JS" <include name="IDR_HISTORY_SHARED_STYLE_JS"
file="${root_gen_dir}/chrome/browser/resources/history/shared_style.js" file="${root_gen_dir}/chrome/browser/resources/history/shared_style.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_SHARED_VARS_JS" <include name="IDR_HISTORY_SHARED_VARS_JS"
file="${root_gen_dir}/chrome/browser/resources/history/shared_vars.js" file="${root_gen_dir}/chrome/browser/resources/history/shared_vars.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_SIDE_BAR_JS" <include name="IDR_HISTORY_SIDE_BAR_JS"
file="${root_gen_dir}/chrome/browser/resources/history/side_bar.js" file="${root_gen_dir}/chrome/browser/resources/history/side_bar.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_SYNCED_DEVICE_CARD_JS" <include name="IDR_HISTORY_SYNCED_DEVICE_CARD_JS"
file="${root_gen_dir}/chrome/browser/resources/history/synced_device_card.js" file="${root_gen_dir}/chrome/browser/resources/history/synced_device_card.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_SYNCED_DEVICE_MANAGER_JS" <include name="IDR_HISTORY_SYNCED_DEVICE_MANAGER_JS"
file="${root_gen_dir}/chrome/browser/resources/history/synced_device_manager.js" file="${root_gen_dir}/chrome/browser/resources/history/synced_device_manager.js"
use_base_dir="false" type="BINDATA" /> use_base_dir="false" compress="false" type="BINDATA" />
<include name="IDR_HISTORY_CONSTANTS_JS" <include name="IDR_HISTORY_CONSTANTS_JS"
file="constants.js" file="constants.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_EXTERNS_JS" <include name="IDR_HISTORY_EXTERNS_JS"
file="externs.js" file="externs.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_HISTORY_HTML" <include name="IDR_HISTORY_HISTORY_HTML"
file="history.html" file="history.html"
preprocess="true" preprocess="true"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_HISTORY_JS" <include name="IDR_HISTORY_HISTORY_JS"
file="history.js" file="history.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_IMAGES_SIGN_IN_PROMO_DARK_SVG" <include name="IDR_HISTORY_IMAGES_SIGN_IN_PROMO_DARK_SVG"
file="images\sign_in_promo_dark.svg" file="images\sign_in_promo_dark.svg"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_IMAGES_SIGN_IN_PROMO_SVG" <include name="IDR_HISTORY_IMAGES_SIGN_IN_PROMO_SVG"
file="images\sign_in_promo.svg" file="images\sign_in_promo.svg"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_BROWSER_SERVICE_JS" <include name="IDR_HISTORY_BROWSER_SERVICE_JS"
file="browser_service.js" file="browser_service.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_LAZY_LOAD_JS" <include name="IDR_HISTORY_LAZY_LOAD_JS"
file="lazy_load.js" file="lazy_load.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_QUERY_MANAGER_JS" <include name="IDR_HISTORY_QUERY_MANAGER_JS"
file="query_manager.js" file="query_manager.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
<include name="IDR_HISTORY_SEARCHED_LABEL_JS" <include name="IDR_HISTORY_SEARCHED_LABEL_JS"
file="searched_label.js" file="searched_label.js"
compress="false"
type="BINDATA" /> type="BINDATA" />
</includes> </includes>
</release> </release>
......
...@@ -17,39 +17,51 @@ ...@@ -17,39 +17,51 @@
<structures> <structures>
<structure name="IDR_SETTINGS_IMAGES_COOKIES_BANNER_SVG" <structure name="IDR_SETTINGS_IMAGES_COOKIES_BANNER_SVG"
file="images/cookies_banner.svg" file="images/cookies_banner.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_COOKIES_BANNER_DARK_SVG" <structure name="IDR_SETTINGS_IMAGES_COOKIES_BANNER_DARK_SVG"
file="images/cookies_banner_dark.svg" file="images/cookies_banner_dark.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_NEUTRAL_SVG" <structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_NEUTRAL_SVG"
file="images/password_check_neutral.svg" file="images/password_check_neutral.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_NEUTRAL_DARK_SVG" <structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_NEUTRAL_DARK_SVG"
file="images/password_check_neutral_dark.svg" file="images/password_check_neutral_dark.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_POSITIVE_SVG" <structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_POSITIVE_SVG"
file="images/password_check_positive.svg" file="images/password_check_positive.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_POSITIVE_DARK_SVG" <structure name="IDR_SETTINGS_IMAGES_PASSWORD_CHECK_POSITIVE_DARK_SVG"
file="images/password_check_positive_dark.svg" file="images/password_check_positive_dark.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_PERMISSIONS_BANNER_SVG" <structure name="IDR_SETTINGS_IMAGES_PERMISSIONS_BANNER_SVG"
file="images/permissions_banner.svg" file="images/permissions_banner.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_PERMISSIONS_BANNER_DARK_SVG" <structure name="IDR_SETTINGS_IMAGES_PERMISSIONS_BANNER_DARK_SVG"
file="images/permissions_banner_dark.svg" file="images/permissions_banner_dark.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_SAFE_BROWSING_BANNER_SVG" <structure name="IDR_SETTINGS_IMAGES_SAFE_BROWSING_BANNER_SVG"
file="images/safe_browsing_banner.svg" file="images/safe_browsing_banner.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_SAFE_BROWSING_BANNER_DARK_SVG" <structure name="IDR_SETTINGS_IMAGES_SAFE_BROWSING_BANNER_DARK_SVG"
file="images/safe_browsing_banner_dark.svg" file="images/safe_browsing_banner_dark.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_SYNC_BANNER_SVG" <structure name="IDR_SETTINGS_IMAGES_SYNC_BANNER_SVG"
file="images/sync_banner.svg" file="images/sync_banner.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
<structure name="IDR_SETTINGS_IMAGES_SYNC_BANNER_DARK_SVG" <structure name="IDR_SETTINGS_IMAGES_SYNC_BANNER_DARK_SVG"
file="images/sync_banner_dark.svg" file="images/sync_banner_dark.svg"
compress="false"
type="chrome_html" /> type="chrome_html" />
</structures> </structures>
</release> </release>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment