Is this the code giving an error? When I try it, either as a tiddler or as 
a view template, I don't get a recursion error.

-- Mark

On Friday, July 13, 2018 at 10:26:50 PM UTC-7, Jose Eduardo Mares Dominguez 
wrote:
>
> I've only been using Tiddlywiki for a couple days and I don't know how to 
> code, but I have been messing around with code for the Tiddler Manager to 
> try and create a customized version.
>
> I want to get it so that the when you create the custom manager it only 
> shows tiddlers that are tagged with the title of the current tiddler, but 
> every time I do it gives me a recursive error. Any help would be 
> appreciated!
>
> \define lingo-base() $:/language/Manager/
>
> \define list-item-content-item()
> <div class="tc-manager-list-item-content-item">
> <$vars state-title="""$:/state/popup/manager/item/$(listItem)$""">
> <$reveal state=<<state-title>> type="match" text="show" default="show" 
> tag="div">
> <$button set=<<state-title>> setTo="hide" class="tc-btn-invisible 
> tc-manager-list-item-content-item-heading">
> {{$:/core/images/down-arrow}} <$transclude tiddler=<<listItem>> 
> field="caption"/>
> </$button>
> </$reveal>
> <$reveal state=<<state-title>> type="nomatch" text="show" default="show" 
> tag="div">
> <$button set=<<state-title>> setTo="show" class="tc-btn-invisible 
> tc-manager-list-item-content-item-heading">
> {{$:/core/images/right-arrow}} <$transclude tiddler=<<listItem>> 
> field="caption"/>
> </$button>
> </$reveal>
> <$reveal state=<<state-title>> type="match" text="show" default="show" 
> tag="div" class="tc-manager-list-item-content-item-body">
> <$transclude tiddler=<<listItem>>/>
> </$reveal>
> </$vars>
> </div>
> \end
>
> <div class="tc-manager-list">
> <$list filter="[all[current]tagging[]]"/>
> <$vars transclusion=<<currentTiddler>>>
> <div style="tc-manager-list-item">
> <$button popup=<<qualify "$:/state/manager/popup">> 
> class="tc-btn-invisible tc-manager-list-item-heading" 
> selectedClass="tc-manager-list-item-heading-selected">
> <$text text=<<currentTiddler>>/>
> </$button>
> <$reveal state=<<qualify "$:/state/manager/popup">> type="nomatch" text="" 
> default="" tag="div" class="tc-manager-list-item-content tc-popup-handle">
> <div class="tc-manager-list-item-content-tiddler">
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemMain]!has[draft.of]]" 
> variable="listItem">
> <<list-item-content-item>>
> </$list>
> </div>
> <div class="tc-manager-list-item-content-sidebar">
> <$list 
> filter="[all[shadows+tiddlers]tag[$:/tags/Manager/ItemSidebar]!has[draft.of]]"
>  
> variable="listItem">
> <<list-item-content-item>>
> </$list>
> </div>
> </$reveal>
> </div>
> </$vars>
> </div>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/16c5dfa3-dfd6-42d6-98d9-30cba2c3b37b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to