typo 5.2.98 → 5.3
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/app/controllers/admin/sidebar_controller.rb +15 -3
- data/app/helpers/sidebar_helper.rb +9 -4
- data/app/models/feedback.rb +10 -2
- data/app/models/page_cache.rb +5 -1
- data/app/views/admin/blacklist/_blacklist_patterns.html.erb +2 -0
- data/app/views/admin/categories/new.html.erb +1 -1
- data/app/views/admin/content/_form.html.erb +3 -3
- data/app/views/admin/content/_simple_editor.html.erb +2 -0
- data/app/views/admin/content/_visual_editor.html.erb +2 -0
- data/app/views/admin/pages/_form.html.erb +5 -5
- data/app/views/admin/pages/_simple_editor.html.erb +2 -0
- data/app/views/admin/pages/_visual_editor.html.erb +2 -0
- data/app/views/articles/_comment_box.html.erb +1 -1
- data/app/views/articles/_comment_failed.html.erb +1 -1
- data/app/views/articles/read.html.erb +1 -1
- data/config/environment.rb +3 -2
- data/lib/tasks/release.rake +3 -4
- data/lib/typo_version.rb +1 -1
- data/public/stylesheets/administration.css +37 -2
- data/public/stylesheets/administration_rtl.css +316 -437
- data/vendor/actionwebservice/CHANGELOG +320 -0
- data/vendor/actionwebservice/MIT-LICENSE +21 -0
- data/vendor/actionwebservice/README +381 -0
- data/vendor/actionwebservice/Rakefile +173 -0
- data/vendor/actionwebservice/TODO +32 -0
- data/vendor/actionwebservice/examples/googlesearch/README +143 -0
- data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +50 -0
- data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +57 -0
- data/vendor/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +108 -0
- data/vendor/actionwebservice/examples/googlesearch/delegated/search_controller.rb +7 -0
- data/vendor/actionwebservice/examples/googlesearch/direct/google_search_api.rb +50 -0
- data/vendor/actionwebservice/examples/googlesearch/direct/search_controller.rb +58 -0
- data/vendor/actionwebservice/examples/metaWeblog/README +17 -0
- data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +60 -0
- data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +34 -0
- data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +67 -0
- data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +48 -0
- data/vendor/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +16 -0
- data/vendor/actionwebservice/generators/web_service/USAGE +28 -0
- data/vendor/actionwebservice/generators/web_service/templates/api_definition.rb +5 -0
- data/vendor/actionwebservice/generators/web_service/templates/controller.rb +8 -0
- data/vendor/actionwebservice/generators/web_service/templates/functional_test.rb +19 -0
- data/vendor/actionwebservice/generators/web_service/web_service_generator.rb +29 -0
- data/vendor/actionwebservice/lib/action_web_service.rb +66 -0
- data/vendor/actionwebservice/lib/action_web_service/api.rb +297 -0
- data/vendor/actionwebservice/lib/action_web_service/base.rb +38 -0
- data/vendor/actionwebservice/lib/action_web_service/casting.rb +144 -0
- data/vendor/actionwebservice/lib/action_web_service/client.rb +3 -0
- data/vendor/actionwebservice/lib/action_web_service/client/base.rb +28 -0
- data/vendor/actionwebservice/lib/action_web_service/client/soap_client.rb +113 -0
- data/vendor/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +58 -0
- data/vendor/actionwebservice/lib/action_web_service/container.rb +3 -0
- data/vendor/actionwebservice/lib/action_web_service/container/action_controller_container.rb +93 -0
- data/vendor/actionwebservice/lib/action_web_service/container/delegated_container.rb +86 -0
- data/vendor/actionwebservice/lib/action_web_service/container/direct_container.rb +69 -0
- data/vendor/actionwebservice/lib/action_web_service/dispatcher.rb +2 -0
- data/vendor/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +207 -0
- data/vendor/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +379 -0
- data/vendor/actionwebservice/lib/action_web_service/invocation.rb +202 -0
- data/vendor/actionwebservice/lib/action_web_service/protocol.rb +4 -0
- data/vendor/actionwebservice/lib/action_web_service/protocol/abstract.rb +112 -0
- data/vendor/actionwebservice/lib/action_web_service/protocol/discovery.rb +37 -0
- data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +176 -0
- data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +242 -0
- data/vendor/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +122 -0
- data/vendor/actionwebservice/lib/action_web_service/scaffolding.rb +281 -0
- data/vendor/actionwebservice/lib/action_web_service/struct.rb +64 -0
- data/vendor/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +26 -0
- data/vendor/actionwebservice/lib/action_web_service/support/signature_types.rb +226 -0
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/layout.html.erb +65 -0
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/methods.html.erb +6 -0
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.html.erb +29 -0
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/result.html.erb +30 -0
- data/vendor/actionwebservice/lib/action_web_service/test_invoke.rb +110 -0
- data/vendor/actionwebservice/lib/action_web_service/version.rb +9 -0
- data/vendor/actionwebservice/lib/actionwebservice.rb +1 -0
- data/vendor/actionwebservice/setup.rb +1379 -0
- data/vendor/actionwebservice/test/abstract_client.rb +183 -0
- data/vendor/actionwebservice/test/abstract_dispatcher.rb +547 -0
- data/vendor/actionwebservice/test/abstract_unit.rb +33 -0
- data/vendor/actionwebservice/test/api_test.rb +102 -0
- data/vendor/actionwebservice/test/apis/auto_load_api.rb +3 -0
- data/vendor/actionwebservice/test/apis/broken_auto_load_api.rb +2 -0
- data/vendor/actionwebservice/test/base_test.rb +42 -0
- data/vendor/actionwebservice/test/casting_test.rb +86 -0
- data/vendor/actionwebservice/test/client_soap_test.rb +155 -0
- data/vendor/actionwebservice/test/client_xmlrpc_test.rb +153 -0
- data/vendor/actionwebservice/test/container_test.rb +73 -0
- data/vendor/actionwebservice/test/dispatcher_action_controller_soap_test.rb +137 -0
- data/vendor/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +59 -0
- data/vendor/actionwebservice/test/fixtures/db_definitions/mysql.sql +8 -0
- data/vendor/actionwebservice/test/fixtures/users.yml +12 -0
- data/vendor/actionwebservice/test/gencov +3 -0
- data/vendor/actionwebservice/test/invocation_test.rb +185 -0
- data/vendor/actionwebservice/test/run +6 -0
- data/vendor/actionwebservice/test/scaffolded_controller_test.rb +146 -0
- data/vendor/actionwebservice/test/struct_test.rb +52 -0
- data/vendor/actionwebservice/test/test_invoke_test.rb +112 -0
- data/vendor/gems/calendar_date_select-1.15/.specification +56 -0
- data/vendor/gems/calendar_date_select-1.15/History.txt +237 -0
- data/vendor/gems/calendar_date_select-1.15/MIT-LICENSE +20 -0
- data/vendor/gems/calendar_date_select-1.15/Manifest.txt +42 -0
- data/vendor/gems/calendar_date_select-1.15/Rakefile +31 -0
- data/vendor/gems/calendar_date_select-1.15/Readme.txt +16 -0
- data/vendor/gems/calendar_date_select-1.15/init.rb +1 -0
- data/vendor/gems/calendar_date_select-1.15/js_test/functional/cds_test.html +334 -0
- data/vendor/gems/calendar_date_select-1.15/js_test/prototype.js +4184 -0
- data/vendor/gems/calendar_date_select-1.15/js_test/test.css +40 -0
- data/vendor/gems/calendar_date_select-1.15/js_test/unit/cds_helper_methods.html +46 -0
- data/vendor/gems/calendar_date_select-1.15/js_test/unittest.js +564 -0
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select.rb +33 -0
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/calendar_date_select.rb +116 -0
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/form_helpers.rb +225 -0
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/includes_helper.rb +29 -0
- data/vendor/gems/calendar_date_select-1.15/public/blank_iframe.html +2 -0
- data/vendor/gems/calendar_date_select-1.15/public/images/calendar_date_select/calendar.gif +0 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_american.js +34 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_db.js +27 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr.js +7 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +7 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_finnish.js +32 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_hyphen_ampm.js +37 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_iso_date.js +46 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_italian.js +24 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/de.js +11 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fi.js +10 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fr.js +10 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pl.js +10 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pt.js +11 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/ru.js +10 -0
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/blue.css +130 -0
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/default.css +135 -0
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/plain.css +128 -0
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/red.css +135 -0
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/silver.css +133 -0
- data/vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/calendar_date_select_spec.rb +14 -0
- data/vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/form_helpers_spec.rb +166 -0
- data/vendor/gems/calendar_date_select-1.15/spec/spec_helper.rb +26 -0
- data/vendor/gems/coderay-0.8.260/.specification +2 -1
- data/vendor/gems/htmlentities-4.0.0/.specification +68 -0
- data/vendor/gems/htmlentities-4.0.0/COPYING.txt +21 -0
- data/vendor/gems/htmlentities-4.0.0/History.txt +47 -0
- data/vendor/gems/htmlentities-4.0.0/README.txt +44 -0
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities.rb +165 -0
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/html4.rb +257 -0
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/legacy.rb +27 -0
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/string.rb +26 -0
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/xhtml1.rb +258 -0
- data/vendor/gems/htmlentities-4.0.0/test/entities_test.rb +206 -0
- data/vendor/gems/htmlentities-4.0.0/test/html4_test.rb +24 -0
- data/vendor/gems/htmlentities-4.0.0/test/legacy_test.rb +34 -0
- data/vendor/gems/htmlentities-4.0.0/test/roundtrip_test.rb +94 -0
- data/vendor/gems/htmlentities-4.0.0/test/string_test.rb +24 -0
- data/vendor/gems/htmlentities-4.0.0/test/test_all.rb +3 -0
- data/vendor/gems/htmlentities-4.0.0/test/xhtml1_test.rb +23 -0
- data/vendor/gems/json-1.1.3/.require_paths +4 -0
- data/vendor/gems/json-1.1.3/.specification +58 -0
- data/vendor/gems/json-1.1.3/CHANGES +93 -0
- data/vendor/gems/json-1.1.3/GPL +340 -0
- data/vendor/gems/json-1.1.3/README +78 -0
- data/vendor/gems/json-1.1.3/RUBY +58 -0
- data/vendor/gems/json-1.1.3/Rakefile +309 -0
- data/vendor/gems/json-1.1.3/TODO +1 -0
- data/vendor/gems/json-1.1.3/VERSION +1 -0
- data/vendor/gems/json-1.1.3/benchmarks/benchmark.txt +133 -0
- data/vendor/gems/json-1.1.3/benchmarks/benchmark_generator.rb +48 -0
- data/vendor/gems/json-1.1.3/benchmarks/benchmark_parser.rb +26 -0
- data/vendor/gems/json-1.1.3/benchmarks/benchmark_rails.rb +26 -0
- data/vendor/gems/json-1.1.3/bin/edit_json.rb +10 -0
- data/vendor/gems/json-1.1.3/bin/prettify_json.rb +76 -0
- data/vendor/gems/json-1.1.3/data/example.json +1 -0
- data/vendor/gems/json-1.1.3/data/index.html +38 -0
- data/vendor/gems/json-1.1.3/data/prototype.js +4184 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/Makefile +149 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/extconf.rb +9 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.c +875 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.o +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.c +182 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.h +53 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.o +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/Makefile +149 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/extconf.rb +9 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.c +1758 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.o +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.rl +638 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.c +154 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.h +58 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.o +0 -0
- data/vendor/gems/json-1.1.3/install.rb +26 -0
- data/vendor/gems/json-1.1.3/lib/json.rb +235 -0
- data/vendor/gems/json-1.1.3/lib/json/Array.xpm +21 -0
- data/vendor/gems/json-1.1.3/lib/json/FalseClass.xpm +21 -0
- data/vendor/gems/json-1.1.3/lib/json/Hash.xpm +21 -0
- data/vendor/gems/json-1.1.3/lib/json/Key.xpm +73 -0
- data/vendor/gems/json-1.1.3/lib/json/NilClass.xpm +21 -0
- data/vendor/gems/json-1.1.3/lib/json/Numeric.xpm +28 -0
- data/vendor/gems/json-1.1.3/lib/json/String.xpm +96 -0
- data/vendor/gems/json-1.1.3/lib/json/TrueClass.xpm +21 -0
- data/vendor/gems/json-1.1.3/lib/json/add/core.rb +135 -0
- data/vendor/gems/json-1.1.3/lib/json/add/rails.rb +58 -0
- data/vendor/gems/json-1.1.3/lib/json/common.rb +354 -0
- data/vendor/gems/json-1.1.3/lib/json/editor.rb +1362 -0
- data/vendor/gems/json-1.1.3/lib/json/ext.rb +13 -0
- data/vendor/gems/json-1.1.3/lib/json/json.xpm +1499 -0
- data/vendor/gems/json-1.1.3/lib/json/pure.rb +75 -0
- data/vendor/gems/json-1.1.3/lib/json/pure/generator.rb +394 -0
- data/vendor/gems/json-1.1.3/lib/json/pure/parser.rb +259 -0
- data/vendor/gems/json-1.1.3/lib/json/version.rb +9 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail1.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail10.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail11.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail12.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail13.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail14.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail18.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail19.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail2.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail20.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail21.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail22.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail23.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail24.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail25.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail27.json +2 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail28.json +2 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail3.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail4.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail5.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail6.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail7.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail8.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/fail9.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass1.json +56 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass15.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass16.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass17.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass2.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass26.json +1 -0
- data/vendor/gems/json-1.1.3/tests/fixtures/pass3.json +6 -0
- data/vendor/gems/json-1.1.3/tests/runner.rb +25 -0
- data/vendor/gems/json-1.1.3/tests/test_json.rb +293 -0
- data/vendor/gems/json-1.1.3/tests/test_json_addition.rb +161 -0
- data/vendor/gems/json-1.1.3/tests/test_json_fixtures.rb +30 -0
- data/vendor/gems/json-1.1.3/tests/test_json_generate.rb +100 -0
- data/vendor/gems/json-1.1.3/tests/test_json_rails.rb +118 -0
- data/vendor/gems/json-1.1.3/tests/test_json_unicode.rb +61 -0
- data/vendor/gems/json-1.1.3/tools/fuzz.rb +140 -0
- data/vendor/gems/json-1.1.3/tools/server.rb +62 -0
- data/vendor/plugins/localization/bin/make_language.rb +2 -2
- data/vendor/plugins/localization/lib/localization.rb +2 -2
- data/vendor/plugins/will_paginate/CHANGELOG.rdoc +110 -0
- data/vendor/plugins/will_paginate/LICENSE +18 -0
- data/vendor/plugins/will_paginate/README.rdoc +107 -0
- data/vendor/plugins/will_paginate/Rakefile +62 -0
- data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
- data/vendor/plugins/will_paginate/examples/index.haml +69 -0
- data/vendor/plugins/will_paginate/examples/index.html +92 -0
- data/vendor/plugins/will_paginate/examples/pagination.css +90 -0
- data/vendor/plugins/will_paginate/examples/pagination.sass +91 -0
- data/vendor/plugins/will_paginate/init.rb +1 -0
- data/vendor/plugins/will_paginate/lib/will_paginate.rb +82 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +16 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +146 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +32 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +260 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +170 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +37 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +9 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +383 -0
- data/vendor/plugins/will_paginate/test/boot.rb +21 -0
- data/vendor/plugins/will_paginate/test/collection_test.rb +143 -0
- data/vendor/plugins/will_paginate/test/console +8 -0
- data/vendor/plugins/will_paginate/test/database.yml +22 -0
- data/vendor/plugins/will_paginate/test/finder_test.rb +476 -0
- data/vendor/plugins/will_paginate/test/fixtures/admin.rb +3 -0
- data/vendor/plugins/will_paginate/test/fixtures/developer.rb +14 -0
- data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
- data/vendor/plugins/will_paginate/test/fixtures/project.rb +15 -0
- data/vendor/plugins/will_paginate/test/fixtures/projects.yml +6 -0
- data/vendor/plugins/will_paginate/test/fixtures/replies.yml +29 -0
- data/vendor/plugins/will_paginate/test/fixtures/reply.rb +7 -0
- data/vendor/plugins/will_paginate/test/fixtures/schema.rb +38 -0
- data/vendor/plugins/will_paginate/test/fixtures/topic.rb +10 -0
- data/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
- data/vendor/plugins/will_paginate/test/fixtures/user.rb +2 -0
- data/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
- data/vendor/plugins/will_paginate/test/helper.rb +37 -0
- data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +36 -0
- data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +73 -0
- data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +11 -0
- data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +165 -0
- data/vendor/plugins/will_paginate/test/tasks.rake +59 -0
- data/vendor/plugins/will_paginate/test/view_test.rb +363 -0
- data/vendor/plugins/will_paginate/will_paginate.gemspec +22 -0
- data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +1 -1
- metadata +349 -16
- data/migrate.txt +0 -142
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require "rubygems"
|
|
2
|
+
|
|
3
|
+
require 'spec'
|
|
4
|
+
|
|
5
|
+
gem 'activesupport', ">= 2.2.0"
|
|
6
|
+
gem 'actionpack', ">= 2.2.0"
|
|
7
|
+
|
|
8
|
+
require 'active_support'
|
|
9
|
+
require 'action_pack'
|
|
10
|
+
require 'action_controller'
|
|
11
|
+
require 'action_view'
|
|
12
|
+
|
|
13
|
+
require 'ostruct'
|
|
14
|
+
|
|
15
|
+
ActionView::Helpers::InstanceTag.class_eval do
|
|
16
|
+
class << self; alias new_with_backwards_compatibility new; end
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
$: << (File.dirname(__FILE__) + "/../lib")
|
|
20
|
+
require "calendar_date_select"
|
|
21
|
+
|
|
22
|
+
class String
|
|
23
|
+
def to_regexp
|
|
24
|
+
is_a?(Regexp) ? self : Regexp.new(Regexp.escape(self.to_s))
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -9,7 +9,7 @@ autorequire: coderay
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-10-07
|
|
12
|
+
date: 2008-10-07 06:00:00 +02:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -90,6 +90,7 @@ rdoc_options:
|
|
|
90
90
|
- -a
|
|
91
91
|
- -t CodeRay Documentation
|
|
92
92
|
require_paths:
|
|
93
|
+
- bin
|
|
93
94
|
- lib
|
|
94
95
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
95
96
|
requirements:
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: htmlentities
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 4.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Paul Battley
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain:
|
|
11
|
+
date: 2007-03-15 00:00:00 +01:00
|
|
12
|
+
default_executable:
|
|
13
|
+
dependencies: []
|
|
14
|
+
|
|
15
|
+
description:
|
|
16
|
+
email: pbattley@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
|
|
19
|
+
extensions: []
|
|
20
|
+
|
|
21
|
+
extra_rdoc_files:
|
|
22
|
+
- README.txt
|
|
23
|
+
- History.txt
|
|
24
|
+
- COPYING.txt
|
|
25
|
+
files:
|
|
26
|
+
- lib/htmlentities.rb
|
|
27
|
+
- lib/htmlentities/html4.rb
|
|
28
|
+
- lib/htmlentities/legacy.rb
|
|
29
|
+
- lib/htmlentities/string.rb
|
|
30
|
+
- lib/htmlentities/xhtml1.rb
|
|
31
|
+
- test/entities_test.rb
|
|
32
|
+
- test/html4_test.rb
|
|
33
|
+
- test/legacy_test.rb
|
|
34
|
+
- test/roundtrip_test.rb
|
|
35
|
+
- test/string_test.rb
|
|
36
|
+
- test/test_all.rb
|
|
37
|
+
- test/xhtml1_test.rb
|
|
38
|
+
- README.txt
|
|
39
|
+
- History.txt
|
|
40
|
+
- COPYING.txt
|
|
41
|
+
has_rdoc: true
|
|
42
|
+
homepage: http://htmlentities.rubyforge.org/
|
|
43
|
+
post_install_message:
|
|
44
|
+
rdoc_options: []
|
|
45
|
+
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - ">"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 0.0.0
|
|
53
|
+
version:
|
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
|
+
requirements:
|
|
56
|
+
- - ">="
|
|
57
|
+
- !ruby/object:Gem::Version
|
|
58
|
+
version: "0"
|
|
59
|
+
version:
|
|
60
|
+
requirements: []
|
|
61
|
+
|
|
62
|
+
rubyforge_project:
|
|
63
|
+
rubygems_version: 1.3.1
|
|
64
|
+
signing_key:
|
|
65
|
+
specification_version: 1
|
|
66
|
+
summary: A module for encoding and decoding (X)HTML entities.
|
|
67
|
+
test_files:
|
|
68
|
+
- test/test_all.rb
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
== Licence (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2005-2006 Paul Battley
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
== 4.0.0 (2007-03-15)
|
|
2
|
+
* New instantiation-based interface (but legacy interface is preserved for
|
|
3
|
+
compatibility.
|
|
4
|
+
* Handles HTML4 as well as XHTML1 (the former lacks the ' entity).
|
|
5
|
+
* Encodes basic entities numerically when :basic isn't specified and :decimal
|
|
6
|
+
or :hexadecimal is.
|
|
7
|
+
* Performs a maximum of two gsub passes instead of three when encoding, which
|
|
8
|
+
should be more efficient on long strings.
|
|
9
|
+
|
|
10
|
+
== 3.1.0 (2007-01-19)
|
|
11
|
+
* Now understands all the entities referred to in the XHTML 1.0 DTD (253
|
|
12
|
+
entities compared with 131 in version 3.0.1).
|
|
13
|
+
* Calls to_s on parameters to play nicely with Rails 1.2.1.
|
|
14
|
+
* Entity mapping data is now lazily loaded.
|
|
15
|
+
|
|
16
|
+
== 3.0.1 (2005-04-08)
|
|
17
|
+
* Improved documentation.
|
|
18
|
+
|
|
19
|
+
== 3.0.0 (2005-04-08)
|
|
20
|
+
* Changed licence to MIT due to confusion with previous 'Fair' licence (my
|
|
21
|
+
intention was to be liberal, not obscure).
|
|
22
|
+
* Moved basic functionality out of String class; for previous behaviour,
|
|
23
|
+
require 'htmlentities/string'.
|
|
24
|
+
* Changed version numbering scheme.
|
|
25
|
+
* Now available as a Gem.
|
|
26
|
+
|
|
27
|
+
== 2.2 (2005-11-07)
|
|
28
|
+
* Important bug fixes -- thanks to Moonwolf.
|
|
29
|
+
* Decoding hexadecimal entities now accepts 'f' as a hex digit. (D'oh!)
|
|
30
|
+
* Decimal decoding edge cases addressed.
|
|
31
|
+
* Test cases added.
|
|
32
|
+
|
|
33
|
+
== 2.1 (2005-10-31)
|
|
34
|
+
* Removed some unnecessary code in basic entity encoding.
|
|
35
|
+
* Improved handling of encoding: commands are now automatically sorted, so the
|
|
36
|
+
user doesn't have to worry about their order.
|
|
37
|
+
* Now using setup.rb.
|
|
38
|
+
* Tests moved to separate file.
|
|
39
|
+
|
|
40
|
+
== 2.0 (2005-08-23)
|
|
41
|
+
* Added encoding to entities.
|
|
42
|
+
* Decoding interface unchanged.
|
|
43
|
+
* Fixed a bug with handling high codepoints.
|
|
44
|
+
|
|
45
|
+
== 1.0 (2005-08-03)
|
|
46
|
+
* Initial release.
|
|
47
|
+
* Decoding only.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
== HTMLEntities
|
|
2
|
+
|
|
3
|
+
HTML entity encoding and decoding for Ruby
|
|
4
|
+
|
|
5
|
+
The HTMLEntities module facilitates encoding and decoding of
|
|
6
|
+
(X)HTML entities from/to their corresponding UTF-8 codepoints.
|
|
7
|
+
|
|
8
|
+
To install (requires root/admin privileges):
|
|
9
|
+
|
|
10
|
+
ruby setup.rb
|
|
11
|
+
|
|
12
|
+
Alternatively, you can just use the gem.
|
|
13
|
+
|
|
14
|
+
== Licence
|
|
15
|
+
|
|
16
|
+
This code is free to use under the terms of the MIT licence:
|
|
17
|
+
|
|
18
|
+
Copyright (c) 2007 Paul Battley
|
|
19
|
+
|
|
20
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
21
|
+
of this software and associated documentation files (the "Software"), to
|
|
22
|
+
deal in the Software without restriction, including without limitation the
|
|
23
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
24
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
25
|
+
furnished to do so, subject to the following conditions:
|
|
26
|
+
|
|
27
|
+
The above copyright notice and this permission notice shall be included in
|
|
28
|
+
all copies or substantial portions of the Software.
|
|
29
|
+
|
|
30
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
31
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
32
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
33
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
34
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
35
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
36
|
+
IN THE SOFTWARE.
|
|
37
|
+
|
|
38
|
+
If you'd like to negotiate a different licence for a specific use, just
|
|
39
|
+
contact me -- I'll almost certainly permit it.
|
|
40
|
+
|
|
41
|
+
== Contact
|
|
42
|
+
|
|
43
|
+
Comments are welcome. Send an email to pbattley@gmail.com.
|
|
44
|
+
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
require 'htmlentities/legacy'
|
|
2
|
+
|
|
3
|
+
#
|
|
4
|
+
# HTML entity encoding and decoding for Ruby
|
|
5
|
+
#
|
|
6
|
+
|
|
7
|
+
class HTMLEntities
|
|
8
|
+
|
|
9
|
+
VERSION = '4.0.0'
|
|
10
|
+
FLAVORS = %w[html4 xhtml1]
|
|
11
|
+
INSTRUCTIONS = [:basic, :named, :decimal, :hexadecimal]
|
|
12
|
+
|
|
13
|
+
class InstructionError < RuntimeError
|
|
14
|
+
end
|
|
15
|
+
class UnknownFlavor < RuntimeError
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
#
|
|
19
|
+
# Create a new HTMLEntities coder for the specified flavor.
|
|
20
|
+
# Available flavors are 'html4' and 'xhtml1' (the default).
|
|
21
|
+
# The only difference in functionality between the two is in the handling of the apos
|
|
22
|
+
# (apostrophe) named entity, which is not defined in HTML4.
|
|
23
|
+
#
|
|
24
|
+
def initialize(flavor='xhtml1')
|
|
25
|
+
@flavor = flavor.to_s.downcase
|
|
26
|
+
raise UnknownFlavor, "Unknown flavor #{flavor}" unless FLAVORS.include?(@flavor)
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
#
|
|
30
|
+
# Decode entities in a string into their UTF-8
|
|
31
|
+
# equivalents. Obviously, if your string is not already in UTF-8, you'd
|
|
32
|
+
# better convert it before using this method, or the output will be mixed
|
|
33
|
+
# up.
|
|
34
|
+
#
|
|
35
|
+
# Unknown named entities will not be converted
|
|
36
|
+
#
|
|
37
|
+
def decode(source)
|
|
38
|
+
return source.to_s.gsub(named_entity_regexp) {
|
|
39
|
+
(cp = map[$1]) ? [cp].pack('U') : $&
|
|
40
|
+
}.gsub(/&#([0-9]{1,7});|&#x([0-9a-f]{1,6});/i) {
|
|
41
|
+
$1 ? [$1.to_i].pack('U') : [$2.to_i(16)].pack('U')
|
|
42
|
+
}
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
#
|
|
46
|
+
# Encode codepoints into their corresponding entities. Various operations
|
|
47
|
+
# are possible, and may be specified in order:
|
|
48
|
+
#
|
|
49
|
+
# :basic :: Convert the five XML entities ('"<>&)
|
|
50
|
+
# :named :: Convert non-ASCII characters to their named HTML 4.01 equivalent
|
|
51
|
+
# :decimal :: Convert non-ASCII characters to decimal entities (e.g. Ӓ)
|
|
52
|
+
# :hexadecimal :: Convert non-ASCII characters to hexadecimal entities (e.g. # ካ)
|
|
53
|
+
#
|
|
54
|
+
# You can specify the commands in any order, but they will be executed in
|
|
55
|
+
# the order listed above to ensure that entity ampersands are not
|
|
56
|
+
# clobbered and that named entities are replaced before numeric ones.
|
|
57
|
+
#
|
|
58
|
+
# If no instructions are specified, :basic will be used.
|
|
59
|
+
#
|
|
60
|
+
# Examples:
|
|
61
|
+
# encode_entities(str) - XML-safe
|
|
62
|
+
# encode_entities(str, :basic, :decimal) - XML-safe and 7-bit clean
|
|
63
|
+
# encode_entities(str, :basic, :named, :decimal) - 7-bit clean, with all
|
|
64
|
+
# non-ASCII characters replaced with their named entity where possible, and
|
|
65
|
+
# decimal equivalents otherwise.
|
|
66
|
+
#
|
|
67
|
+
# Note: It is the program's responsibility to ensure that the source
|
|
68
|
+
# contains valid UTF-8 before calling this method.
|
|
69
|
+
#
|
|
70
|
+
def encode(source, *instructions)
|
|
71
|
+
string = source.to_s.dup
|
|
72
|
+
if (instructions.empty?)
|
|
73
|
+
instructions = [:basic]
|
|
74
|
+
elsif (unknown_instructions = instructions - INSTRUCTIONS) != []
|
|
75
|
+
raise InstructionError,
|
|
76
|
+
"unknown encode_entities command(s): #{unknown_instructions.inspect}"
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
basic_entity_encoder =
|
|
80
|
+
if instructions.include?(:basic) || instructions.include?(:named)
|
|
81
|
+
:encode_named
|
|
82
|
+
elsif instructions.include?(:decimal)
|
|
83
|
+
:encode_decimal
|
|
84
|
+
else instructions.include?(:hexadecimal)
|
|
85
|
+
:encode_hexadecimal
|
|
86
|
+
end
|
|
87
|
+
string.gsub!(basic_entity_regexp){ __send__(basic_entity_encoder, $&) }
|
|
88
|
+
|
|
89
|
+
extended_entity_encoders = []
|
|
90
|
+
if instructions.include?(:named)
|
|
91
|
+
extended_entity_encoders << :encode_named
|
|
92
|
+
end
|
|
93
|
+
if instructions.include?(:decimal)
|
|
94
|
+
extended_entity_encoders << :encode_decimal
|
|
95
|
+
elsif instructions.include?(:hexadecimal)
|
|
96
|
+
extended_entity_encoders << :encode_hexadecimal
|
|
97
|
+
end
|
|
98
|
+
unless extended_entity_encoders.empty?
|
|
99
|
+
string.gsub!(extended_entity_regexp){
|
|
100
|
+
encode_extended(extended_entity_encoders, $&)
|
|
101
|
+
}
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
return string
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
private
|
|
108
|
+
|
|
109
|
+
def map
|
|
110
|
+
@map ||= (require "htmlentities/#{@flavor}"; HTMLEntities::MAPPINGS[@flavor])
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def basic_entity_regexp
|
|
114
|
+
@basic_entity_regexp ||= (
|
|
115
|
+
case @flavor
|
|
116
|
+
when /^html/
|
|
117
|
+
/[<>"&]/
|
|
118
|
+
else
|
|
119
|
+
/[<>'"&]/
|
|
120
|
+
end
|
|
121
|
+
)
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
def extended_entity_regexp
|
|
125
|
+
@extended_entity_regexp ||= (
|
|
126
|
+
regexp = '[\x00-\x1f]|[\xc0-\xfd][\x80-\xbf]+'
|
|
127
|
+
regexp += "|'" if @flavor == 'html4'
|
|
128
|
+
Regexp.new(regexp)
|
|
129
|
+
)
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
def named_entity_regexp
|
|
133
|
+
@named_entity_regexp ||= (
|
|
134
|
+
min_length = map.keys.map{ |a| a.length }.min
|
|
135
|
+
max_length = map.keys.map{ |a| a.length }.max
|
|
136
|
+
/&([a-z][a-z0-9]{#{min_length-1},#{max_length-1}});/i
|
|
137
|
+
)
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
def reverse_map
|
|
141
|
+
@reverse_map ||= map.invert
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
def encode_named(char)
|
|
145
|
+
cp = char.unpack('U')[0]
|
|
146
|
+
(e = reverse_map[cp]) && "&#{e};"
|
|
147
|
+
end
|
|
148
|
+
|
|
149
|
+
def encode_decimal(char)
|
|
150
|
+
"&##{char.unpack('U')[0]};"
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
def encode_hexadecimal(char)
|
|
154
|
+
"&#x#{char.unpack('U')[0].to_s(16)};"
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
def encode_extended(encoders, char)
|
|
158
|
+
encoders.each do |encoder|
|
|
159
|
+
encoded = __send__(encoder, char)
|
|
160
|
+
return encoded if encoded
|
|
161
|
+
end
|
|
162
|
+
return char
|
|
163
|
+
end
|
|
164
|
+
|
|
165
|
+
end
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
class HTMLEntities
|
|
2
|
+
MAPPINGS = {} unless defined? MAPPINGS
|
|
3
|
+
MAPPINGS['html4'] = {
|
|
4
|
+
'Aacute' => 193,
|
|
5
|
+
'aacute' => 225,
|
|
6
|
+
'Acirc' => 194,
|
|
7
|
+
'acirc' => 226,
|
|
8
|
+
'acute' => 180,
|
|
9
|
+
'AElig' => 198,
|
|
10
|
+
'aelig' => 230,
|
|
11
|
+
'Agrave' => 192,
|
|
12
|
+
'agrave' => 224,
|
|
13
|
+
'alefsym' => 8501,
|
|
14
|
+
'Alpha' => 913,
|
|
15
|
+
'alpha' => 945,
|
|
16
|
+
'amp' => 38,
|
|
17
|
+
'and' => 8743,
|
|
18
|
+
'ang' => 8736,
|
|
19
|
+
'Aring' => 197,
|
|
20
|
+
'aring' => 229,
|
|
21
|
+
'asymp' => 8776,
|
|
22
|
+
'Atilde' => 195,
|
|
23
|
+
'atilde' => 227,
|
|
24
|
+
'Auml' => 196,
|
|
25
|
+
'auml' => 228,
|
|
26
|
+
'bdquo' => 8222,
|
|
27
|
+
'Beta' => 914,
|
|
28
|
+
'beta' => 946,
|
|
29
|
+
'brvbar' => 166,
|
|
30
|
+
'bull' => 8226,
|
|
31
|
+
'cap' => 8745,
|
|
32
|
+
'Ccedil' => 199,
|
|
33
|
+
'ccedil' => 231,
|
|
34
|
+
'cedil' => 184,
|
|
35
|
+
'cent' => 162,
|
|
36
|
+
'Chi' => 935,
|
|
37
|
+
'chi' => 967,
|
|
38
|
+
'circ' => 710,
|
|
39
|
+
'clubs' => 9827,
|
|
40
|
+
'cong' => 8773,
|
|
41
|
+
'copy' => 169,
|
|
42
|
+
'crarr' => 8629,
|
|
43
|
+
'cup' => 8746,
|
|
44
|
+
'curren' => 164,
|
|
45
|
+
'Dagger' => 8225,
|
|
46
|
+
'dagger' => 8224,
|
|
47
|
+
'dArr' => 8659,
|
|
48
|
+
'darr' => 8595,
|
|
49
|
+
'deg' => 176,
|
|
50
|
+
'Delta' => 916,
|
|
51
|
+
'delta' => 948,
|
|
52
|
+
'diams' => 9830,
|
|
53
|
+
'divide' => 247,
|
|
54
|
+
'Eacute' => 201,
|
|
55
|
+
'eacute' => 233,
|
|
56
|
+
'Ecirc' => 202,
|
|
57
|
+
'ecirc' => 234,
|
|
58
|
+
'Egrave' => 200,
|
|
59
|
+
'egrave' => 232,
|
|
60
|
+
'empty' => 8709,
|
|
61
|
+
'emsp' => 8195,
|
|
62
|
+
'ensp' => 8194,
|
|
63
|
+
'Epsilon' => 917,
|
|
64
|
+
'epsilon' => 949,
|
|
65
|
+
'equiv' => 8801,
|
|
66
|
+
'Eta' => 919,
|
|
67
|
+
'eta' => 951,
|
|
68
|
+
'ETH' => 208,
|
|
69
|
+
'eth' => 240,
|
|
70
|
+
'Euml' => 203,
|
|
71
|
+
'euml' => 235,
|
|
72
|
+
'euro' => 8364,
|
|
73
|
+
'exist' => 8707,
|
|
74
|
+
'fnof' => 402,
|
|
75
|
+
'forall' => 8704,
|
|
76
|
+
'frac12' => 189,
|
|
77
|
+
'frac14' => 188,
|
|
78
|
+
'frac34' => 190,
|
|
79
|
+
'frasl' => 8260,
|
|
80
|
+
'Gamma' => 915,
|
|
81
|
+
'gamma' => 947,
|
|
82
|
+
'ge' => 8805,
|
|
83
|
+
'gt' => 62,
|
|
84
|
+
'hArr' => 8660,
|
|
85
|
+
'harr' => 8596,
|
|
86
|
+
'hearts' => 9829,
|
|
87
|
+
'hellip' => 8230,
|
|
88
|
+
'Iacute' => 205,
|
|
89
|
+
'iacute' => 237,
|
|
90
|
+
'Icirc' => 206,
|
|
91
|
+
'icirc' => 238,
|
|
92
|
+
'iexcl' => 161,
|
|
93
|
+
'Igrave' => 204,
|
|
94
|
+
'igrave' => 236,
|
|
95
|
+
'image' => 8465,
|
|
96
|
+
'infin' => 8734,
|
|
97
|
+
'int' => 8747,
|
|
98
|
+
'Iota' => 921,
|
|
99
|
+
'iota' => 953,
|
|
100
|
+
'iquest' => 191,
|
|
101
|
+
'isin' => 8712,
|
|
102
|
+
'Iuml' => 207,
|
|
103
|
+
'iuml' => 239,
|
|
104
|
+
'Kappa' => 922,
|
|
105
|
+
'kappa' => 954,
|
|
106
|
+
'Lambda' => 923,
|
|
107
|
+
'lambda' => 955,
|
|
108
|
+
'lang' => 9001,
|
|
109
|
+
'laquo' => 171,
|
|
110
|
+
'lArr' => 8656,
|
|
111
|
+
'larr' => 8592,
|
|
112
|
+
'lceil' => 8968,
|
|
113
|
+
'ldquo' => 8220,
|
|
114
|
+
'le' => 8804,
|
|
115
|
+
'lfloor' => 8970,
|
|
116
|
+
'lowast' => 8727,
|
|
117
|
+
'loz' => 9674,
|
|
118
|
+
'lrm' => 8206,
|
|
119
|
+
'lsaquo' => 8249,
|
|
120
|
+
'lsquo' => 8216,
|
|
121
|
+
'lt' => 60,
|
|
122
|
+
'macr' => 175,
|
|
123
|
+
'mdash' => 8212,
|
|
124
|
+
'micro' => 181,
|
|
125
|
+
'middot' => 183,
|
|
126
|
+
'minus' => 8722,
|
|
127
|
+
'Mu' => 924,
|
|
128
|
+
'mu' => 956,
|
|
129
|
+
'nabla' => 8711,
|
|
130
|
+
'nbsp' => 160,
|
|
131
|
+
'ndash' => 8211,
|
|
132
|
+
'ne' => 8800,
|
|
133
|
+
'ni' => 8715,
|
|
134
|
+
'not' => 172,
|
|
135
|
+
'notin' => 8713,
|
|
136
|
+
'nsub' => 8836,
|
|
137
|
+
'Ntilde' => 209,
|
|
138
|
+
'ntilde' => 241,
|
|
139
|
+
'Nu' => 925,
|
|
140
|
+
'nu' => 957,
|
|
141
|
+
'Oacute' => 211,
|
|
142
|
+
'oacute' => 243,
|
|
143
|
+
'Ocirc' => 212,
|
|
144
|
+
'ocirc' => 244,
|
|
145
|
+
'OElig' => 338,
|
|
146
|
+
'oelig' => 339,
|
|
147
|
+
'Ograve' => 210,
|
|
148
|
+
'ograve' => 242,
|
|
149
|
+
'oline' => 8254,
|
|
150
|
+
'Omega' => 937,
|
|
151
|
+
'omega' => 969,
|
|
152
|
+
'Omicron' => 927,
|
|
153
|
+
'omicron' => 959,
|
|
154
|
+
'oplus' => 8853,
|
|
155
|
+
'or' => 8744,
|
|
156
|
+
'ordf' => 170,
|
|
157
|
+
'ordm' => 186,
|
|
158
|
+
'Oslash' => 216,
|
|
159
|
+
'oslash' => 248,
|
|
160
|
+
'Otilde' => 213,
|
|
161
|
+
'otilde' => 245,
|
|
162
|
+
'otimes' => 8855,
|
|
163
|
+
'Ouml' => 214,
|
|
164
|
+
'ouml' => 246,
|
|
165
|
+
'para' => 182,
|
|
166
|
+
'part' => 8706,
|
|
167
|
+
'permil' => 8240,
|
|
168
|
+
'perp' => 8869,
|
|
169
|
+
'Phi' => 934,
|
|
170
|
+
'phi' => 966,
|
|
171
|
+
'Pi' => 928,
|
|
172
|
+
'pi' => 960,
|
|
173
|
+
'piv' => 982,
|
|
174
|
+
'plusmn' => 177,
|
|
175
|
+
'pound' => 163,
|
|
176
|
+
'Prime' => 8243,
|
|
177
|
+
'prime' => 8242,
|
|
178
|
+
'prod' => 8719,
|
|
179
|
+
'prop' => 8733,
|
|
180
|
+
'Psi' => 936,
|
|
181
|
+
'psi' => 968,
|
|
182
|
+
'quot' => 34,
|
|
183
|
+
'radic' => 8730,
|
|
184
|
+
'rang' => 9002,
|
|
185
|
+
'raquo' => 187,
|
|
186
|
+
'rArr' => 8658,
|
|
187
|
+
'rarr' => 8594,
|
|
188
|
+
'rceil' => 8969,
|
|
189
|
+
'rdquo' => 8221,
|
|
190
|
+
'real' => 8476,
|
|
191
|
+
'reg' => 174,
|
|
192
|
+
'rfloor' => 8971,
|
|
193
|
+
'Rho' => 929,
|
|
194
|
+
'rho' => 961,
|
|
195
|
+
'rlm' => 8207,
|
|
196
|
+
'rsaquo' => 8250,
|
|
197
|
+
'rsquo' => 8217,
|
|
198
|
+
'sbquo' => 8218,
|
|
199
|
+
'Scaron' => 352,
|
|
200
|
+
'scaron' => 353,
|
|
201
|
+
'sdot' => 8901,
|
|
202
|
+
'sect' => 167,
|
|
203
|
+
'shy' => 173,
|
|
204
|
+
'Sigma' => 931,
|
|
205
|
+
'sigma' => 963,
|
|
206
|
+
'sigmaf' => 962,
|
|
207
|
+
'sim' => 8764,
|
|
208
|
+
'spades' => 9824,
|
|
209
|
+
'sub' => 8834,
|
|
210
|
+
'sube' => 8838,
|
|
211
|
+
'sum' => 8721,
|
|
212
|
+
'sup' => 8835,
|
|
213
|
+
'sup1' => 185,
|
|
214
|
+
'sup2' => 178,
|
|
215
|
+
'sup3' => 179,
|
|
216
|
+
'supe' => 8839,
|
|
217
|
+
'szlig' => 223,
|
|
218
|
+
'Tau' => 932,
|
|
219
|
+
'tau' => 964,
|
|
220
|
+
'there4' => 8756,
|
|
221
|
+
'Theta' => 920,
|
|
222
|
+
'theta' => 952,
|
|
223
|
+
'thetasym' => 977,
|
|
224
|
+
'thinsp' => 8201,
|
|
225
|
+
'THORN' => 222,
|
|
226
|
+
'thorn' => 254,
|
|
227
|
+
'tilde' => 732,
|
|
228
|
+
'times' => 215,
|
|
229
|
+
'trade' => 8482,
|
|
230
|
+
'Uacute' => 218,
|
|
231
|
+
'uacute' => 250,
|
|
232
|
+
'uArr' => 8657,
|
|
233
|
+
'uarr' => 8593,
|
|
234
|
+
'Ucirc' => 219,
|
|
235
|
+
'ucirc' => 251,
|
|
236
|
+
'Ugrave' => 217,
|
|
237
|
+
'ugrave' => 249,
|
|
238
|
+
'uml' => 168,
|
|
239
|
+
'upsih' => 978,
|
|
240
|
+
'Upsilon' => 933,
|
|
241
|
+
'upsilon' => 965,
|
|
242
|
+
'Uuml' => 220,
|
|
243
|
+
'uuml' => 252,
|
|
244
|
+
'weierp' => 8472,
|
|
245
|
+
'Xi' => 926,
|
|
246
|
+
'xi' => 958,
|
|
247
|
+
'Yacute' => 221,
|
|
248
|
+
'yacute' => 253,
|
|
249
|
+
'yen' => 165,
|
|
250
|
+
'Yuml' => 376,
|
|
251
|
+
'yuml' => 255,
|
|
252
|
+
'Zeta' => 918,
|
|
253
|
+
'zeta' => 950,
|
|
254
|
+
'zwj' => 8205,
|
|
255
|
+
'zwnj' => 8204
|
|
256
|
+
}
|
|
257
|
+
end
|