-
-
Notifications
You must be signed in to change notification settings - Fork 903
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding initialize to all nodes. closes #56
Squashed commit of the following: commit 14514e7dbef152ded45dc050ba3a671102a052a0 Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:18:40 2009 -0700 fixing up attribute initialize commit 2969620eb170cb59e7268ac442d87458baca9585 Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:16:45 2009 -0700 fixing xml comment initialize commit ed4affcfc5df76c08f387ec599dbf0b1ddd35385 Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:13:12 2009 -0700 fixing entity reference initialize commit 87706dd8afd95da85dca865f11cd9ccb06b7b761 Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:11:07 2009 -0700 adding initialize for processing instruction commit e02d099eb71abae7ac99576200036ece841cb046 Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:05:42 2009 -0700 getting document fragment working commit eed074ec01a300169703e67326fc06de4c15ef8a Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:02:03 2009 -0700 fixing text node initialize commit 84cfbed5eaff63b378ccdac267f3c2cd677fa502 Author: Aaron Patterson <[email protected]> Date: Sat May 16 19:00:28 2009 -0700 starting work on initialize method
- Loading branch information
1 parent
ad5effa
commit 9f904ba
Showing
14 changed files
with
121 additions
and
22 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
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
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
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
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
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
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
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
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
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
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
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
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,8 @@ | ||
module Nokogiri | ||
module XML | ||
class ProcessingInstruction < Node | ||
def initialize document, name, content | ||
end | ||
end | ||
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