473,320 Members | 1,948 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,320 software developers and data experts.

Getting HTML in Yahoo?

In Yahoo mail, I click the Inbox link and see my messages. If I view
source, I don't have HTML which contains the URL of each message. The
source HTML contains javascripting and framesets. This is different from
what I am seeing.

If I right click on a message link and select "copy shortcut", I can paste
this link into my browser. This brings me to my message. If I view source,
once again, it is javascript and framesets. How do I get at the HTML that
is making all the tables and contains the images I'm seeing?

Accessing IE DOM is a possibility but won't that just give me access to the
javascripting and framsets since that is all the client has (remember what
is seen in view souce)? I know the HTML has to be accessible somehow.
Otherise, you wouldn't see it...right?

Sorry if this is the wrong group. If so, can some one point me in the right
direction?

Thanks,
Brett
Jul 23 '05 #1
11 1925
moi
There is HTML in the Yahoo mail files. It starts at:

<!-- type = text -->

it ends at:

<!-- toctype = X-unknown -->

I made a simple .exe which extracts the HTML and saves it into a new file.
It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip

Only problem is that Yahoo also changes original hyperlinks by adding their
own stuff so you should handle that with Search & Replace in a text editor.



"Brett" <no@spam.net> schreef in bericht
news:D6********************@rcn.net...
In Yahoo mail, I click the Inbox link and see my messages. If I view
source, I don't have HTML which contains the URL of each message. The
source HTML contains javascripting and framesets. This is different from
what I am seeing.

If I right click on a message link and select "copy shortcut", I can paste
this link into my browser. This brings me to my message. If I view
source, once again, it is javascript and framesets. How do I get at the
HTML that is making all the tables and contains the images I'm seeing?

Accessing IE DOM is a possibility but won't that just give me access to
the javascripting and framsets since that is all the client has (remember
what is seen in view souce)? I know the HTML has to be accessible
somehow. Otherise, you wouldn't see it...right?

Sorry if this is the wrong group. If so, can some one point me in the
right direction?

Thanks,
Brett

Jul 23 '05 #2
Can you post the code and explain how you are getting past the frameset to
get the HTML?

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
There is HTML in the Yahoo mail files. It starts at:

<!-- type = text -->

it ends at:

<!-- toctype = X-unknown -->

I made a simple .exe which extracts the HTML and saves it into a new file.
It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip

Only problem is that Yahoo also changes original hyperlinks by adding
their own stuff so you should handle that with Search & Replace in a text
editor.



"Brett" <no@spam.net> schreef in bericht
news:D6********************@rcn.net...
In Yahoo mail, I click the Inbox link and see my messages. If I view
source, I don't have HTML which contains the URL of each message. The
source HTML contains javascripting and framesets. This is different
from what I am seeing.

If I right click on a message link and select "copy shortcut", I can
paste this link into my browser. This brings me to my message. If I
view source, once again, it is javascript and framesets. How do I get
at the HTML that is making all the tables and contains the images I'm
seeing?

Accessing IE DOM is a possibility but won't that just give me access to
the javascripting and framsets since that is all the client has (remember
what is seen in view souce)? I know the HTML has to be accessible
somehow. Otherise, you wouldn't see it...right?

Sorry if this is the wrong group. If so, can some one point me in the
right direction?

Thanks,
Brett


Jul 23 '05 #3
moi

I just let the program read until the opening tag. From there it starts
writing the output file until it finds the closing tag. I don't get past
framesets or whatever - the HTML-file is treated like a text-file.
I made the tool in C++, but it can also be done in VB or any other language.
The code is at http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip

"Brett" <no@spam.net> schreef in bericht
news:fP********************@rcn.net...
Can you post the code and explain how you are getting past the frameset to
get the HTML?

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
There is HTML in the Yahoo mail files. It starts at:

<!-- type = text -->

it ends at:

<!-- toctype = X-unknown -->

I made a simple .exe which extracts the HTML and saves it into a new
file.
It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip

Only problem is that Yahoo also changes original hyperlinks by adding
their own stuff so you should handle that with Search & Replace in a text
editor.



