This rst file is for testing the various Sphinx styles and class conversions that we'll find in a Sphinx rst file. Ideally we want to run through everything pretty often.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from docutils import nodes | |
from docutils.parsers.rst import directives, Directive | |
PARAGRAPH_CODE = """ | |
<div class="panel {panel_type}"> | |
<div class="panel-heading"> | |
<h3 class="panel-title">{panel_title}</h3> | |
</div> | |
<div class="panel-body"> | |
<p class="panel-text">{panel_content}</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
def parse_args(): | |
parser = argparse.ArgumentParser() | |
# No trigger | |
parser.add_argument( | |
"no indent", | |
help="this isn't going to have an indent" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/usr/bin/python | |
# SMPTE TimeCode Segement | |
# By Sean Wallitsch, 2014/04/19 | |
""" | |
Contains a TimeCodeSegment class that allows input of SMPTE hours, | |
minutes, seconds, frames, fps and desired duration. | |
The class will then contain a start, end, and duration SMPTE | |
timecode values, stored as strings such as: | |
'12:23:15:10' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__author__ = 'SurpriseTRex' | |
def draw_constant(res=10): | |
"""Re-draws a Read node using Constant nodes as pixels.""" | |
# Checks that the user has selected a Read node. | |
try: | |
node = nuke.selectedNode() | |
except ValueError: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ============================================================================= | |
# Controlling Nuke Lut Behavior | |
# ============================================================================= | |
# From: Controlling Nuke Lut Behavior | |
# http://shidarin.github.io/2013/controlling-nuke-lut-behavior/ | |
# By: Sean Wallitsch ([email protected]) | |
# ============================================================================= | |
"""Functions for creating LUT groups to be used as ViewerProcesses within Nuke | |
Synopsis |
NewerOlder