Let's say you want to host domains first.com and second.com.
Create folders for their files:
| if (!String.prototype.repeat) { | |
| // polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat | |
| String.prototype.repeat = function(count) { | |
| 'use strict'; | |
| if (this == null) { | |
| throw new TypeError('can\'t convert ' + this + ' to object'); | |
| } | |
| var str = '' + this; | |
| count = +count; | |
| if (count != count) { |
| function logClass(target: any) { | |
| // save a reference to the original constructor | |
| var original = target; | |
| // a utility function to generate instances of a class | |
| function construct(constructor, args) { | |
| var c : any = function () { | |
| return constructor.apply(this, args); | |
| } |
| import wx | |
| import wx.lib.scrolledpanel as scrolled | |
| ######################################################################## | |
| class MyForm(wx.Frame): | |
| #---------------------------------------------------------------------- | |
| def __init__(self): | |
| wx.Frame.__init__(self, None, wx.ID_ANY, "Tutorial", size=(200,500)) | |