Skip to content

Instantly share code, notes, and snippets.

View ghiden's full-sized avatar

Hidenari Nozaki ghiden

View GitHub Profile
$ git diff
diff --git a/init.rb b/init.rb
index f0a5316..29f7a2d 100644
--- a/init.rb
+++ b/init.rb
@@ -73,6 +73,14 @@ Redmine::WikiFormatting::Macros.register do
:id => attach.id,
:filename => attach.filename
+ thumb_filename = "#{tw}_#{th}_#{attach.disk_filename}"
# using Paginator with MongoMapper
# index action in a controller
def index
@pager = Paginator.new(User.count, 20) do |offset, per_page|
User.all(:offset => offset, :limit => per_page, :order => "created_at DESC")
end
@users = @pager.page(params[:page])
respond_to do |format|
format.html # index.html.erb
@ghiden
ghiden / gist:441735
Created June 17, 2010 05:56
flash[:notice] and flash[:error]
<p id="flash" class="<%= flash.keys.first.to_s %>"><%= flash.values.first %></p>
# inside rails controller, to check http headers
request.headers.each do |k,v|
logger.debug "#{k} -> #{v}"
end