Pull in some upstream updates to http_accept_language
This commit is contained in:
parent
337c06d4f4
commit
6e7acd171f
5 changed files with 32 additions and 35 deletions
20
vendor/plugins/http_accept_language/MIT-LICENSE
vendored
20
vendor/plugins/http_accept_language/MIT-LICENSE
vendored
|
@ -1,20 +0,0 @@
|
|||
Copyright (c) 2008 [name of plugin creator]
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
17
vendor/plugins/http_accept_language/README.rdoc
vendored
17
vendor/plugins/http_accept_language/README.rdoc
vendored
|
@ -2,7 +2,7 @@
|
|||
|
||||
A small effort in making a plugin which helps you detect the users preferred language, as sent by the HTTP header.
|
||||
|
||||
= Features
|
||||
== Features
|
||||
|
||||
* Splits the http-header into languages specified by the user
|
||||
* Returns empty array if header is illformed.
|
||||
|
@ -12,7 +12,7 @@ A small effort in making a plugin which helps you detect the users preferred lan
|
|||
* Gives compatible languages
|
||||
See also: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
|
||||
|
||||
= Example
|
||||
== Example
|
||||
|
||||
class SomeController < ApplicationController
|
||||
def some_action
|
||||
|
@ -24,7 +24,7 @@ See also: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
|
|||
request.preferred_language_from(available)
|
||||
# => 'nl-BE'
|
||||
|
||||
request.user_preferred_language
|
||||
request.user_preferred_languages
|
||||
# => [ 'en-GB']
|
||||
available = %w{en-US}
|
||||
request.compatible_language_from(available)
|
||||
|
@ -32,8 +32,13 @@ See also: http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html
|
|||
end
|
||||
end
|
||||
|
||||
= Changenotes
|
||||
== Installation
|
||||
|
||||
2009-03-12: Rails 2.3 compatible
|
||||
Install the gem <tt>http_accept_language</tt>, require it in your Rails app.
|
||||
|
||||
Copyright (c) 2008 Iain Hecker, released under the MIT license
|
||||
== Changelog
|
||||
|
||||
* 2010-01-05: Gem release
|
||||
* 2009-03-12: Rails 2.3 compatible
|
||||
|
||||
Copyright (c) 2008-2010 Iain Hecker, released under the MIT license
|
||||
|
|
25
vendor/plugins/http_accept_language/Rakefile
vendored
25
vendor/plugins/http_accept_language/Rakefile
vendored
|
@ -1,10 +1,21 @@
|
|||
require 'rake'
|
||||
|
||||
begin
|
||||
require 'jeweler'
|
||||
Jeweler::Tasks.new do |gem|
|
||||
gem.name = "http_accept_language"
|
||||
gem.summary = %Q{Parse the HTTP Accept Language Header}
|
||||
gem.description = %Q{Find out which locale the user preferes by reading the languages they specified in their browser}
|
||||
gem.email = "iain@iain.nl"
|
||||
gem.homepage = "http://github.com/iain/http_accept_language"
|
||||
gem.authors = ["Iain Hecker"]
|
||||
end
|
||||
Jeweler::GemcutterTasks.new
|
||||
rescue LoadError
|
||||
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
||||
end
|
||||
|
||||
require 'rake/testtask'
|
||||
require 'rake/rdoctask'
|
||||
|
||||
desc 'Default: run unit tests.'
|
||||
task :default => :test
|
||||
|
||||
desc 'Test the http_accept_language plugin.'
|
||||
Rake::TestTask.new(:test) do |t|
|
||||
t.libs << 'lib'
|
||||
|
@ -12,6 +23,10 @@ Rake::TestTask.new(:test) do |t|
|
|||
t.verbose = true
|
||||
end
|
||||
|
||||
desc 'Default: run unit tests.'
|
||||
task :default => :test
|
||||
|
||||
require 'rake/rdoctask'
|
||||
desc 'Generate documentation for the http_accept_language plugin.'
|
||||
Rake::RDocTask.new(:rdoc) do |rdoc|
|
||||
rdoc.rdoc_dir = 'rdoc'
|
||||
|
|
1
vendor/plugins/http_accept_language/VERSION
vendored
Normal file
1
vendor/plugins/http_accept_language/VERSION
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
1.0.1
|
|
@ -1,4 +0,0 @@
|
|||
# desc "Explaining what the task does"
|
||||
# task :http_accept_language do
|
||||
# # Task goes here
|
||||
# end
|
Loading…
Add table
Add a link
Reference in a new issue