"Brett" <no@spam.net> schreef in bericht
news:D6********************@rcn.net...
In Yahoo mail, I click the Inbox link and see my messages. If I view
source, I don't have HTML which contains the URL of each message. The
source HTML contains javascripting and framesets. This is different
from what I am seeing.

If I right click on a message link and select "copy shortcut", I can
paste this link into my browser. This brings me to my message. If I
view source, once again, it is javascript and framesets. How do I get
at the HTML that is making all the tables and contains the images I'm
seeing?

Accessing IE DOM is a possibility but won't that just give me access to
the javascripting and framsets since that is all the client has
(remember what is seen in view souce)? I know the HTML has to be
accessible somehow. Otherise, you wouldn't see it...right?

Sorry if this is the wrong group. If so, can some one point me in the
right direction?

Thanks,
Brett



Jul 23 '05 #4
Thanks.

First is the frameset. From there you can follow a frame source link but
that will just kick you back into the frameset. I don't understand how you
are keeping from getting kicked back into the frameset???

You have the message Inbox page open, you write the output file, which is a
frameset. How do you follow a message URL, since that is not in the
frameset? Or do you get that far?

Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...

I just let the program read until the opening tag. From there it starts
writing the output file until it finds the closing tag. I don't get past
framesets or whatever - the HTML-file is treated like a text-file.
I made the tool in C++, but it can also be done in VB or any other
language.
The code is at http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip

"Brett" <no@spam.net> schreef in bericht
news:fP********************@rcn.net...
Can you post the code and explain how you are getting past the frameset
to get the HTML?

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
There is HTML in the Yahoo mail files. It starts at:

<!-- type = text -->

it ends at:

<!-- toctype = X-unknown -->

I made a simple .exe which extracts the HTML and saves it into a new
file.
It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip

Only problem is that Yahoo also changes original hyperlinks by adding
their own stuff so you should handle that with Search & Replace in a
text editor.



"Brett" <no@spam.net> schreef in bericht
news:D6********************@rcn.net...
In Yahoo mail, I click the Inbox link and see my messages. If I view
source, I don't have HTML which contains the URL of each message. The
source HTML contains javascripting and framesets. This is different
from what I am seeing.

If I right click on a message link and select "copy shortcut", I can
paste this link into my browser. This brings me to my message. If I
view source, once again, it is javascript and framesets. How do I get
at the HTML that is making all the tables and contains the images I'm
seeing?

Accessing IE DOM is a possibility but won't that just give me access to
the javascripting and framsets since that is all the client has
(remember what is seen in view souce)? I know the HTML has to be
accessible somehow. Otherise, you wouldn't see it...right?

Sorry if this is the wrong group. If so, can some one point me in the
right direction?

Thanks,
Brett



Jul 23 '05 #5
moi
I don't have to deal with framesets. I only use plain text in the file.
All I do is read the saved Yahoo file text line by text line. If the begin
tag is found, it starts writing to a new file, until the end tag.
This has just nothing to do with HTML, it's all about reading text files and
writing text files.
So the program only finds and writes the original HTML-code that is found in
the Yahoo-mail-file.

"Brett" <no@spam.net> schreef in bericht
news:pp********************@rcn.net...
Thanks.

First is the frameset. From there you can follow a frame source link but
that will just kick you back into the frameset. I don't understand how
you are keeping from getting kicked back into the frameset???

You have the message Inbox page open, you write the output file, which is
a frameset. How do you follow a message URL, since that is not in the
frameset? Or do you get that far?

Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...

I just let the program read until the opening tag. From there it starts
writing the output file until it finds the closing tag. I don't get past
framesets or whatever - the HTML-file is treated like a text-file.
I made the tool in C++, but it can also be done in VB or any other
language.
The code is at http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip

"Brett" <no@spam.net> schreef in bericht
news:fP********************@rcn.net...
Can you post the code and explain how you are getting past the frameset
to get the HTML?

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
There is HTML in the Yahoo mail files. It starts at:

<!-- type = text -->

it ends at:

<!-- toctype = X-unknown -->

I made a simple .exe which extracts the HTML and saves it into a new
file.
It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip

