You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to smarty-d...@googlegroups.com
Here is a small patch to support customizing the SVN dev environment. The goal of this patch is to be able to modify the dev settings such as the location of the php binary, without modifying any files in SVN. This will make svn diff easier to run, as the result of svn diff will then not include installation-specific changes.
With this patch, php programs who want to call the php command line binary can include development/dev_settings.php , which will then first look in development/local_dev_settings.php , and if $smarty_dev_php_cli_bin is not set there it will set $smarty_dev_php_cli_bin to a default value ("php").
development/local_dev_settings.php is added to svn:ignore, so won't show up in svn diff or svn status.
The current SVN is customized to Uwe. To work on Uwe's computer after this patch, Uwe should add the following to development/local_dev_settings.php :
$smarty_dev_php_cli_bin = "C:\wamp\bin\php\php5.2.9-1\php";
The patch also adds a small simple Makefile, which is useful on Unix/Linux when working on the command line.
Hope this is not too much thought about a small problem :)
Regards, Thue
(Patch is both attached and shown here inline)
Property changes on: . ___________________________________________________________________ Name: svn:ignore + local_dev_settings.php