You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2024/03/20 17:59:05 UTC

(superset) branch clarifying-target-path updated (c97674bbe6 -> 02f3c70a93)

This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a change to branch clarifying-target-path
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit c97674bbe6 typo
    omit b4f925c96d chore: clarifying doc comments about LOGO_TARGET_PATH
     add 5e8459bb91 fix: Hive integration test (#27523)
     new 4e98eb4585 chore: clarifying doc comments about LOGO_TARGET_PATH
     new 02f3c70a93 typo

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c97674bbe6)
            \
             N -- N -- N   refs/heads/clarifying-target-path (02f3c70a93)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 tests/integration_tests/charts/data/api_tests.py | 3 +++
 1 file changed, 3 insertions(+)


(superset) 01/02: chore: clarifying doc comments about LOGO_TARGET_PATH

Posted by ru...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch clarifying-target-path
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 4e98eb4585b25d1d87d5c2ec312166eb02b0a454
Author: Evan Rusackas <ev...@rusackas.com>
AuthorDate: Tue Mar 19 15:59:11 2024 -0600

    chore: clarifying doc comments about LOGO_TARGET_PATH
---
 superset/config.py | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/superset/config.py b/superset/config.py
index 197e4bac42..87e42a208c 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -288,8 +288,10 @@ APP_NAME = "Superset"
 # Specify the App icon
 APP_ICON = "/static/assets/images/superset-logo-horiz.png"
 
-# Specify where clicking the logo would take the user
-# e.g. setting it to '/' would take the user to '/superset/welcome/'
+# Specify where clicking the logo would take the user'
+# Default value of None will take you to '/superset/welcome'
+# You can also speicify a relative URL e.g. '/superset/welcome' or '/dashboards/list'
+# or you can specify a full URL e.g. 'https://foo.bar'
 LOGO_TARGET_PATH = None
 
 # Specify tooltip that should appear when hovering over the App Icon/Logo


(superset) 02/02: typo

Posted by ru...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch clarifying-target-path
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 02f3c70a9328ff0facf9b933b80e9765c5ce6d6d
Author: Evan Rusackas <ev...@preset.io>
AuthorDate: Wed Mar 20 10:56:27 2024 -0600

    typo
---
 superset/config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset/config.py b/superset/config.py
index 87e42a208c..2f6ce13694 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -290,7 +290,7 @@ APP_ICON = "/static/assets/images/superset-logo-horiz.png"
 
 # Specify where clicking the logo would take the user'
 # Default value of None will take you to '/superset/welcome'
-# You can also speicify a relative URL e.g. '/superset/welcome' or '/dashboards/list'
+# You can also specify a relative URL e.g. '/superset/welcome' or '/dashboards/list'
 # or you can specify a full URL e.g. 'https://foo.bar'
 LOGO_TARGET_PATH = None