Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
[![Linting](https://img.shields.io/badge/PEP8%20by-Hound%20CI-a873d1.svg)](https://houndci.com)

## Documentation
This repository is a part of the ShotGrid Pipeline Toolkit.
This repository is a part of the Flow Production Tracking Toolkit.

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

## Using this app in your Setup
All the apps that are part of our standard app suite are pushed to our App Store.
Expand Down
16 changes: 8 additions & 8 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@

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

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

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


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

## Additional Information

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).
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).
8 changes: 5 additions & 3 deletions python/command_runner/interact.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ def request_input(self, message):
:returns: Information entered by user.
:rtype: str
"""
input, ok = QtGui.QInputDialog.getText(self._parent, "ShotGrid", message)
input, ok = QtGui.QInputDialog.getText(
self._parent, "Flow Production Tracking", message
)
return input

def ask_yn_question(self, message):
Expand All @@ -47,7 +49,7 @@ def ask_yn_question(self, message):
logger.warning("Yn")
res = QtGui.QMessageBox.question(
self._parent,
"ShotGrid",
"Flow Production Tracking",
message,
QtGui.QMessageBox.Yes | QtGui.QMessageBox.No,
)
Expand Down Expand Up @@ -75,7 +77,7 @@ def ask_yna_question(self, message, force_prompt=False):

res = QtGui.QMessageBox.question(
self._parent,
"ShotGrid",
"Flow Production Tracking",
message,
QtGui.QMessageBox.Yes | QtGui.QMessageBox.YesToAll | QtGui.QMessageBox.No,
)
Expand Down
6 changes: 3 additions & 3 deletions python/create_sandbox/dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def _process(self):
current_user_data = sgtk.util.get_current_user(self._bundle.sgtk)

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