0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
phprojekt
/
6.0.6-0
/
standard
/
htdocs
/
htdocs
/
dojo
/
dojox
/
dtl
/
tag
/
[
Home
]
File: date.js
/* Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved. Available via Academic Free License >= 2.1 OR the modified BSD license. see: http://dojotoolkit.org/license for details */ if(!dojo._hasResource["dojox.dtl.tag.date"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. dojo._hasResource["dojox.dtl.tag.date"] = true; dojo.provide("dojox.dtl.tag.date"); dojo.require("dojox.dtl._base"); dojo.require("dojox.dtl.utils.date"); dojox.dtl.tag.date.NowNode = function(format, node){ this._format = format; this.format = new dojox.dtl.utils.date.DateFormat(format); this.contents = node; } dojo.extend(dojox.dtl.tag.date.NowNode, { render: function(context, buffer){ this.contents.set(this.format.format(new Date())); return this.contents.render(context, buffer); }, unrender: function(context, buffer){ return this.contents.unrender(context, buffer); }, clone: function(buffer){ return new this.constructor(this._format, this.contents.clone(buffer)); } }); dojox.dtl.tag.date.now = function(parser, token){ // Split by either :" or :' var parts = token.split_contents(); if(parts.length != 2){ throw new Error("'now' statement takes one argument"); } return new dojox.dtl.tag.date.NowNode(parts[1].slice(1, -1), parser.create_text_node()); } }