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
.DS_Store | |
*.swp | |
*~.nib | |
build/ | |
*.pbxuser | |
*.perspective | |
*.perspectivev3 | |
*.mode1v3 | |
*.mode2v3 | |
*.tm_build_errors |
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
.DS_Store | |
*.swp | |
*~.nib | |
build/ | |
*.pbxuser | |
*.perspective | |
*.perspectivev3 | |
*.mode1v3 | |
*.mode2v3 | |
*.tm_build_errors |
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
isaac:~/src/shortcut isaac$ macrake | |
(in /Users/isaac/src/shortcut) | |
/Users/isaac/src/shortcut/Shortcut.app/Contents/Resources/lib/application.rb:11: [BUG] Segmentation fault | |
MacRuby version 0.4 (ruby 1.9.1) [universal-darwin9.0, x86_64] | |
-- stack frame ------------ | |
0000 (0xc08000060): 00000004 | |
0001 (0xc08000068): 00000000 | |
0002 (0xc08000070): 00000004 | |
0003 (0xc08000078): 00000000 |
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
#import <Foundation/Foundation.h> | |
#import <Cocoa/Cocoa.h> | |
#import <Carbon/Carbon.h> | |
@interface Shortcut : NSObject | |
@end | |
OSStatus myHotKeyHandler(EventHandlerCallRef nextHandler, EventRef anEvent, void *userData); | |
@implementation Shortcut |
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
# Don't cause the server to break if Passenger module not loaded | |
<IfModule passenger_module> | |
<VirtualHost _default_:80> | |
DocumentRoot "/opt/apps/mephisto/current/public" | |
RailsEnv production | |
# RailsAllowModRewrite off | |
# | |
# Check for maintenance file and redirect all requests | |
RewriteEngine On | |
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
Processing ContactFormController#contact_submit (for 127.0.0.1 at 2008-12-21 13:33:47) [POST] | |
Parameters: {"action"=>"contact_submit", "contact"=>{"body"=>"sdfgsdflkgsdflkgjsdlkfjglsdkfjglsdfkjglsdkfjglsdfkjglsdfkjglsdkfjglskdfjglsdkfjglsdkjglkdfjglsdfjglksdjfglsdfjg", "author_phone"=>"23452345", "author"=>"Test", "subject"=>"Test", "author_email"=>"[email protected]"}, "controller"=>"contact_form"} | |
Site Columns (1.9ms) SHOW FIELDS FROM `sites` | |
Site Load (0.3ms) SELECT * FROM `sites` WHERE (`sites`.`host` = 'localhost') LIMIT 1 | |
Site Load (0.1ms) SELECT * FROM `sites` ORDER BY id LIMIT 1 | |
ActionView::TemplateError (attempted to output tainted string: Test) on line #1 of vendor/plugins/mephisto_contact_form/app/views/contact_notifier/contact_notification.rhtml: | |
1: From: <%= @contact_message.author %> (<%= @contact_message.author_email %><%= | |
2: @contact_message.author_phone == "" ? "" : ", " + @contact_message.author_phone %>) |
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
upstream mephisto { | |
server 127.0.0.1:8000; | |
server 127.0.0.1:8001; | |
server 127.0.0.1:8002; | |
server 127.0.0.1:8003; | |
} | |
server { | |
listen 80; | |
server_name 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
isaac:~/src/mephisto isaac$ script/about | |
About your application's environment | |
Ruby version 1.8.6 (universal-darwin9.0) | |
RubyGems version 1.3.1 | |
Rails version 2.0.5 | |
Active Record version 2.0.5 | |
Action Pack version 2.0.5 | |
Active Resource version 2.0.5 | |
Action Mailer version 2.0.5 | |
Active Support version 2.0.5 |
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
isaac:~/src/mephisto isaac$ rake | |
(in /Users/isaac/src/mephisto) | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -Ilib:test "/Library/Ruby/Gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb" "test/unit/absolute_url_test.rb" "test/unit/article_drop_test.rb" "test/unit/article_test.rb" "test/unit/asset_drop_test.rb" "test/unit/asset_test.rb" "test/unit/assigned_asset_test.rb" "test/unit/assigned_section_test.rb" "test/unit/attachment_test.rb" "test/unit/cached_page_test.rb" "test/unit/comment_drop_test.rb" "test/unit/comment_test.rb" "test/unit/core_filters_test.rb" "test/unit/dispatcher_test.rb" "test/unit/drop_filters_test.rb" "test/unit/event_test.rb" "test/unit/liquid_test.rb" "test/unit/membership_test.rb" "test/unit/plugin_test.rb" "test/unit/redirections_test.rb" "test/unit/resource_test.rb" "test/unit/section_drop_test.rb" "test/unit/section_test.rb" "test/unit/site_drop_test.rb" "test/unit/site_permalink_test.rb" "test/unit/site_template_test.rb" "test/unit/site_test.rb" "test/u |
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
isaac:~/src/mephisto isaac$ rake | |
(in /Users/isaac/src/mephisto) | |
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby -Ilib:test "/Library/Ruby/Gems/1.8/gems/rake-0.8.3/lib/rake/rake_test_loader.rb" "test/unit/absolute_url_test.rb" "test/unit/article_drop_test.rb" "test/unit/article_test.rb" "test/unit/asset_drop_test.rb" "test/unit/asset_test.rb" "test/unit/assigned_asset_test.rb" "test/unit/assigned_section_test.rb" "test/unit/attachment_test.rb" "test/unit/cached_page_test.rb" "test/unit/comment_drop_test.rb" "test/unit/comment_test.rb" "test/unit/core_filters_test.rb" "test/unit/dispatcher_test.rb" "test/unit/drop_filters_test.rb" "test/unit/event_test.rb" "test/unit/liquid_test.rb" "test/unit/membership_test.rb" "test/unit/plugin_test.rb" "test/unit/redirections_test.rb" "test/unit/resource_test.rb" "test/unit/section_drop_test.rb" "test/unit/section_test.rb" "test/unit/site_drop_test.rb" "test/unit/site_permalink_test.rb" "test/unit/site_template_test.rb" "test/unit/site_test.rb" "test/u |