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
# -*- coding: utf-8 -*- | |
''' | |
Hank Marquardt | |
May 26, 2014 | |
''' | |
import os | |
import sys |
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
# -*- coding: utf-8 -*- | |
''' | |
Hank Marquardt | |
May 26, 2014 | |
Magic -- not really documented properly by *ebay*, the IncludeItemSpecifics is needed to get UPC back in feed | |
api.execute('GetItem',{'ItemID': '321394881000','DetailLevel': 'ReturnAll','IncludeItemSpecifics': 'True'}) | |
''' |
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
Router = {}; | |
/* | |
A route should look like this: | |
{ | |
route: /<regExp>/, | |
controller: <string name of controller implemented by appObj>, | |
template: <string name of DOM ID containing template to be rendered, populated by controller>, | |
slugs: [array of named parameters populated by regex group in route, may override/implement controller |