Only problem is that Yahoo also changes original hyperlinks by adding
their own stuff so you should handle that with Search & Replace in a
text editor.



"Brett" <no@spam.net> schreef in bericht
news:D6********************@rcn.net...
> In Yahoo mail, I click the Inbox link and see my messages. If I view
> source, I don't have HTML which contains the URL of each message. The
> source HTML contains javascripting and framesets. This is different
> from what I am seeing.
>
> If I right click on a message link and select "copy shortcut", I can
> paste this link into my browser. This brings me to my message. If I
> view source, once again, it is javascript and framesets. How do I
> get at the HTML that is making all the tables and contains the images
> I'm seeing?
>
> Accessing IE DOM is a possibility but won't that just give me access
> to the javascripting and framsets since that is all the client has
> (remember what is seen in view souce)? I know the HTML has to be
> accessible somehow. Otherise, you wouldn't see it...right?
>
> Sorry if this is the wrong group. If so, can some one point me in the
> right direction?
>
> Thanks,
> Brett
>



Jul 23 '05 #6
Maybe we are talking about completely different things. Here is what I'm
referring to:

1. log into yahoo mail
2. click inbox link
3. download this page with message URLs in it

Step #3 can't be done. If you download that page via IE, it will download a
small page with javascript in it. You can then open the local saved page,
which has a javascript URL redirect. This displays your Inbox message list
by referencing Yahoo.com. Although it all looks like it is still on your
hard drive. It will last about 24 hours before the session expires.

"All I do is read the saved Yahoo file text line by text line." Again, this
is a URL redirect back to the online version of your Inbox.

Perhaps you could explain your process in some step by step detail and that
may clear it up for me. I'd appreciate if you could because I really don't
understand.

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
I don't have to deal with framesets. I only use plain text in the file.
All I do is read the saved Yahoo file text line by text line. If the begin
tag is found, it starts writing to a new file, until the end tag.
This has just nothing to do with HTML, it's all about reading text files
and writing text files.
So the program only finds and writes the original HTML-code that is found
in the Yahoo-mail-file.

"Brett" <no@spam.net> schreef in bericht
news:pp********************@rcn.net...
Thanks.

First is the frameset. From there you can follow a frame source link but
that will just kick you back into the frameset. I don't understand how
you are keeping from getting kicked back into the frameset???

You have the message Inbox page open, you write the output file, which is
a frameset. How do you follow a message URL, since that is not in the
frameset? Or do you get that far?

Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...

I just let the program read until the opening tag. From there it starts
writing the output file until it finds the closing tag. I don't get past
framesets or whatever - the HTML-file is treated like a text-file.
I made the tool in C++, but it can also be done in VB or any other
language.
The code is at http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip

"Brett" <no@spam.net> schreef in bericht
news:fP********************@rcn.net...
Can you post the code and explain how you are getting past the frameset
to get the HTML?

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
> There is HTML in the Yahoo mail files. It starts at:
>
> <!-- type = text -->
>
> it ends at:
>
> <!-- toctype = X-unknown -->
>
> I made a simple .exe which extracts the HTML and saves it into a new
> file.
> It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip
>
> Only problem is that Yahoo also changes original hyperlinks by adding
> their own stuff so you should handle that with Search & Replace in a
> text editor.
>
>
>
>
>
>
>
> "Brett" <no@spam.net> schreef in bericht
> news:D6********************@rcn.net...
>> In Yahoo mail, I click the Inbox link and see my messages. If I view
>> source, I don't have HTML which contains the URL of each message.
>> The source HTML contains javascripting and framesets. This is
>> different from what I am seeing.
>>
>> If I right click on a message link and select "copy shortcut", I can
>> paste this link into my browser. This brings me to my message. If I
>> view source, once again, it is javascript and framesets. How do I
>> get at the HTML that is making all the tables and contains the images
>> I'm seeing?
>>
>> Accessing IE DOM is a possibility but won't that just give me access
>> to the javascripting and framsets since that is all the client has
>> (remember what is seen in view souce)? I know the HTML has to be
>> accessible somehow. Otherise, you wouldn't see it...right?
>>
>> Sorry if this is the wrong group. If so, can some one point me in
>> the right direction?
>>
>> Thanks,
>> Brett
>>
>
>



