Search the web
Sign In
New User? Sign Up
wmlprogramming · WML,XHTML,WURFL & Mobile-related stuff
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 31694   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: michael@...
Date: Mon Sep 20, 1999 9:35 am
Subject: Dialling out from a WML deck
michael@...
Send Email Send Email
 
* Is this supported for the 1.1 Toolkit?
* If not, will it be available for the
next toolkit release?

* Will/does the 7110 support this?


Thanks
Michael McLaughlin
Media Foundry
www.media-foundry.com

#29 From: jon.kolbeinsen@...
Date: Fri Sep 17, 1999 7:16 am
Subject: Re: Session state
jon.kolbeinsen@...
Send Email Send Email
 
I guess these variables are open to all programs, so if you have an
override,
the old value will be deleted. :/

j.


-----Original Message-----
From: chris.pedley@... [mailto:chris.pedley@...]
Sent: 14. september 1999 16:24
To: wmlprogramming@eGroups.com
Subject: [wmlprogramming] Session state


Is it safe to assume that variables can only be accessed from your
own WML.

So, if I have a variable called "name", then the user types in the URL
of a different WAP site which also has a variable called "name", then
the user returns to my WAP site via the back option - does my name
variable get corrupted?

Chris.



------------------------------------------------------------------------
MyPoints-Free Rewards When You're Online.
Start with up to 150 Points for joining!
http://clickhere.egroups.com/click/805


eGroups.com home: http://www.egroups.com/group/wmlprogramming
http://www.egroups.com - Simplifying group communications

#28 From: "Ron Mandel" <ronm@...>
Date: Tue Sep 14, 1999 3:45 pm
Subject: Re: Session state
ronm@...
Send Email Send Email
 
Chirs,

The variable space in WML is completely shared and global. If you have set a
variable called "name", another application can not only over-write it, but
also access its value. You should re-initialize / un-initialize all
variables you wish to use upon entry/exit of your application.

Using newcontext="true" is a very brute force way of doing this since it
will clear out not only the variable stack, but the history stack as well.

I don't believe that this is implementation specific, but that it is part of
the WML specification from the WAP forum.

Ron Mandel
Phone.com Developer Support

> -----Original Message-----
> From: chris.pedley@... [mailto:chris.pedley@...]
> Sent: Tuesday, September 14, 1999 7:24 AM
> To: wmlprogramming@egroups.com
> Subject: [wmlprogramming] Session state
>
>
> Is it safe to assume that variables can only be accessed from your
> own WML.
>
> So, if I have a variable called "name", then the user types in the URL
> of a different WAP site which also has a variable called "name", then
> the user returns to my WAP site via the back option - does my name
> variable get corrupted?
>
> Chris.
>
>
>
> ------------------------------------------------------------------------
> MyPoints-Free Rewards When You're Online.
> Start with up to 150 Points for joining!
> http://clickhere.egroups.com/click/805
>
>
> eGroups.com home: http://www.egroups.com/group/wmlprogramming
> http://www.egroups.com - Simplifying group communications
>
>
>
>
>

#27 From: Daniel Stroe <Daniel.Stroe@...>
Date: Tue Sep 14, 1999 2:53 pm
Subject: Re: Session state
Daniel.Stroe@...
Send Email Send Email
 
I don't know if is helping you what I am writing.

1)
Look after the
newcontext="boolean"  Attribute.
If you are setting to "true", than the variables value is null.
So you will be sure about one thing, but it will gave you other
headache.

2)
Is the solution of the dynamic created pages, where you can init your
variable. Of course this is another kind of application.

If I wrong with something, please write me,
Daniel Stroe.

Luca Passani wrote:
>
> I don't know the answer to your question. I wouldn't be
> surprised if this was implementation dependent.
>  The existance of the 'onenterbackward' event, though,
> seems to suggest you should use it to re-initialize your WML
> application rather than trying to resuscitate it.
>
> Hope someone else can be more helpful
>
> Luca
>
> chris.pedley@... wrote:
> >
> > Is it safe to assume that variables can only be accessed from your
> > own WML.
> >
> > So, if I have a variable called "name", then the user types in the URL
> > of a different WAP site which also has a variable called "name", then
> > the user returns to my WAP site via the back option - does my name
> > variable get corrupted?
> >
>
> ------------------------------------------------------------------------
> MyPoints-Free Rewards When You're Online.
> Start with up to 150 Points for joining!
> http://clickhere.egroups.com/click/805
>
> eGroups.com home: http://www.egroups.com/group/wmlprogramming
> http://www.egroups.com - Simplifying group communications

