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
/* Author: Francisco Aranda ([email protected]) */ | |
package controllers; | |
import org.apache.http.HttpHost; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.NameValuePair; | |
import org.apache.http.auth.AuthScope; | |
import org.apache.http.auth.UsernamePasswordCredentials; | |
import org.apache.http.client.entity.UrlEncodedFormEntity; |
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
package controllers; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.ClientProtocolException; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.impl.client.DefaultHttpClient; | |
import java.io.BufferedReader; | |
import java.io.IOException; |
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
package controllers; | |
import com.google.gson.*; | |
import com.google.gson.reflect.TypeToken; | |
import play.*; | |
import play.api.libs.json.JsValue; | |
import play.api.libs.json.Json; | |
import play.api.templates.*; | |
import play.mvc.*; |
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
#Attention!, this scripts needs a modified version of timthumb you'll find in my git account. | |
#Francisco Aranda, Developer, Software Architect and Enterpreneur, Chile. | |
#http://farandal.com | |
#http://www.git.com/farandal | |
location ~ /thumb/.*\.(png|jpg)$ { | |
#set $domain yourdomain.com; # Change this to your site's domain name, you may or not need to uncomment this. | |
set $root_fcgi /home/user/public_html/yourdomain.com/public; # Change this to the public root folder of your site | |
set $root_cache $root_fcgi/thumb; # Change this to a folder in which to cache the minified files |
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
/* | |
* Translated default messages for the jQuery validation plugin. | |
* Locale: ES | |
*/ | |
jQuery.extend(jQuery.validator.messages, { | |
required: "Este campo es obligatorio.", | |
remote: "Por favor, rellena este campo.", | |
email: "Por favor, escribe una dirección de correo válida", |
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
/* Copyright (c) 2009 José Joaquín Núñez ([email protected]) http://joaquinnunez.cl/blog/ | |
* Licensed under GPL (http://www.opensource.org/licenses/gpl-2.0.php) | |
* Use only for non-commercial usage. | |
* | |
* Version : 0.5 | |
* | |
* Requires: jQuery 1.2+ | |
*/ | |
(function($) |
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
//Integración validador de RUT para JQuery validator | |
$.validator.addMethod("rut", function(value, element) { | |
return this.optional(element) || $.Rut.validar(value); | |
}, "Este campo debe ser un rut valido."); |
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
(function($) { | |
$(function() { | |
try { | |
if (typeof _wpcf7 == 'undefined' || _wpcf7 === null) | |
_wpcf7 = {}; | |
_wpcf7 = $.extend({ cached: 0 }, _wpcf7); | |
$('div.wpcf7 > form').each(function(i, n) { |
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
define('lib/async', [ | |
'ax/class', | |
'ax/util', | |
'app/model/api', | |
'ax/console', | |
'ax/config', | |
], | |
function (klass, util, api, console, xdkConfig) { | |
// Private |
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 | |
function executeCurl($arrOptions) { | |
$mixCH = curl_init(); | |
foreach ($arrOptions as $strCurlOpt => $mixCurlOptValue) { | |
curl_setopt($mixCH, $strCurlOpt, $mixCurlOptValue); | |
} | |
$mixResponse = curl_exec($mixCH); |
OlderNewer