Jul 23 '05 #7
moi
Imagine, in my Yahoo mailbox is a message from you, no@spam.net

When I right click on that link in my Yahoo-inbox, I choose: Save Target As

I save the hole bunche as 'C:\mailtodo.html'

Then I use my app and type on Command Prompt:

C:\YMAIL C:\mailtodo.html C:\yahoomailout.html

After that, I can open and further design C:\yahoomailout.html, which is the
original HTML.


"Brett" <no@spam.net> schreef in bericht
news:c6********************@rcn.net...
Maybe we are talking about completely different things. Here is what I'm
referring to:

1. log into yahoo mail
2. click inbox link
3. download this page with message URLs in it

Step #3 can't be done. If you download that page via IE, it will download
a small page with javascript in it. You can then open the local saved
page, which has a javascript URL redirect. This displays your Inbox
message list by referencing Yahoo.com. Although it all looks like it is
still on your hard drive. It will last about 24 hours before the session
expires.

"All I do is read the saved Yahoo file text line by text line." Again,
this is a URL redirect back to the online version of your Inbox.

Perhaps you could explain your process in some step by step detail and
that may clear it up for me. I'd appreciate if you could because I really
don't understand.

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
I don't have to deal with framesets. I only use plain text in the file.
All I do is read the saved Yahoo file text line by text line. If the
begin tag is found, it starts writing to a new file, until the end tag.
This has just nothing to do with HTML, it's all about reading text files
and writing text files.
So the program only finds and writes the original HTML-code that is found
in the Yahoo-mail-file.

"Brett" <no@spam.net> schreef in bericht
news:pp********************@rcn.net...
Thanks.

First is the frameset. From there you can follow a frame source link
but that will just kick you back into the frameset. I don't understand
how you are keeping from getting kicked back into the frameset???

You have the message Inbox page open, you write the output file, which
is a frameset. How do you follow a message URL, since that is not in
the frameset? Or do you get that far?

Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...

I just let the program read until the opening tag. From there it starts
writing the output file until it finds the closing tag. I don't get
past framesets or whatever - the HTML-file is treated like a text-file.
I made the tool in C++, but it can also be done in VB or any other
language.
The code is at http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip

"Brett" <no@spam.net> schreef in bericht
news:fP********************@rcn.net...
> Can you post the code and explain how you are getting past the
> frameset to get the HTML?
>
> Thanks,
> Brett
>
> "moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
> news:d4**********@reader13.wxs.nl...
>> There is HTML in the Yahoo mail files. It starts at:
>>
>> <!-- type = text -->
>>
>> it ends at:
>>
>> <!-- toctype = X-unknown -->
>>
>> I made a simple .exe which extracts the HTML and saves it into a new
>> file.
>> It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip
>>
>> Only problem is that Yahoo also changes original hyperlinks by adding
>> their own stuff so you should handle that with Search & Replace in a
>> text editor.
>>
>>
>>
>>
>>
>>
>>
>> "Brett" <no@spam.net> schreef in bericht
>> news:D6********************@rcn.net...
>>> In Yahoo mail, I click the Inbox link and see my messages. If I
>>> view source, I don't have HTML which contains the URL of each
>>> message. The source HTML contains javascripting and framesets.
>>> This is different from what I am seeing.
>>>
>>> If I right click on a message link and select "copy shortcut", I can
>>> paste this link into my browser. This brings me to my message. If
>>> I view source, once again, it is javascript and framesets. How do
>>> I get at the HTML that is making all the tables and contains the
>>> images I'm seeing?
>>>
>>> Accessing IE DOM is a possibility but won't that just give me access
>>> to the javascripting and framsets since that is all the client has
>>> (remember what is seen in view souce)? I know the HTML has to be
>>> accessible somehow. Otherise, you wouldn't see it...right?
>>>
>>> Sorry if this is the wrong group. If so, can some one point me in
>>> the right direction?
>>>
>>> Thanks,
>>> Brett
>>>
>>
>>
>
>



