public inbox for java-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug java/19444] New: GCJ implementation of java.net.URI misses host support
@ 2005-01-14 13:21 Fabian dot Groffen at cwi dot nl
  2005-01-14 13:29 ` [Bug libgcj/19444] " pinskia at gcc dot gnu dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Fabian dot Groffen at cwi dot nl @ 2005-01-14 13:21 UTC (permalink / raw)
  To: java-prs

The implementation in cvs for GCJ's java.net.URI does currently not store the
hostname attribute from a URI.  It seems as if this variable is just forgotten
to be assigned in the URI(String) constructor.  The effect of this is that a
getHost() method call always returns null because its underlying variable host
is never set.

-- 
           Summary: GCJ implementation of java.net.URI misses host support
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: java
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: Fabian dot Groffen at cwi dot nl
                CC: gcc-bugs at gcc dot gnu dot org,java-prs at gcc dot gnu
                    dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19444


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug libgcj/19444] GCJ implementation of java.net.URI misses host support
  2005-01-14 13:21 [Bug java/19444] New: GCJ implementation of java.net.URI misses host support Fabian dot Groffen at cwi dot nl
@ 2005-01-14 13:29 ` pinskia at gcc dot gnu dot org
  2005-01-14 20:50 ` [Bug java/19444] " konqueror at gmx dot de
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-01-14 13:29 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-01-14 13:29 -------
Confirmed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
          Component|java                        |libgcj
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-01-14 13:29:37
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19444


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/19444] GCJ implementation of java.net.URI misses host support
  2005-01-14 13:21 [Bug java/19444] New: GCJ implementation of java.net.URI misses host support Fabian dot Groffen at cwi dot nl
  2005-01-14 13:29 ` [Bug libgcj/19444] " pinskia at gcc dot gnu dot org
@ 2005-01-14 20:50 ` konqueror at gmx dot de
  2005-01-15 22:27 ` cvs-commit at gcc dot gnu dot org
  2005-01-15 22:36 ` konqueror at gmx dot de
  3 siblings, 0 replies; 5+ messages in thread
From: konqueror at gmx dot de @ 2005-01-14 20:50 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From konqueror at gmx dot de  2005-01-14 20:50 -------
I'm working on it. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |konqueror at gmx dot de
                   |dot org                     |
             Status|NEW                         |ASSIGNED
          Component|libgcj                      |java


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19444


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/19444] GCJ implementation of java.net.URI misses host support
  2005-01-14 13:21 [Bug java/19444] New: GCJ implementation of java.net.URI misses host support Fabian dot Groffen at cwi dot nl
  2005-01-14 13:29 ` [Bug libgcj/19444] " pinskia at gcc dot gnu dot org
  2005-01-14 20:50 ` [Bug java/19444] " konqueror at gmx dot de
@ 2005-01-15 22:27 ` cvs-commit at gcc dot gnu dot org
  2005-01-15 22:36 ` konqueror at gmx dot de
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-01-15 22:27 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-01-15 22:27 -------
Subject: Bug 19444

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	mkoch@gcc.gnu.org	2005-01-15 22:27:02

Modified files:
	libjava        : ChangeLog 
	libjava/java/net: URI.java 

Log message:
	2005-01-15  Michael Koch  <konqueror@gmx.de>
	
	PR libgcj/19444
	* java/net/URI.java
	(AUTHORITY_REGEXP): New regexp constant.
	(AUTHORITY_USERINFO_GROUP): New constant.
	(AUTHORITY_HOST_GROUP): Likewise.
	(AUTHORITY_PORT_GROUP): Likewise.
	(port): Changed default value to -1.
	(parseURI): Parse authority part and initialize host,
	port and userInfo.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/ChangeLog.diff?cvsroot=gcc&r1=1.3288&r2=1.3289
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libjava/java/net/URI.java.diff?cvsroot=gcc&r1=1.7&r2=1.8



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19444


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug java/19444] GCJ implementation of java.net.URI misses host support
  2005-01-14 13:21 [Bug java/19444] New: GCJ implementation of java.net.URI misses host support Fabian dot Groffen at cwi dot nl
                   ` (2 preceding siblings ...)
  2005-01-15 22:27 ` cvs-commit at gcc dot gnu dot org
@ 2005-01-15 22:36 ` konqueror at gmx dot de
  3 siblings, 0 replies; 5+ messages in thread
From: konqueror at gmx dot de @ 2005-01-15 22:36 UTC (permalink / raw)
  To: java-prs


------- Additional Comments From konqueror at gmx dot de  2005-01-15 22:36 -------
Fixed. 

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=19444


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-01-15 22:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-01-14 13:21 [Bug java/19444] New: GCJ implementation of java.net.URI misses host support Fabian dot Groffen at cwi dot nl
2005-01-14 13:29 ` [Bug libgcj/19444] " pinskia at gcc dot gnu dot org
2005-01-14 20:50 ` [Bug java/19444] " konqueror at gmx dot de
2005-01-15 22:27 ` cvs-commit at gcc dot gnu dot org
2005-01-15 22:36 ` konqueror at gmx dot de

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).