[Radiant] if_content multiple parts (was if_content with inherit)
Tim Gossett
tim at mrgossett.com
Tue Jul 8 13:43:32 CDT 2008
On Tue, Jul 8, 2008 at 2:27 PM, Sean Cribbs <seancribbs at gmail.com> wrote:
>
>
>> Or I'm thinking that inclusive="true" might be good since we've got mostly
>> true/false for extra attributes on r:content
>>
>> <r:content [part="part_name"] [inherit="true|false"]
>> [contextual="true|false"] />
>> <r:if_content [part="part_name, other_part"] [inherit="true|false"]
>> [inclusive="true|false"]>
>> <r:unless_content [part="part_name, other_part"] [inherit="true|false"]
>> [inclusive="true|false"]>
>>
>> inclusive="true" being the default (meaning AND)
>>
>> Would either of those be clear to everyone?
>> I'd personally opt for the first (select="all") for clarity of meaning.
>>
>> I'm tempted to shy away from all of this and create a new tag like
>> <r:if_any_part part="one, two"> and <r:if_all_parts...> but I think that
>> that will add more complexity in the long run. I don't think the answer is
>> more tags. If the r:if_content chooses a reasonable default and provides an
>> easy override with select="any" then communicating its use and purpose to
>> users will be relatively simple.
>>
>> I agree that adding a boolean attribute would stay in the spirit of the
> original tags. I'm not sure if 'inclusive' is the clearest but it's a good
> start. Some other options:
>
> all="true|false"
> requireall="true|false"
>
Of these two, I like requireall="true|false"
> Your thoughts?
I think find="all|any" is the clearest of what we've discussed so far.
Making the attribute's value boolean for the sake of conformity doesn't seem
to outweigh clarity. Also, what if we want to add something with the effect
of find="XOR" or find="NOR" or find="NAND"? If we were to add all of these,
we'd have
<r:content [part="part_name"] [inherit="true,false"]
[contextual="true,false"] /> (I'm not quite sure what contextual does, but
I'll read about it when 0.6.8 is released... looking forward to it!)
<r:if_content [part="part_name,other_part"] [inherit="true,false"]
[find="all,any,either,neither,none"] />
<r:unless_content [part="part_name,other_part"] [inherit="true,false"]
[find="all,any,either,neither,none"] />
With those extra values, there's some overlap with unless_content, but I
like the flexibility.
Thoughts?
--
Tim
More information about the Radiant
mailing list