publish_plugins
CollectUSDLayerContributionsProfileModel
Bases: BaseSettingsModel
Profiles to define instance attribute defaults for USD contribution.
Source code in server/settings/publish_plugins.py
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | |
ExtractBurninDef
Bases: BaseSettingsModel
Source code in server/settings/publish_plugins.py
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 | |
validate_name(value)
Ensure name does not contain weird characters
Source code in server/settings/publish_plugins.py
947 948 949 950 | |
ExtractOIIOPostProcessModel
Bases: BaseSettingsModel
Process representation images with oiiotool on publish.
This could be used to convert images to different formats, convert to scanline images or flatten deep images.
Source code in server/settings/publish_plugins.py
688 689 690 691 692 693 694 695 696 697 | |
ExtractOIIOTranscodeModel
Bases: BaseSettingsModel
Color conversion transcoding using OIIO for images mostly aimed at transcoding for reviewables (it'll process and output only RGBA channels).
Source code in server/settings/publish_plugins.py
580 581 582 583 584 585 586 587 | |
ExtractReviewOutputDefModel
Bases: BaseSettingsModel
Source code in server/settings/publish_plugins.py
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 | |
validate_name(value)
Ensure name does not contain weird characters
Source code in server/settings/publish_plugins.py
861 862 863 864 | |
IntegrateProductGroupModel
Bases: BaseSettingsModel
Group published products by filtering logic.
Set all published instances as a part of specific group named according to 'Template'.
Implemented all variants of placeholders '{task}', '{product[type]}', '{host}', '{product[name]}', '{renderlayer}'.
Source code in server/settings/publish_plugins.py
1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 | |
PreIntegrateThumbnailsModel
Bases: BaseSettingsModel
Explicitly set if Thumbnail representation should be integrated.
If no matching profile set, existing state from Host implementation is kept.
Source code in server/settings/publish_plugins.py
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 | |
ValidateIntentModel
Bases: BaseSettingsModel
Validate if Publishing intent was selected.
It is possible to disable validation for specific publishing context with profiles.
Source code in server/settings/publish_plugins.py
302 303 304 305 306 307 308 309 310 311 | |
ensure_unique_resolution_option(objects, field_name=None)
Ensure a list of objects have unique option attributes.
This function checks if the list of objects has unique 'width', 'height' and 'pixel_aspect' properties.
Source code in server/settings/publish_plugins.py
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | |