Skip to content

Commit 5c4a79d

Browse files
SG-34073-rebranding (#91)
* Change all the shotgrid/shotgun occurrences in the repository. * Update README.md --------- Co-authored-by: Carlos Villavicencio <[email protected]>
1 parent 0af39f9 commit 5c4a79d

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

README.md

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

6-
# Shotgun Event Framework
6+
# Flow Production Tracking Event Framework
77
This software was originaly developed by [Patrick
88
Boucher](http://www.patrickboucher.com) with support from [Rodeo
99
Fx](http://rodeofx.com) and Oblique. It is now part of
10-
[Shotgun Software](http://www.shotgunsoftware.com)'s [open source
10+
[Flow Production Tracking Software](https://www.autodesk.com/products/flow-production-tracking)'s [open source
1111
initiative](https://github.com/shotgunsoftware).
1212

1313
This software is provided under the MIT License that can be found in the LICENSE
@@ -16,7 +16,7 @@ file or at the [Open Source Initiative](http://www.opensource.org/licenses/mit-l
1616

1717
## Overview
1818

19-
When you want to access the Shotgun event stream, the preferred way to do so it
19+
When you want to access the Flow Production Tracking event stream, the preferred way to do so it
2020
to monitor the events table, get any new events, process them and repeat.
2121

2222
A lot of stuff is required for this process to work successfully, stuff that may
@@ -34,7 +34,7 @@ The daemon handles:
3434
- Registering plugins from one or more specified paths.
3535
- Deactivate any crashing plugins.
3636
- Reloading plugins when they change on disk.
37-
- Monitoring the Shotgun event stream.
37+
- Monitoring the Flow Production Tracking event stream.
3838
- Remembering the last processed event id and any backlog.
3939
- Starting from the last processed event id on daemon startup.
4040
- Catching any connection errors.

src/examplePlugins/docs/logArgs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This is an EXAMPLE PLUGIN.
44

5-
Use this plugin to determine if the Shotgun Event Daemon has been successfully
5+
Use this plugin to determine if the Flow Production Tracking Event Daemon has been successfully
66
installed. It will log all events in Shotgun by spitting out the event
77
dictionary.
88

src/examplePlugins/entity_status_update_task_status.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
"""
1212
This plugin was created for the Shotgun Developer Learning series video titled,
13-
"The Shotgun Event Daemon." See this page for details:
13+
"The Flow Production Tracking Event Daemon." See this page for details:
1414
1515
https://support.shotgunsoftware.com/hc/en-us/articles/115002525494-SG-Learning-Developer-Training
1616
@@ -29,7 +29,7 @@
2929

3030
def registerCallbacks(reg):
3131
"""
32-
This function is run when the Shotgun Event Daemon starts, if this file
32+
This function is run when the Flow Production Tracking Event Daemon starts, if this file
3333
(__file__) lives in the plugin directory specified by the daemon's config
3434
file. Typically the registerCallback method should be called from the
3535
available reg object.

src/shotgunEventDaemon.conf.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,5 +123,5 @@ from: [email protected]
123123
124124

125125
# An email subject prefix that can be used by mail clients to help sort out
126-
# alerts sent by the Shotgun event framework.
126+
# alerts sent by the Flow Production Tracking event framework.
127127
subject: [SG]

src/shotgunEventDaemon.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/usr/bin/env python
22
#
3-
# Init file for Shotgun event daemon
3+
# Init file for Flow Production Tracking event daemon
44
#
55
# chkconfig: 345 99 00
6-
# description: Shotgun event daemon
6+
# description: Flow Production Tracking event daemon
77
#
88
### BEGIN INIT INFO
99
# Provides: shotgunEvent
@@ -12,8 +12,8 @@
1212
# Required-Stop: $network
1313
# Should-Stop: $remote_fs
1414
# Default-Start: 2 3 4 5
15-
# Short-Description: Shotgun event daemon
16-
# Description: Shotgun event daemon
15+
# Short-Description: Flow Production Tracking event daemon
16+
# Description: Flow Production Tracking event daemon
1717
### END INIT INFO
1818

1919
"""
@@ -530,7 +530,7 @@ def _getNewEvents(self):
530530
Fetch new events from Shotgun.
531531
532532
@return: Recent events that need to be processed by the engine.
533-
@rtype: I{list} of Shotgun event dictionaries.
533+
@rtype: I{list} of Flow Production Tracking event dictionaries.
534534
"""
535535
nextEventId = None
536536
for newId in [
@@ -1004,7 +1004,7 @@ def __getattr__(self, name):
10041004

10051005
class Callback(object):
10061006
"""
1007-
A part of a plugin that can be called to process a Shotgun event.
1007+
A part of a plugin that can be called to process a Flow Production Tracking event.
10081008
"""
10091009

10101010
def __init__(
@@ -1018,7 +1018,7 @@ def __init__(
10181018
stopOnError=True,
10191019
):
10201020
"""
1021-
@param callback: The function to run when a Shotgun event occurs.
1021+
@param callback: The function to run when a Flow Production Tracking event occurs.
10221022
@type callback: A function object.
10231023
@param engine: The engine that will dispatch to this callback.
10241024
@type engine: L{Engine}.
@@ -1090,7 +1090,7 @@ def process(self, event):
10901090
If an error occurs, it will be logged appropriately and the callback
10911091
will be deactivated.
10921092
1093-
@param event: The Shotgun event to process.
1093+
@param event: The Flow Production Tracking event to process.
10941094
@type event: I{dict}
10951095
"""
10961096
# set session_uuid for UI updates
@@ -1242,7 +1242,7 @@ def emit(self, record):
12421242

12431243
class EventDaemonError(Exception):
12441244
"""
1245-
Base error for the Shotgun event system.
1245+
Base error for the Flow Production Tracking event system.
12461246
"""
12471247

12481248
pass
@@ -1264,7 +1264,7 @@ class WindowsService(win32serviceutil.ServiceFramework):
12641264
"""
12651265

12661266
_svc_name_ = "ShotgunEventDaemon"
1267-
_svc_display_name_ = "Shotgun Event Handler"
1267+
_svc_display_name_ = "Flow Production Tracking Event Handler"
12681268

12691269
def __init__(self, args):
12701270
win32serviceutil.ServiceFramework.__init__(self, args)

0 commit comments

Comments
 (0)