This file contains hidden or 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
| wget --user=myUser --ask-password -e robots=off -r -I /repositorios/eduexpo-ios/tags/4.0.0-eduexpo-ios/source/ http://fabr.com.br/repositorios/eduexpo-ios/tags/4.0.0-eduexpo-ios/source/ |
This file contains hidden or 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
| var Messages = (function($) { | |
| var Messages = {}; | |
| Messages.showMessage = function (type, message) { | |
| showMessage(type, message, containers.pageContainer, arguments); | |
| }; | |
| Messages.showModalMessage = function (type, message) { | |
| showMessage(type, message, containers.modalContainer, arguments); | |
| }; |
This file contains hidden or 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
| /*===================================================== | |
| * | |
| * Sitef Date : A javascript library that handles dates in a way that fits Sitef's needs | |
| * (c) Luiz Augusto Crisostomo 2014 | |
| * | |
| ======================================================*/ | |
| function SitefDate(date) { |
This file contains hidden or 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
| var fileField = document.getElementById("file_picker"); | |
| var file = fileField.files[0]; // Use multiple attr in your input field to upload more than one file | |
| var formData = new FormData(); | |
| formData.append('filecsv', file, file.name); | |
| $.ajax({ | |
| type: "POST", | |
| url: "", | |
| processData: false, | |
| contentType: false, |
NewerOlder