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
| require("sproutcore"); | |
| Kivakity = SC.Application.create(); |
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
| Klb.COUNTRIES_ISO = [ | |
| {"iso_code":"AF", | |
| "iso_name":"AFGHANISTAN", | |
| "name":"_AFGHANISTAN".loc(), | |
| "region":"xx"}, | |
| {"iso_code":"AX", | |
| "iso_name":"ÅLAND ISLANDS", | |
| "name":"_ÅLAND_ISLANDS".loc(), | |
| "region":"xx"}]; |
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
| // in core.js... | |
| Klb.PARTNER_QUERY = SC.Query.local(Klb.Partner); | |
| Klb.LOAN_QUERY = SC.Query.local(Klb.Country, {conditions: 'status = "fundraising"', orderBy: ['dateAdded']}); | |
| // in controller... | |
| availablePartners: null, | |
| availableCountries: null, |
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
| /* | |
| * Returns the URL to call piwik.php, | |
| * with the standard parameters (plugins, resolution, url, referer, etc.) | |
| */ | |
| function getRequest() { | |
| var i, now, request; | |
| now = new Date(); | |
| request = 'idsite=' + configTrackerSiteId + | |
| '&url=' + escapeWrapper(documentAlias.location.href) + | |
| '&res=' + screenAlias.width + 'x' + screenAlias.height + |
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
| #!/usr/bin/ruby | |
| require 'net/http' | |
| require 'rexml/document' | |
| require 'cgi' | |
| #setup | |
| method_name = 'loans' | |
| endpoint_prefix = 'http://api.kivaws.org/v1' | |
| methods = {'loans' => '/loans/newest.json', 'partners' => '/partners.json' } |
NewerOlder