MAIN RESOURCES
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>polymer</title> | |
<script src="https://rawgit.com/webcomponents/webcomponentsjs/master/webcomponents-lite.js"></script> | |
<link rel="import" href="https://rawgit.com/Polymer/polymer/master/polymer.html"> | |
</head> | |
<body> | |
<dom-module id="my-element"> |
“Toda la documentacion aca” :http://www.sublimetext.com/docs/2/.
Ctrl+C | (si no hay seleccion) Copia toda la linea |
Ctrl+X | (si no hay seleccion) Corta toda la linea |
Ctrl+⇧+K | Elimina la linea |
Ctrl+↩ | Inserta salto de linea en linea anterior |
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
/** | |
* WkHtmlToPdf table splitting hack. | |
* | |
* Script to automatically split multiple-pages-spanning HTML tables for PDF | |
* generation using webkit. | |
* | |
* To use, you must adjust pdfPage object's contents to reflect your PDF's | |
* page format. | |
* The tables you want to be automatically splitted when the page ends must | |
* have a class name of "splitForPrint" (can be changed). |
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
//if the ext is invalid, display an alert and return false. | |
//if is valid returns true. | |
function ValidateExtImg(inputObj) { | |
var _validFileExtensions = [".jpg", ".jpeg", ".bmp", ".gif", ".png", ".pdf"]; | |
var oInput = inputObj; | |
if (oInput.type == "file") { | |
var sFileName = oInput.value; | |
if (sFileName.length > 0) { | |
var blnValid = false; | |
for (var j = 0; j < _validFileExtensions.length; j++) { |
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 emailAttachment($to, $fromName, $fromEmail, $subject, $message, $files) { | |
$headers = "From: $fromName<$fromEmail>"; | |
// boundary | |
$semi_rand = md5(time()); | |
$mime_boundary = "==Multipart_Boundary_x{$semi_rand}x"; | |
// headers for attachment | |
$headers .= "\nMIME-Version: 1.0\n" . "Content-Type: multipart/mixed;\n" . " boundary=\"{$mime_boundary}\""; | |