Releases for Content Templates (Contemplate)
contemplate 5.x-2.02
Download: contemplate-5.x-2.02.tar.gz
Size: 26.82 KB
md5_file hash: 17241db6542207ee35d301cd88c5b035
First released: May 18, 2008 - 19:51
Last updated: May 18, 2008 - 19:55
Adding option for user to set maximum recursion depth when listing variables on the template creation page.
contemplate 6.x-0.13
Download: contemplate-6.x-0.13.tar.gz
Size: 27.88 KB
md5_file hash: f8ec6ba03b08c6498fbcf44907ca6a28
First released: May 15, 2008 - 19:50
Last updated: May 15, 2008 - 19:55
fix problem with tracking recursion depth: when the item being passed was an array it wasn't getting the $depth variable.
contemplate 6.x-0.12
Download: contemplate-6.x-0.12.tar.gz
Size: 27.85 KB
md5_file hash: b92ef2ff941d6dfd73086be82e15af08
First released: May 14, 2008 - 17:14
Last updated: May 14, 2008 - 17:15
Added user configurable Maximum recursion depth to avoid loops with CCK node types causing PHP Memory Fatal Errors
contemplate 6.x-0.11
Download: contemplate-6.x-0.11.tar.gz
Size: 22.43 KB
md5_file hash: 5b031d9954dee2c843751d0b7225c44c
First released: May 12, 2008 - 23:17
Last updated: May 12, 2008 - 23:20
add a system setting option to add the $node->content items in the variables while editing/creating content templates. $node->content is removed by default, but the user can enable it. Even though the $node->content variables cannot be seen in the variables dictionary, they are still avaible in the template, adding them to the dictionary will overload PHPs memory limit
contemplate 6.x-0.10
Download: contemplate-6.x-0.10.tar.gz
Size: 22.03 KB
md5_file hash: e0f092db517c1b82215159947765e6a7
First released: May 6, 2008 - 16:14
Last updated: May 6, 2008 - 16:15
another attempt to correct issue #230885: CCK activates triggers Fatal error
contemplate 6.x-0.9
Download: contemplate-6.x-0.9.tar.gz
Size: 27.05 KB
md5_file hash: 5b3ccfa42797498b6ff0f2188faedcfb
First released: May 5, 2008 - 03:13
Last updated: May 5, 2008 - 03:15
Attempt to fix the problems in #230885: CCK activates triggers Fatal error where CCK recursively adds the node information to $node[content][field_*][#node].
contemplate 6.x-0.8
Download: contemplate-6.x-0.8.tar.gz
Size: 27.04 KB
md5_file hash: 3eb44aba539cb661fbb763e19d81ec07
First released: April 25, 2008 - 20:43
Last updated: April 25, 2008 - 20:45
Wasn't displaying additional xml elements, got it fixed.
contemplate 6.x-0.7
Download: contemplate-6.x-0.7.tar.gz
Size: 27.03 KB
md5_file hash: 5271f4233fcfabecb83ed32666fcf9d3
First released: April 4, 2008 - 22:24
Last updated: April 4, 2008 - 22:25
in the last release we had a problem with one character out of place that broke the module, this has been fixed
contemplate 6.x-0.6
Download: contemplate-6.x-0.6.tar.gz
Size: 27.04 KB
md5_file hash: 5c9158b2fe0c6b17b26a01fc594f6bd0
First released: April 3, 2008 - 13:47
Last updated: April 3, 2008 - 13:50
fixes issue #241961: PHP 4 Parse error: syntax error
contemplate 5.x-2.01
Download: contemplate-5.x-2.01.tar.gz
Size: 26.26 KB
md5_file hash: b44eac53f9183cec17253f2d64a97de2
First released: April 3, 2008 - 13:46
Last updated: April 3, 2008 - 13:50
fixes issue #241961: PHP 4 Parse error: syntax error
contemplate 5.x-2.0
Download: contemplate-5.x-2.0.tar.gz
Size: 20.97 KB
md5_file hash: e6690c1db04b2e7e8d2357fa758e64c4
First released: March 30, 2008 - 20:45
Last updated: March 30, 2008 - 20:50
Adds Support for $xml_elements, just add something similar to your rss template
<?php
$xml_elements = array(
array(
'key' => 'key1',
'value' => 'value1',
),
array(
'key' => 'key2',
'value' => 'value2',
);
array(
'key' => 'key3',
'attributes' => array(
'attrib1' => 'this attribute',
'attrib2' => 'that attribute',
'attrib3' => 'the other attribute',
),
),
);
?>Your rss feed for the node type will appear like this
<item>
<title>some kind of title</title>
<link>www.somelink.com</link>
<description>some description, etc etc</description>
<key1>value1</key1>
<key2>value2</key2>
<key3 attrib1="this attribute" attrib2="that attribute" attrib3="the other attribute"/>
</item>contemplate 6.x-0.5
Download: contemplate-6.x-0.5.tar.gz
Size: 21.35 KB
md5_file hash: 05758e2e51cb0074c687d3e1e6d7606b
First released: March 30, 2008 - 20:44
Last updated: March 30, 2008 - 20:45
Adds Support for $xml_elements, just add something similar to your rss template
<?php
$xml_elements = array(
array(
'key' => 'key1',
'value' => 'value1',
),
array(
'key' => 'key2',
'value' => 'value2',
);
array(
'key' => 'key3',
'attributes' => array(
'attrib1' => 'this attribute',
'attrib2' => 'that attribute',
'attrib3' => 'the other attribute',
),
),
);
?>Your rss feed for the node type will appear like this
<item>
<title>some kind of title</title>
<link>www.somelink.com</link>
<description>some description, etc etc</description>
<key1>value1</key1>
<key2>value2</key2>
<key3 attrib1="this attribute" attrib2="that attribute" attrib3="the other attribute"/>
</item>contemplate 6.x-0.4-2
Download: contemplate-6.x-0.4-2.tar.gz
Size: 21.28 KB
md5_file hash: d8edefba560907219cf1af741c7e364d
First released: March 7, 2008 - 07:13
Last updated: March 7, 2008 - 07:15
fixes issue #230885: CCK activates triggers Fatal error - see CVS notes
contemplate 6.x-0.4-1
Download: contemplate-6.x-0.4-1.tar.gz
Size: 21.06 KB
md5_file hash: d2712a2d9b64ae6bce9935fc6c4dd02c
First released: March 3, 2008 - 14:09
Last updated: March 3, 2008 - 14:10
see cvs notes
contemplate 6.x-0.4
Download: contemplate-6.x-0.4.tar.gz
Size: 21.12 KB
md5_file hash: 15603173d484c0fd53acd186d767c469
First released: March 3, 2008 - 05:28
Last updated: March 3, 2008 - 05:30
Fix issue #229162: Contemplate creates menu errors
see cvs commit logs
contemplate 5.x-1.9
Download: contemplate-5.x-1.9.tar.gz
Size: 20.91 KB
md5_file hash: 099c2be3cdc56799d67d4cc92975bb89
First released: March 2, 2008 - 05:36
Last updated: March 2, 2008 - 05:40
some small bug fixes, see cvs notes. added ability to delete templates
contemplate 6.x-0.3
Download: contemplate-6.x-0.3.tar.gz
Size: 21.02 KB
md5_file hash: 64e127600a7715c21fc383c3d492aa91
First released: March 2, 2008 - 05:35
Last updated: March 2, 2008 - 05:40
fixed many bugs, see cvs notes, and added ability to delete template
contemplate 6.x-0.2
Download: contemplate-6.x-0.2.tar.gz
Size: 20.48 KB
md5_file hash: 5a955e83837fb8eb1dbc2f4abd29980f
First released: February 28, 2008 - 18:30
Last updated: February 28, 2008 - 18:35
This is an Alpha release of Contemplate 6.x, please help with finding bugs.
contemplate 6.x-1.x-dev
Download: contemplate-6.x-1.x-dev.tar.gz
Size: 27.95 KB
md5_file hash: 3a075cfe721c6e82756013b6f51e0cc8
First released: February 28, 2008 - 18:28
Last updated: July 9, 2008 - 00:02
Upgrade to Core 6 compatibility.
contemplate 5.x-1.8
Download: contemplate-5.x-1.8.tar.gz
Size: 20.4 KB
md5_file hash: 779c9bf4a7d37b1925fa5125db4be186
First released: October 6, 2007 - 14:07
Last updated: October 6, 2007 - 14:10
Smoothing out the past few releases, this version fixes several bugs with the .install file and finally gets the file-based templates working for new users.
contemplate 5.x-1.8-beta2
Download: contemplate-5.x-1.8-beta2.tar.gz
Size: 20.4 KB
md5_file hash: 09ce61ec2fe4bc39e4a80049cf94a571
First released: September 22, 2007 - 17:18
Last updated: September 22, 2007 - 17:20
fixing uninstall to clean up contemplate_files table
contemplate 5.x-1.8-beta1
Download: contemplate-5.x-1.8-beta1.tar.gz
Size: 20.39 KB
md5_file hash: 9b5d3d24f68d567f77f511718ef8ca9f
First released: September 22, 2007 - 17:06
Last updated: September 22, 2007 - 17:10
Still fixing database nasties. Sorry folks! This should be the last one.
Using beta tag this time so we don't need to increment the version if there are still any loose ends.
contemplate 5.x-1.7
Download: contemplate-5.x-1.7.tar.gz
Size: 20.4 KB
md5_file hash: a48befa62eec58703c227964d3081f34
First released: September 21, 2007 - 12:30
Last updated: September 21, 2007 - 12:35
Applied patch for #177112 fixing install/update.
Looking forward to new database schema API in Drupal 6. ;-)
contemplate 5.x-1.6
Download: contemplate-5.x-1.6.tar.gz
Size: 20.39 KB
md5_file hash: e88bd241a1daa863acaeefde60b89bfc
First released: September 20, 2007 - 08:19
Last updated: September 20, 2007 - 08:20
Fixes table prefixing in previous version.
contemplate 5.x-1.5
Download: contemplate-5.x-1.5.tar.gz
Size: 20.39 KB
md5_file hash: 43a819e0a4103d8344212a1cf4d8782b
First released: September 19, 2007 - 21:31
Last updated: September 19, 2007 - 21:35
Major new features for ConTemplate.
- Templates can now be disk based with multi-site specificity
- New layout for admin pages - more space for editing, monospace font
contemplate 5.x-1.x-dev
Download: contemplate-5.x-1.x-dev.tar.gz
Size: 26.92 KB
md5_file hash: da5c8a426ef2e527c707ab7b7a10e2fc
First released: August 13, 2007 - 13:38
Last updated: July 13, 2008 - 00:01
Development (beta) version for Drupal-5 branch.
contemplate 5.x-1.3
Download: contemplate-5.x-1.3.tar.gz
Size: 18.29 KB
md5_file hash: 6ca1df08bb2150fcf2dc793392d8890a
First released: July 29, 2007 - 12:58
Last updated: July 29, 2007 - 13:00
Fixing installer bug that didn't add correct columns to db.
contemplate 5.x-1.2
Download: contemplate-5.x-1.2.tar.gz
Size: 18.26 KB
md5_file hash: 5059260263d2e0edea0621e8d69f0c59
First released: July 26, 2007 - 23:13
Last updated: July 26, 2007 - 23:15
Big fix for better compatibility with PHP5 - fixes body and teasers using same data should fix #102562, #109222 code cleanup by Wim Leers, #84176 postgres install by havran, #84178 postrgres compatibility by havran
Better documentation and guidance for check_markup() and check_plain()... security stuff.
contemplate 5.x-1.1
Download: contemplate-5.x-1.1.tar.gz
Size: 13.25 KB
md5_file hash: af4bec2e66beb10f0b710625816cc76c
First released: January 7, 2007 - 02:10
Last updated: January 6, 2007 - 22:15
Fixed critical upgrade bug in 5.x-1.0.
contemplate HEAD
Download: contemplate-HEAD.tar.gz
Size: 16.62 KB
md5_file hash: 38b39b207bfabc9e5199e123c46568d7
First released: November 11, 2006 - 09:14
Last updated: May 9, 2007 - 00:07
contemplate 4.7.x-1.x-dev
Download: contemplate-4.7.x-1.x-dev.tar.gz
Size: 12.48 KB
md5_file hash: c06833450d3533872787b0292e668091
First released: October 19, 2006 - 17:02
Last updated: November 13, 2006 - 12:21
