cwrc / CWRC-Schema

CWRC Schemas and supporting documents
GNU General Public License v3.0
4 stars 4 forks source link

Should QUOTE be allowed as a child of SIC or not? #170

Open ilovan opened 5 years ago

ilovan commented 5 years ago

It is allowed in the Writing Schema:

   <define name="SIC">
        <element name="SIC">
            <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">This
                element is left over from the TEI set of elements and is meant to be used in the
                same way that you would use a [sic] tag in regular prose. For our purposes, we have
                devised a set of practice directives to guide you in your use of this element. It is
                primarily a formatting tag which inserts the word [sic] in rendered
                text.</a:documentation>
            <optional>
                <attribute name="CORR"/>
            </optional>
            <optional>
                <attribute name="annotationId">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Provides a unique annotation identifier for the element bearing the
                        attribute.</a:documentation>
                </attribute>
            </optional>
            <optional>
                <attribute name="offsetId">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Designates the parent tag from which the offset is being
                        counted.</a:documentation>
                </attribute>
            </optional>
            <oneOrMore>
                <choice>
                    <text/>
                    <ref name="NAME"/>
                    <ref name="PLACE"/>
                    <ref name="QUOTE"/>
                </choice>
            </oneOrMore>
        </element>
    </define>

It is not allowed in the Bio schema:

    <define name="SIC">
        <element name="SIC">
            <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">This
                element is left over from the TEI set of elements and is meant to be used in the
                same way that you would use a [sic] tag in regular prose. For our purposes, we have
                devised a set of practice directives to guide you in your use of this element. It is
                primarily a formatting tag which inserts the word [sic] in rendered
                text.</a:documentation>
            <optional>
                <attribute name="CORR"/>
            </optional>
            <optional>
                <attribute name="annotationId">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Provides a unique annotation identifier for the element bearing the
                        attribute.</a:documentation>
                </attribute>
            </optional>
            <optional>
                <attribute name="offsetId">
                    <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                        >Designates the parent tag from which the offset is being
                        counted.</a:documentation>
                </attribute>
            </optional>
            <oneOrMore>
                <choice>
                    <text/>
                    <ref name="NAME"/>
                    <ref name="PLACE"/>
                </choice>
            </oneOrMore>
        </element>
    </define>
SusanBrown commented 5 years ago

I don’t see why not, especially if it’s already used there. On Aug 20, 2019, 2:37 PM -0400, Mihaela Ilovan notifications@github.com, wrote:

It is allowed in the Writing Schema:

This element is left over from the TEI set of elements and is meant to be used in the same way that you would use a [sic] tag in regular prose. For our purposes, we have devised a set of practice directives to guide you in your use of this element. It is primarily a formatting tag which inserts the word [sic] in rendered text. Provides a unique annotation identifier for the element bearing the attribute. Designates the parent tag from which the offset is being counted.

It is not allowed in the Bio schema:

<define name="SIC">
    <element name="SIC">
        <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0">This
            element is left over from the TEI set of elements and is meant to be used in the
            same way that you would use a [sic] tag in regular prose. For our purposes, we have
            devised a set of practice directives to guide you in your use of this element. It is
            primarily a formatting tag which inserts the word [sic] in rendered
            text.</a:documentation>
        <optional>
            <attribute name="CORR"/>
        </optional>
        <optional>
            <attribute name="annotationId">
                <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                    >Provides a unique annotation identifier for the element bearing the
                    attribute.</a:documentation>
            </attribute>
        </optional>
        <optional>
            <attribute name="offsetId">
                <a:documentation xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"
                    >Designates the parent tag from which the offset is being
                    counted.</a:documentation>
            </attribute>
        </optional>
        <oneOrMore>
            <choice>
                <text/>
                <ref name="NAME"/>
                <ref name="PLACE"/>
            </choice>
        </oneOrMore>
    </element>
</define>

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/cwrc/CWRC-Schema/issues/170?email_source=notifications&email_token=AAEFJIALZLZBPRIGK46NKRLQFQ2UZA5CNFSM4IN3FIWKYY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4HGKI3SA, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AAEFJIHJGFXQ3FZFNLKRWNLQFQ2UZANCNFSM4IN3FIWA.

SusanBrown commented 4 years ago

Do not allow it in either schema.

ilovan commented 4 years ago

@SusanBrown , I am going with your more recent comment and will disallow QUOTE from within SIC. I could only find one instance in the Bryher Writing Doc, and already signalled it in the cleanup sheet.