This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once 'path/to/symfony/autoload/sfCoreAutoload.class.php'; | |
sfCoreAutoload::register(); | |
$fs = new sfFilesystem(); | |
$command = sprintf('%s -n "%s" %s', 'path/to/php', 'path/to/project/root/symfony', 'cc'); | |
$res = $fs->sh($command); | |
echo $res; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CmdUtils.CreateCommand({ | |
name: "sf", | |
icon: "http://www.symfony-project.org/favicon.ico", | |
author: { name: "Ajai Khattri", email: "[email protected]"}, | |
license: "GPL", | |
description: "Searches the symfony API docs for words.", | |
takes: {"search term": noun_arb_text}, | |
preview: function(pblock, directObject, modifiers) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From eeed25bdbbbdb74fb81e243ef6714f4cb8a80094 Mon Sep 17 00:00:00 2001 | |
From: Yevgeniy A. Viktorov <[email protected]> | |
Date: Fri, 1 May 2009 20:20:58 +0300 | |
Subject: [PATCH] fix installer: locale saving problem | |
--- | |
app/code/core/Mage/Install/Model/Installer.php | 8 +++++++- | |
1 files changed, 7 insertions(+), 1 deletions(-) | |
diff --git a/app/code/core/Mage/Install/Model/Installer.php b/app/code/core/Mage/Install/Model/Installer.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Recursively add a .gitignore file to all directories | |
# in the working directory which are empty and don't | |
# start with a dot. Helpful for tracking empty dirs | |
# in a git repository. | |
for i in $(find . -type d -regex ``./[^.].*'' -empty); do touch $i"/.gitignore"; done; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
core = "6.x" | |
projects[pressflow][type] = "core" | |
projects[pressflow][download][type] = "git" | |
projects[pressflow][download][url] = git://github.com/bigmack83/pressflow-6.git | |
projects[] = "cck" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class TJU_Core_Model_Translate extends Mage_Core_Model_Translate | |
{ | |
/** | |
* Retrieve translated template file | |
* Try current design package first | |
* | |
* @param string $file | |
* @param string $type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config> | |
<global> | |
<models> | |
<core> | |
<rewrite> | |
<translate>TJU_Core_Model_Translate</translate> | |
</rewrite> | |
</core> | |
</models> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<config> | |
<modules> | |
<TJU_Core> | |
<active>true</active> | |
<codePool>local</codePool> | |
</TJU_Core> | |
</modules> | |
</config> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
phone='(XXX) XXX-XXXX' | |
email='[email protected]' | |
basedir='app/design/frontend/tjuInterface/default' | |
find $basedir/locale/en_US/template/email/sales -type f -exec sed -i 's/alt="Magento"/alt="{{var order.getStoreGroupName()}}"/g' '{}' \; | |
find $basedir/locale/en_US/template/email/sales -type f -exec sed -i 's/Magento Demo Store/{{var order.getStoreGroupName()}} /g' '{}' \; | |
find $basedir/locale/en_US/template/email/sales -type f -exec sed -i 's/Demo Store/{{var order.getStoreGroupName()}} /g' '{}' \; | |
find $basedir/locale/en_US/template/email/sales -type f -exec sed -i "s/mailto:[email protected]/mailto:$email/g" '{}' \; | |
find $basedir/locale/en_US/template/email/sales -type f -exec sed -i "s/[email protected]/$email/g" '{}' \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class sfWidgetFormReCaptcha2 extends sfWidgetFormReCaptcha | |
{ | |
/** | |
* @see sfWidgetFormReCaptcha | |
*/ | |
public function render($name, $value = null, $attributes = array(), $errors = array()) | |
{ | |
$server = $this->getServerUrl(); |
OlderNewer