Skip to content

Commit

Permalink
Fix namespace name.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMauderer committed Sep 5, 2024
1 parent f596c1c commit c2e8e59
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion colour/io/clf.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"SOPNode",
]

NAMESPACE_NAME = "urn:NATAS:AMPAS:LUT:v3.0"
NAMESPACE_NAME = "urn:AMPAS:CLF:v3.0"


@dataclass
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<ProcessList xmlns="urn:NATAS:AMPAS:LUT:v3.0" id="ACEScsc.ACES_to_ACEScct.a1.0.3" name="ACES2065-1 to ACEScct" compCLFversion="2.0">
<ProcessList xmlns="urn:AMPAS:CLF:v3.0" id="ACEScsc.ACES_to_ACEScct.a1.0.3" name="ACES2065-1 to ACEScct" compCLFversion="2.0">
<Description>Conversion from linear ACES2065-1 to ACEScct</Description>
<InputDescriptor>ACES (SMPTE ST 2065-1)</InputDescriptor>
<OutputDescriptor>ACEScct</OutputDescriptor>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<ProcessList xmlns="urn:NATAS:AMPAS:LUT:v3.0" id="BMD_LMT_Kodak_2383_v1" name="LMT Kodak 2383" compCLFversion="2.0">
<ProcessList xmlns="urn:AMPAS:CLF:v3.0" id="BMD_LMT_Kodak_2383_v1" name="LMT Kodak 2383" compCLFversion="2.0">
<Description>Print film emulation (Kodak 2383)</Description>
<InputDescriptor>ACES (SMPTE ST 2065-1)</InputDescriptor>
<OutputDescriptor>ACES (SMPTE ST 2065-1)</OutputDescriptor>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" ?>
<ProcessList xmlns="urn:NATAS:AMPAS:LUT:v3.0" id="LMT.ANTLER.ARRI" name="LMT Antler ARRI" compCLFversion="2.0">
<ProcessList xmlns="urn:AMPAS:CLF:v3.0" id="LMT.ANTLER.ARRI" name="LMT Antler ARRI" compCLFversion="2.0">
<Description>An ARRI based look</Description>
<InputDescriptor>ACES (SMPTE ST 2065-1)</InputDescriptor>
<OutputDescriptor>ACES (SMPTE ST 2065-1)</OutputDescriptor>
Expand Down
2 changes: 1 addition & 1 deletion colour/io/luts/tests/test_clf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
ROOT_CLF: str = os.path.join(os.path.dirname(__file__), "resources", "clf")

EXAMPLE_WRAPPER = """<?xml version="1.0" ?>
<ProcessList xmlns="urn:NATAS:AMPAS:LUT:v3.0" id="Example Wrapper" compCLFversion="2.0">
<ProcessList xmlns="urn:AMPAS:CLF:v3.0" id="Example Wrapper" compCLFversion="2.0">
{0}
</ProcessList>
"""
Expand Down

0 comments on commit c2e8e59

Please sign in to comment.