dm-is-published 0.0.6 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. data/Gemfile +22 -0
  2. data/Guardfile +13 -0
  3. data/{LICENSE → LICENSE.txt} +1 -1
  4. data/README.rdoc +37 -5
  5. data/Rakefile +30 -56
  6. data/VERSION +1 -1
  7. data/dm-is-published.gemspec +93 -45
  8. data/docs/apple-touch-icon.png +0 -0
  9. data/docs/classes/DataMapper.html +81 -0
  10. data/docs/classes/DataMapper/Is.html +81 -0
  11. data/docs/classes/DataMapper/Is/Published.html +364 -0
  12. data/docs/classes/DataMapper/Is/Published/ClassMethods.html +237 -0
  13. data/docs/classes/DataMapper/Is/Published/InstanceMethods.html +132 -0
  14. data/docs/classes/DataMapper/Is/Published/ResourceInstanceMethods.html +133 -0
  15. data/docs/created.rid +4 -0
  16. data/docs/css/github.css +129 -0
  17. data/docs/css/main.css +333 -0
  18. data/docs/css/panel.css +384 -0
  19. data/docs/css/reset.css +48 -0
  20. data/docs/favicon.ico +0 -0
  21. data/docs/files/README_rdoc.html +226 -0
  22. data/docs/files/lib/dm-is-published_rb.html +84 -0
  23. data/docs/files/lib/is/published_rb.html +104 -0
  24. data/docs/i/arrows.png +0 -0
  25. data/docs/i/results_bg.png +0 -0
  26. data/docs/i/tree_bg.png +0 -0
  27. data/docs/index.html +13 -0
  28. data/docs/js/highlight.pack.js +1 -0
  29. data/docs/js/jquery-1.3.2.min.js +19 -0
  30. data/docs/js/jquery-effect.js +593 -0
  31. data/docs/js/main.js +24 -0
  32. data/docs/js/navigation.js +142 -0
  33. data/docs/js/search_index.js +1 -0
  34. data/docs/js/searchdoc.js +449 -0
  35. data/docs/js/searcher.js +228 -0
  36. data/docs/panel/index.html +73 -0
  37. data/docs/panel/links.html +12 -0
  38. data/docs/panel/tree.js +1 -0
  39. data/lib/dm-is-published.rb +3 -7
  40. data/lib/{dm-is-published/is → is}/published.rb +26 -10
  41. data/spec/{integration/published_spec.rb → dm-is-published_spec.rb} +48 -11
  42. data/spec/spec_helper.rb +12 -9
  43. metadata +264 -95
  44. data/.gitignore +0 -33
  45. data/History.rdoc +0 -4
  46. data/TODO +0 -0
  47. data/lib/dm-is-published/is/version.rb +0 -7
data/Gemfile ADDED
@@ -0,0 +1,22 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ gem 'activesupport', '~>3.2.7'
4
+ gem "data_mapper", '1.2.0'
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec", "~> 2.12.0"
10
+ gem "rdoc", "~> 3.12.2"
11
+ gem "sdoc", "~> 0.3.16"
12
+ gem "bundler", "~> 1.2.1"
13
+ gem "jeweler", "~> 1.8.4"
14
+
15
+ gem 'dm-mysql-adapter', '1.2.0'
16
+ gem 'dm-sqlite-adapter', '1.2.0'
17
+
18
+ gem 'growl'
19
+ gem 'rb-fsevent', '~> 0.9'
20
+ gem 'guard'
21
+ gem 'guard-rspec'
22
+ end
@@ -0,0 +1,13 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+
5
+ notification :growl
6
+
7
+ # guard 'rspec', :version => 2 do
8
+ guard 'rspec', :cli => "--color --format d " do
9
+ watch(%r{^spec/.+_spec\.rb$})
10
+ watch(%r{^lib/(.+)\.rb$}) { "spec" }
11
+ watch('spec/spec_helper.rb') { "spec" }
12
+
13
+ end
@@ -1,4 +1,4 @@
1
- Copyright (c) 2009 Kematzy [kematzy gmail com]
1
+ Copyright (c) 2013 Kematzy
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
@@ -11,17 +11,30 @@ Originally inspired by the Rails plugin +acts_as_publishable+ by <b>fr.ivolo.us<
11
11
  $ gem install dm-is-published
12
12
 
13
13
 
