Skip to content

Commit de8b570

Browse files
authored
Use new Redis logo and website (#3233)
Use the new logo, and use the SVG version of the logo in all places, including the README. Replace most of the redis.com URLs with their new redis.io counterparts. Co-authored-by: Gabriel Erzse <[email protected]>
1 parent cefc36e commit de8b570

File tree

7 files changed

+21
-43
lines changed

7 files changed

+21
-43
lines changed

README.md

+7-9
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,15 @@ The Python interface to the Redis key-value store.
1919

2020
## How do I Redis?
2121

22-
[Learn for free at Redis University](https://university.redis.com/)
22+
[Learn for free at Redis University](https://redis.io/university/)
2323

24-
[Build faster with the Redis Launchpad](https://launchpad.redis.com/)
24+
[Try the Redis Cloud](https://redis.io/try-free/)
2525

26-
[Try the Redis Cloud](https://redis.com/try-free/)
26+
[Dive in developer tutorials](https://redis.io/learn)
2727

28-
[Dive in developer tutorials](https://developer.redis.com/)
28+
[Join the Redis community](https://redis.io/community/)
2929

30-
[Join the Redis community](https://redis.com/community/)
31-
32-
[Work at Redis](https://redis.com/company/careers/jobs/)
30+
[Work at Redis](https://redis.io/careers/)
3331

3432
## Installation
3533

@@ -159,7 +157,7 @@ The following example shows how to utilize [Redis Pub/Sub](https://redis.io/docs
159157

160158
### Author
161159

162-
redis-py is developed and maintained by [Redis Inc](https://redis.com). It can be found [here](
160+
redis-py is developed and maintained by [Redis Inc](https://redis.io). It can be found [here](
163161
https://github.com/redis/redis-py), or downloaded from [pypi](https://pypi.org/project/redis/).
164162

165163
Special thanks to:
@@ -171,4 +169,4 @@ Special thanks to:
171169
system.
172170
- Paul Hubbard for initial packaging support.
173171

174-
[![Redis](./docs/logo-redis.png)](https://www.redis.com)
172+
[![Redis](./docs/_static/logo-redis.svg)](https://redis.io)

docs/_static/logo-redis.svg

+10
Loading

docs/_static/redis-cube-red-white-rgb.svg

-30
This file was deleted.

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158

159159
# The name of an image file (relative to this directory) to place at the top
160160
# of the sidebar.
161-
html_logo = "_static/redis-cube-red-white-rgb.svg"
161+
html_logo = "_static/logo-redis.svg"
162162

163163
# The name of an image file (within the static path) to use as favicon of the
164164
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32

docs/logo-redis.png

-8.19 KB
Binary file not shown.

redis/commands/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5269,7 +5269,7 @@ def pubsub_shardnumsub(self, *args: ChannelT, **kwargs) -> ResponseT:
52695269
class ScriptCommands(CommandsProtocol):
52705270
"""
52715271
Redis Lua script commands. see:
5272-
https://redis.com/ebook/part-3-next-steps/chapter-11-scripting-redis-with-lua/
5272+
https://redis.io/ebook/part-3-next-steps/chapter-11-scripting-redis-with-lua/
52735273
"""
52745274

52755275
def _eval(

redis/commands/timeseries/info.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class TSInfo:
66
"""
77
Hold information and statistics on the time-series.
88
Can be created using ``tsinfo`` command
9-
https://oss.redis.com/redistimeseries/commands/#tsinfo.
9+
https://redis.io/docs/latest/commands/ts.info/
1010
"""
1111

1212
rules = []
@@ -57,7 +57,7 @@ def __init__(self, args):
5757
Policy that will define handling of duplicate samples.
5858
5959
Can read more about on
60-
https://oss.redis.com/redistimeseries/configuration/#duplicate_policy
60+
https://redis.io/docs/latest/develop/data-types/timeseries/configuration/#duplicate_policy
6161
"""
6262
response = dict(zip(map(nativestr, args[::2]), args[1::2]))
6363
self.rules = response.get("rules")

0 commit comments

Comments
 (0)