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
| - (void)selectPreviousWidget | |
| { | |
| if ([_items count] == 0) | |
| return; | |
| if ([_selectionIndexes firstIndex] > 0) | |
| [self setSelectionIndexes:[CPIndexSet indexSetWithIndex:[_selectionIndexes firstIndex]-1]]; | |
| else | |
| [self setSelectionIndexes:[CPIndexSet indexSetWithIndex:[_items count]-1]]; | |
| } |
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
| /* | |
| * AppController.j | |
| * JakeTextFieldBug | |
| * | |
| * Created by You on January 25, 2010. | |
| * Copyright 2010, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> |
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
| /* | |
| * AppController.j | |
| * JakeTextFieldBug | |
| * | |
| * Created by You on January 25, 2010. | |
| * Copyright 2010, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> | |
| @import <AppKit/CPMenu.j> |
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
| /* | |
| * AppController.j | |
| * MenuBug | |
| * | |
| * Created by You on February 8, 2010. | |
| * Copyright 2010, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> |
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
| from django.conf.urls.defaults import * | |
| from django.contrib import admin | |
| from django.conf import settings | |
| admin.autodiscover() | |
| urlpatterns = patterns('', | |
| <all my backend url handlers>), | |
| ) |
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
| from django.conf.urls.defaults import * | |
| DEBUG_URLPATTERNS = patterns('', | |
| (r'^media/(?P<path>.*)$', 'django.views.static.serve', | |
| {'document_root': '/Users/saikat/Development/Projects/Mockingbird/mockingbird/mockingbird/media'}), | |
| (r'^mockingbird/(?P<path>.*)$', 'django.views.static.serve', | |
| {'document_root': '/Users/saikat/Development/Projects/Mockingbird/mockingbird/mockingbird/frontend/lib'}), | |
| ) |
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
| def process_job(sys_args): | |
| print 'here' | |
| app = QtGui.QApplication(sys_args) | |
| print 'and here' | |
| def main(): | |
| p = Process(target=process_job, args=(sys.argv,)) | |
| p.start() | |
| p.join() |
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
| /* | |
| * AppController.j | |
| * TestLargeView | |
| * | |
| * Created by You on February 22, 2010. | |
| * Copyright 2010, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> | |
| @import <AppKit/CGContext.j> |
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
| /* | |
| * AppController.j | |
| * TestLargeView | |
| * | |
| * Created by You on February 22, 2010. | |
| * Copyright 2010, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> | |
| @import <AppKit/CGContext.j> |
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
| /* | |
| * AppController.j | |
| * TestLargeView | |
| * | |
| * Created by You on February 22, 2010. | |
| * Copyright 2010, Your Company All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> | |
| @import <AppKit/CGContext.j> |