#26 From: Luca Passani <passani@...>
Date: Tue Sep 14, 1999 2:36 pm
Subject: Re: Session state
passani@...
Send Email Send Email
 
I don't know the answer to your question. I wouldn't be
surprised if this was implementation dependent.
  The existance of the 'onenterbackward' event, though,
seems to suggest you should use it to re-initialize your WML
application rather than trying to resuscitate it.

Hope someone else can be more helpful

Luca

chris.pedley@... wrote:
>
> Is it safe to assume that variables can only be accessed from your
> own WML.
>
> So, if I have a variable called "name", then the user types in the URL
> of a different WAP site which also has a variable called "name", then
> the user returns to my WAP site via the back option - does my name
> variable get corrupted?
>

#25 From: chris.pedley@...
Date: Tue Sep 14, 1999 2:24 pm
Subject: Session state
chris.pedley@...
Send Email Send Email
 
Is it safe to assume that variables can only be accessed from your
own WML.

So, if I have a variable called "name", then the user types in the URL
of a different WAP site which also has a variable called "name", then
the user returns to my WAP site via the back option - does my name
variable get corrupted?

Chris.

#24 From: Luca Passani <passani@...>
Date: Tue Sep 7, 1999 1:06 pm
Subject: Re: 1.4 Kb deck limit
passani@...
Send Email Send Email
 
