pettanr_unknown_v01_licenses 0.0.1

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.
Files changed (27) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +27 -0
  4. data/app/assets/javascripts/pettanr_unknown_v01_licenses/application.js +15 -0
  5. data/app/assets/stylesheets/pettanr_unknown_v01_licenses/application.css +13 -0
  6. data/app/controllers/pettanr_unknown_v01_licenses/application_controller.rb +4 -0
  7. data/app/controllers/pettanr_unknown_v01_licenses/attributes_controller.rb +39 -0
  8. data/app/helpers/pettanr_unknown_v01_licenses/application_helper.rb +4 -0
  9. data/app/helpers/pettanr_unknown_v01_licenses/attributes_helper.rb +4 -0
  10. data/app/models/pettanr_unknown_v01_licenses/attribute.rb +36 -0
  11. data/app/views/layouts/pettanr_unknown_v01_licenses/application.html.erb +14 -0
  12. data/app/views/pettanr_unknown_v01_licenses/attributes/_confirm.html.erb +22 -0
  13. data/app/views/pettanr_unknown_v01_licenses/attributes/_credit.html.erb +21 -0
  14. data/app/views/pettanr_unknown_v01_licenses/attributes/_form.html.erb +35 -0
  15. data/app/views/pettanr_unknown_v01_licenses/attributes/new.html.erb +1 -0
  16. data/app/views/pettanr_unknown_v01_licenses/attributes/new.js.erb +1 -0
  17. data/config/routes.rb +10 -0
  18. data/db/Unknown.png +0 -0
  19. data/db/migrate/20121007054509_create_pettanr_unknown_v01_licenses_attributes.rb +12 -0
  20. data/db/unknown_v01_license.json +1 -0
  21. data/db/unknown_v01_license.yml +22 -0
  22. data/lib/pettanr_unknown_v01_licenses/engine.rb +5 -0
  23. data/lib/pettanr_unknown_v01_licenses/version.rb +3 -0
  24. data/lib/pettanr_unknown_v01_licenses.rb +4 -0
  25. data/lib/tasks/pettanr_unknown_v01_licenses.rake +10 -0
  26. data/lib/tasks/pettanr_unknown_v01_licenses_tasks.rake +4 -0
  27. metadata +93 -0
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2012 YOURNAME
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,3 @@
1
+ = PettanrUnknownV01Licenses
2
+
3
+ This project rocks and uses MIT-LICENSE.
data/Rakefile ADDED
@@ -0,0 +1,27 @@
1
+ #!/usr/bin/env rake
2
+ begin
3
+ require 'bundler/setup'
4
+ rescue LoadError
5
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
6
+ end
7
+ begin
8
+ require 'rdoc/task'
9
+ rescue LoadError
10
+ require 'rdoc/rdoc'
11
+ require 'rake/rdoctask'
12
+ RDoc::Task = Rake::RDocTask
13
+ end
14
+
15
+ RDoc::Task.new(:rdoc) do |rdoc|
16
+ rdoc.rdoc_dir = 'rdoc'
17
+ rdoc.title = 'PettanrUnknownV01Licenses'
18
+ rdoc.options << '--line-numbers'
19
+ rdoc.rdoc_files.include('README.rdoc')
20
+ rdoc.rdoc_files.include('lib/**/*.rb')
21
+ end
22
+
23
+
24
+
25
+
26
+ Bundler::GemHelper.install_tasks
27
+
@@ -0,0 +1,15 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // the compiled file.
9
+ //
10
+ // WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
11
+ // GO AFTER THE REQUIRES BELOW.
12
+ //
13
+ //= require jquery
14
+ //= require jquery_ujs
15
+ //= require_tree .
@@ -0,0 +1,13 @@
1
+ /*
2
+ * This is a manifest file that'll be compiled into application.css, which will include all the files
3
+ * listed below.
4
+ *
5
+ * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
+ * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
+ *
8
+ * You're free to add application-wide styles to this file and they'll appear at the top of the
9
+ * compiled file, but it's generally better to create a new file per style scope.
10
+ *
11
+ *= require_self
12
+ *= require_tree .
13
+ */
@@ -0,0 +1,4 @@
1
+ module PettanrUnknownV01Licenses
2
+ class ApplicationController < ::ApplicationController
3
+ end
4
+ end
@@ -0,0 +1,39 @@
1
+ require_dependency "pettanr_unknown_v01_licenses/application_controller"
2
+
3
+ module PettanrUnknownV01Licenses
4
+ class AttributesController < ApplicationController
5
+ layout 'test' if Pettanr::TestLayout
6
+ before_filter :authenticate_user!, :only => [:new, :create]
7
+ before_filter :authenticate_artist, :only => [:new, :create]
8
+
9
+ def new
10
+ @original_picture, @original_picture_license_group, @license_group =
11
+ PettanrUnknownV01Licenses::Attribute.remember_params params, @artist
12
+ @unknown_license = PettanrUnknownV01Licenses::Attribute.new
13
+ @unknown_license.supply_default @artist
14
+
15
+ respond_to do |format|
16
+ format.html # new.html.erb
17
+ # format.js
18
+ end
19
+ end
20
+
21
+ def create
22
+ @original_picture, @original_picture_license_group, @license_group =
23
+ PettanrUnknownV01Licenses::Attribute.remember_params params, @artist
24
+ @unknown_license = PettanrUnknownV01Licenses::Attribute.new params[:unknown_license]
25
+ @license = License.show @unknown_license.license_id
26
+ @resource_picture = @original_picture.resource_picture || ResourcePicture.new
27
+ @resource_picture.attributes = @unknown_license.resource_picture_attributes @original_picture
28
+ respond_to do |format|
29
+ if @unknown_license.valid?
30
+ format.html { render main_app.new_resource_picture_path }
31
+ # format.js { render :template => "resource_pictures/new" }
32
+ else
33
+ format.html { render action: "new" }
34
+ # format.js { render action: "new" }
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
@@ -0,0 +1,4 @@
1
+ module PettanrUnknownV01Licenses
2
+ module ApplicationHelper
3
+ end
4
+ end
@@ -0,0 +1,4 @@
1
+ module PettanrUnknownV01Licenses
2
+ module AttributesHelper
3
+ end
4
+ end
@@ -0,0 +1,36 @@
1
+ module PettanrUnknownV01Licenses
2
+ class Attribute < ActiveRecord::Base
3
+ belongs_to :license
4
+
5
+ validates :license_id, :presence => true, :numericality => true, :existence => true
6
+ validates :artist_name, :presence => true
7
+
8
+ def supply_default ar
9
+ self.artist_name = ar.name
10
+ end
11
+
12
+ def resource_picture_attributes op
13
+ {
14
+ :original_picture_id => op.id, :license_id => self.license.id,
15
+ :artist_name => self.artist_name, :classname => self.license.license_group.classname,
16
+ :credit => self.credit, :settings => self.license.settings
17
+ }
18
+ end
19
+
20
+ def self.remember_params params, ar
21
+ op = OriginalPicture.show params[:original_picture_id], ar
22
+ oplg = OriginalPictureLicenseGroup.new(params[:original_picture_license_group])
23
+ lg = LicenseGroup.show oplg.license_group_id
24
+ [op, oplg, lg]
25
+ end
26
+
27
+ def credit
28
+ {
29
+ :system_picture_id => self.license.system_picture_id,
30
+ :source_url => self.source_url,
31
+ :note => self.note
32
+ }.to_json.to_s
33
+ end
34
+
35
+ end
36
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>PettanrUnknownV01Licenses</title>
5
+ <%= stylesheet_link_tag "pettanr_unknown_v01_licenses/application", :media => "all" %>
6
+ <%= javascript_include_tag "pettanr_unknown_v01_licenses/application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1,22 @@
1
+ <div>
2
+ <% @sp = SystemPicture.find(@resource_picture.credit_data["system_picture_id"]) %>
3
+ <%= content_tag(:a,
4
+ tag(:img, :src => @sp.url, :alt => h(@license_group.caption.to_s + '[' + @license.caption.to_s + ']')),
5
+ :href => @license.url )
6
+ %>
7
+ </div>
8
+ <%= link_to h(@license_group.caption), @license_group.url %>
9
+ <%= link_to h(@license.caption), @license.url %>
10
+ <% unless @resource_picture.credit_data['source_url'].blank? %>
11
+ <div>
12
+ <%= link_to 'base', @resource_picture.credit_data['source_url'] %>
13
+ </div>
14
+ <% end %>
15
+ <% unless @resource_picture.credit_data['note'].blank? %>
16
+ <div>
17
+ <%= link_to 'note', @resource_picture.credit_data['note'] %>
18
+ </div>
19
+ <% end %>
20
+ <div>
21
+ MD5:<%= @resource_picture.original_picture.md5 %>
22
+ </div>
@@ -0,0 +1,21 @@
1
+ <div>
2
+ <%= content_tag(:a,
3
+ tag(:img, :src => picture.license.system_picture.url, :alt => h(picture.license.license_group.caption.to_s + '[' + picture.license.caption.to_s + ']')),
4
+ :href => picture.license.url )
5
+ %>
6
+ </div>
7
+ <%= link_to h(picture.license.license_group.caption), picture.license.license_group.url %>
8
+ <%= link_to h(picture.license.caption), picture.license.url %>
9
+ <% unless picture.credit_data['source_url'].blank? %>
10
+ <div>
11
+ <%= link_to 'base', picture.credit_data['source_url'] %>
12
+ </div>
13
+ <% end %>
14
+ <% unless picture.credit_data['note'].blank? %>
15
+ <div>
16
+ <%= link_to 'note', picture.credit_data['note'] %>
17
+ </div>
18
+ <% end %>
19
+ <div>
20
+ <%= picture.md5 %>
21
+ </div>
@@ -0,0 +1,35 @@
1
+ <%
2
+ unless @unknown_license
3
+ @unknown_license = PettanrUnknownV01Licenses::Attribute.new
4
+ @unknown_license.supply_default @artist
5
+ end
6
+ %>
7
+ <%= form_tag('/pettanr_unknown_v01_licenses/attributes') do %>
8
+ <% if @unknown_license.errors.any? %>
9
+ <div id="error_explanation">
10
+ <h2><%= pluralize(@unknown_license.errors.count, "error") %> prohibited this comic from being saved:</h2>
11
+
12
+ <ul>
13
+ <% @unknown_license.errors.full_messages.each do |msg| %>
14
+ <li><%= msg %></li>
15
+ <% end %>
16
+ </ul>
17
+ </div>
18
+ <% end %>
19
+
20
+ <div class="field">
21
+ <%= collection_select :unknown_license, :license_id, @license_group.licenses.map {|l| [l.caption, l.id] }, :last, :first %>
22
+ <%= text_field_tag 'unknown_license[artist_name]', @unknown_license.artist_name %>
23
+ <p>source picture's url</p>
24
+ <%= text_field_tag 'unknown_license[source_url]', @unknown_license.source_url %>
25
+ <p>note</p>
26
+ <%= text_field_tag 'unknown_license[note]', @unknown_license.note %>
27
+ </div>
28
+ <%= hidden_field_tag :original_picture_id, @original_picture.id %>
29
+ <%= hidden_field_tag 'original_picture_license_group[original_picture_id]', @original_picture_license_group.original_picture_id %>
30
+ <%= hidden_field_tag 'original_picture_license_group[license_group_id]', @original_picture_license_group.license_group_id %>
31
+
32
+ <div class="actions">
33
+ <%= submit_tag %>
34
+ </div>
35
+ <% end %>
@@ -0,0 +1 @@
1
+ <%= render 'pettanr_unknown_v01_licenses/attributes/form' %>
@@ -0,0 +1 @@
1
+ $("#oplg").html("<%= escape_javascript(render('form')) -%>");
data/config/routes.rb ADDED
@@ -0,0 +1,10 @@
1
+ PettanrUnknownV01Licenses::Engine.routes.draw do
2
+ resources :attributes do
3
+ new do
4
+ end
5
+ collection do
6
+ get :new
7
+ post :create
8
+ end
9
+ end
10
+ end
data/db/Unknown.png ADDED
Binary file
@@ -0,0 +1,12 @@
1
+ class CreatePettanrUnknownV01LicensesAttributes < ActiveRecord::Migration
2
+ def change
3
+ create_table :pettanr_unknown_v01_licenses_attributes do |t|
4
+ t.column :license_id, :integer, :null => false, :default => 0
5
+ t.column :artist_name, :string, :null => false, :default => 'unknown'
6
+ t.column :source_url, :string
7
+ t.column :note, :string
8
+
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1 @@
1
+ {"UnknownV01License@pettanr":{"classname":"UnknownV01License","caption":"Unknown 0.1","url":"http://sourceforge.jp/projects/pettanr/wiki/Unknown","licenses_attributes":{"UnknownV01License:UK@pettanr":{"caption":"Unknown","url":"http://sourceforge.jp/projects/pettanr/wiki/UnknownLicenseUkV01","settings":"{\"open\":0,\"commercial\":1,\"official\":0,\"attribution\":-1,\"derive\":-1,\"thumbnail\":1,\"gif_convert\":1,\"reverse\":1,\"resize\":1,\"sync_vh\":1,\"overlap\":1,\"trackback\":0}","system_picture":"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"}}}}
@@ -0,0 +1,22 @@
1
+ UnknownV01License@pettanr:
2
+ classname: PettanrUnknownV01License
3
+ caption: Unknown 0.1
4
+ url: http://sourceforge.jp/projects/pettanr/wiki/Unknown
5
+ licenses_attributes:
6
+ UnknownV01License:UK@pettanr:
7
+ caption: Unknown
8
+ url: http://sourceforge.jp/projects/pettanr/wiki/UnknownLicenseUkV01
9
+ system_picture_file: ./Unknown.png
10
+ settings:
11
+ open: 0
12
+ commercial: 1
13
+ official: 0
14
+ attribution: -1
15
+ derive: -1
16
+ thumbnail: 1
17
+ gif_convert: 1
18
+ reverse: 1
19
+ resize: 1
20
+ sync_vh: 1
21
+ overlap: 1
22
+ trackback: 0
@@ -0,0 +1,5 @@
1
+ module PettanrUnknownV01Licenses
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace PettanrUnknownV01Licenses
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module PettanrUnknownV01Licenses
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,4 @@
1
+ require "pettanr_unknown_v01_licenses/engine"
2
+
3
+ module PettanrUnknownV01Licenses
4
+ end
@@ -0,0 +1,10 @@
1
+ namespace :pettanr_unknown_v01_licenses do
2
+ desc "Import json format license data"
3
+ task :import => :environment do
4
+ json = File.expand_path('../../../', __FILE__) + '/db/unknown_v01_license.json'
5
+ puts 'Importing ' + json + "\n"
6
+ r = LicenseGroup.import json
7
+ LicenseGroup.disp_import_error r
8
+ end
9
+
10
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :pettanr_unknown_v01_licenses do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,93 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: pettanr_unknown_v01_licenses
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - yasushiito
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-10-07 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rails
16
+ requirement: &24627888 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: 3.1.1
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *24627888
25
+ - !ruby/object:Gem::Dependency
26
+ name: sqlite3
27
+ requirement: &24626844 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *24626844
36
+ description: This software is a license plugin for PettanR
37
+ email:
38
+ - yasu@pen-chan.jp
39
+ executables: []
40
+ extensions: []
41
+ extra_rdoc_files: []
42
+ files:
43
+ - app/assets/javascripts/pettanr_unknown_v01_licenses/application.js
44
+ - app/assets/stylesheets/pettanr_unknown_v01_licenses/application.css
45
+ - app/controllers/pettanr_unknown_v01_licenses/application_controller.rb
46
+ - app/controllers/pettanr_unknown_v01_licenses/attributes_controller.rb
47
+ - app/helpers/pettanr_unknown_v01_licenses/application_helper.rb
48
+ - app/helpers/pettanr_unknown_v01_licenses/attributes_helper.rb
49
+ - app/models/pettanr_unknown_v01_licenses/attribute.rb
50
+ - app/views/layouts/pettanr_unknown_v01_licenses/application.html.erb
51
+ - app/views/pettanr_unknown_v01_licenses/attributes/new.html.erb
52
+ - app/views/pettanr_unknown_v01_licenses/attributes/new.js.erb
53
+ - app/views/pettanr_unknown_v01_licenses/attributes/_confirm.html.erb
54
+ - app/views/pettanr_unknown_v01_licenses/attributes/_credit.html.erb
55
+ - app/views/pettanr_unknown_v01_licenses/attributes/_form.html.erb
56
+ - config/routes.rb
57
+ - db/migrate/20121007054509_create_pettanr_unknown_v01_licenses_attributes.rb
58
+ - db/Unknown.png
59
+ - db/unknown_v01_license.json
60
+ - db/unknown_v01_license.yml
61
+ - lib/pettanr_unknown_v01_licenses/engine.rb
62
+ - lib/pettanr_unknown_v01_licenses/version.rb
63
+ - lib/pettanr_unknown_v01_licenses.rb
64
+ - lib/tasks/pettanr_unknown_v01_licenses.rake
65
+ - lib/tasks/pettanr_unknown_v01_licenses_tasks.rake
66
+ - MIT-LICENSE
67
+ - Rakefile
68
+ - README.rdoc
69
+ homepage: http://sourceforge.jp/projects/pettanr/
70
+ licenses: []
71
+ post_install_message:
72
+ rdoc_options: []
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ none: false
77
+ requirements:
78
+ - - ! '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ none: false
83
+ requirements:
84
+ - - ! '>='
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ requirements: []
88
+ rubyforge_project:
89
+ rubygems_version: 1.8.16
90
+ signing_key:
91
+ specification_version: 3
92
+ summary: Unknown License for PettanR
93
+ test_files: []