14
+ Or add the gem to your Gemfile, and then run <tt>bundle install</tt>.
15
+
16
+ gem 'dm-is-published', 'CURRENT_VERSION_NUMBER'
17
+
18
+
19
+ === Dependencies
20
+
21
+ The plugin depends upon the following:
22
+
23
+ * dm-mysql-adapter OR dm-sqlite3-adapter ( >= 1.2.0)
24
+ * data_mapper ( >= 1.2.0)
25
+ * activesupport (>= 3.2.7) - method => Object#blank?
26
+
14
27
 
15
28
  == Getting Started
16
29
 
17
30
  First of all, for a better understanding of this gem, make sure you study
18
- the '<tt>dm-is-published/spec/integration/published_spec.rb</tt>' file.
31
+ the '<tt>dm-is-published/spec/dm-is-published_spec.rb</tt>' file.
19
32
 
20
33
  ----
21
34
 
22
35
  Require +dm-is-published+ in your app.
23
36
 
24
- require 'dm-core' # must be required first
37
+ require 'data_mapper' # must be required first
25
38
  require 'dm-is-published'
26
39
 
27
40
  Lets say we have an Article class, and each Article can have a current state,
@@ -90,7 +103,7 @@ Whereas in another scenario - like in a MenuItem model for a Restaurant - you co
90
103
 
91
104
  == RTFM
92
105
 
93
- As I said above, for a better understanding of this gem/plugin, make sure you study the '<tt>dm-is-published/spec/integration/published_spec.rb</tt>' file.
106
+ For a better understanding of this gem/plugin, make sure you study the '<tt>dm-is-select/spec/dm-is-select_spec.rb</tt>' file.
94
107
 
95
108
 
96
109
  == Errors / Bugs
@@ -98,12 +111,31 @@ As I said above, for a better understanding of this gem/plugin, make sure you st
98
111
  If something is not behaving intuitively, it is a bug, and should be reported.
99
112
  Report it here: http://github.com/kematzy/dm-is-published/issues
100
113
 
101
- == Credits
102
114
 
103
- Copyright (c) 2009-07-11 [kematzy gmail com]
115
+ == Contributing to dm-is-published
116
+
117
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
118
+
119
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
120
+
121
+ * Fork the project.
122
+
123
+ * Start a feature/bugfix branch.
124
+
125
+ * Commit and push until you are happy with your contribution.
126
+
127
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
128
+
129
+ * 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.
130
+
131
+
132
+ == Copyright
133
+
134
+ Copyright (c) 2009 - 2013 Kematzy.
104
135
 
