| /[drupal]/contributions/modules/contemplate/contemplate.module |
Parent Directory
|
Revision Log
|
Revision Graph
| Links to HEAD: | (view) (download) (as text) (annotate) |
| Sticky Tag: |
moved hook_node_build_alter() and refactored a little to get it working
Made numerous changes do to changes in the API - mostly functionality being removed an replaced with other methods
I have done a bit to get errors reduced, from functions that have been removed, or changed, to fixing the javascript that wasn't working with the variables, adding them with a click
all code changes made by Code Review have been complete, no testing has happened yet
#448644 - fixed error with the templates not having a link(tab) off of the content-type page
on the admin/content/types/templates page it now shows 'Enabled' when a dis based template is in use
switched the Save and Delete buttons
#345340 fixed link to refer to the D6 API reference instead of the D5 API reference
added back menu item 'admin/content/templates', just because I prefer to go there so I don't have to load the page another time when going to the Templates page
#352769 - fixes bug where templates were not saved
#352474 by Arancaytar, also #352083: fixing problem with error in last patch committed 1.8.4.54
Ouch: missing braces.
Add some more fixes from slurslee's patch in #345061
Assorted cleanups and fixes.
[#263630] by tatere - fixing the recursion depth issue, yet again. oe of these days we will finally get it. Hopefully this is it
[#263630] by tatere - fixing the recursion depth issue, yet again. oe of these days we will finally get it. Hopefully this is it
#329169 by eMPee584 - php errors on admin page
#328541 - eMPee584: add check to see it file var exists
added support for system based error reporting, if you want errors to only go to log you will not get the recursion limit noticed displayed to the page. Also we now point out where the recursion is occurring instead of just dropping the resursive elements.
ok, now I have the option to process the template before indexing by search back
revert
removed extra comments and watchdog calls used in developement
added an option to process the template before node is indexed for search
#295617 - fixed typo
#321298 by ki - ['body-file'] used for RSS feed changed to ['rss-file']
#321298 by ki - ['body-file'] used for RSS feed changed to ['rss-file']
added documentation about removing array node->content['field_name']['items'][0]['#node']
removed all references to node->content['field_name']['items'][0]['#node'] where the was recursion and an instance of the node object for each cck field in the node type - and added some documentation for this
removed all references to ->content['field_name']['items'][0]['#node'] where the was recursion and an instance of the node object for each cck field in the node type
<?php
*** empty log message ***
changed 'recursion depth limit hit' error to a warning
few minor changes in the way the max recursion depth is set when displaying the variable
set max and min width for div.contemplate-scroller
#314474 - inserted code to set defaut flags incase the node type does not have a template for it
added some extra documentation
#314474 - inserted code to set defaut flags incase the node type does not have a template for it
#295662 by cityreader: a spelling mistake in contemplate/contemplate.module on line 407
changing recursion limit error to notice fixing issue [#263630]
fixed issue [#279289] - better Postgres Support
changed recursion depth error to point the user to the issue node
changed recursion depth error to point the user to the issue node
ported changes allowing user setting max_recursion_depth back from 6.x
fixed recursion problem, I wasn't passing the $depth variable back when the item was an array.
since I added variable 'contemplate_max_recursion_depth' I feel that 'contemplate_remove_node_content' can be set to false as default, this change has been made
commenting fix
added variable 'contemplate_max_recursion_depth' this can be set by the user, it defines the max recursion that contemplate_array_get_variables goes to prevent php memory errors. This defaults to 10.
made changes suggested in issue [#128663], Admin page now tells you, at a glance, which node types have templates created for Teaser, Body, RSS and whether they are enabled or disabled
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
another attempt to fix issue [#230885]
changed some comments
cleaned up some test code
checked for existance of $array['content'][$key]['#node'] and unset to get rid of recursion.
fix bug that lead to issue[#230778] comment #7
fix query problems in issue [#172775] comment #11
fix query problems in issue [#172775] comment #11
fixed issue[#242445]
fixed bug report [#241961]
fixed bug report [#241961]
php 4 was having problems with &$xml_elements = null so we changed it to &$xml_elements = array() in hopes to fi the problem
php 4 was having problems with &$xml_elements = null so we changed it to &$xml_elements = array() in hopes to fi the problem
added instructions about $xml_elements to the description of RSS Template textarea
added instructions about $xml_elements to the description of RSS Template textarea
add feature requested in issue [#230778] in rss template set variable $xml_elements
add feature requested in issue [#230778] in rss template set variable $xml_elements
brings code into compliance with coder module standards. issue[#238127]
fixed strings not translatable from issue [#142282]
coding standards as per Coder Module
added comments
fixes issue [#230885] - CCK fields are causing problems, they are added into the origonal array as $array['field_*']=>array(); and they are also added into $array['content']['field_*']=>array() this array has not only the information for the CCK field, but also information for the whole node, even itself, recursively, this leads to memory issues while traversing the array recursively
slight fix with the contemplate_node_type_load($index, $map_array) function, I had my arguments switched around
fix issue [#229280]
fix issue [#229162] - warning: Invalid argument supplied for foreach() in [..]l\includes\menu.inc on line 258. This was caused by a mistake in the new menu system, or at least the way I implemented it with the upgrade. found a couple other of the same problem
fix issue [#229162] - warning: Invalid argument supplied for foreach() in [..]l\includes\menu.inc on line 258. This was caused by a mistake in the new menu system, or at least the way I implemented it with the upgrade.
fix grammar errors mae in last commit
fix bug with the new implementation of l()
Allow for deleting of templates from the templates admin page
fixes issue [#145550] and others, allowing deletion of templates
fix for issue [#165000]
fix for issue [#165000]
fixes [#182517]
fixes [#182517]
fix problem introduced in last patch to using url()
Fix hook_help where it was not displaying help information on some pages
fix issue [#101000]
changed the way the setup page disables the text area box
changed the way the setup page disables the text area box
Accidentally added upgrade to drupal 6 in drupal 5 branch, this will fix. I'm sure there is a way to do this with a cvs command, but I'm new to CVS so I am still learning.
Upgrade to Drupal core 6 compatibility
Upgrade to Drupal Core 6
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
links to check_plain() and check_markup() documentation
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 -- big commit -- working on airplane
Major update to ConTemplate module. Adds separate field for RSS modification. Also, teaser, body, and rss are now individually enableable. Template tab appears on content/types/[type] pages. Node object divs are now resizable.
updating module to Drupal 5 compatibility
Adding 4-7 branch for contemplate
file contemplate.module was added on branch DRUPAL-4-7 on 2006-10-19 13:22:53 +0000
Static caching not working properly in contemplate_get_template
fix for #66715 : Call to undefined function content_types())
Works with latest CCK again.
fix for #64261
Better u.i. Better help.
Initial commit of Content Template module. Works with CCK or any content-type to manipulate the teaser and body properties according to a administrator-defined template. Solves the problem of CCK not looking good - especially in RSS feeds.
This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |