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
diff --git a/app/controllers/non_namespaced_post_resources_controller.rb b/app/controllers/non_namespaced_post_resources_controller.rb | |
index 1c0d143..0dc0b74 100644 | |
--- a/app/controllers/non_namespaced_post_resources_controller.rb | |
+++ b/app/controllers/non_namespaced_post_resources_controller.rb | |
@@ -12,7 +12,7 @@ class NonNamespacedPostResourcesController < ApplicationController | |
def index | |
respond_to do |format| | |
format.html # index.html.erb (no data required) | |
- format.ext_json { render :json => find_non_namespaced_post_resources.to_ext_json(:class => NonNamespacedPostResource, :count => NonNamespacedPostResource.count(options_from_search(NonNamespacedPostResource))) } | |
+ format.ext_json { render :json => find_non_namespaced_post_resources.to_ext_json(:methods => :author_name, :class => NonNamespacedPostResource, :count => NonNamespacedPostResource.count(options_from_search(NonNamespacedPostResource))) } |
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
/* | |
* CPBundle.sj | |
* AppKit | |
* | |
* Created by Nicholas Small. | |
* Copyright 2009, 280 North, Inc. | |
* | |
* This library is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU Lesser General Public | |
* License as published by the Free Software Foundation; either |
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
require 'culerity' | |
$env_javascript_tag = ENV['CULERITY_JAVASCRIPT_TAG'] || '@javascript' | |
def set_jruby_env | |
rvm_jruby = ENV['CULERITY_RVM_JRUBY'] || 'jruby' | |
info = `rvm info #{rvm_jruby}` | |
gem_home = info =~ /GEM_HOME:\s?"([^"]*)"/ ? $1 : '' | |
gem_path = info =~ /GEM_PATH:\s?"([^"]*)"/ ? $1 : '' | |
my_ruby_home = info =~ /MY_RUBY_HOME:\s?"([^"]*)"/ ? $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
{ | |
"twitter" : "klickmich", | |
"github" : "martinrehfeld", | |
"blog" : "http://inside.glnetworks.de", | |
"email" : "[email protected]", | |
"location" : "Germany/Berlin" | |
} |
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
module RackHeaderHack | |
def set_headers(headers) | |
driver = page.driver | |
def driver.env | |
@env.merge(super) | |
end | |
def driver.env=(env) | |
@env = env | |
end | |
driver.env = headers |
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
require 'syntax/convertors/html' | |
require 'uv' | |
module Code | |
BACKGROUND_COLOR = '#2B2B2B' | |
COLOR = '#E6E1DC' | |
COLORS = { | |
:keyword => '#CC7833', | |
:symbol => '#6E9CBE', | |
:constant => '#DA4939', |
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 patiently(&block) | |
cycles = 0 | |
begin | |
yield | |
rescue => e | |
cycles += 1 | |
sleep 0.1 | |
if cycles < 10 | |
retry | |
else |
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
class ApplicationHelper | |
def breadcrumbs | |
result = "".html_safe | |
association_chain.each_with_index do |item, index| | |
# note that .name works for both classes and objects | |
result << link_to(item.name.humanize.titlecase, association_chain[0..index]) | |
result << " » ".html_safe | |
end |
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 get_bread_crumb(request, separator = " » ", breadcrumb = [], so_far = '/') | |
url = request.respond_to?(:request_uri) ? request.request_uri : request | |
elements = url.split('/') | |
elements.each_with_index do |element, i| | |
is_last = i == elements.size - 1 # whether this is the last item or not | |
so_far += element + '/' # the URL for this element | |
breadcrumb << # append this element to the breadcrumb | |
case element | |
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
var hasFlash = false; | |
if (navigator.plugins && navigator.plugins.length) { | |
if (navigator.plugins['Shockwave Flash']) { | |
hasFlash = true; | |
} | |
} else if (navigator.mimeTypes && navigator.mimeTypes.length) { | |
var mimeType = navigator.mimeTypes['application/x-shockwave-flash']; | |
hasFlash = mimeType && mimeType.enabledPlugin; | |
} else { | |
try { |
OlderNewer