diff --git a/README.md b/README.md index 95ed014..0b846ac 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/SECURITY.md b/SECURITY.md index 7c2bf3c..829b268 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -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 @@ -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). diff --git a/python/command_runner/interact.py b/python/command_runner/interact.py index 4ed55c8..f05d666 100644 --- a/python/command_runner/interact.py +++ b/python/command_runner/interact.py @@ -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): @@ -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, ) @@ -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, ) diff --git a/python/create_sandbox/dialog.py b/python/create_sandbox/dialog.py index c54dd3f..3bb82e4 100644 --- a/python/create_sandbox/dialog.py +++ b/python/create_sandbox/dialog.py @@ -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", @@ -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