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
<?php | |
if ( ! class_exists( 'DigLabs_Auto_Loader' ) ) | |
{ | |
class DigLabs_Auto_Loader | |
{ | |
private $prefix; | |
private $base_folder; | |
private $folders = array(); | |
private $paths_looked = array(); |
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
<?php | |
/* | |
HTML5 Drag & Drop File Upload with Progress | |
Borrowed from these original sources: | |
http://webstandardssherpa.com/reviews/dissecting-gmails-email-attachments/ | |
http://www.script-tutorials.com/html5-drag-and-drop-multiple-file-uploader/ |
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
Notes: | |
1. API Keys: private, public | |
- Every user will be issued a API keys (public and private) that can be used to access the API on their behalf. Requests via the API keys have the same priviledges as requests by the user. | |
2. API implements a HTTP based REST-like interface | |
- Root URL (e.g. https://example.com/api/1) | |
- HTTP Verbs: | |
* Create - POST | |
* Read - GET |
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
# Generic build script that builds, tests, and creates nuget packages. | |
# | |
# INSTRUCTIONS: | |
# Update the following project paths: | |
# proj Path to the project file (.csproj) | |
# test Path to the test project (.csproj) | |
# nuspec Path to the package definition for NuGet. | |
# | |
# delete any of the lines if not applicable | |
# |