All Forums Forum List Register Members List Calendar Bike Rack Search Today's Posts Mark Forums Read

Go Back   Cycling Mob > Road Biking Forums > Road Bike Chat > 04 le tour de france


Reply
 
Submit Tools LinkBack Thread Tools
Old 12-08-2004, 10:55 AM   #11 (permalink)
hueyville
 
Posts: n/a
Re: 04 le tour de france

if i knew how to do something like that i would gladly impliment it. i am a
neophite at web design and am doing as much as i am capable of. if anyone
can tell me how to accomplish this i will give it a try. i am going to
switzerland for chrismas but when i return i am going to finish my le tour
section and post a section on the tour de georgia.
michael
"B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
news:CBFtd.3839$[Only registered and activated users can see links. ].com...
> hueyville wrote:
>> folks,
>> i have finally gotten a good start posting the photos i took at the
>> 04 le tour. i have lots of photos of lance, the postal team, the OLN
>> crew and all of the tour goings on. i have 35 pages thus far and am
>> about half way through my photos. check it out at
>> [Only registered and activated users can see links. ] hope ya'll like it.
>> feel free to send me your comments.
>> michael

>
> Would be nice to have some sort of "Next" button to view hi-res versions
> in
> sequence, rather than opening & closing individual windows.
>
> Otherwise, very cool...
> --
> BS (no, really)
>
>



  Reply With Quote
Old 12-08-2004, 10:55 AM   #12 (permalink)
hueyville
 
Posts: n/a
Re: 04 le tour de france

if i knew how to do something like that i would gladly impliment it. i am a
neophite at web design and am doing as much as i am capable of. if anyone
can tell me how to accomplish this i will give it a try. i am going to
switzerland for chrismas but when i return i am going to finish my le tour
section and post a section on the tour de georgia.
michael
"B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
news:CBFtd.3839$[Only registered and activated users can see links. ].com...
> hueyville wrote:
>> folks,
>> i have finally gotten a good start posting the photos i took at the
>> 04 le tour. i have lots of photos of lance, the postal team, the OLN
>> crew and all of the tour goings on. i have 35 pages thus far and am
>> about half way through my photos. check it out at
>> [Only registered and activated users can see links. ] hope ya'll like it.
>> feel free to send me your comments.
>> michael

>
> Would be nice to have some sort of "Next" button to view hi-res versions
> in
> sequence, rather than opening & closing individual windows.
>
> Otherwise, very cool...
> --
> BS (no, really)
>
>



  Reply With Quote
Old 12-08-2004, 10:55 AM   #13 (permalink)
hueyville
 
Posts: n/a
Re: 04 le tour de france

if i knew how to do something like that i would gladly impliment it. i am a
neophite at web design and am doing as much as i am capable of. if anyone
can tell me how to accomplish this i will give it a try. i am going to
switzerland for chrismas but when i return i am going to finish my le tour
section and post a section on the tour de georgia.
michael
"B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
news:CBFtd.3839$[Only registered and activated users can see links. ].com...
> hueyville wrote:
>> folks,
>> i have finally gotten a good start posting the photos i took at the
>> 04 le tour. i have lots of photos of lance, the postal team, the OLN
>> crew and all of the tour goings on. i have 35 pages thus far and am
>> about half way through my photos. check it out at
>> [Only registered and activated users can see links. ] hope ya'll like it.
>> feel free to send me your comments.
>> michael

>
> Would be nice to have some sort of "Next" button to view hi-res versions
> in
> sequence, rather than opening & closing individual windows.
>
> Otherwise, very cool...
> --
> BS (no, really)
>
>



  Reply With Quote
Old 12-08-2004, 12:03 PM   #14 (permalink)
Ravi
 
Posts: n/a
Re: 04 le tour de france

actually in addition to providing next links, this is really neat stuff:
you can just press 'n' or 'p' for next or prev pages -- keyboard
shortcuts !!

a small javascript:
<!-- The following Javascript lets people navigate with keyboard
shortcuts -->
<script type="text/javascript"><!--
document.onkeypress = handler;
function handler (e) {
key_n = 110; key_k = 107; // "n", "k" for next
key_p = 112; key_j = 106; // "p", "j" for previous
if (navigator.appName == "Netscape") { keyval = e.which; }
else { keyval = window.event.keyCode; }
if (keyval == key_p || keyval == key_j) { location =
"DSC_0221-r.html"; return true; }
if (keyval == key_n || keyval == key_k) { location =
"DSC_0262-r.html"; return true; }
return; }
//--></script>


found from the page source of:
[Only registered and activated users can see links. ]

seems to be autogenerated by:
[Only registered and activated users can see links. ]

HTH
+ravi


