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
Links: | |
http://devcenter.heroku.com/articles/custom-domains | |
http://joshkim.org/2010/03/15/custom-domain-names-on-heroku-via-namecheap/ | |
Run the heroku commands to add custom domains | |
$ heroku addons:add custom_domains:basic | |
Adding custom_domains to myapp...done. | |
$ heroku domains:add www.example.com |
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
curl -Lo- http://bit.ly/janus-bootstrap | bash | |
#errored out...had to install git first, derrr | |
sudo apt-get install git | |
curl -Lo- http://bit.ly/janus-bootstrap | bash | |
# error! had to install rake next | |
sudo apt-get install rake | |
curl -Lo- http://bit.ly/janus-bootstrap | bash |
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
//jQuery UI Button: | |
$("a.my-button" ).button({ disabled: true }); | |
//Normal Button: | |
$("#button").attr("disabled",true); |
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
""" | |
1. Inherit from the normal RadioInput and copy the RadioInput __unicode__ method. Then change it up how you please: | |
""" | |
class RadioInputNoWrap(RadioInput): | |
def __unicode__(self): | |
if 'id' in self.attrs: | |
label_for = ' for="%s_%s"' % (self.attrs['id'], self.index) | |
else: | |
label_for = '' | |
choice_label = conditional_escape(force_unicode(self.choice_label)) |
NewerOlder