openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
R
Ruby Enterprise Edition
Settings
|
Report Duplicate
10
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Inactive
Commits
: Listings
Analyzed
1 day
ago. based on code collected
1 day
ago.
Nov 18, 2024 — Nov 18, 2025
Showing page 7 of 259
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
* file.c (file_expand_path): rb_str_set_len is not backported.
nobu
More...
over 17 years ago
* file.c (file_expand_path): support for alternative data stream and ignored trailing garbages of NTFS.
nobu
More...
over 17 years ago
* ChangeLog: fixed indent.
nobu
More...
over 17 years ago
add tag v1_8_6_114
shyouhei
More...
over 17 years ago
merge revision(s) 15677: * lib/webrick/httpservlet/filehandler.rb: should normalize path separators in path_info to prevent directory traversal attacks on DOSISH platforms. reported by Digital Security Research Group [DSECRG-08-026]. * lib/webrick/httpservlet/filehandler.rb: pathnames which have not to be published should be checked case-insensitively.
shyouhei
More...
over 17 years ago
* test/rss/test_taxonomy.rb, test/rss/test_parser_1.0.rb, test/rss/test_image.rb, test/rss/rss-testcase.rb: ensured declaring XML namespaces.
shyouhei
More...
almost 18 years ago
patchlevel 112
shyouhei
More...
almost 18 years ago
Fixes a bug in the pretty printer related to an incomplete refactoring. Fixes another bug related to the formatting code refactoring in 3.1.7 Fixes ticket:99, and adds Henrik's unit test (with minor modifications) Fixes ticket:102. Fix provided by kevinj -- thanks! Great job. Implements namespace validation in the baseparser. This means that, as per the XML namespace spec, unbound prefixes generate UndefinedNamespaceException. Also, as per the namespace spec, the 'xml' prefix must be bound to http://www.w3.org/XML/1998/namespace, and the 'xmlns' prefix must not be declared. in the XML. Fix for ticket:115 Fixes a bug in the pretty printer related to an incomplete refactoring. Merge code cleanups Fixes another bug related to the formatting code refactoring in 3.1.7 Indentation fix. lib/rexml/formatters/*.rb: set properties. lib/rexml/encodings/{ISO-8859-15,CP-1252}.rb: fixed invalid syntax. lib/rexml/rexml.rb: removed doubled constant. lib/rexml/rexml.rb: added encoding. Fixes ticket:110 Missing include for UndefinedNamespaceException was causing errors in some cases.
ser
More...
about 18 years ago
Sorry SER, reverting r13600, which brakes make test-all''
shyouhei
More...
about 18 years ago
* Fixes a bug in the pretty printer related to an incomplete refactoring. * Fixes another bug related to the formatting code refactoring in 3.1.7 * Fixes ticket:99, and adds Henrik's unit test (with minor modifications) * Fixes ticket:102. Fix provided by kevinj -- thanks! Great job. * Implements namespace validation in the baseparser. This means that, as per the XML namespace spec, unbound prefixes generate UndefinedNamespaceException. Also, as per the namespace spec, the 'xml' prefix must be bound to http://www.w3.org/XML/1998/namespace, and the 'xmlns' prefix must not be declared. in the XML. * Eggbeater missed one. * Fix for ticket:115 * Fixes a bug in the pretty printer related to an incomplete refactoring. * Merge code cleanups * Fixes another bug related to the formatting code refactoring in 3.1.7 * Indentation fix. * r13...@bean (orig r12846): nobu | 2007-07-25 17:18:55 -0400 * lib/rexml/formatters/*.rb: set properties. * r13...@bean (orig r12883): nobu | 2007-08-06 04:36:31 -0400 * lib/rexml/encodings/{ISO-8859-15,CP-1252}.rb: fixed invalid syntax. * r13...@bean (orig r13096): nobu | 2007-08-18 02:03:45 -0400 * lib/rexml/rexml.rb: removed doubled constant. * r13...@bean (orig r13097): nobu | 2007-08-18 02:12:48 -0400 * lib/rexml/rexml.rb: added encoding.
ser
More...
about 18 years ago
* lib/net/http.rb: an SSL verification (the server hostname should be matched with its certificate's commonName) is added. this verification can be skipped by "Net::HTTP#enable_post_connection_check=(false)". suggested by Chris Clark <cclark at isecpartners.com> * lib/net/open-uri.rb: use Net::HTTP#enable_post_connection_check to perform SSL post connection check. * ext/openssl/lib/openssl/ssl.c (OpenSSL::SSL::SSLSocket#post_connection_check): refine error message.
shyouhei
More...
about 18 years ago
* eval.c, intern.h, ext/thread/thread.c: should not free queue while any live threads are waiting. [ruby-dev:30653]
shyouhei
More...
about 18 years ago
* ext/stringio/stringio.c (strio_init): separate from strio_initialize to share with strio_reopen properly. [ruby-Bugs-13919]
shyouhei
More...
about 18 years ago
* lib/rdoc/options.rb (Options::check_diagram): dot -V output changed. [ ruby-Bugs-11978 ], Thanks Florian Frank.
shyouhei
More...
about 18 years ago
* bignum.c (bigtrunc): RBIGNUM(x)->len may be zero. out of bound access. [ruby-dev:31404]
shyouhei
More...
about 18 years ago
* ext/thread/thread.c (lock_mutex): should take care of threads not waiting any longer; there cases of a thread raising exceptions. [ ruby-Bugs-11901 ]
shyouhei
More...
about 18 years ago
* runruby.rb: fix incomplete backport r12339.
shyouhei
More...
about 18 years ago
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_6@13459 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
shyouhei
More...
about 18 years ago
* ruby.c (proc_options): -W should be allowed in RUBYOPT environment variable. [ruby-core:12118]
shyouhei
More...
about 18 years ago
* range.c (range_step): fixed integer overflow. [ruby-dev:31763]
shyouhei
More...
about 18 years ago
* eval.c (rb_thread_start_0): should unset time_thread_alive_p. [ruby-talk:257219], [ruby-core:11542], [ruby-dev:31253]
shyouhei
More...
about 18 years ago
* array.c (rb_ary_subseq): need integer overflow check. [ruby-dev:31736] * array.c (rb_ary_splice): ditto. [ruby-dev:31737] * array.c (rb_ary_fill): ditto. [ruby-dev:31738]
shyouhei
More...
about 18 years ago
* array.c (rb_ary_fill): need integer overflow check. [ruby-dev:31738]
shyouhei
More...
about 18 years ago
* string.c (rb_str_splice): integer overflow for length. [ruby-dev:31739]
shyouhei
More...
about 18 years ago
* configure.in (group_member): check if presents. * configure.in (XCFLAGS): add _GNU_SOURCE on linux. * file.c (group_member): use system routine if available.
shyouhei
More...
about 18 years ago
* include/ruby/defines.h (flush_register_windows): call "ta 0x03" even on Linux/Sparc. [ruby-dev:31674]
shyouhei
More...
about 18 years ago
* ext/win32ole/win32ole.c (ole_type_progid, reg_enum_key, reg_get_val, ole_wc2mb): fix the bug. Thanks, arton. [ruby-dev:31576]
shyouhei
More...
about 18 years ago
* eval.c (mnew): should preserve noex as safe_level. * eval.c (rb_call0): tighten security check condition..
shyouhei
More...
about 18 years ago
* ext/tk/tcltklib.c (Init_tcltklib): use rb_set_end_proc().
shyouhei
More...
about 18 years ago
* process.c (detach_process_watcher): should not pass the pointer to an auto variable to the thread to be created. pointed and fix by KUBO Takehiro <kubo at jiubao.org> [ruby-dev:30618]
shyouhei
More...
about 18 years ago
←
1
2
3
4
5
6
7
8
9
10
11
…
258
259
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree