-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
5,857 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
#!/usr/bin/env ruby | ||
#-- | ||
# Copyright 2004, 2006 by Jim Weirich (jim@weirichhouse.org). | ||
# All rights reserved. | ||
|
||
# Permission is granted for use, copying, modification, distribution, | ||
# and distribution of modified versions of this work as long as the | ||
# above copyright notice is included. | ||
#++ | ||
|
||
###################################################################### | ||
# BlankSlate provides an abstract base class with no predefined | ||
# methods (except for <tt>\_\_send__</tt> and <tt>\_\_id__</tt>). | ||
# BlankSlate is useful as a base class when writing classes that | ||
# depend upon <tt>method_missing</tt> (e.g. dynamic proxies). | ||
# | ||
class BlankSlate | ||
class << self | ||
|
||
# Hide the method named +name+ in the BlankSlate class. Don't | ||
# hide +instance_eval+ or any method beginning with "__". | ||
def hide(name) | ||
if instance_methods.include?(name.to_s) and | ||
name !~ /^(__|instance_eval)/ | ||
@hidden_methods ||= {} | ||
@hidden_methods[name.to_sym] = instance_method(name) | ||
undef_method name | ||
end | ||
end | ||
|
||
def find_hidden_method(name) | ||
@hidden_methods ||= {} | ||
@hidden_methods[name] || superclass.find_hidden_method(name) | ||
end | ||
|
||
# Redefine a previously hidden method so that it may be called on a blank | ||
# slate object. | ||
def reveal(name) | ||
bound_method = nil | ||
unbound_method = find_hidden_method(name) | ||
fail "Don't know how to reveal method '#{name}'" unless unbound_method | ||
define_method(name) do |*args| | ||
bound_method ||= unbound_method.bind(self) | ||
bound_method.call(*args) | ||
end | ||
end | ||
end | ||
|
||
instance_methods.each { |m| hide(m) } | ||
end | ||
|
||
###################################################################### | ||
# Since Ruby is very dynamic, methods added to the ancestors of | ||
# BlankSlate <em>after BlankSlate is defined</em> will show up in the | ||
# list of available BlankSlate methods. We handle this by defining a | ||
# hook in the Object and Kernel classes that will hide any method | ||
# defined after BlankSlate has been loaded. | ||
# | ||
module Kernel | ||
class << self | ||
alias_method :blank_slate_method_added, :method_added | ||
|
||
# Detect method additions to Kernel and remove them in the | ||
# BlankSlate class. | ||
def method_added(name) | ||
result = blank_slate_method_added(name) | ||
return result if self != Kernel | ||
BlankSlate.hide(name) | ||
result | ||
end | ||
end | ||
end | ||
|
||
###################################################################### | ||
# Same as above, except in Object. | ||
# | ||
class Object | ||
class << self | ||
alias_method :blank_slate_method_added, :method_added | ||
|
||
# Detect method additions to Object and remove them in the | ||
# BlankSlate class. | ||
def method_added(name) | ||
result = blank_slate_method_added(name) | ||
return result if self != Object | ||
BlankSlate.hide(name) | ||
result | ||
end | ||
|
||
def find_hidden_method(name) | ||
nil | ||
end | ||
end | ||
end | ||
|
||
###################################################################### | ||
# Also, modules included into Object need to be scanned and have their | ||
# instance methods removed from blank slate. In theory, modules | ||
# included into Kernel would have to be removed as well, but a | ||
# "feature" of Ruby prevents late includes into modules from being | ||
# exposed in the first place. | ||
# | ||
class Module | ||
alias blankslate_original_append_features append_features | ||
def append_features(mod) | ||
result = blankslate_original_append_features(mod) | ||
return result if mod != Object | ||
instance_methods.each do |name| | ||
BlankSlate.hide(name) | ||
end | ||
result | ||
end | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env ruby | ||
|
||
#-- | ||
# Copyright 2004 by Jim Weirich (jim@weirichhouse.org). | ||
# All rights reserved. | ||
|
||
# Permission is granted for use, copying, modification, distribution, | ||
# and distribution of modified versions of this work as long as the | ||
# above copyright notice is included. | ||
#++ | ||
|
||
require 'builder/xmlmarkup' | ||
require 'builder/xmlevents' |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env ruby | ||
#-- | ||
# Copyright 2004, 2006 by Jim Weirich (jim@weirichhouse.org). | ||
# All rights reserved. | ||
|
||
# Permission is granted for use, copying, modification, distribution, | ||
# and distribution of modified versions of this work as long as the | ||
# above copyright notice is included. | ||
#++ | ||
|
||
require 'blankslate' | ||
|
||
###################################################################### | ||
# BlankSlate has been promoted to a top level name and is now | ||
# available as a standalone gem. We make the name available in the | ||
# Builder namespace for compatibility. | ||
# | ||
module Builder | ||
BlankSlate = ::BlankSlate | ||
end |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
#!/usr/bin/env ruby | ||
|
||
# The XChar library is provided courtesy of Sam Ruby (See | ||
# http://intertwingly.net/stories/2005/09/28/xchar.rb) | ||
|
||
# -------------------------------------------------------------------- | ||
|
||
# If the Builder::XChar module is not currently defined, fail on any | ||
# name clashes in standard library classes. | ||
|
||
module Builder | ||
def self.check_for_name_collision(klass, method_name, defined_constant=nil) | ||
if klass.instance_methods.include?(method_name) | ||
fail RuntimeError, | ||
"Name Collision: Method '#{method_name}' is already defined in #{klass}" | ||
end | ||
end | ||
end | ||
|
||
if ! defined?(Builder::XChar) | ||
Builder.check_for_name_collision(String, "to_xs") | ||
Builder.check_for_name_collision(Fixnum, "xchr") | ||
end | ||
|
||
###################################################################### | ||
module Builder | ||
|
||
#################################################################### | ||
# XML Character converter, from Sam Ruby: | ||
# (see http://intertwingly.net/stories/2005/09/28/xchar.rb). | ||
# | ||
module XChar # :nodoc: | ||
|
||
# See | ||
# http://intertwingly.net/stories/2004/04/14/i18n.html#CleaningWindows | ||
# for details. | ||
CP1252 = { # :nodoc: | ||
128 => 8364, # euro sign | ||
130 => 8218, # single low-9 quotation mark | ||
131 => 402, # latin small letter f with hook | ||
132 => 8222, # double low-9 quotation mark | ||
133 => 8230, # horizontal ellipsis | ||
134 => 8224, # dagger | ||
135 => 8225, # double dagger | ||
136 => 710, # modifier letter circumflex accent | ||
137 => 8240, # per mille sign | ||
138 => 352, # latin capital letter s with caron | ||
139 => 8249, # single left-pointing angle quotation mark | ||
140 => 338, # latin capital ligature oe | ||
142 => 381, # latin capital letter z with caron | ||
145 => 8216, # left single quotation mark | ||
146 => 8217, # right single quotation mark | ||
147 => 8220, # left double quotation mark | ||
148 => 8221, # right double quotation mark | ||
149 => 8226, # bullet | ||
150 => 8211, # en dash | ||
151 => 8212, # em dash | ||
152 => 732, # small tilde | ||
153 => 8482, # trade mark sign | ||
154 => 353, # latin small letter s with caron | ||
155 => 8250, # single right-pointing angle quotation mark | ||
156 => 339, # latin small ligature oe | ||
158 => 382, # latin small letter z with caron | ||
159 => 376, # latin capital letter y with diaeresis | ||
} | ||
|
||
# See http://www.w3.org/TR/REC-xml/#dt-chardata for details. | ||
PREDEFINED = { | ||
38 => '&', # ampersand | ||
60 => '<', # left angle bracket | ||
62 => '>', # right angle bracket | ||
} | ||
|
||
# See http://www.w3.org/TR/REC-xml/#charsets for details. | ||
VALID = [ | ||
0x9, 0xA, 0xD, | ||
(0x20..0xD7FF), | ||
(0xE000..0xFFFD), | ||
(0x10000..0x10FFFF) | ||
] | ||
end | ||
|
||
end | ||
|
||
|
||
###################################################################### | ||
# Enhance the Fixnum class with a XML escaped character conversion. | ||
# | ||
class Fixnum | ||
XChar = Builder::XChar if ! defined?(XChar) | ||
|
||
# XML escaped version of chr | ||
def xchr | ||
n = XChar::CP1252[self] || self | ||
case n when *XChar::VALID | ||
XChar::PREDEFINED[n] or (n<128 ? n.chr : "&##{n};") | ||
else | ||
'*' | ||
end | ||
end | ||
end | ||
|
||
|
||
###################################################################### | ||
# Enhance the String class with a XML escaped character version of | ||
# to_s. | ||
# | ||
class String | ||
# XML escaped version of to_s | ||
def to_xs | ||
unpack('U*').map {|n| n.xchr}.join # ASCII, UTF-8 | ||
rescue | ||
unpack('C*').map {|n| n.xchr}.join # ISO-8859-1, WIN-1252 | ||
end | ||
end |
Oops, something went wrong.