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
from gza.artist_shops.models import * | |
from django.contrib.auth.models import User, Group, Permission | |
from django.contrib.contenttypes.models import ContentType | |
content_type = ContentType.objects.get_for_model(ArtistShopSignupLandings) | |
permission = Permission.objects.create(codename='add_artistshopsignuplandings', name='Can add artist shop signup landings', content_type=content_type) | |
permission = Permission.objects.create(codename='create_artistshopsignuplandings', name='Can create artist shop signup landings', content_type=content_type) | |
permission = Permission.objects.create(codename='delete_artistshopsignuplandings', name='Can delete artist shop signup landings', content_type=content_type) | |
permission = Permission.objects.create(codename='change_artistshopsignuplandings', name='Can change artist shop signup landings', content_type=content_type) |
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
# creating and testing permissions and test groups in django tests. | |
from django.contrib.auth.models import User, Permission, Group | |
from django.test import TestCase | |
from django.test import Client | |
class ExampleGroupPermissionsTests(TestCase): | |
def setUp(self): | |
#create permissions group |
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
YUI().use('node', 'event', function (Y) { | |
var YLang = Y.Lang, | |
src = 'http://placehold.it/320x90', | |
img = Y.Node.create('<img src="'+src+'" />'), | |
cellCount = null, | |
thumbnails = {}, | |
width = null, | |
imageWidth = null, | |
cellWidth = 160, | |
left, right, leftPos, |
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
Our presenter for September is covering YUI, and is really doing his homework. | |
Please send responses to Ben Pardo, [email protected] If you hit reply, it will go to the entire mailing list. | |
Ben: | |
I am giving a talk about YUI for Chicago Javascripters and I am working to determine where YUI is the best solution. I am putting the talk on video, so the highest frequency demands shall be evaluated and studied in different frameworks for this presentation for the benefit of all. | |
Please feel free to say as much or as little of value as you would like to say, but I am wondering: |
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
YUI.add('mymodule', function (Y) { | |
Y.Mymodule = Y.Base.create('mymodule', Y.Widget, [], { | |
initializer: function (config) { | |
console.log('initializer'); | |
}, | |
renderUI: function (){ | |
console.log('renderUI'); | |
}, | |
bindUI: function (){ |