Introducing vibe.d!

Sönke Ludwig sludwig at outerproduct.org
Thu May 3 00:37:06 PDT 2012


Am 03.05.2012 00:18, schrieb bls:
> Am 01.05.2012 23:46, schrieb Sönke Ludwig:
>> I made a post with Steve Teale's MySQL driver as an example:
>> http://vibed.org/blog/posts/writing-native-db-drivers
>>
>> There were some hidden gotchas, but I hope the current port doesn't
>> break anything from the original code.
>
> Looks good. Unfortunately I spend some time with MongoDB and I have to
> say : Amazing db. I thought key/value databases are just toys. At least
> regarding MongoDB is was completely wrong.
>

;)

>
> I have a problem with diet templates.
> In order to use dojo dijit I need :
>
> <div class="mainlayout" id="appLayout"
> data-dojo-props="region: 'center', tabPosition: 'bottom'"
> data-dojo-type="dijit.layout.TabContainer">
> </div>
>
> Is this doable in diet templates ?
>
>

This line seems to work for me:
#appLayout.mainlayout(data-dojo-props="region: 'center', tabPosition: 
'bottom'", data-dojo-type="dijit.layout.TabContainer")

gives me this HTML:
<div id="appLayout" class="mainlayout" data-dojo-props="region: 
'center', tabPosition: 'bottom'" 
data-dojo-type="dijit.layout.TabContainer"></div>



More information about the Digitalmars-d-announce mailing list