Skip to content

Commit

Permalink
chore: remove additional incubator references (#12336)
Browse files Browse the repository at this point in the history
* chore: remove additional incubator references
remove incubator.png from the main docs page

* fix: improve text for contributing-page.mdx

* fix: lint no-unused-vars
  • Loading branch information
amitmiran137 authored Jan 11, 2021
1 parent c61167d commit 4cf3f99
Show file tree
Hide file tree
Showing 8 changed files with 195 additions and 212 deletions.
370 changes: 185 additions & 185 deletions RELEASING/release-notes-0-38/README.md

Large diffs are not rendered by default.

8 changes: 0 additions & 8 deletions docs/src/components/image.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,6 @@ const Image = ({
}
}
incubatorSm: file(relativePath: { eq: "src/images/incubator.png" }) {
childImageSharp {
fixed(width: 300) {
...GatsbyImageSharpFixed
}
}
}
stackoverflow: file(
relativePath: { eq: "src/images/stack_overflow.png" }
) {
Expand Down
Binary file removed docs/src/images/incubator.png
Binary file not shown.
5 changes: 2 additions & 3 deletions docs/src/pages/docs/contributing-page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ route: /docs/contribution

## Contributing to Superset

Superset is currently being incubated at
[the Apache Software Foundation](https://www.apache.org/theapacheway/index.html). The core
contributors (or committers) to Superset communicate primarily in the following channels (all of
Superset is an [Apache Software foundation](https://www.apache.org/theapacheway/index.html) project.
The core contributors (or committers) to Superset communicate primarily in the following channels (all of
which you can join):

- [Mailing list](https://lists.apache.org/list.html?dev@superset.apache.org)
Expand Down
8 changes: 0 additions & 8 deletions docs/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import GitHubButton from 'react-github-btn';

import { Databases } from '../resources/data';
import Layout from '../components/layout';
import Image from '../components/image';
import DbImage from '../components/DbImage';
import 'antd/dist/antd.css';
import SEO from '../components/seo';
Expand Down Expand Up @@ -110,10 +109,6 @@ const titleContainer = css`
width: 400px;
}
}
.incubator {
margin-top: 40px;
margin-bottom: 30px;
}
.alert {
color: #0c5460;
background-color: #d1ecf1;
Expand Down Expand Up @@ -329,9 +324,6 @@ const Theme = () => {
</GitHubButton>
</span>
</div>
<div className="incubator">
<Image imageName="incubatorSm" />
</div>
<div>
<Link to="/docs/intro">
<Button type="primary" size="medium">
Expand Down
6 changes: 3 additions & 3 deletions scripts/cancel_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Example:
# Set up
export GITHUB_TOKEN=394ba3b48494ab8f930fbc93
export GITHUB_REPOSITORY=apache/incubator-superset
export GITHUB_REPOSITORY=apache/superset
# cancel previous jobs for a PR
./cancel_github_workflows.py 1042
Expand All @@ -42,7 +42,7 @@
from typing_extensions import Literal

github_token = os.environ.get("GITHUB_TOKEN")
github_repo = os.environ.get("GITHUB_REPOSITORY", "apache/incubator-superset")
github_repo = os.environ.get("GITHUB_REPOSITORY", "apache/superset")


def request(method: Literal["GET", "POST", "DELETE", "PUT"], endpoint: str, **kwargs):
Expand Down Expand Up @@ -111,7 +111,7 @@ def print_commit(commit):
@click.option(
"--repo",
default=github_repo,
help="The github repository name. For example, apache/incubator-superset.",
help="The github repository name. For example, apache/superset.",
)
@click.option(
"--event",
Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@

# usage: ./github-changes 0.20.0 0.20.1
# will overwrites the local CHANGELOG.md, somehow you need to merge it in
github-changes -o apache -r incubator-superset --token $GITHUB_TOKEN --between-tags $1...$2
github-changes -o apache -r superset --token $GITHUB_TOKEN --between-tags $1...$2
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ def upgrade():
Remove any erroneous time grainularity fields from slices foor those visualization
types which do not support time granularity.
:see: https://github.com/apache/incubator-superset/pull/8674
:see: https://github.com/apache/incubator-superset/pull/8764
:see: https://github.com/apache/incubator-superset/pull/8800
:see: https://github.com/apache/incubator-superset/pull/8825
:see: https://github.com/apache/superset/pull/8674
:see: https://github.com/apache/superset/pull/8764
:see: https://github.com/apache/superset/pull/8800
:see: https://github.com/apache/superset/pull/8825
"""

bind = op.get_bind()
Expand Down

0 comments on commit 4cf3f99

Please sign in to comment.