Bjorn Hijmans wrote:
>
> Luca Passani wrote:
>
> > Hallo, is there anyone who can tell me how a real wap
> > telephone is supposed to behave when a dec is bigger than 1.4 Kb?
>
> My testphone just reports 'connection failed' :(

what do you mean by testphone?

a real telephone or some emulator?

thank you

Luca

#23 From: Bjorn Hijmans <bjorn@...>
Date: Tue Sep 7, 1999 1:02 pm
Subject: Re: 1.4 Kb deck limit
bjorn@...
Send Email Send Email
 
Luca Passani wrote:

> Hallo, is there anyone who can tell me how a real wap
> telephone is supposed to behave when a dec is bigger than 1.4 Kb?

My testphone just reports 'connection failed' :(

--
Groeten/Regards,
Bjorn Hijmans

#22 From: Luca Passani <passani@...>
Date: Tue Sep 7, 1999 12:54 pm
Subject: 1.4 Kb deck limit
passani@...
Send Email Send Email
 
Hallo, is there anyone who can tell me how a real wap
telephone is supposed to behave when a dec is bigger than 1.4 Kb?

Luca

#21 From: Luca Passani <passani@...>
Date: Mon Sep 6, 1999 6:52 am
Subject: [Fwd: interested in part-time telecommuting job ?]
passani@...
Send Email Send Email
 
to whom it may concern...

Luca
Mr. Passani,

We learned that you maybe familiar with Up.browser.  I am the owner of a
website on PC platform.  We are thinking of creating a version of our website
on microbrowser of cell phone.   We are looking for a part-time consultant
who can help us in this effort.  No need for relocation.  In fact,
telecommuting is encouraged.

If you are capable and interested, please let us know ASAP.  If not, maybe
you could be kind enough to recommend some other expert to us?

Regards,

  Jason

#20 From: Luca Passani <passani@...>
Date: Fri Sep 3, 1999 2:37 pm
Subject: pictures
passani@...
Send Email Send Email
 
Hallo, Are telephones supporting pictures?
  I have got an emulator that just shows the ALT attribute, even
though it has a real WBMP pictures to show.

Luca

#19 From: Luca Passani <passani@...>
Date: Thu Sep 2, 1999 12:27 pm
Subject: WAP FAQ in WML
passani@...
Send Email Send Email
 
#18 From: chris.pedley@...
Date: Tue Aug 31, 1999 4:04 pm
Subject: Re: WBMPs creating and editing
chris.pedley@...
Send Email Send Email
 
#17 From: Luca Passani <passani@...>
Date: Tue Aug 31, 1999 2:58 pm
Subject: convertion to WBMP. Check this!
passani@...
Send Email Send Email
 
#16 From: Luca Passani <passani@...>
Date: Tue Aug 31, 1999 2:18 pm
Subject: Re: WBMPs creating and editing
passani@...
Send Email Send Email
 
As far as I could see, GIFs are good enough on a few emulators at least.
The picture I attach, for example, is used on a real WAP service.

Luca

michael@... wrote:
>
> Can anyone give me some tips on creating/editing WBMPs?
>
> I can't seem to load them into Adobe Photoshop, which supports all of
> the most popular formats.

#15 From: Daniel Stroe <Daniel.Stroe@...>
Date: Mon Aug 30, 1999 12:09 pm
Subject: mlScript question
Daniel.Stroe@...
Send Email Send Email
 
Hi,
I am a new in thisw list.

I have a wonder. I am working with Nokia toolkit 1.1. And I had play
with the WmlScripts function to see the results.

I have write in my WmlScript file:
    var b=Dialogs.confirm("Choose", "Wml Adr", "Wmls Adr");

    Problem:
    It is not displayed "Choose",
    only "Wml Adr" and "Wmls Adr".

    What could be the problem? The toolkit, or I have done a mistake?

    Thanks in advance,
    Daniel.

#14 From: Luca Passani <passani@...>
Date: Fri Aug 27, 1999 7:16 pm
Subject: Re: DOCTYPE declaration
passani@...
Send Email Send Email
 
Telephones do not seem to complain though.

luca

Joseph A. Latone wrote:
>
> Yes, I believe it is a requirement.
>
> To wit:
>
> WBXML requires a public Document Type Definition (DTD), even for merely well
> formed XML, which doesn't require a DTD. It's encoded in the first payload
> byte, locking them into a WINA-controlled 255-slot registry for Formal
> Public Identifiers, instead of, for example, using a hash function. It also
> appears to foreclose other XML schema proposals from W3C that are expected
> to replace DTDs. The general concept is that there are 255-slot code pages
> for the tag, attribute name, attribute value, and other XML string tokens.
> They encode the content model (e.g., whether an element can enclose child
> elements) and presence of attributes into the two high-order bits of a tag,
> limiting it to 31 tags per code page.
>

#13 From: "Joseph A. Latone" <jlatone@...>
Date: Fri Aug 27, 1999 4:33 pm
Subject: Re: DOCTYPE declaration
jlatone@...
Send Email Send Email
 
Yes, I believe it is a requirement.

To wit:

WBXML requires a public Document Type Definition (DTD), even for merely well
formed XML, which doesn't require a DTD. It's encoded in the first payload
byte, locking them into a WINA-controlled 255-slot registry for Formal
Public Identifiers, instead of, for example, using a hash function. It also
appears to foreclose other XML schema proposals from W3C that are expected
to replace DTDs. The general concept is that there are 255-slot code pages
for the tag, attribute name, attribute value, and other XML string tokens.
They encode the content model (e.g., whether an element can enclose child
elements) and presence of attributes into the two high-order bits of a tag,
limiting it to 31 tags per code page.

Joe

> -----Original Message-----
> From: Luca Passani [mailto:passani@...]
> Sent: Friday, August 27, 1999 3:47 AM
> To: wmlprogramming@egroups.com
> Subject: [wmlprogramming] DOCTYPE declaration
>
>
> Hallo, can anyone tell me if the DOCTYPE declaration that
> imports the DTD is a requirement of WML or not?
>  I am working with XML and XSL transformation and issuing the
> DOCTYPE dedclaration from XSL seems to be a pain in the butt.
>
> Luca
>
> ------------------------------------------------------------------------
>
> eGroups.com home: http://www.egroups.com/group/wmlprogramming
> http://www.egroups.com - Simplifying group communications
>
>
>

#12 From: Luca Passani <passani@...>
Date: Thu Aug 26, 1999 8:16 am
Subject: WML vs HTML
passani@...
Send Email Send Email
 
Just to get the ball rolling here is the first question.

I am going to learn WML. I have experience with HTML. By looking
at Nokia documentation I get the impression that WML is very similar
in concept to HTML. Yet I had problem mapping single WML
elements to corresponding HTML elements.
  I will try to write down a list of correspondences.
Please contribute to correct and add to it.


WML             HTML
===             ====

Deck         =  HTML page

Card         =  section in HTML page
                 qualified by the <A NAME> TAG

<go>         =  <form>
<refresh>    =  javascript:history.go(0)

<p></p>      = <p></p>

<do>         =  ?

$var         = Are they like Javascript variables?
                I understand that sometimes they seem to behave
                like ASP (server-side) variables. Ideas?

<a href>     = <a href>

<postfield>  = <input type=hidden> ?

onenterforward = onload

<option>     = <option>

<input type=text>  = <input type=text>

<optgroup>  = ???


Luca

#11 From: Luca Passani <passani@...>
Date: Thu Aug 26, 1999 8:02 am
Subject: Hallo and Welcome
passani@...
Send Email Send Email
 
Hallo, thank you all for joining the list.

A few days ago I was involved in a project for the Norwegian
Telecom. Among other things, the project required the production of
a small WAP service. All the documentation I got was
Nokia's manuals.
  While those manuals are probably complete from a technical
viewpoint, they fall short of being a good introduction
for a beginner: many repetions, examples that are hard
to understand, lack of a sensible path through the different
WML features.
  I decided to hit the net and look for WML forums and FAQs.
  To my big surprise I didn't find much. Wapforum seems to be
more or less monopolizing the whole WAP scene.
  Unfortunately, the 7500 $ membership fee is out of the scope of the
project I am on now, so to speak.
  Since I've always believed in the idea that you can find on the net
no more than what has been put in it, I decided to start this list.
  If the list succeeds, I can take care of building an HTML page
with FAQs and tutorials about WML. The list will be automatically
archived by the egroups service.

Ideas and opinions are welcome.

Have a nice day.

Luca Passani

#10 From: michael@...
Date: Fri Aug 27, 1999 10:54 am
Subject: WBMPs creating and editing
michael@...
Send Email Send Email
 
Can anyone give me some tips on creating/editing WBMPs?

I can't seem to load them into Adobe Photoshop, which supports all of
the most popular formats.

Thanks
Michael

#9 From: knut.wannheden@...
Date: Fri Aug 27, 1999 10:42 am
Subject: Nokia WAP Tookit 2.1x
knut.wannheden@...
Send Email Send Email
 
Does anybody of you know where to get version 2.1.x (like 2.1.5) of the Nokia
WAP Toolkit?

Knut

#8 From: michael@...
Date: Fri Aug 27, 1999 1:06 pm
Subject: Re: WBMPs creating and editing
michael@...
Send Email Send Email
 
Thanks,

Its all pretty confusing -- why couldn't they just use B/W GIFs?
Any idea when the next Nokia Toolkit beta will be out?

Michael

#7 From: "matt wildin" <matt_wildin@...>
Date: Fri Aug 27, 1999 12:16 pm
Subject: Re: WBMPs creating and editing
matt_wildin@...
Send Email Send Email
 
I asked the very same question to james @ Waptastic. This was his reply...

"Tricky one this...

The specs now say 1-bit BMP (called WBMP); see the end of

http://www1.wapforum.org/tech/terms.asp?doc=SPEC-WAESpec-19990524.pdf

Although no-one seems fully clear how you go about creating them without
having to manipulate bits and bytes.

All I can say is that Nokia are
promising a BMP -> WBMP converter - see:
http://dev.forum.nokia.com/wapboard/messages/1355.html
The Nokia SDK handles GIF, which is a bit confusing...

Best regards,

James"


______________________________________________________

#6 From: Luca Passani <passani@...>
Date: Fri Aug 27, 1999 10:47 am
Subject: DOCTYPE declaration
passani@...
Send Email Send Email
 
Hallo, can anyone tell me if the DOCTYPE declaration that
imports the DTD is a requirement of WML or not?
  I am working with XML and XSL transformation and issuing the
DOCTYPE dedclaration from XSL seems to be a pain in the butt.

Luca

#5 From: Luca Passani <passani@...>
Date: Fri Aug 27, 1999 10:44 am
Subject: Re: Nokia WAP Tookit 2.1x
passani@...
Send Email Send Email
 
I got it under strict NDA, but don't worry. It's a shitty beta
that will just cause you much frustration and nothing else.

Any specific reason why you need it?

BTW can we attempt to make a list of available emulators?

luca

knut.wannheden@... wrote:
>
> Does anybody of you know where to get version 2.1.x (like 2.1.5) of the Nokia
WAP Toolkit?
>
> Knut

#4 From: Luca Passani <passani@...>
Date: Fri Aug 27, 1999 9:16 am
Subject: interesting link
passani@...
Send Email Send Email
 
wap.allt.com

Point your WAP telephones (or your emulators) there

Luca

#3 From: michael@...
Date: Thu Aug 26, 1999 10:17 am
Subject: Re: wonderful link
michael@...
Send Email Send Email
 
The WAPtastic site has a really good FAQ, ideal for beginners to WAP.

Michael McLaughlin

#2 From: Luca Passani <passani@...>
Date: Thu Aug 26, 1999 9:13 am
Subject: wonderful link
passani@...
Send Email Send Email
 
#1 From: "Luca Passani" <passani@...>
Date: Wed Aug 25, 1999 9:04 pm
Subject: Welcome to the wmlprogramming eGroup
passani@...
Send Email Send Email
 

 WML and WMLScript programmers
discuss, share information
and help one another

Group Manager: wmlprogramming-owner@egroups.com

To subscribe, send a message to wmlprogramming-subscribe@egroups.com or go to the e-groups's home page at http://www.egroups.com/group/wmlprogramming/


Messages 1 - 30 of 31694   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help