bible_robot 0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/Gemfile +10 -0
- data/Gemfile.lock +33 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +20 -0
- data/Rakefile +44 -0
- data/bible_robot.gemspec +76 -0
- data/lib/bibleRobot/book.rb +30 -0
- data/lib/bibleRobot/chapter.rb +31 -0
- data/lib/bibleRobot/robot.rb +27 -0
- data/lib/bibleRobot/watchtower.rb +115 -0
- data/lib/bibleRobot.rb +4 -0
- data/spec/book_spec.rb +25 -0
- data/spec/chapter_spec.rb +25 -0
- data/spec/fixtures/index.htm +55 -0
- data/spec/fixtures/jude_chapter_001.htm +111 -0
- data/spec/fixtures/lu_chapters.htm +54 -0
- data/spec/fixtures/mt_chapter_001.htm +234 -0
- data/spec/fixtures/mt_chapters.htm +54 -0
- data/spec/fixtures/ob_chapter_001.htm +103 -0
- data/spec/robot_spec.rb +26 -0
- data/spec/watchtower_spec.rb +146 -0
- metadata +175 -0
data/.document
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
diff-lcs (1.1.2)
|
5
|
+
git (1.2.5)
|
6
|
+
hpricot (0.8.4)
|
7
|
+
jeweler (1.6.0)
|
8
|
+
bundler (~> 1.0.0)
|
9
|
+
git (>= 1.2.5)
|
10
|
+
rake
|
11
|
+
nokogiri (1.4.4)
|
12
|
+
rake (0.8.7)
|
13
|
+
rspec (2.6.0)
|
14
|
+
rspec-core (~> 2.6.0)
|
15
|
+
rspec-expectations (~> 2.6.0)
|
16
|
+
rspec-mocks (~> 2.6.0)
|
17
|
+
rspec-core (2.6.0)
|
18
|
+
rspec-expectations (2.6.0)
|
19
|
+
diff-lcs (~> 1.1.2)
|
20
|
+
rspec-mocks (2.6.0)
|
21
|
+
sanitize (2.0.1)
|
22
|
+
nokogiri (~> 1.4.4)
|
23
|
+
|
24
|
+
PLATFORMS
|
25
|
+
ruby
|
26
|
+
|
27
|
+
DEPENDENCIES
|
28
|
+
bundler (~> 1.0.0)
|
29
|
+
hpricot
|
30
|
+
jeweler (~> 1.6.0)
|
31
|
+
nokogiri (> 0)
|
32
|
+
rspec
|
33
|
+
sanitize
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Rubem Nakamura
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
= bibleRobot
|
2
|
+
|
3
|
+
Do you want to read the Bible?
|
4
|
+
This gem aims to provide an easy way to get and parse the Bible from diffent sites. Actually, parsing it from watchtower.org
|
5
|
+
|
6
|
+
== Contributing to bibleRobot
|
7
|
+
|
8
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
9
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
10
|
+
* Fork the project
|
11
|
+
* Start a feature/bugfix branch
|
12
|
+
* Commit and push until you are happy with your contribution
|
13
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
14
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
15
|
+
|
16
|
+
== Copyright
|
17
|
+
|
18
|
+
Copyright (c) 2011 Rubem Nakamura. See LICENSE.txt for
|
19
|
+
further details.
|
20
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'bundler'
|
5
|
+
begin
|
6
|
+
Bundler.setup(:default, :development)
|
7
|
+
rescue Bundler::BundlerError => e
|
8
|
+
$stderr.puts e.message
|
9
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
10
|
+
exit e.status_code
|
11
|
+
end
|
12
|
+
require 'rake'
|
13
|
+
|
14
|
+
require 'jeweler'
|
15
|
+
Jeweler::Tasks.new do |gem|
|
16
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
17
|
+
gem.name = "bible_robot"
|
18
|
+
gem.homepage = "http://github.com/rubemz/bibleRobot"
|
19
|
+
gem.license = "MIT"
|
20
|
+
gem.summary = %Q{}
|
21
|
+
gem.description = %Q{Aims to provide an easy way to get and parse the Bible from diffent sites. Actually, parsing it from watchtower.org}
|
22
|
+
gem.email = "rubem.nakamura@gmail.com"
|
23
|
+
gem.authors = ["Rubem Nakamura"]
|
24
|
+
gem.version = "0.11"
|
25
|
+
gem.require_path = "lib"
|
26
|
+
end
|
27
|
+
Jeweler::RubygemsDotOrgTasks.new
|
28
|
+
|
29
|
+
require 'rspec/core/rake_task'
|
30
|
+
RSpec::Core::RakeTask.new(:rspec) do |t|
|
31
|
+
t.rspec_opts = ['--format documentation --color']
|
32
|
+
end
|
33
|
+
|
34
|
+
task :default => :rspec
|
35
|
+
|
36
|
+
require 'rake/rdoctask'
|
37
|
+
Rake::RDocTask.new do |rdoc|
|
38
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
39
|
+
|
40
|
+
rdoc.rdoc_dir = 'rdoc'
|
41
|
+
rdoc.title = "bibleRobot #{version}"
|
42
|
+
rdoc.rdoc_files.include('README*')
|
43
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
44
|
+
end
|
data/bible_robot.gemspec
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{bible_robot}
|
8
|
+
s.version = "0.11"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Rubem Nakamura"]
|
12
|
+
s.date = %q{2011-05-13}
|
13
|
+
s.description = %q{Aims to provide an easy way to get and parse the Bible from diffent sites. Actually, parsing it from watchtower.org}
|
14
|
+
s.email = %q{rubem.nakamura@gmail.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE.txt",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
"Gemfile",
|
22
|
+
"Gemfile.lock",
|
23
|
+
"LICENSE.txt",
|
24
|
+
"README.rdoc",
|
25
|
+
"Rakefile",
|
26
|
+
"bible_robot.gemspec",
|
27
|
+
"lib/bibleRobot.rb",
|
28
|
+
"lib/bibleRobot/book.rb",
|
29
|
+
"lib/bibleRobot/chapter.rb",
|
30
|
+
"lib/bibleRobot/robot.rb",
|
31
|
+
"lib/bibleRobot/watchtower.rb",
|
32
|
+
"spec/book_spec.rb",
|
33
|
+
"spec/chapter_spec.rb",
|
34
|
+
"spec/fixtures/index.htm",
|
35
|
+
"spec/fixtures/jude_chapter_001.htm",
|
36
|
+
"spec/fixtures/lu_chapters.htm",
|
37
|
+
"spec/fixtures/mt_chapter_001.htm",
|
38
|
+
"spec/fixtures/mt_chapters.htm",
|
39
|
+
"spec/fixtures/ob_chapter_001.htm",
|
40
|
+
"spec/robot_spec.rb",
|
41
|
+
"spec/watchtower_spec.rb"
|
42
|
+
]
|
43
|
+
s.homepage = %q{http://github.com/rubemz/bibleRobot}
|
44
|
+
s.licenses = ["MIT"]
|
45
|
+
s.require_paths = ["lib"]
|
46
|
+
s.rubygems_version = %q{1.4.1}
|
47
|
+
s.summary = %q{}
|
48
|
+
|
49
|
+
if s.respond_to? :specification_version then
|
50
|
+
s.specification_version = 3
|
51
|
+
|
52
|
+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
53
|
+
s.add_development_dependency(%q<nokogiri>, ["> 0"])
|
54
|
+
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
55
|
+
s.add_development_dependency(%q<jeweler>, ["~> 1.6.0"])
|
56
|
+
s.add_development_dependency(%q<rspec>, [">= 0"])
|
57
|
+
s.add_development_dependency(%q<hpricot>, [">= 0"])
|
58
|
+
s.add_development_dependency(%q<sanitize>, [">= 0"])
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<nokogiri>, ["> 0"])
|
61
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
62
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
|
63
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
64
|
+
s.add_dependency(%q<hpricot>, [">= 0"])
|
65
|
+
s.add_dependency(%q<sanitize>, [">= 0"])
|
66
|
+
end
|
67
|
+
else
|
68
|
+
s.add_dependency(%q<nokogiri>, ["> 0"])
|
69
|
+
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
70
|
+
s.add_dependency(%q<jeweler>, ["~> 1.6.0"])
|
71
|
+
s.add_dependency(%q<rspec>, [">= 0"])
|
72
|
+
s.add_dependency(%q<hpricot>, [">= 0"])
|
73
|
+
s.add_dependency(%q<sanitize>, [">= 0"])
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
@@ -0,0 +1,30 @@
|
|
1
|
+
require 'bibleRobot'
|
2
|
+
|
3
|
+
class Book
|
4
|
+
|
5
|
+
attr_accessor :connector
|
6
|
+
attr_reader :name
|
7
|
+
private_class_method :new
|
8
|
+
|
9
|
+
def initialize book_name, bible_connector
|
10
|
+
@name = book_name
|
11
|
+
@connector = bible_connector
|
12
|
+
end
|
13
|
+
|
14
|
+
def chapters
|
15
|
+
connector.chapters(@name)
|
16
|
+
end
|
17
|
+
|
18
|
+
def chapter(number)
|
19
|
+
Chapter.create(@name, number, @connector)
|
20
|
+
end
|
21
|
+
|
22
|
+
def [] chapter_number
|
23
|
+
chapter(chapter_number)
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.create book_name, connector
|
27
|
+
new(book_name.capitalize, connector) unless connector.nil?
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
require "bibleRobot"
|
2
|
+
|
3
|
+
class Chapter
|
4
|
+
|
5
|
+
|
6
|
+
attr_reader :number
|
7
|
+
private_class_method :new
|
8
|
+
|
9
|
+
def initialize book, number, connector
|
10
|
+
@book = book
|
11
|
+
@connector = connector
|
12
|
+
@number = number
|
13
|
+
end
|
14
|
+
|
15
|
+
def verse v_number
|
16
|
+
p "book #{@book} chapter #{number} verse #{v_number}"
|
17
|
+
@connector.verse @book, @number, v_number
|
18
|
+
end
|
19
|
+
|
20
|
+
def [] verse_number
|
21
|
+
verse(verse_number)
|
22
|
+
end
|
23
|
+
|
24
|
+
def verses
|
25
|
+
@connector.verses @book, @number
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.create book ,number, connector
|
29
|
+
new(book, number, connector) unless connector.nil?
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'uri'
|
2
|
+
require 'net/http'
|
3
|
+
require 'hpricot'
|
4
|
+
|
5
|
+
class Robot
|
6
|
+
|
7
|
+
attr_reader :name
|
8
|
+
|
9
|
+
def initialize name=""
|
10
|
+
@name = name
|
11
|
+
@pages = {}
|
12
|
+
@docs = {}
|
13
|
+
end
|
14
|
+
|
15
|
+
def retrieve_page page
|
16
|
+
@pages[page] ||= Net::HTTP.get(URI.parse(page))
|
17
|
+
end
|
18
|
+
|
19
|
+
def doc page
|
20
|
+
@docs[page] ||= Hpricot(retrieve_page(page))
|
21
|
+
end
|
22
|
+
|
23
|
+
def clear_cache
|
24
|
+
@pages = {}
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
@@ -0,0 +1,115 @@
|
|
1
|
+
require 'bibleRobot'
|
2
|
+
require 'sanitize'
|
3
|
+
require 'hpricot'
|
4
|
+
require 'uri'
|
5
|
+
|
6
|
+
class Watchtower
|
7
|
+
|
8
|
+
attr_reader :url
|
9
|
+
attr_accessor :page, :robot
|
10
|
+
|
11
|
+
def initialize robot, url="http://www.watchtower.org/t/biblia/"
|
12
|
+
@url = url
|
13
|
+
@robot = robot
|
14
|
+
@map = {}
|
15
|
+
@verses = {}
|
16
|
+
end
|
17
|
+
|
18
|
+
def book_list
|
19
|
+
book_map.keys
|
20
|
+
end
|
21
|
+
|
22
|
+
def book_url book
|
23
|
+
book_map[book] if book_exists? book
|
24
|
+
end
|
25
|
+
|
26
|
+
def chapter_url book, chapter
|
27
|
+
chapter_map(book_map[book])[chapter] if book_exists? book
|
28
|
+
end
|
29
|
+
|
30
|
+
def chapters book
|
31
|
+
chapter_map(book_map[book]).size if book_exists? book
|
32
|
+
end
|
33
|
+
|
34
|
+
def verses book, chapter
|
35
|
+
|
36
|
+
if chapter_exists? book, chapter
|
37
|
+
verse_map(chapter_url(book,chapter)).size
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
def verse book, chapter, begin_verse, end_verse=begin_verse
|
43
|
+
verses_in_range = ""
|
44
|
+
|
45
|
+
if verses_exists? book, chapter, begin_verse, end_verse
|
46
|
+
(begin_verse..end_verse).each do |v|
|
47
|
+
url = chapter_url(book, chapter)
|
48
|
+
verses_in_range.concat(verse_map(url)[v])
|
49
|
+
verses_in_range.concat(" ") unless end_verse == v
|
50
|
+
end
|
51
|
+
else
|
52
|
+
raise "invalid verse(s)"
|
53
|
+
end
|
54
|
+
|
55
|
+
verses_in_range
|
56
|
+
end
|
57
|
+
|
58
|
+
private
|
59
|
+
def verse_exists? book, chapter, verse
|
60
|
+
if (chapter_exists?(book, chapter))
|
61
|
+
(0 < verse.to_i) and (verse.to_i <= verses(book,chapter))
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
def verses_exists? book, chapter, begin_verse, end_verse
|
66
|
+
verse_exists? book, chapter, begin_verse and
|
67
|
+
verse_exists? book, chapter, end_verse
|
68
|
+
end
|
69
|
+
|
70
|
+
def book_exists? book
|
71
|
+
book_list.include? book
|
72
|
+
end
|
73
|
+
|
74
|
+
def chapter_exists? book, chapter
|
75
|
+
if book_exists? book
|
76
|
+
((0 < chapter.to_i) and (chapter.to_i <= chapters(book)))
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
def create_map url
|
81
|
+
@map[url] ||= {}
|
82
|
+
get_info(url,"//p[@class='toc']/a").map do |item|
|
83
|
+
name = Sanitize.clean(item.inner_html)
|
84
|
+
reference = item["href"]
|
85
|
+
@map[url][name] = URI.join(url, reference).to_s
|
86
|
+
end if @map[url].empty?
|
87
|
+
#Obadias and other books with just one chapter
|
88
|
+
@map[url]["1"] = url if @map[url].empty?
|
89
|
+
@map[url]
|
90
|
+
end
|
91
|
+
|
92
|
+
def verse_map url
|
93
|
+
@verses[url] ||= {}
|
94
|
+
get_info(url, "//span").each do |elem|
|
95
|
+
if elem[:id] =~ /vs([0-9]*)-*([0-9]*)/
|
96
|
+
@verses[url][$1] += "\n" unless $2 == ""
|
97
|
+
@verses[url][$1] = @verses[url][$1].to_s + Sanitize.clean(elem.inner_html)
|
98
|
+
end
|
99
|
+
end if @verses[url].empty?
|
100
|
+
@verses[url]
|
101
|
+
end
|
102
|
+
|
103
|
+
def book_map
|
104
|
+
create_map(@url)
|
105
|
+
end
|
106
|
+
|
107
|
+
def chapter_map url
|
108
|
+
create_map(url)
|
109
|
+
end
|
110
|
+
|
111
|
+
def get_info url, search_criteria
|
112
|
+
@robot.doc(url).search(search_criteria).each unless url.nil?
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
data/lib/bibleRobot.rb
ADDED
data/spec/book_spec.rb
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
require "bibleRobot"
|
2
|
+
|
3
|
+
describe "Book" do
|
4
|
+
|
5
|
+
|
6
|
+
before :all do
|
7
|
+
@connector = ""
|
8
|
+
# @chapter =
|
9
|
+
@book = Book.create "Mateus", @connector
|
10
|
+
end
|
11
|
+
|
12
|
+
|
13
|
+
before :each do
|
14
|
+
@connector.stub!(:chapters).with("Mateus").and_return(28)
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should return the number of Mateus chapters" do
|
18
|
+
@book.chapters.should == 28
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should return an instance of chapter when request a specific chapter" do
|
22
|
+
@book.chapter(28).class.should == Chapter
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
require "bibleRobot"
|
2
|
+
|
3
|
+
describe "Book" do
|
4
|
+
|
5
|
+
|
6
|
+
before :all do
|
7
|
+
@connector = ""
|
8
|
+
@chapter = Chapter.create("Mateus", "28", @connector)
|
9
|
+
end
|
10
|
+
|
11
|
+
|
12
|
+
before :each do
|
13
|
+
@connector.stub!(:verses).with("Mateus","28").and_return(29)
|
14
|
+
@connector.stub!(:verse).with("Mateus","28","19").and_return("text")
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should return the number of chapters for Mateus 28" do
|
18
|
+
@chapter.verses.should == 29
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should be able to get Mateus 28:19" do
|
22
|
+
@chapter.verse("19").should == "text"
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xml:lang="pt">
|
3
|
+
<head>
|
4
|
+
<title>Bíblia on-line: Tradução do Novo Mundo das Escrituras Sagradas - Testemunhas de Jeová: Página oficial da Torre de Vigia</title>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<meta name="keywords" content="bíblia on-line, bíblia sagrada, tradução do novo mundo, textos bíblicos, deus, jesus, jeová, testemunhas de jeová, a sentinela" />
|
7
|
+
<meta name="description" content="Índice de la Tradução do Novo Mundo das Escrituras Sagradas" />
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="/css/bible.css" type="text/css" />
|
10
|
+
<meta name="viewport" content="width=320" />
|
11
|
+
<link rel="apple-touch-icon" href="/images/bible/bible.png" />
|
12
|
+
<link media="only screen and (max-device-width: 480px)" href="/css/bible-mobile.css" type= "text/css" rel="stylesheet" />
|
13
|
+
</head>
|
14
|
+
|
15
|
+
<body>
|
16
|
+
<div class="page">
|
17
|
+
<p class="site"><a href="http://www.watchtower.org">Testemunhas de Jeová: Página oficial da Torre de Vigia</a></p>
|
18
|
+
|
19
|
+
<div class="topnavigation">
|
20
|
+
<table width="600" cellpadding="2" cellspacing="1" border="0">
|
21
|
+
<tr>
|
22
|
+
<td width="40" class="nobar"><a href="/t/index.html"><img src="/images/home.gif" border="0" alt="Inicio" width="19" height="15" /></a></td>
|
23
|
+
<td><a href="/t/beliefs_and_activities.htm">Creencias</a></td>
|
24
|
+
<td><a href="/t/god_and_your_future.htm">Futuro</a></td>
|
25
|
+
<td><a href="/t/medical_care_and_blood.htm">Medicina</a></td>
|
26
|
+
<td><a href="/t/current_topics.htm">Artículos</a></td>
|
27
|
+
<td><a href="https://watch002.securesites.net/t/contact/submit.htm">Escríbanos</a></td>
|
28
|
+
<td><a href="/t/publications/index.htm">Publicaciones</a></td>
|
29
|
+
<td><a href="/languages.htm">Idiomas</a></td>
|
30
|
+
</tr>
|
31
|
+
</table>
|
32
|
+
</div>
|
33
|
+
|
34
|
+
<div class="title">
|
35
|
+
<h2>Bíblia on-line</h2>
|
36
|
+
<h1>Tradução do Novo Mundo das Escrituras Sagradas</h1>
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<h3>Escrituras Hebraicas</h3>
|
40
|
+
<p class="toc"><a href="ge/chapters.htm">Gênesis</a> <a href="ex/chapters.htm">Êxodo</a> <a href="le/chapters.htm">Levítico</a> <a href="nu/chapters.htm">Números</a> <a href="de/chapters.htm">Deuteronômio</a> <a href="jos/chapters.htm">Josué</a> <a href="jg/chapters.htm">Juízes</a> <a href="ru/chapters.htm">Rute</a> <a href="1sa/chapters.htm">1 Samuel</a> <a href="2sa/chapters.htm">2 Samuel</a> <a href="1ki/chapters.htm">1 Reis</a> <a href="2ki/chapters.htm">2 Reis</a> <a href="1ch/chapters.htm">1 Crônicas</a> <a href="2ch/chapters.htm">2 Crônicas</a> <a href="ezr/chapters.htm">Esdras</a> <a href="ne/chapters.htm">Neemias</a> <a href="es/chapters.htm">Ester</a> <a href="job/chapters.htm">Jó</a> <a href="ps/chapters.htm">Salmos</a> <a href="pr/chapters.htm">Provérbios</a> <a href="ec/chapters.htm">Eclesiastes</a> <a href="ca/chapters.htm">Cântico de Salomão</a> <a href="isa/chapters.htm">Isaías</a> <a href="jer/chapters.htm">Jeremias</a> <a href="la/chapters.htm">Lamentações</a> <a href="eze/chapters.htm">Ezequiel</a> <a href="da/chapters.htm">Daniel</a> <a href="ho/chapters.htm">Oséias</a> <a href="joe/chapters.htm">Joel</a> <a href="am/chapters.htm">Amós</a> <a href="ob/chapter_001.htm">Obadias</a> <a href="jon/chapters.htm">Jonas</a> <a href="mic/chapters.htm">Miquéias</a> <a href="na/chapters.htm">Naum</a> <a href="hab/chapters.htm">Habacuque</a> <a href="zep/chapters.htm">Sofonias</a> <a href="hag/chapters.htm">Ageu</a> <a href="zec/chapters.htm">Zacarias</a> <a href="mal/chapters.htm">Malaquias</a></p>
|
41
|
+
|
42
|
+
<h3>Escrituras Gregas</h3>
|
43
|
+
<p class="toc"><a href="mt/chapters.htm">Mateus</a> <a href="mr/chapters.htm">Marcos</a> <a href="lu/chapters.htm">Lucas</a> <a href="joh/chapters.htm">João</a> <a href="ac/chapters.htm">Atos</a> <a href="ro/chapters.htm">Romanos</a> <a href="1co/chapters.htm">1 Coríntios</a> <a href="2co/chapters.htm">2 Coríntios</a> <a href="ga/chapters.htm">Gálatas</a> <a href="eph/chapters.htm">Efésios</a> <a href="php/chapters.htm">Filipenses</a> <a href="col/chapters.htm">Colossenses</a> <a href="1th/chapters.htm">1 Tessalonicenses</a> <a href="2th/chapters.htm">2 Tessalonicenses</a> <a href="1ti/chapters.htm">1 Timóteo</a> <a href="2ti/chapters.htm">2 Timóteo</a> <a href="tit/chapters.htm">Tito</a> <a href="phm/chapter_001.htm">Filêmon</a> <a href="heb/chapters.htm">Hebreus</a> <a href="jas/chapters.htm">Tiago</a> <a href="1pe/chapters.htm">1 Pedro</a> <a href="2pe/chapters.htm">2 Pedro</a> <a href="1jo/chapters.htm">1 João</a> <a href="2jo/chapter_001.htm">2 João</a> <a href="3jo/chapter_001.htm">3 João</a> <a href="jude/chapter_001.htm">Judas</a> <a href="re/chapters.htm">Revelação</a></p>
|
44
|
+
|
45
|
+
<div class="footer">
|
46
|
+
<p><a href="/t/index.html">Página inicial</a> | <a href="/t/beliefs_and_activities.htm">Crenças</a> | <a href="/t/god_and_your_future.htm">Futuro</a> | <a href="/t/medical_care_and_blood.htm">Medicina</a> | <a href="/t/current_topics.htm">Assuntos</a> | <a href="https://watch002.securesites.net/t/contact/submit.htm">Contate-nos</a> | <a href="/t/publications/index.htm">Publicações</a> | <a href="/languages.htm">Idiomas</a> | <a href="/t/archives/index.htm">Índice</a></p>
|
47
|
+
<p><a href="/copyright.htm">Copyright</a> © 2010 Watch Tower Bible and Tract Society of Pennsylvania. All rights reserved.</p>
|
48
|
+
</div>
|
49
|
+
|
50
|
+
</div>
|
51
|
+
|
52
|
+
<script type="text/javascript" src="/scripts/bible.js"></script>
|
53
|
+
</body>
|
54
|
+
</html>
|
55
|
+
|