Skip to content

Commit 92434f3

Browse files
SG-34323 - Rebranding (#9)
* Change all the shotgrid/shotgun occurrences in the repository. * Update text occurrences. * Update text.
1 parent 4aab579 commit 92434f3

4 files changed

Lines changed: 18 additions & 16 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
[![Linting](https://img.shields.io/badge/PEP8%20by-Hound%20CI-a873d1.svg)](https://houndci.com)
44

55
## Documentation
6-
This repository is a part of the ShotGrid Pipeline Toolkit.
6+
This repository is a part of the Flow Production Tracking Toolkit.
77

88
- For more information about this app and for release notes, *see the wiki section*.
99
- For general information and documentation, click here: https://developer.shotgridsoftware.com/d587be80/?title=Integrations+User+Guide
10-
- For information about ShotGrid in general, click here: https://help.autodesk.com/view/SGSUB/ENU/
10+
- For information about Flow Production Tracking in general, click here: https://help.autodesk.com/view/SGSUB/ENU/
1111

1212
## Using this app in your Setup
1313
All the apps that are part of our standard app suite are pushed to our App Store.

SECURITY.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@
44

55
At Autodesk, we know that the security of your data is critical to your studio’s
66
operation.
7-
As the industry shifts to the cloud, ShotGrid knows that security and service
8-
models are more important than ever.
7+
As the industry shifts to the cloud, Flow Production Tracking knows that security
8+
and service models are more important than ever.
99

1010
The confidentiality, integrity, and availability of your content is at the top
1111
of our priority list.
12-
Not only do we have a team of ShotGrid engineers dedicated to platform security
13-
and performance, we are also backed by Autodesk’s security team, also invests
14-
heavily in the security for broad range of industries and customers.
12+
Not only do we have a team of Flow Production Tracking engineers dedicated to
13+
platform security and performance, we are also backed by Autodesk’s security team,
14+
also invests heavily in the security for broad range of industries and customers.
1515
We constantly reassess, develop, and improve our risk management program because
1616
we know that the landscape of security is ever-changing.
1717

18-
If you believe you have found a security vulnerability in any ShotGrid-owned
19-
repository, please report it to us as described below.
18+
If you believe you have found a security vulnerability in any
19+
Flow Production Tracking-owned repository, please report it to us as described below.
2020

2121

2222
## Reporting Security Issues
@@ -32,4 +32,4 @@ configurations, reproduction steps, exploit code, impact, etc.
3232

3333
## Additional Information
3434

35-
Please check out the [ShotGrid Security White Paper](https://help.autodesk.com/view/SGSUB/ENU/?guid=SG_Administrator_ar_general_security_ar_security_white_paper_html).
35+
Please check out the [Flow Production Tracking Security White Paper](https://help.autodesk.com/view/SGSUB/ENU/?guid=SG_Administrator_ar_general_security_ar_security_white_paper_html).

python/command_runner/interact.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ def request_input(self, message):
3434
:returns: Information entered by user.
3535
:rtype: str
3636
"""
37-
input, ok = QtGui.QInputDialog.getText(self._parent, "ShotGrid", message)
37+
input, ok = QtGui.QInputDialog.getText(
38+
self._parent, "Flow Production Tracking", message
39+
)
3840
return input
3941

4042
def ask_yn_question(self, message):
@@ -47,7 +49,7 @@ def ask_yn_question(self, message):
4749
logger.warning("Yn")
4850
res = QtGui.QMessageBox.question(
4951
self._parent,
50-
"ShotGrid",
52+
"Flow Production Tracking",
5153
message,
5254
QtGui.QMessageBox.Yes | QtGui.QMessageBox.No,
5355
)
@@ -75,7 +77,7 @@ def ask_yna_question(self, message, force_prompt=False):
7577

7678
res = QtGui.QMessageBox.question(
7779
self._parent,
78-
"ShotGrid",
80+
"Flow Production Tracking",
7981
message,
8082
QtGui.QMessageBox.Yes | QtGui.QMessageBox.YesToAll | QtGui.QMessageBox.No,
8183
)

python/create_sandbox/dialog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def _process(self):
140140
current_user_data = sgtk.util.get_current_user(self._bundle.sgtk)
141141

142142
# ok we are good to go!
143-
logger.debug("Creating new pipeline config in ShotGrid...")
143+
logger.debug("Creating new pipeline config in Flow Production Tracking...")
144144
try:
145145
sg_data = self._bundle.shotgun.create(
146146
"PipelineConfiguration",
@@ -161,8 +161,8 @@ def _process(self):
161161
# error message
162162
if "PipelineConfiguration cannot be created by this user" in str(e):
163163
raise RuntimeError(
164-
"You do not have permission to create Pipeline Configurations in ShotGrid. "
165-
"Please contact your site administrator."
164+
"You do not have permission to create Pipeline Configurations in "
165+
"Flow Production Tracking. Please contact your site administrator."
166166
)
167167
else:
168168
# re-raise

0 commit comments

Comments
 (0)