railhead_permalink 0.1.12
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.
- data/MIT-LICENSE +20 -0
- data/README.rdoc +35 -0
- data/init.rb +1 -0
- data/lib/railhead_permalink.rb +60 -0
- data/railhead_permalink.gemspec +18 -0
- metadata +60 -0
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2008 [name of plugin creator]
|
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,35 @@
|
|
1
|
+
= RailheadPermalink
|
2
|
+
|
3
|
+
RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink.
|
4
|
+
|
5
|
+
== Installation
|
6
|
+
|
7
|
+
Installation is available as gem (recommended):
|
8
|
+
|
9
|
+
config.gem 'nagybence-railhead_permalink', :lib => 'railhead_permalink', :source => 'http://gems.github.com'
|
10
|
+
|
11
|
+
Or as Rails plugin:
|
12
|
+
|
13
|
+
$ ruby script/plugin install git://github.com/nagybence/railhead_permalink.git
|
14
|
+
|
15
|
+
== Usage
|
16
|
+
|
17
|
+
Add permalink field to your schema:
|
18
|
+
|
19
|
+
t.string :permalink
|
20
|
+
|
21
|
+
Setup permalink for your ActiceRecord object:
|
22
|
+
|
23
|
+
auto_permalink :title
|
24
|
+
|
25
|
+
You can setup reserved names too:
|
26
|
+
|
27
|
+
auto_permalink :title, :reserved_names => %w(reserved names)
|
28
|
+
|
29
|
+
You can keep already existing permalinks:
|
30
|
+
|
31
|
+
auto_permalink :title, :keep_existing => true
|
32
|
+
|
33
|
+
== License
|
34
|
+
|
35
|
+
Copyright (c) 2008-2009 Bence Nagy (nagybence@tipogral.hu), released under the MIT license.
|
data/init.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require 'railhead_permalink'
|
@@ -0,0 +1,60 @@
|
|
1
|
+
module RailheadPermalink
|
2
|
+
def self.included(base)
|
3
|
+
base.class_eval do
|
4
|
+
extend ClassMethods
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
module ClassMethods
|
9
|
+
def auto_permalink(field, options = {})
|
10
|
+
include RailheadPermalink::InstanceMethods
|
11
|
+
class << self
|
12
|
+
alias_method_chain :find, :permalink
|
13
|
+
end
|
14
|
+
class_inheritable_reader :permalink_options
|
15
|
+
|
16
|
+
write_inheritable_attribute(:permalink_options, {
|
17
|
+
:field => field,
|
18
|
+
:keep_existing => (options[:keep_existing] || false),
|
19
|
+
:reserved_names => (options[:reserved_names] || []).concat(ActionController::Base.resources_path_names.values)
|
20
|
+
})
|
21
|
+
|
22
|
+
before_save :create_permalink
|
23
|
+
validates_presence_of field
|
24
|
+
end
|
25
|
+
|
26
|
+
def find_with_permalink(*args)
|
27
|
+
key = args.first
|
28
|
+
if key.is_a?(String)
|
29
|
+
find_without_permalink(:first, :conditions => {:permalink => key}) || find_without_permalink(*args)
|
30
|
+
else
|
31
|
+
find_without_permalink(*args)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
module InstanceMethods
|
37
|
+
def create_permalink
|
38
|
+
if self.permalink.nil? or not permalink_options[:keep_existing]
|
39
|
+
key, counter = self[permalink_options[:field]].parameterize.to_s, '-1'
|
40
|
+
unless self.permalink == key
|
41
|
+
permalink = key
|
42
|
+
while permalink_options[:reserved_names].include?(permalink) or permalink.blank? or
|
43
|
+
(object = self.class.find_without_permalink(:first, :conditions => {:permalink => permalink}) and object != self)
|
44
|
+
counter.succ!
|
45
|
+
permalink = key + counter
|
46
|
+
end
|
47
|
+
self[:permalink] = permalink
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
def to_param
|
53
|
+
self.permalink
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
|
59
|
+
ActiveRecord::Base.send :include, RailheadPermalink
|
60
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
Gem::Specification.new do |s|
|
2
|
+
s.name = "railhead_permalink"
|
3
|
+
s.version = "0.1.12"
|
4
|
+
s.date = "2009-10-14"
|
5
|
+
s.summary = "RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink."
|
6
|
+
s.email = "nagybence@tipogral.hu"
|
7
|
+
s.homepage = "http://github.com/nagybence/railhead_permalink"
|
8
|
+
s.description = "RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink."
|
9
|
+
s.has_rdoc = true
|
10
|
+
s.authors = ["Bence Nagy"]
|
11
|
+
s.files = ["MIT-LICENSE",
|
12
|
+
"README.rdoc",
|
13
|
+
"init.rb",
|
14
|
+
"railhead_permalink.gemspec",
|
15
|
+
"lib/railhead_permalink.rb"]
|
16
|
+
s.rdoc_options = ["--main", "README.rdoc"]
|
17
|
+
s.extra_rdoc_files = ["README.rdoc"]
|
18
|
+
end
|
metadata
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: railhead_permalink
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.12
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Bence Nagy
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-10-14 00:00:00 +02:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink.
|
17
|
+
email: nagybence@tipogral.hu
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions: []
|
21
|
+
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README.rdoc
|
24
|
+
files:
|
25
|
+
- MIT-LICENSE
|
26
|
+
- README.rdoc
|
27
|
+
- init.rb
|
28
|
+
- railhead_permalink.gemspec
|
29
|
+
- lib/railhead_permalink.rb
|
30
|
+
has_rdoc: true
|
31
|
+
homepage: http://github.com/nagybence/railhead_permalink
|
32
|
+
licenses: []
|
33
|
+
|
34
|
+
post_install_message:
|
35
|
+
rdoc_options:
|
36
|
+
- --main
|
37
|
+
- README.rdoc
|
38
|
+
require_paths:
|
39
|
+
- lib
|
40
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
41
|
+
requirements:
|
42
|
+
- - ">="
|
43
|
+
- !ruby/object:Gem::Version
|
44
|
+
version: "0"
|
45
|
+
version:
|
46
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
|
+
requirements:
|
48
|
+
- - ">="
|
49
|
+
- !ruby/object:Gem::Version
|
50
|
+
version: "0"
|
51
|
+
version:
|
52
|
+
requirements: []
|
53
|
+
|
54
|
+
rubyforge_project:
|
55
|
+
rubygems_version: 1.3.5
|
56
|
+
signing_key:
|
57
|
+
specification_version: 3
|
58
|
+
summary: RailheadPermalink is a Ruby on Rails plugin that automatically finds ActiveRecord objects with permalink.
|
59
|
+
test_files: []
|
60
|
+
|