Halaman

Selasa, 19 Oktober 2010

jQuery hash merge

merge hash2 to hash1:

$.extend(hash1, hash2);


for recursive merge:

$.extend(true, hash1, hash2);

Senin, 18 Oktober 2010

add javascript files to rails default

environment.rb

# reset:
ActionView::Helpers::AssetTagHelper::JAVASCRIPT_DEFAULT_SOURCES = [
'jquery-1.4.3', 'jquery-ui-1.8.6.custom', 'jrails',
'jquery.extended_helper_2.0', 'date-id', 'jquery.gritter'
]
ActionView::Helpers::AssetTagHelper::reset_javascript_include_default

# adding:
ActionView::Helpers::AssetTagHelper::register_javascript_include_default 'extended_helper', 'date'

Senin, 11 Oktober 2010

[shared] I18n pluralization patch

translate patch



module I18n
module Backend
module Base
def translate(locale, key, options = {})
raise InvalidLocale.new(locale) unless locale
return key.map { |k| translate(locale, k, options) } if key.is_a?(Array)

entry = key && lookup(locale, key, options[:scope], options)

if options.empty?
entry = resolve(locale, key, entry, options)
else
count, default = options.values_at(:count, :default)
values = options.except(*RESERVED_KEYS)
entry = entry.nil? && default ?
default(locale, key, default, options) : resolve(locale, key, entry, options)
end

raise(I18n::MissingTranslationData.new(locale, key, options)) if entry.nil?
entry = entry.dup if entry.is_a?(String)

entry = pluralize(locale, entry, count)
entry = interpolate(locale, entry, values) if values
entry
end
end
end
end


pluralize patch



module I18n
module Backend
class Simple
def pluralize(locale, entry, count)
if !defined?(count) || count.blank?
key = :none
elsif count == 0 && (entry.respond_to?(:has_key?) && entry.has_key?(:zero))
key = :zero
end
key ||= count == 1 ? :one : :other
unless entry.respond_to?(:has_key?) && entry.has_key?(key)
entry
else
entry[key]
end
end
end
end
end

Rabu, 06 Oktober 2010

[shared] Netbeans FUSCK (Frequently Used ShortCut Keys)



  • ctrl+c, ctrl+v, alt+v :
    - Copy, Paste, Display paste history (CopyPasteHistory Plugin required)


  • ctrl+f, ctrl+h :
    - find, replace in file


  • ctrl+shift+f, ctrl+shift+h :
    - find, replace in project


  • alt+shift+f :
    - format codes indentation in file


  • ctrl+shift+up/down arrow
    - copy up/down selection line. very useful combined with alt+shift+arrow


  • alt+shift+up/down/left/right arrow
    - move selection


  • ctrl+space
    - show code completion


  • ctrl+shift+a
    - go to view from controller or to controller from view


  • ctrl+click / ctrl+b
    - go to declaration


  • ctrl+tab, ctrl+shift+tab
    - next/prev tab


  • alt+shift+r
    - open rake task window


  • alt+insert
    - open generate window


  • ctrl+w
    - close document


  • ctrl+shift+w
    - close all documents


  • alt+shift+w
    - [custom shortcut] close other documents

[shared] netbeans useful plugins



  • Bundled subversion client for windows
    - What: self explanatory
    - Install: Tools, Plugins


  • Cucumber features
    - What: support cucumber files and add cucumber functionality
    - Install: http://github.com/QuBiT/cucumber-netbeans-plugin


  • Copy paste history
    - What: add copy (ctrl+c) history functionality, very useful!
    - Install: http://plugins.netbeans.org/PluginPortal/faces/PluginDetailPage.jsp?pluginid=78


  • jVi
    - What: vi/vim editor clone
    - Install: http://sourceforge.net/projects/jvi/files/