RE: HTML to Universe conversion codes

2004-04-28 Thread Larry Hiscock
It should be standard URL encoding, which works as follows:

Spaces are converted to +  Characters below 0x20 or above 0x7F, along
with the characters %&+=:#<>" are converted to a % followed by their
hexadecimal equivalent [ OCONV(SEQ(VAR),'MX') ]

Note that spaces are not converted to a +, then the + converted to %2B.
Any existing + characters in the string would be converted to %2B, THEN
any spaces would be converted to +.

Larry Hiscock
Western Computer Services
http://www.wcs-corp.com



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Lee Messenger
Sent: Wednesday, April 28, 2004 9:11 AM
To: [EMAIL PROTECTED] Com
Subject: HTML to Universe conversion codes


Does anyone have a complete list of the unique HTML conversions 'codes'
and their Universe equivalents when passing data from an html page to
Universe using the form 'post' method.  For example the string  '%26' is
'&' in Universe.

Would you share this list with me?

Thank you in advance.


Lee J Messenger
Sr VP Operations
[EMAIL PROTECTED]

DLT Transportation Services, Inc.
Phone :(816) 242-4505
Fax   :(816) 483-7222


-- 
u2-users mailing list
[EMAIL PROTECTED] http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: HTML to Universe conversion codes

2004-04-28 Thread Lee Messenger
Thank you Michael and Jeff for your timely responses.

Lee J Messenger
Sr VP Operations
[EMAIL PROTECTED]

DLT Transportation Services, Inc.
Phone :(816) 242-4505
Fax   :(816) 483-7222
 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Michael Spencer
Sent: Wednesday, April 28, 2004 11:25 AM
To: U2 Users Discussion List
Subject: RE: HTML to Universe conversion codes


These are the ones I have for D3, should be the same in universe I would
think:

%60  `
%7E  ~
%21  !
%40  @
%23  #
%24  $
%25  %
%5E  ^
%26  &
%2A  *
%28  (
%29  )
%3D  =
%2B  +
%5B  [
%7B  {
%5D  ]
%7D  }
%5C  \
%7C  |
%3B  ;
%3A  :
%27  '
%22  "
%2C  ,
%3C  <
%3E  >
%3F  ?
%20
%0D%0A   @am

Hope that helps.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Lee Messenger
Sent: April 28, 2004 12:11 PM
To: [EMAIL PROTECTED] Com
Subject: HTML to Universe conversion codes

Does anyone have a complete list of the unique HTML conversions 'codes'
and
their Universe equivalents when passing data from an html page to
Universe
using the form 'post' method.  For example the string
 '%26' is '&' in Universe.

Would you share this list with me?

Thank you in advance.


Lee J Messenger
Sr VP Operations
[EMAIL PROTECTED]

DLT Transportation Services, Inc.
Phone :(816) 242-4505
Fax   :(816) 483-7222


-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users

-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: HTML to Universe conversion codes

2004-04-28 Thread Michael Spencer
These are the ones I have for D3, should be the same in universe I would
think:

%60  `
%7E  ~
%21  !
%40  @
%23  #
%24  $
%25  %
%5E  ^
%26  &
%2A  *
%28  (
%29  )
%3D  =
%2B  +
%5B  [
%7B  {
%5D  ]
%7D  }
%5C  \
%7C  |
%3B  ;
%3A  :
%27  '
%22  "
%2C  ,
%3C  <
%3E  >
%3F  ?
%20
%0D%0A   @am

Hope that helps.


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
On Behalf Of Lee Messenger
Sent: April 28, 2004 12:11 PM
To: [EMAIL PROTECTED] Com
Subject: HTML to Universe conversion codes

Does anyone have a complete list of the unique HTML conversions 'codes'
and
their Universe equivalents when passing data from an html page to
Universe
using the form 'post' method.  For example the string
 '%26' is '&' in Universe.

Would you share this list with me?

Thank you in advance.


Lee J Messenger
Sr VP Operations
[EMAIL PROTECTED]

DLT Transportation Services, Inc.
Phone :(816) 242-4505
Fax   :(816) 483-7222


-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users
--
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users


RE: HTML to Universe conversion codes

2004-04-28 Thread Jeff Schasny
The numeric after the "%" is the hex representation of the ascii code for
the character:

& = hex 26 = decimal 38

-Original Message-
From: Lee Messenger [mailto:[EMAIL PROTECTED]
Sent: Wednesday, April 28, 2004 9:11 AM
To: [EMAIL PROTECTED] Com
Subject: HTML to Universe conversion codes


Does anyone have a complete list of the unique HTML conversions 'codes' and
their Universe equivalents when passing data from an html page to Universe
using the form 'post' method.  For example the string
 '%26' is '&' in Universe.

Would you share this list with me?

Thank you in advance.


Lee J Messenger
Sr VP Operations
[EMAIL PROTECTED]

DLT Transportation Services, Inc.
Phone :(816) 242-4505
Fax   :(816) 483-7222


-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users
-- 
u2-users mailing list
[EMAIL PROTECTED]
http://www.oliver.com/mailman/listinfo/u2-users