Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | fixes for renaming
git-svn-id: https://atwf.svn.sourceforge.net/svnroot/atwf@580 3ddb7fe1-eb8e-4980-8f37-d9e37380b5db |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2814e94babb5866210c2f68e72a3b88f |
User & Date: | arnulf@wiedemann-pri.de 2010-12-02 10:36:02.000 |
Context
2010-12-02
| ||
14:00 |
fixed type ditcs to dicts
git-svn-id: https://atwf.svn.sourceforge.net/svnroot/atwf@581 3ddb7fe1-eb8e-4980-8f37-d9e37380b5db check-in: 86cbe029dd user: arnulf@wiedemann-pri.de tags: trunk | |
10:36 |
fixes for renaming
git-svn-id: https://atwf.svn.sourceforge.net/svnroot/atwf@580 3ddb7fe1-eb8e-4980-8f37-d9e37380b5db check-in: 2814e94bab user: arnulf@wiedemann-pri.de tags: trunk | |
10:35 |
initial version
git-svn-id: https://atwf.svn.sourceforge.net/svnroot/atwf@579 3ddb7fe1-eb8e-4980-8f37-d9e37380b5db check-in: 85ef291bf6 user: arnulf@wiedemann-pri.de tags: trunk | |
Changes
Changes to library/ATWF/View.tcl.
1 2 3 4 5 6 7 8 | #************************************************************************* #* #* $Author$ #* $URL$ #* #* This module has been implemented in Tcl by using mostly the corresponding module #* View.php from the Zend framework see: http://framework.zend.com #* So the ideas are also copyrighted by Zend Technologies USA Inc. (http://www.zend.com) | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #************************************************************************* #* #* $Author$ #* $URL$ #* #* This module has been implemented in Tcl by using mostly the corresponding module #* View.php from the Zend framework see: http://framework.zend.com #* So the ideas are also copyrighted by Zend Technologies USA Inc. (http://www.zend.com) #* The implementation in Tcl uses dicts and lists instead of php arrays. #* #* The Contents of this file are made available subject to the terms of #* the following license see @license below #* #* Copyright 2010 Arnulf Wiedemann #* #* Author: Arnulf Wiedemann #* #* Contributor(s): #* # @category ATWF # @package library # @subpackage Viewer # @license BSD License (see file license.terms in the source top drectory) # @version $Id$ #************************************************************************/ namespace eval ::ATWF { ::itcl::extendedclass View { inherit ::ATWF::Viewers::View # Whether or not to use streams to mimic short tags # @variable bool private variable _useViewStream false # Whether or not to use stream wrapper if short_open_tag is false # @variable bool |
︙ | ︙ |