Jul 23 '05 #8
It seems this is not completely programmatic than. I want to
programmatically do the right click (or something that mimicks this) in your
first step. Yes - it is easy enough to right click and save target as.
However, I need to programmatically gather those message URLs in the Inbox.
That doesn't seem to be something you are doing. I see you are doing it but
only after you have right clicked, which involves user intervention and what
I want to avoid.
"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
Imagine, in my Yahoo mailbox is a message from you, no@spam.net

When I right click on that link in my Yahoo-inbox, I choose: Save Target
As

I save the hole bunche as 'C:\mailtodo.html'

Then I use my app and type on Command Prompt:

C:\YMAIL C:\mailtodo.html C:\yahoomailout.html

After that, I can open and further design C:\yahoomailout.html, which is
the original HTML.


"Brett" <no@spam.net> schreef in bericht
news:c6********************@rcn.net...
Maybe we are talking about completely different things. Here is what I'm
referring to:

1. log into yahoo mail
2. click inbox link
3. download this page with message URLs in it

Step #3 can't be done. If you download that page via IE, it will
download a small page with javascript in it. You can then open the local
saved page, which has a javascript URL redirect. This displays your
Inbox message list by referencing Yahoo.com. Although it all looks like
it is still on your hard drive. It will last about 24 hours before the
session expires.

"All I do is read the saved Yahoo file text line by text line." Again,
this is a URL redirect back to the online version of your Inbox.

Perhaps you could explain your process in some step by step detail and
that may clear it up for me. I'd appreciate if you could because I
really don't understand.

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
I don't have to deal with framesets. I only use plain text in the file.
All I do is read the saved Yahoo file text line by text line. If the
begin tag is found, it starts writing to a new file, until the end tag.
This has just nothing to do with HTML, it's all about reading text files
and writing text files.
So the program only finds and writes the original HTML-code that is
found in the Yahoo-mail-file.

"Brett" <no@spam.net> schreef in bericht
news:pp********************@rcn.net...
Thanks.

First is the frameset. From there you can follow a frame source link
but that will just kick you back into the frameset. I don't understand
how you are keeping from getting kicked back into the frameset???

You have the message Inbox page open, you write the output file, which
is a frameset. How do you follow a message URL, since that is not in
the frameset? Or do you get that far?

Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
>
> I just let the program read until the opening tag. From there it
> starts writing the output file until it finds the closing tag. I don't
> get past framesets or whatever - the HTML-file is treated like a
> text-file.
> I made the tool in C++, but it can also be done in VB or any other
> language.
> The code is at
> http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip
>
>
>
> "Brett" <no@spam.net> schreef in bericht
> news:fP********************@rcn.net...
>> Can you post the code and explain how you are getting past the
>> frameset to get the HTML?
>>
>> Thanks,
>> Brett
>>
>> "moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
>> news:d4**********@reader13.wxs.nl...
>>> There is HTML in the Yahoo mail files. It starts at:
>>>
>>> <!-- type = text -->
>>>
>>> it ends at:
>>>
>>> <!-- toctype = X-unknown -->
>>>
>>> I made a simple .exe which extracts the HTML and saves it into a new
>>> file.
>>> It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip
>>>
>>> Only problem is that Yahoo also changes original hyperlinks by
>>> adding their own stuff so you should handle that with Search &
>>> Replace in a text editor.
>>>
>>>
>>>
>>>
>>>
>>>
>>>
>>> "Brett" <no@spam.net> schreef in bericht
>>> news:D6********************@rcn.net...
>>>> In Yahoo mail, I click the Inbox link and see my messages. If I
>>>> view source, I don't have HTML which contains the URL of each
>>>> message. The source HTML contains javascripting and framesets. This
>>>> is different from what I am seeing.
>>>>
>>>> If I right click on a message link and select "copy shortcut", I
>>>> can paste this link into my browser. This brings me to my message.
>>>> If I view source, once again, it is javascript and framesets. How
>>>> do I get at the HTML that is making all the tables and contains the
>>>> images I'm seeing?
>>>>
>>>> Accessing IE DOM is a possibility but won't that just give me
>>>> access to the javascripting and framsets since that is all the
>>>> client has (remember what is seen in view souce)? I know the HTML
>>>> has to be accessible somehow. Otherise, you wouldn't see
>>>> it...right?
>>>>
>>>> Sorry if this is the wrong group. If so, can some one point me in
>>>> the right direction?
>>>>
>>>> Thanks,
>>>> Brett
>>>>
>>>
>>>
>>
>>
>
>