hueyville wrote:
> if i knew how to do something like that i would gladly impliment it. i am a
> neophite at web design and am doing as much as i am capable of. if anyone
> can tell me how to accomplish this i will give it a try. i am going to
> switzerland for chrismas but when i return i am going to finish my le tour
> section and post a section on the tour de georgia.
> michael
> "B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
> news:CBFtd.3839$[Only registered and activated users can see links. ].com...
>
>>hueyville wrote:
>>
>>>folks,
>>> i have finally gotten a good start posting the photos i took at the
>>>04 le tour. i have lots of photos of lance, the postal team, the OLN
>>>crew and all of the tour goings on. i have 35 pages thus far and am
>>>about half way through my photos. check it out at
>>>[Only registered and activated users can see links. ] hope ya'll like it.
>>>feel free to send me your comments.
>>>michael

>>
>>Would be nice to have some sort of "Next" button to view hi-res versions
>>in
>>sequence, rather than opening & closing individual windows.
>>
>>Otherwise, very cool...
>>--
>>BS (no, really)
>>
>>

>
>
>

  Reply With Quote
Old 12-08-2004, 12:03 PM   #15 (permalink)
Ravi
 
Posts: n/a
Re: 04 le tour de france

actually in addition to providing next links, this is really neat stuff:
you can just press 'n' or 'p' for next or prev pages -- keyboard
shortcuts !!

a small javascript:
<!-- The following Javascript lets people navigate with keyboard
shortcuts -->
<script type="text/javascript"><!--
document.onkeypress = handler;
function handler (e) {
key_n = 110; key_k = 107; // "n", "k" for next
key_p = 112; key_j = 106; // "p", "j" for previous
if (navigator.appName == "Netscape") { keyval = e.which; }
else { keyval = window.event.keyCode; }
if (keyval == key_p || keyval == key_j) { location =
"DSC_0221-r.html"; return true; }
if (keyval == key_n || keyval == key_k) { location =
"DSC_0262-r.html"; return true; }
return; }
//--></script>


found from the page source of:
[Only registered and activated users can see links. ]

seems to be autogenerated by:
[Only registered and activated users can see links. ]

HTH
+ravi


hueyville wrote:
> if i knew how to do something like that i would gladly impliment it. i am a
> neophite at web design and am doing as much as i am capable of. if anyone
> can tell me how to accomplish this i will give it a try. i am going to
> switzerland for chrismas but when i return i am going to finish my le tour
> section and post a section on the tour de georgia.
> michael
> "B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
> news:CBFtd.3839$[Only registered and activated users can see links. ].com...
>
>>hueyville wrote:
>>
>>>folks,
>>> i have finally gotten a good start posting the photos i took at the
>>>04 le tour. i have lots of photos of lance, the postal team, the OLN
>>>crew and all of the tour goings on. i have 35 pages thus far and am
>>>about half way through my photos. check it out at
>>>[Only registered and activated users can see links. ] hope ya'll like it.
>>>feel free to send me your comments.
>>>michael

>>
>>Would be nice to have some sort of "Next" button to view hi-res versions
>>in
>>sequence, rather than opening & closing individual windows.
>>
>>Otherwise, very cool...
>>--
>>BS (no, really)
>>
>>

>
>
>

  Reply With Quote
Old 12-08-2004, 12:03 PM   #16 (permalink)
Ravi
 
Posts: n/a
Re: 04 le tour de france

actually in addition to providing next links, this is really neat stuff:
you can just press 'n' or 'p' for next or prev pages -- keyboard
shortcuts !!

a small javascript:
<!-- The following Javascript lets people navigate with keyboard
shortcuts -->
<script type="text/javascript"><!--
document.onkeypress = handler;
function handler (e) {
key_n = 110; key_k = 107; // "n", "k" for next
key_p = 112; key_j = 106; // "p", "j" for previous
if (navigator.appName == "Netscape") { keyval = e.which; }
else { keyval = window.event.keyCode; }
if (keyval == key_p || keyval == key_j) { location =
"DSC_0221-r.html"; return true; }
if (keyval == key_n || keyval == key_k) { location =
"DSC_0262-r.html"; return true; }
return; }
//--></script>


found from the page source of:
[Only registered and activated users can see links. ]

seems to be autogenerated by:
[Only registered and activated users can see links. ]

HTH
+ravi


hueyville wrote:
> if i knew how to do something like that i would gladly impliment it. i am a
> neophite at web design and am doing as much as i am capable of. if anyone
> can tell me how to accomplish this i will give it a try. i am going to
> switzerland for chrismas but when i return i am going to finish my le tour
> section and post a section on the tour de georgia.
> michael
> "B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
> news:CBFtd.3839$[Only registered and activated users can see links. ].com...
>
>>hueyville wrote:
>>
>>>folks,
>>> i have finally gotten a good start posting the photos i took at the
>>>04 le tour. i have lots of photos of lance, the postal team, the OLN
>>>crew and all of the tour goings on. i have 35 pages thus far and am
>>>about half way through my photos. check it out at
>>>[Only registered and activated users can see links. ] hope ya'll like it.
>>>feel free to send me your comments.
>>>michael

