ceritium-rails-footnotes 3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +21 -0
- data/README +147 -0
- data/Rakefile +19 -0
- data/lib/rails-footnotes.rb +20 -0
- data/lib/rails-footnotes/backtracer.rb +34 -0
- data/lib/rails-footnotes/footnotes.rb +333 -0
- data/lib/rails-footnotes/notes/abstract_note.rb +163 -0
- data/lib/rails-footnotes/notes/components_note.rb +79 -0
- data/lib/rails-footnotes/notes/controller_note.rb +55 -0
- data/lib/rails-footnotes/notes/cookies_note.rb +19 -0
- data/lib/rails-footnotes/notes/env_note.rb +19 -0
- data/lib/rails-footnotes/notes/files_note.rb +44 -0
- data/lib/rails-footnotes/notes/filters_note.rb +53 -0
- data/lib/rails-footnotes/notes/general_note.rb +19 -0
- data/lib/rails-footnotes/notes/javascripts_note.rb +16 -0
- data/lib/rails-footnotes/notes/layout_note.rb +28 -0
- data/lib/rails-footnotes/notes/log_note.rb +36 -0
- data/lib/rails-footnotes/notes/params_note.rb +19 -0
- data/lib/rails-footnotes/notes/partials_note.rb +36 -0
- data/lib/rails-footnotes/notes/queries_note.rb +146 -0
- data/lib/rails-footnotes/notes/routes_note.rb +59 -0
- data/lib/rails-footnotes/notes/session_note.rb +15 -0
- data/lib/rails-footnotes/notes/stylesheets_note.rb +16 -0
- data/lib/rails-footnotes/notes/view_note.rb +29 -0
- data/test/footnotes_test.rb +199 -0
- data/test/notes/abstract_note_test.rb +107 -0
- data/test/test_helper.rb +9 -0
- metadata +82 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
Copyright (c) 2006 Coda Hale
|
2
|
+
Copyright (c) 2008 José Valim (jose.valim at gmail dot com)
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
a copy of this software and associated documentation files (the
|
6
|
+
"Software"), to deal in the Software without restriction, including
|
7
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README
ADDED
@@ -0,0 +1,147 @@
|
|
1
|
+
Rails Footnotes
|
2
|
+
License: MIT
|
3
|
+
Version: 3.4
|
4
|
+
|
5
|
+
You can also read this README in pretty html at the GitHub project Wiki page
|
6
|
+
|
7
|
+
http://github.com/josevalim/rails-footnotes/wikis/home
|
8
|
+
|
9
|
+
|
10
|
+
Description
|
11
|
+
-----------
|
12
|
+
|
13
|
+
If you are developing in Rails you should know the plugin! It displays
|
14
|
+
footnotes in your application for easy debugging, such as sessions,
|
15
|
+
request parameters, cookies, filter chain, routes, queries, etc.
|
16
|
+
|
17
|
+
Even more, it contains links to open files directly in your editor including
|
18
|
+
your backtrace lines.
|
19
|
+
|
20
|
+
|
21
|
+
Installation
|
22
|
+
------------
|
23
|
+
|
24
|
+
Install Rails Footnotes is very easy. If you are running on Rails 2.3 just run
|
25
|
+
the following:
|
26
|
+
|
27
|
+
gem sources -a http://gems.github.com
|
28
|
+
sudo gem install josevalim-rails-footnotes
|
29
|
+
|
30
|
+
In RAILS_ROOT/config/environments/development.rb (yes, you want it only in development):
|
31
|
+
|
32
|
+
config.gem "josevalim-rails-footnotes", :lib => "rails-footnotes", :source => "http://gems.github.com"
|
33
|
+
|
34
|
+
If you want it as plugin, just do:
|
35
|
+
|
36
|
+
script/plugin install git://github.com/josevalim/rails-footnotes.git
|
37
|
+
|
38
|
+
If you are running on Rails 2.2 or Rails 2.1 you should do:
|
39
|
+
|
40
|
+
cd myapp
|
41
|
+
git clone git://github.com/josevalim/rails-footnotes.git
|
42
|
+
cd vendor/plugins/rails-footnotes
|
43
|
+
git checkout VERSION_NUMBER
|
44
|
+
rm -rf ./.git
|
45
|
+
|
46
|
+
Where you should replace VERSION_NUMBER for "v3.3.2" for Rails 2.2 and "v3.2.2"
|
47
|
+
for Rails 2.1 (without the quotes).
|
48
|
+
|
49
|
+
Configuration
|
50
|
+
-------------
|
51
|
+
|
52
|
+
If you are not using Textmate as text editor, in your environment.rb or
|
53
|
+
in an initializer do:
|
54
|
+
|
55
|
+
if defined?(Footnotes)
|
56
|
+
Footnotes::Filter.prefix = 'txmt://open?url=file://%s&line=%d&column=%d'
|
57
|
+
end
|
58
|
+
|
59
|
+
Where you are going to choose a prefix compatible with your text editor. The %s is
|
60
|
+
replaced by the name of the file, the first %d is replaced by the line number and
|
61
|
+
the second %d is replaced by the column. You can also enable this behaviour in other
|
62
|
+
editors following the steps in the link below:
|
63
|
+
|
64
|
+
http://josevalim.blogspot.com/2008/06/textmate-protocol-behavior-on-any.html
|
65
|
+
|
66
|
+
By default, footnotes are appended at the end of the page with default stylesheet. If you want
|
67
|
+
to change their position, you can define a div with id "footnotes_holder" or define your own stylesheet
|
68
|
+
by turning footnotes stylesheet off:
|
69
|
+
|
70
|
+
Footnotes::Filter.no_style = true
|
71
|
+
|
72
|
+
Another option is to allow multiple notes to be opened at the same time:
|
73
|
+
|
74
|
+
Footnotes::Filter.multiple_notes = true
|
75
|
+
|
76
|
+
Finally, you can control which notes you want to show. The default are:
|
77
|
+
|
78
|
+
Footnotes::Filter.notes = [:session, :cookies, :params, :filters, :routes, :env, :queries, :log, :general]
|
79
|
+
|
80
|
+
|
81
|
+
Creating your own notes
|
82
|
+
-----------------------
|
83
|
+
|
84
|
+
Create your notes to integrate with Footnotes is easy.
|
85
|
+
|
86
|
+
1. Create a Footnotes::Notes::YourExampleNote class
|
87
|
+
|
88
|
+
2. Implement the necessary methods (check abstract_note.rb file in lib/notes)
|
89
|
+
|
90
|
+
3. Append your example note in Footnotes::Filter.notes array (usually at the end of your environment file or in an initializer):
|
91
|
+
|
92
|
+
For example, to create a note that shows info about the user logged in your application you just have to do:
|
93
|
+
|
94
|
+
module Footnotes
|
95
|
+
module Notes
|
96
|
+
class CurrentUserNote < AbstractNote
|
97
|
+
# This method always receives a controller
|
98
|
+
#
|
99
|
+
def initialize(controller)
|
100
|
+
@current_user = controller.instance_variable_get("@current_user")
|
101
|
+
end
|
102
|
+
|
103
|
+
# The name that will appear as legend in fieldsets
|
104
|
+
#
|
105
|
+
def legend
|
106
|
+
"Current user: #{@current_user.name}"
|
107
|
+
end
|
108
|
+
|
109
|
+
# This Note is only valid if we actually found an user
|
110
|
+
# If it's not valid, it won't be displayed
|
111
|
+
#
|
112
|
+
def valid?
|
113
|
+
@current_user
|
114
|
+
end
|
115
|
+
|
116
|
+
# The fieldset content
|
117
|
+
#
|
118
|
+
def content
|
119
|
+
escape(@current_user.inspect)
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
Then put in your environment:
|
126
|
+
|
127
|
+
Footnotes::Filter.notes += [:current_user]
|
128
|
+
|
129
|
+
|
130
|
+
Bugs and Feedback
|
131
|
+
-----------------
|
132
|
+
|
133
|
+
If you discover any bugs, please send an e-mail to jose.valim@gmail.com
|
134
|
+
If you just want to give some positive feedback or drop a line, that's fine too! =)
|
135
|
+
|
136
|
+
Copyright (c) 2009 José Valim
|
137
|
+
http://www.pagestacker.com/
|
138
|
+
http://josevalim.blogspot.com/
|
139
|
+
|
140
|
+
|
141
|
+
Version 2.0
|
142
|
+
-----------
|
143
|
+
|
144
|
+
Until version 2.0, this plugin was created and maintained by:
|
145
|
+
|
146
|
+
Duane Johnson (duane.johnson@gmail.com)
|
147
|
+
http://blog.inquirylabs.com/
|
data/Rakefile
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'rake'
|
2
|
+
require 'rake/testtask'
|
3
|
+
require 'rake/rdoctask'
|
4
|
+
|
5
|
+
desc 'Run tests for Footnotes.'
|
6
|
+
Rake::TestTask.new(:test) do |t|
|
7
|
+
t.pattern = 'test/**/*_test.rb'
|
8
|
+
t.verbose = true
|
9
|
+
end
|
10
|
+
|
11
|
+
desc 'Generate documentation for Footnotes.'
|
12
|
+
Rake::RDocTask.new(:rdoc) do |rdoc|
|
13
|
+
rdoc.rdoc_dir = 'rdoc'
|
14
|
+
rdoc.title = 'Footnotes'
|
15
|
+
rdoc.options << '--line-numbers' << '--inline-source'
|
16
|
+
rdoc.rdoc_files.include('README')
|
17
|
+
rdoc.rdoc_files.include('MIT-LICENSE')
|
18
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
19
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
if RAILS_ENV == 'development'
|
2
|
+
dir = File.dirname(__FILE__)
|
3
|
+
require File.join(dir, 'rails-footnotes', 'footnotes')
|
4
|
+
require File.join(dir, 'rails-footnotes', 'backtracer')
|
5
|
+
|
6
|
+
# Load all notes
|
7
|
+
#
|
8
|
+
Dir[File.join(dir, 'rails-footnotes', 'notes', '*.rb')].each do |note|
|
9
|
+
require note
|
10
|
+
end
|
11
|
+
|
12
|
+
# The footnotes are applied by default to all actions. You can change this
|
13
|
+
# behavior commenting the after_filter line below and putting it in Your
|
14
|
+
# application. Then you can cherrypick in which actions it will appear.
|
15
|
+
#
|
16
|
+
class ActionController::Base
|
17
|
+
prepend_before_filter Footnotes::Filter
|
18
|
+
after_filter Footnotes::Filter
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Footnotes
|
2
|
+
module Extensions
|
3
|
+
module Exception
|
4
|
+
def self.included(base)
|
5
|
+
base.class_eval do
|
6
|
+
alias_method_chain :clean_backtrace, :links
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
def add_links_to_backtrace(lines)
|
11
|
+
lines.collect do |line|
|
12
|
+
expanded = line.gsub('#{RAILS_ROOT}', RAILS_ROOT)
|
13
|
+
if match = expanded.match(/^(.+):(\d+):in/) || match = expanded.match(/^(.+):(\d+)\s*$/)
|
14
|
+
file = File.expand_path(match[1])
|
15
|
+
line_number = match[2]
|
16
|
+
html = %[<a href="#{Footnotes::Filter.prefix(file, line_number, 1)}">#{line}</a>]
|
17
|
+
else
|
18
|
+
line
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def clean_backtrace_with_links
|
24
|
+
unless ::Footnotes::Filter.prefix.blank?
|
25
|
+
add_links_to_backtrace(clean_backtrace_without_links)
|
26
|
+
else
|
27
|
+
clean_backtrace_without_links
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
Exception.send :include, Footnotes::Extensions::Exception
|
@@ -0,0 +1,333 @@
|
|
1
|
+
module Footnotes
|
2
|
+
class Filter
|
3
|
+
@@no_style = false
|
4
|
+
@@multiple_notes = false
|
5
|
+
@@klasses = []
|
6
|
+
|
7
|
+
# Default link prefix is textmate
|
8
|
+
@@prefix = 'txmt://open?url=file://%s&line=%d&column=%d'
|
9
|
+
|
10
|
+
# Edit notes
|
11
|
+
@@notes = [ :partials, :controller, :view, :layout, :stylesheets, :javascripts ]
|
12
|
+
# Show notes
|
13
|
+
@@notes += [ :session, :cookies, :params, :filters, :routes, :env, :queries, :log, :general ]
|
14
|
+
|
15
|
+
# :no_style => If you don't want the style to be appended to your pages
|
16
|
+
# :notes => Class variable that holds the notes to be processed
|
17
|
+
# :prefix => Prefix appended to FootnotesLinks
|
18
|
+
# :multiple_notes => Set to true if you want to open several notes at the same time
|
19
|
+
cattr_accessor :no_style, :notes, :prefix, :multiple_notes
|
20
|
+
|
21
|
+
class << self
|
22
|
+
# Method called to start the notes
|
23
|
+
# It's a before filter prepend in the controller
|
24
|
+
#
|
25
|
+
def before(controller)
|
26
|
+
Footnotes::Filter.start!(controller)
|
27
|
+
end
|
28
|
+
|
29
|
+
# Method that calls Footnotes to attach its contents
|
30
|
+
#
|
31
|
+
def after(controller)
|
32
|
+
filter = Footnotes::Filter.new(controller)
|
33
|
+
filter.add_footnotes!
|
34
|
+
filter.close!(controller)
|
35
|
+
end
|
36
|
+
|
37
|
+
# Calls the class method start! in each note
|
38
|
+
# Sometimes notes need to set variables or clean the environment to work properly
|
39
|
+
# This method allows this kind of setup
|
40
|
+
#
|
41
|
+
def start!(controller)
|
42
|
+
@@klasses = []
|
43
|
+
|
44
|
+
each_with_rescue(@@notes.flatten) do |note|
|
45
|
+
klass = "Footnotes::Notes::#{note.to_s.camelize}Note".constantize
|
46
|
+
klass.start!(controller) if klass.respond_to?(:start!)
|
47
|
+
@@klasses << klass
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
# Process notes, discarding only the note if any problem occurs
|
52
|
+
#
|
53
|
+
def each_with_rescue(notes)
|
54
|
+
delete_me = []
|
55
|
+
|
56
|
+
notes.each do |note|
|
57
|
+
begin
|
58
|
+
yield note
|
59
|
+
rescue Exception => e
|
60
|
+
# Discard note if it has a problem
|
61
|
+
log_error("Footnotes #{note.to_s.camelize}Note Exception", e)
|
62
|
+
delete_me << note
|
63
|
+
next
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
delete_me.each{ |note| notes.delete(note) }
|
68
|
+
return notes
|
69
|
+
end
|
70
|
+
|
71
|
+
# Logs the error using specified title and format
|
72
|
+
#
|
73
|
+
def log_error(title, exception)
|
74
|
+
RAILS_DEFAULT_LOGGER.error "#{title}: #{exception}\n#{exception.backtrace.join("\n")}"
|
75
|
+
end
|
76
|
+
|
77
|
+
# If none argument is sent, simply return the prefix.
|
78
|
+
# Otherwise, replace the args in the prefix.
|
79
|
+
#
|
80
|
+
def prefix(*args)
|
81
|
+
if args.empty?
|
82
|
+
@@prefix
|
83
|
+
else
|
84
|
+
format(@@prefix, *args)
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
end
|
89
|
+
|
90
|
+
def initialize(controller)
|
91
|
+
@controller = controller
|
92
|
+
@template = controller.instance_variable_get(:@template)
|
93
|
+
@body = controller.response.body
|
94
|
+
@notes = []
|
95
|
+
end
|
96
|
+
|
97
|
+
def add_footnotes!
|
98
|
+
add_footnotes_without_validation! if valid?
|
99
|
+
rescue Exception => e
|
100
|
+
# Discard footnotes if there are any problems
|
101
|
+
self.class.log_error("Footnotes Exception", e)
|
102
|
+
end
|
103
|
+
|
104
|
+
# Calls the class method close! in each note
|
105
|
+
# Sometimes notes need to finish their work even after being read
|
106
|
+
# This method allows this kind of work
|
107
|
+
#
|
108
|
+
def close!(controller)
|
109
|
+
each_with_rescue(@@klasses) do |klass|
|
110
|
+
klass.close!(controller)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
protected
|
115
|
+
def valid?
|
116
|
+
performed_render? && valid_format? && valid_content_type? && @body.is_a?(String) && !component_request? && !xhr?
|
117
|
+
end
|
118
|
+
|
119
|
+
def add_footnotes_without_validation!
|
120
|
+
initialize_notes!
|
121
|
+
insert_styles unless @@no_style
|
122
|
+
insert_footnotes
|
123
|
+
end
|
124
|
+
|
125
|
+
def initialize_notes!
|
126
|
+
each_with_rescue(@@klasses) do |klass|
|
127
|
+
note = klass.new(@controller)
|
128
|
+
@notes << note if note.respond_to?(:valid?) && note.valid?
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
def performed_render?
|
133
|
+
@controller.instance_variable_get(:@performed_render)
|
134
|
+
end
|
135
|
+
|
136
|
+
def valid_format?
|
137
|
+
[:html,:rhtml,:xhtml,:rxhtml].include?(@template.template_format.to_sym)
|
138
|
+
end
|
139
|
+
|
140
|
+
def valid_content_type?
|
141
|
+
c = @controller.response.headers['Content-Type'].to_s
|
142
|
+
(c.empty? || c =~ /html/)
|
143
|
+
end
|
144
|
+
|
145
|
+
def component_request?
|
146
|
+
@controller.instance_variable_get(:@parent_controller)
|
147
|
+
end
|
148
|
+
|
149
|
+
def xhr?
|
150
|
+
@controller.request.xhr?
|
151
|
+
end
|
152
|
+
|
153
|
+
#
|
154
|
+
# Insertion methods
|
155
|
+
#
|
156
|
+
|
157
|
+
def insert_styles
|
158
|
+
insert_text :before, /<\/head>/i, <<-HTML
|
159
|
+
<!-- Footnotes Style -->
|
160
|
+
<style type="text/css">
|
161
|
+
#footnotes_debug {margin: 2em 0 1em 0; text-align: center; color: #444; line-height: 16px;}
|
162
|
+
#footnotes_debug a {text-decoration: none; color: #444; line-height: 18px;}
|
163
|
+
#footnotes_debug table {text-align: center;}
|
164
|
+
#footnotes_debug table td {padding: 0 5px;}
|
165
|
+
#footnotes_debug tbody {text-align: left;}
|
166
|
+
#footnotes_debug legend {background-color: #FFF;}
|
167
|
+
#footnotes_debug fieldset {text-align: left; border: 1px dashed #aaa; padding: 0.5em 1em 1em 1em; margin: 1em 2em; color: #444; background-color: #FFF;}
|
168
|
+
/* Aditional Stylesheets */
|
169
|
+
#{@notes.map(&:stylesheet).compact.join("\n")}
|
170
|
+
</style>
|
171
|
+
<!-- End Footnotes Style -->
|
172
|
+
HTML
|
173
|
+
end
|
174
|
+
|
175
|
+
def insert_footnotes
|
176
|
+
# Fieldsets method should be called first
|
177
|
+
content = fieldsets
|
178
|
+
|
179
|
+
footnotes_html = <<-HTML
|
180
|
+
<!-- Footnotes -->
|
181
|
+
<div style="clear:both"></div>
|
182
|
+
<div id="footnotes_debug">
|
183
|
+
#{links}
|
184
|
+
#{content}
|
185
|
+
<script type="text/javascript">
|
186
|
+
var Footnotes = function() {
|
187
|
+
|
188
|
+
function hideAll(){
|
189
|
+
#{close unless @@multiple_notes}
|
190
|
+
}
|
191
|
+
|
192
|
+
function hideAllAndToggle(id) {
|
193
|
+
hideAll();
|
194
|
+
toggle(id)
|
195
|
+
}
|
196
|
+
|
197
|
+
function toggle(id){
|
198
|
+
var el = document.getElementById(id);
|
199
|
+
if (el.style.display == 'none') {
|
200
|
+
Footnotes.show(el);
|
201
|
+
} else {
|
202
|
+
Footnotes.hide(el);
|
203
|
+
}
|
204
|
+
|
205
|
+
location.href = '#footnotes_debug';
|
206
|
+
}
|
207
|
+
|
208
|
+
function show(element) {
|
209
|
+
element.style.display = 'block'
|
210
|
+
}
|
211
|
+
|
212
|
+
function hide(element) {
|
213
|
+
element.style.display = 'none'
|
214
|
+
}
|
215
|
+
|
216
|
+
return {
|
217
|
+
show: show,
|
218
|
+
hide: hide,
|
219
|
+
toggle: toggle,
|
220
|
+
hideAllAndToggle: hideAllAndToggle
|
221
|
+
}
|
222
|
+
}();
|
223
|
+
/* Additional Javascript */
|
224
|
+
#{@notes.map(&:javascript).compact.join("\n")}
|
225
|
+
</script>
|
226
|
+
</div>
|
227
|
+
<!-- End Footnotes -->
|
228
|
+
HTML
|
229
|
+
|
230
|
+
if @body =~ %r{<div[^>]+id=['"]footnotes_holder['"][^>]*>}
|
231
|
+
# Insert inside the "footnotes_holder" div if it exists
|
232
|
+
insert_text :after, %r{<div[^>]+id=['"]footnotes_holder['"][^>]*>}, footnotes_html
|
233
|
+
else
|
234
|
+
# Otherwise, try to insert as the last part of the html body
|
235
|
+
insert_text :before, /<\/body>/i, footnotes_html
|
236
|
+
end
|
237
|
+
end
|
238
|
+
|
239
|
+
# Process notes to gets their links in their equivalent row
|
240
|
+
#
|
241
|
+
def links
|
242
|
+
links = Hash.new([])
|
243
|
+
order = []
|
244
|
+
each_with_rescue(@notes) do |note|
|
245
|
+
order << note.row
|
246
|
+
links[note.row] += [link_helper(note)]
|
247
|
+
end
|
248
|
+
|
249
|
+
html = ''
|
250
|
+
order.uniq!
|
251
|
+
order.each do |row|
|
252
|
+
html << "#{row.is_a?(String) ? row : row.to_s.camelize}: #{links[row].join(" | \n")}<br />"
|
253
|
+
end
|
254
|
+
html
|
255
|
+
end
|
256
|
+
|
257
|
+
# Process notes to get their content
|
258
|
+
#
|
259
|
+
def fieldsets
|
260
|
+
content = ''
|
261
|
+
each_with_rescue(@notes) do |note|
|
262
|
+
next unless note.has_fieldset?
|
263
|
+
content << <<-HTML
|
264
|
+
<fieldset id="#{note.to_sym}_debug_info" style="display: none">
|
265
|
+
<legend>#{note.legend}</legend>
|
266
|
+
<div>#{note.content}</div>
|
267
|
+
</fieldset>
|
268
|
+
HTML
|
269
|
+
end
|
270
|
+
content
|
271
|
+
end
|
272
|
+
|
273
|
+
# Process notes to get javascript code to close them.
|
274
|
+
# This method is only used when multiple_notes is false.
|
275
|
+
#
|
276
|
+
def close
|
277
|
+
javascript = ''
|
278
|
+
each_with_rescue(@notes) do |note|
|
279
|
+
next unless note.has_fieldset?
|
280
|
+
javascript << close_helper(note)
|
281
|
+
end
|
282
|
+
javascript
|
283
|
+
end
|
284
|
+
|
285
|
+
#
|
286
|
+
# Helpers
|
287
|
+
#
|
288
|
+
|
289
|
+
# Helper that creates the javascript code to close the note
|
290
|
+
#
|
291
|
+
def close_helper(note)
|
292
|
+
"Footnotes.hide(document.getElementById('#{note.to_sym}_debug_info'));\n"
|
293
|
+
end
|
294
|
+
|
295
|
+
# Helper that creates the link and javascript code when note is clicked
|
296
|
+
#
|
297
|
+
def link_helper(note)
|
298
|
+
onclick = note.onclick
|
299
|
+
unless href = note.link
|
300
|
+
href = '#'
|
301
|
+
onclick ||= "Footnotes.hideAllAndToggle('#{note.to_sym}_debug_info');return false;" if note.has_fieldset?
|
302
|
+
end
|
303
|
+
|
304
|
+
"<a href=\"#{href}\" onclick=\"#{onclick}\">#{note.title}</a>"
|
305
|
+
end
|
306
|
+
|
307
|
+
# Inserts text in to the body of the document
|
308
|
+
# +pattern+ is a Regular expression which, when matched, will cause +new_text+
|
309
|
+
# to be inserted before or after the match. If no match is found, +new_text+ is appended
|
310
|
+
# to the body instead. +position+ may be either :before or :after
|
311
|
+
#
|
312
|
+
def insert_text(position, pattern, new_text)
|
313
|
+
index = case pattern
|
314
|
+
when Regexp
|
315
|
+
if match = @body.match(pattern)
|
316
|
+
match.offset(0)[position == :before ? 0 : 1]
|
317
|
+
else
|
318
|
+
@body.size
|
319
|
+
end
|
320
|
+
else
|
321
|
+
pattern
|
322
|
+
end
|
323
|
+
@body.insert index, new_text
|
324
|
+
end
|
325
|
+
|
326
|
+
# Instance each_with_rescue method
|
327
|
+
#
|
328
|
+
def each_with_rescue(*args, &block)
|
329
|
+
self.class.each_with_rescue(*args, &block)
|
330
|
+
end
|
331
|
+
|
332
|
+
end
|
333
|
+
end
|