Jul 23 '05 #9
moi
Yes, it is completely programmatic, only you bring up your second question
now, because the first question was about 'text files'.
But now I guess you want to have incoming mails being modified before
they're even read.
That script I can't write.

"Brett" <no@spam.net> schreef in bericht
news:-L********************@rcn.net...
It seems this is not completely programmatic than. I want to
programmatically do the right click (or something that mimicks this) in
your first step. Yes - it is easy enough to right click and save target
as. However, I need to programmatically gather those message URLs in the
Inbox. That doesn't seem to be something you are doing. I see you are
doing it but only after you have right clicked, which involves user
intervention and what I want to avoid.
"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
Imagine, in my Yahoo mailbox is a message from you, no@spam.net

When I right click on that link in my Yahoo-inbox, I choose: Save Target
As

I save the hole bunche as 'C:\mailtodo.html'

Then I use my app and type on Command Prompt:

C:\YMAIL C:\mailtodo.html C:\yahoomailout.html

After that, I can open and further design C:\yahoomailout.html, which is
the original HTML.


"Brett" <no@spam.net> schreef in bericht
news:c6********************@rcn.net...
Maybe we are talking about completely different things. Here is what I'm
referring to:

1. log into yahoo mail
2. click inbox link
3. download this page with message URLs in it

Step #3 can't be done. If you download that page via IE, it will
download a small page with javascript in it. You can then open the
local saved page, which has a javascript URL redirect. This displays
your Inbox message list by referencing Yahoo.com. Although it all looks
like it is still on your hard drive. It will last about 24 hours before
the session expires.

"All I do is read the saved Yahoo file text line by text line." Again,
this is a URL redirect back to the online version of your Inbox.

Perhaps you could explain your process in some step by step detail and
that may clear it up for me. I'd appreciate if you could because I
really don't understand.

Thanks,
Brett

"moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
news:d4**********@reader13.wxs.nl...
I don't have to deal with framesets. I only use plain text in the file.
All I do is read the saved Yahoo file text line by text line. If the
begin tag is found, it starts writing to a new file, until the end tag.
This has just nothing to do with HTML, it's all about reading text
files and writing text files.
So the program only finds and writes the original HTML-code that is
found in the Yahoo-mail-file.