105
136
  Loosely based on the ActsAsPublishable plugin by [http://fr.ivolo.us/posts/acts-as-publishable]
106
137
 
107
138
  == Licence
108
139
 
109
140
  Released under the MIT license.
141
+
data/Rakefile CHANGED
@@ -1,52 +1,45 @@
1
1
  require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
2
10
  require 'rake'
3
11
 
4
- begin
5
- require 'jeweler'
6
-
7
- Jeweler::Tasks.new do |gem|
8
- gem.name = "dm-is-published"
9
- # gem.version = IO.read('VERSION') || '0.0.0'
10
- gem.summary = %Q{A DataMapper plugin that provides an easy way to add different states to your models.}
11
- gem.description = gem.summary
12
- gem.email = "kematzy@gmail.com"
13
- gem.homepage = 'http://github.com/kematzy/dm-is-published'
14
- gem.authors = ["kematzy"]
15
- gem.extra_rdoc_files = %w[ README.rdoc LICENSE TODO History.rdoc ]
16
-
17
- gem.add_dependency 'dm-core', '~> 1.0.0'
18
-
19
- gem.add_development_dependency 'rspec', '~> 1.3'
20
- gem.add_development_dependency 'dm-migrations', '~> 1.0.0'
21
- gem.add_development_dependency 'dm-validations', '~> 1.0.0'
22
- end
23
-
24
- Jeweler::GemcutterTasks.new
25
-
26
- rescue LoadError
27
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
12
+ require 'jeweler'
13
+ Jeweler::Tasks.new do |gem|
14
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
15
+ gem.name = "dm-is-published"
16
+ gem.homepage = "http://github.com/kematzy/dm-is-published"
17
+ gem.license = "MIT"
18
+ gem.summary = %Q{A DataMapper plugin that provides an easy way to add different states to your models.}
19
+ gem.description = %Q{A DataMapper plugin that provides an easy way to add different states to your models.}
20
+ gem.email = "kematzy@gmail.com"
21
+ gem.authors = ["kematzy"]
22
+ gem.extra_rdoc_files = %w[ README.rdoc LICENSE ]
23
+ # dependencies defined in Gemfile
28
24
  end
25
+ Jeweler::RubygemsDotOrgTasks.new
29
26
 
30
- require 'spec/rake/spectask'
31
- Spec::Rake::SpecTask.new(:spec) do |spec|
32
- spec.libs << 'lib' << 'spec'
33
- spec.spec_opts = ["--color", "--format", "nested", "--require", "spec/spec_helper.rb"]
34
- spec.spec_files = FileList['spec/**/*_spec.rb']
27
+ require 'rspec/core'
28
+ require 'rspec/core/rake_task'
29
+ RSpec::Core::RakeTask.new(:spec) do |spec|
30
+ spec.pattern = FileList['spec/**/*_spec.rb']
35
31
  end
36
32
 
37
- Spec::Rake::SpecTask.new(:rcov) do |spec|
38
- spec.libs << 'lib' << 'spec'
39
- spec.spec_opts = ["--color", "--format", "nested", "--require", "spec/spec_helper.rb"]
33
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
40
34
  spec.pattern = 'spec/**/*_spec.rb'
41
35
  spec.rcov = true
42
36
  end
43
37
 
44
-
45
38
  task :default => :spec
46
39
 
47
- require 'rake/rdoctask'
40
+ require 'rdoc/task'
48
41
  Rake::RDocTask.new do |rdoc|
49
- version = File.exist?('VERSION') ? IO.read('VERSION').chomp : "[Unknown]"
42
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
50
43
 
51
44
  rdoc.rdoc_dir = 'rdoc'
52
45
  rdoc.title = "dm-is-published #{version}"
@@ -54,29 +47,10 @@ Rake::RDocTask.new do |rdoc|
54
47
  rdoc.rdoc_files.include('lib/**/*.rb')
55
48
  end
56
49
 
57
-
58
- desc 'Build the rdoc HTML Files'
50
+ desc 'Build the *sdoc* HTML files'
59
51
  task :docs do
60
52
  version = File.exist?('VERSION') ? IO.read('VERSION').chomp : "[Unknown]"
61
53
 
62
- sh "sdoc -N --title 'DM::Is::Published v#{version}' lib/dm-is-published README.rdoc"
63
- end
64
-
65
- namespace :docs do
66
-
67
- desc 'Remove rdoc products'
68
- task :remove => [:clobber_rdoc] do
69
- sh "rm -rf doc"
70
- end
71
-
72
- desc 'Force a rebuild of the RDOC files'
73
- task :rebuild => [:docs]
74
-
75
- desc 'Build docs, and open in browser for viewing (specify BROWSER)'
76
- task :open => [:docs] do
77
- browser = ENV["BROWSER"] || "safari"
78
- sh "open -a #{browser} doc/index.html"
79
- end
80
-
54
+ sh "sdoc -N --title 'DM::Is::Published v#{version}' --exclude spec --O '#{Dir.pwd}/docs' lib/ README.rdoc"
81
55
  end
82
56
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.6
1
+ 1.2.0
@@ -1,68 +1,116 @@
1
1
  # Generated by jeweler
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
5
 
6
6
  Gem::Specification.new do |s|
7
- s.name = %q{dm-is-published}
8
- s.version = "0.0.6"
7
+ s.name = "dm-is-published"
8
+ s.version = "1.2.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["kematzy"]
12
- s.date = %q{2010-06-09}
13
- s.description = %q{A DataMapper plugin that provides an easy way to add different states to your models.}
14
- s.email = %q{kematzy@gmail.com}
12
+ s.date = "2013-03-10"
13
+ s.description = "A DataMapper plugin that provides an easy way to add different states to your models."
14
+ s.email = "kematzy@gmail.com"
15
15
  s.extra_rdoc_files = [
16
- "History.rdoc",
17
- "LICENSE",
18
- "README.rdoc",
19
- "TODO"
16
+ "README.rdoc"
20
17
  ]
21
18
  s.files = [
22
- ".gitignore",
23
- "History.rdoc",
24
- "LICENSE",
25
- "README.rdoc",
26
- "Rakefile",
27
- "TODO",
28
- "VERSION",
29
- "dm-is-published.gemspec",
30
- "lib/dm-is-published.rb",
31
- "lib/dm-is-published/is/published.rb",
32
- "lib/dm-is-published/is/version.rb",
33
- "spec/integration/published_spec.rb",
34
- "spec/spec_helper.rb"
19
+ "Gemfile",
20
+ "Guardfile",
21
+ "LICENSE.txt",
22
+ "README.rdoc",
23
+ "Rakefile",
24
+ "VERSION",
25
+ "dm-is-published.gemspec",
26
+ "docs/apple-touch-icon.png",
27
+ "docs/classes/DataMapper.html",
28
+ "docs/classes/DataMapper/Is.html",
29
+ "docs/classes/DataMapper/Is/Published.html",
30
+ "docs/classes/DataMapper/Is/Published/ClassMethods.html",
31
+ "docs/classes/DataMapper/Is/Published/InstanceMethods.html",
32
+ "docs/classes/DataMapper/Is/Published/ResourceInstanceMethods.html",
33
+ "docs/created.rid",
34
+ "docs/css/github.css",
35
+ "docs/css/main.css",
36
+ "docs/css/panel.css",
37
+ "docs/css/reset.css",
38
+ "docs/favicon.ico",
39
+ "docs/files/README_rdoc.html",
40
+ "docs/files/lib/dm-is-published_rb.html",
41
+ "docs/files/lib/is/published_rb.html",
42
+ "docs/i/arrows.png",
43
+ "docs/i/results_bg.png",
44
+ "docs/i/tree_bg.png",
45
+ "docs/index.html",
46
+ "docs/js/highlight.pack.js",
47
+ "docs/js/jquery-1.3.2.min.js",
48
+ "docs/js/jquery-effect.js",
49
+ "docs/js/main.js",
50
+ "docs/js/navigation.js",
51
+ "docs/js/search_index.js",
52
+ "docs/js/searchdoc.js",
53
+ "docs/js/searcher.js",
54
+ "docs/panel/index.html",
55
+ "docs/panel/links.html",
56
+ "docs/panel/tree.js",
57
+ "lib/dm-is-published.rb",
58
+ "lib/is/published.rb",
59
+ "spec/dm-is-published_spec.rb",
60
+ "spec/spec_helper.rb"
35
61
  ]
36
- s.homepage = %q{http://github.com/kematzy/dm-is-published}
37
- s.rdoc_options = ["--charset=UTF-8"]
62
+ s.homepage = "http://github.com/kematzy/dm-is-published"
63
+ s.licenses = ["MIT"]
38
64
  s.require_paths = ["lib"]
39
- s.rubygems_version = %q{1.3.6}
40
- s.summary = %q{A DataMapper plugin that provides an easy way to add different states to your models.}
41
- s.test_files = [
42
- "spec/integration/published_spec.rb",
43
- "spec/spec_helper.rb"
44
- ]
65
+ s.rubygems_version = "1.8.23"
66
+ s.summary = "A DataMapper plugin that provides an easy way to add different states to your models."
45
67
 
46
68
  if s.respond_to? :specification_version then
47
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
48
69
  s.specification_version = 3
49
70
 
50
- if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
51
- s.add_runtime_dependency(%q<dm-core>, ["~> 1.0.0"])
52
- s.add_development_dependency(%q<rspec>, ["~> 1.3"])
53
- s.add_development_dependency(%q<dm-migrations>, ["~> 1.0.0"])
54
- s.add_development_dependency(%q<dm-validations>, ["~> 1.0.0"])
71
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
72
+ s.add_runtime_dependency(%q<activesupport>, ["~> 3.2.7"])
73
+ s.add_runtime_dependency(%q<data_mapper>, ["= 1.2.0"])
74
+ s.add_development_dependency(%q<rspec>, ["~> 2.12.0"])
75
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12.2"])
76
+ s.add_development_dependency(%q<sdoc>, ["~> 0.3.16"])
77
+ s.add_development_dependency(%q<bundler>, ["~> 1.2.1"])
78
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
79
+ s.add_development_dependency(%q<dm-mysql-adapter>, ["= 1.2.0"])
80
+ s.add_development_dependency(%q<dm-sqlite-adapter>, ["= 1.2.0"])
81
+ s.add_development_dependency(%q<growl>, [">= 0"])
82
+ s.add_development_dependency(%q<rb-fsevent>, ["~> 0.9"])
83
+ s.add_development_dependency(%q<guard>, [">= 0"])
84
+ s.add_development_dependency(%q<guard-rspec>, [">= 0"])
55
85
  else
56
- s.add_dependency(%q<dm-core>, ["~> 1.0.0"])
57
- s.add_dependency(%q<rspec>, ["~> 1.3"])
58
- s.add_dependency(%q<dm-migrations>, ["~> 1.0.0"])
59
- s.add_dependency(%q<dm-validations>, ["~> 1.0.0"])
86
+ s.add_dependency(%q<activesupport>, ["~> 3.2.7"])
87
+ s.add_dependency(%q<data_mapper>, ["= 1.2.0"])
88
+ s.add_dependency(%q<rspec>, ["~> 2.12.0"])
89
+ s.add_dependency(%q<rdoc>, ["~> 3.12.2"])
90
+ s.add_dependency(%q<sdoc>, ["~> 0.3.16"])
91
+ s.add_dependency(%q<bundler>, ["~> 1.2.1"])
92
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
93
+ s.add_dependency(%q<dm-mysql-adapter>, ["= 1.2.0"])
94
+ s.add_dependency(%q<dm-sqlite-adapter>, ["= 1.2.0"])
95
+ s.add_dependency(%q<growl>, [">= 0"])
96
+ s.add_dependency(%q<rb-fsevent>, ["~> 0.9"])
97
+ s.add_dependency(%q<guard>, [">= 0"])
98
+ s.add_dependency(%q<guard-rspec>, [">= 0"])
60
99
  end
61
100
  else
62
- s.add_dependency(%q<dm-core>, ["~> 1.0.0"])
63
- s.add_dependency(%q<rspec>, ["~> 1.3"])
64
- s.add_dependency(%q<dm-migrations>, ["~> 1.0.0"])
65
- s.add_dependency(%q<dm-validations>, ["~> 1.0.0"])
101
+ s.add_dependency(%q<activesupport>, ["~> 3.2.7"])
102
+ s.add_dependency(%q<data_mapper>, ["= 1.2.0"])
103
+ s.add_dependency(%q<rspec>, ["~> 2.12.0"])
104
+ s.add_dependency(%q<rdoc>, ["~> 3.12.2"])
105
+ s.add_dependency(%q<sdoc>, ["~> 0.3.16"])
106
+ s.add_dependency(%q<bundler>, ["~> 1.2.1"])
107
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
108
+ s.add_dependency(%q<dm-mysql-adapter>, ["= 1.2.0"])
109
+ s.add_dependency(%q<dm-sqlite-adapter>, ["= 1.2.0"])
110
+ s.add_dependency(%q<growl>, [">= 0"])
111
+ s.add_dependency(%q<rb-fsevent>, ["~> 0.9"])
112
+ s.add_dependency(%q<guard>, [">= 0"])
113
+ s.add_dependency(%q<guard-rspec>, [">= 0"])
66
114
  end
67
115
  end
68
116
 
Binary file
@@ -0,0 +1,81 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
4
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
5
+ <head>
6
+ <title>DataMapper</title>
7
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
8
+ <link rel="stylesheet" href="../css/reset.css" type="text/css" media="screen" />
9
+ <link rel="stylesheet" href="../css/main.css" type="text/css" media="screen" />
10
+ <link rel="stylesheet" href="../css/github.css" type="text/css" media="screen" />
11
+ <script src="../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script>
12
+ <script src="../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script>
13
+ <script src="../js/main.js" type="text/javascript" charset="utf-8"></script>
14
+ <script src="../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script>
15
+
16
+ </head>
17
+
18
+ <body>
19
+ <div class="banner">
20
+
21
+ <h1>
22
+ <span class="type">Module</span>
23
+ DataMapper
24
+
25
+ </h1>
26
+ <ul class="files">
27
+
28
+ <li><a href="../files/lib/is/published_rb.html">lib/is/published.rb</a></li>
29
+
30
+ </ul>
31
+ </div>
32
+ <div id="bodyContent">
33
+ <div id="content">
34
+
35
+
36
+
37
+
38
+
39
+
40
+
41
+
42
+
43
+
44
+
45
+ <!-- Namespace -->
46
+ <div class="sectiontitle">Namespace</div>
47
+ <ul>
48
+
49
+ <li>
50
+ <span class="type">MODULE</span>
51
+ <a href="DataMapper/Is.html">DataMapper::Is</a>
52
+ </li>
53
+
54
+ </ul>
55
+
56
+
57
+
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+
68
+
69
+
70
+
71
+
72
+
73
+
74
+
75
+
76
+ <!-- Methods -->
77
+ </div>
78
+
79
+ </div>
80
+ </body>
81
+ </html>