>>
>>Would be nice to have some sort of "Next" button to view hi-res versions
>>in
>>sequence, rather than opening & closing individual windows.
>>
>>Otherwise, very cool...
>>--
>>BS (no, really)
>>
>>

>
>
>

  Reply With Quote
Old 12-08-2004, 12:03 PM   #17 (permalink)
Ravi
 
Posts: n/a
Re: 04 le tour de france

actually in addition to providing next links, this is really neat stuff:
you can just press 'n' or 'p' for next or prev pages -- keyboard
shortcuts !!

a small javascript:
<!-- The following Javascript lets people navigate with keyboard
shortcuts -->
<script type="text/javascript"><!--
document.onkeypress = handler;
function handler (e) {
key_n = 110; key_k = 107; // "n", "k" for next
key_p = 112; key_j = 106; // "p", "j" for previous
if (navigator.appName == "Netscape") { keyval = e.which; }
else { keyval = window.event.keyCode; }
if (keyval == key_p || keyval == key_j) { location =
"DSC_0221-r.html"; return true; }
if (keyval == key_n || keyval == key_k) { location =
"DSC_0262-r.html"; return true; }
return; }
//--></script>


found from the page source of:
[Only registered and activated users can see links. ]

seems to be autogenerated by:
[Only registered and activated users can see links. ]

HTH
+ravi


hueyville wrote:
> if i knew how to do something like that i would gladly impliment it. i am a
> neophite at web design and am doing as much as i am capable of. if anyone
> can tell me how to accomplish this i will give it a try. i am going to
> switzerland for chrismas but when i return i am going to finish my le tour
> section and post a section on the tour de georgia.
> michael
> "B i l l S o r n s o n" <[Only registered and activated users can see links. ].rr.com> wrote in message
> news:CBFtd.3839$[Only registered and activated users can see links. ].com...
>
>>hueyville wrote:
>>
>>>folks,
>>> i have finally gotten a good start posting the photos i took at the
>>>04 le tour. i have lots of photos of lance, the postal team, the OLN
>>>crew and all of the tour goings on. i have 35 pages thus far and am
>>>about half way through my photos. check it out at
>>>[Only registered and activated users can see links. ] hope ya'll like it.
>>>feel free to send me your comments.
>>>michael

>>
>>Would be nice to have some sort of "Next" button to view hi-res versions
>>in
>>sequence, rather than opening & closing individual windows.
>>
>>Otherwise, very cool...
>>--
>>BS (no, really)
>>
>>

>
>
>

  Reply With Quote
Old 12-08-2004, 08:08 PM   #18 (permalink)
Dennis P. Harris
 
Posts: n/a
Re: 04 le tour de france

On Wed, 08 Dec 2004 13:41:28 GMT in rec.bicycles.misc,
"hueyville" <[Only registered and activated users can see links. ]> wrote:

> i have finally gotten a good start posting the photos i took at the 04 le
> tour.


kind of fun... i found that the bobke was the easiest one to find
after a finish, and by far the wittiest.

too bad you didn't try a little variety and spend some time at
some of the hill climbs. i spent more time at hill climbs than
anywhere else, because they were usually going slow enough to get
good shots.


  Reply With Quote
Old 12-08-2004, 08:08 PM   #19 (permalink)
Dennis P. Harris
 
Posts: n/a
Re: 04 le tour de france

On Wed, 08 Dec 2004 13:41:28 GMT in rec.bicycles.misc,
"hueyville" <[Only registered and activated users can see links. ]> wrote:

> i have finally gotten a good start posting the photos i took at the 04 le
> tour.


kind of fun... i found that the bobke was the easiest one to find
after a finish, and by far the wittiest.

too bad you didn't try a little variety and spend some time at
some of the hill climbs. i spent more time at hill climbs than
anywhere else, because they were usually going slow enough to get
good shots.


  Reply With Quote
Old 12-08-2004, 08:08 PM   #20 (permalink)
Dennis P. Harris
 
Posts: n/a
Re: 04 le tour de france

On Wed, 08 Dec 2004 13:41:28 GMT in rec.bicycles.misc,
"hueyville" <[Only registered and activated users can see links. ]> wrote:

> i have finally gotten a good start posting the photos i took at the 04 le
> tour.


kind of fun... i found that the bobke was the easiest one to find
after a finish, and by far the wittiest.

too bad you didn't try a little variety and spend some time at
some of the hill climbs. i spent more time at hill climbs than
anywhere else, because they were usually going slow enough to get
good shots.


  Reply With Quote
Reply

Add this thread to:  Tag This Thread Tag This Thread  Submit to Clesto Clesto  Submit to Digg Digg  Submit to Reddit Reddit  Submit to Furl Furl  Submit to Del.icio.us Del.icio.us  Submit to Spurl Spurl


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 04:57 AM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
Style Design by vBStyles.com

Directory of Sports Blogs



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21