"Brett" <no@spam.net> schreef in bericht
news:pp********************@rcn.net...
> Thanks.
>
> First is the frameset. From there you can follow a frame source link
> but that will just kick you back into the frameset. I don't
> understand how you are keeping from getting kicked back into the
> frameset???
>
> You have the message Inbox page open, you write the output file, which
> is a frameset. How do you follow a message URL, since that is not in
> the frameset? Or do you get that far?
>
> Brett
>
> "moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
> news:d4**********@reader13.wxs.nl...
>>
>> I just let the program read until the opening tag. From there it
>> starts writing the output file until it finds the closing tag. I
>> don't get past framesets or whatever - the HTML-file is treated like
>> a text-file.
>> I made the tool in C++, but it can also be done in VB or any other
>> language.
>> The code is at
>> http://www.geocities.com/smplprgrsrc.../YMAIL_src.zip
>>
>>
>>
>> "Brett" <no@spam.net> schreef in bericht
>> news:fP********************@rcn.net...
>>> Can you post the code and explain how you are getting past the
>>> frameset to get the HTML?
>>>
>>> Thanks,
>>> Brett
>>>
>>> "moi" <coffeecop@_NOSPAM_planet.nl> wrote in message
>>> news:d4**********@reader13.wxs.nl...
>>>> There is HTML in the Yahoo mail files. It starts at:
>>>>
>>>> <!-- type = text -->
>>>>
>>>> it ends at:
>>>>
>>>> <!-- toctype = X-unknown -->
>>>>
>>>> I made a simple .exe which extracts the HTML and saves it into a
>>>> new file.
>>>> It's here: http://www.geocities.com/smplprgrsrc/files/YMAIL.zip
>>>>
>>>> Only problem is that Yahoo also changes original hyperlinks by
>>>> adding their own stuff so you should handle that with Search &
>>>> Replace in a text editor.
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>
>>>> "Brett" <no@spam.net> schreef in bericht
>>>> news:D6********************@rcn.net...
>>>>> In Yahoo mail, I click the Inbox link and see my messages. If I
>>>>> view source, I don't have HTML which contains the URL of each
>>>>> message. The source HTML contains javascripting and framesets.
>>>>> This is different from what I am seeing.
>>>>>
>>>>> If I right click on a message link and select "copy shortcut", I
>>>>> can paste this link into my browser. This brings me to my
>>>>> message. If I view source, once again, it is javascript and
>>>>> framesets. How do I get at the HTML that is making all the
>>>>> tables and contains the images I'm seeing?
>>>>>
>>>>> Accessing IE DOM is a possibility but won't that just give me
>>>>> access to the javascripting and framsets since that is all the
>>>>> client has (remember what is seen in view souce)? I know the
>>>>> HTML has to be accessible somehow. Otherise, you wouldn't see
>>>>> it...right?
>>>>>
>>>>> Sorry if this is the wrong group. If so, can some one point me in
>>>>> the right direction?
>>>>>
>>>>> Thanks,
>>>>> Brett
>>>>>
>>>>
>>>>
>>>
>>>
>>
>>
>
>



Jul 23 '05 #10
Nothing is modified. I simply want to get a message off of Yahoo
completely programmatically without user intervention. Take logging in
out of the equation and start in the Inbox. Go from there but do it
all programmatically. That's my question.

Jul 23 '05 #11
moi
After you, my motivation to help people is reduced to -100%.
Good job!
Who's the next moron?
"brett" <ac*****@cygen.com> schreef in bericht
news:11*********************@f14g2000cwb.googlegro ups.com...
Nothing is modified. I simply want to get a message off of Yahoo
completely programmatically without user intervention. Take logging in
out of the equation and start in the Inbox. Go from there but do it
all programmatically. That's my question.

Jul 23 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: dan glenn | last post by:
hi. I want to code a 'preview' function into a guestbook entry page. I can do it with a button that posts, bringing up a whole new page showing a preview of what has been entered, and then the user...
1
by: Mohan | last post by:
Hi All, I am using web browser control in a VB 6.0 client server application to print reports. I am writing the report into a HTML file and displays the report to the user using the code,...
17
by: John Hunter | last post by:
I have a largish data set (1000 observations x 100 floating point variables), and some of the of the data are missing. I want to try a variety of clustering, neural network, etc, algorithms on the...
2
by: Bhavin G | last post by:
Hi there , I am pretty new at javascripting and i am having this huge problem. I am using asp.net and C# webapplication. In my asp.net aspx file I have a place holder for taking an html table...
37
by: ajay | last post by:
How to make a web page getting refreshed after a given time interval automatically. HTML Code plz. Tx Ajay
4
by: Larry Tate | last post by:
I am wanting to get those cool html error pages that ms produces when I hit an error in asp.net. For instance, when I get a compilation error I get an html error page that shows me the ...
2
by: PHP_Paul | last post by:
Ok, I'm trying to poineer into the wonderful area of PHP/MySQL programming, but I'm having some difficulties. http://www.paulhq.com/php/freepage.html should register, but when anyone fills something...
10
by: gentsquash | last post by:
Can javascript (easily) produce a click from the PC-speaker? This is the speaker that is (well, used to be) directly on the CPU-card and was -I believe- intended to give feedback to the typist,...
1
by: srinivasan srinivas | last post by:
HI, I am using Solaris and subprocess.Popen to spawn a process on a remote machine. Thanks, Srini ----- Original Message ---- From:Diez B. Roggisch <deets@nospam.web.de> To:...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
0
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.