[Gloucs] [ot] sourceforge website
bjh
gloucs at mailman.lug.org.uk
Mon Jan 6 19:18:16 2003
This is a multi-part message in MIME format.
------=_NextPart_000_005E_01C2B5B7.CD3461C0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
+++ Response
******************
----- Original Message -----=20
From: "Guy Edwards" <guy_j_edwards@hotpop.com>
To: "MAILING LIST" <gloucs@mailman.lug.org.uk>
Sent: Monday, January 06, 2003 3:14 PM
Subject: Re: [Gloucs] [ot] sourceforge website
> On Mon, 2003-01-06 at 11:27, bjh wrote:
> > ***** You have to be careful using Java code if you are looking to =
attract
> > the blind user - but I think Sun Systems started to market a Plug In =
for the
> > blind user - could be wrong on this - Java code can be so useful to =
stop
> > aspects of site theft of graphics etc...
> > ****************************************************
>=20
> Really petty point here - that was Javascript not Java. They are very
> different (completely - honest).
+++ Correct - I really use the word Java as a cover heading for both =
Java and Javascript
**********************************************************
>=20
> Stopping theft of graphics is server side I would think though, so
> perhaps you mean Java there? (but you can use Javascript on the server
> too can't you?) I don't have any experience of this but I understand =
you
> use the http referer reference or something similar?
+++ A typical piece of code to insert (Cut & Paste this script... this =
information goes
right under the HEAD in the HTML area of your webpage - the message can =
be altered to read whatever you want to say....)
in a web page to stop right click copying of site graphics is:
<head>
<script language=3D"JavaScript"> <!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// Don't delete this header!
var message=3D"Sorry, that function is disabled.\n\nContents & Graphics =
Copyright =A9your name\nOur work is not Public Domain, and should NOT be =
taken from this site."; // Message for the alert box
// Don't edit below!
function click(e) {
if (document.all) {
if (event.button =3D=3D 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which =3D=3D 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=3Dclick;
// --> </script>
****************************************************************
>=20
> I'm going to combine the other post here, to save emails
>=20
> On Mon, 2003-01-06 at 11:19, bjh wrote:
> > ***** Interesting stuff, I did the research a few years ago when the =
> > older browsers were the only ones available, obviously at that point =
> > in time - I got interested in this subject matter when I started to=20
> > look at the default fonts in the various email programmes of the=20
> > period, and of course the adoption of Times New Roman by Microsoft=20
> > became an interesting bench mark.
> > I would still stick to the three base fonts I mentioned, using Arial =
> > for "copy" due to its clarity on screen...
> > ***************************************************************
>=20
> I have to admit to being unadventurous with fonts. I usually use
> Helvetica, (followed by the sans-serif generic) just because I haven't
> really experimented yet.
>=20
> Guy
>=20
>=20
>=20
> _______________________________________________
> gloucs mailing list
> gloucs@mailman.lug.org.uk
> http://mailman.lug.org.uk/mailman/listinfo/gloucs
>
------=_NextPart_000_005E_01C2B5B7.CD3461C0
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2800.1126" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY>
<DIV><FONT face=3DArial size=3D2><STRONG>+++ =
Response</STRONG></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>******************</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>----- Original Message ----- </FONT>
<DIV><FONT face=3DArial size=3D2>From: "Guy Edwards" <</FONT><A=20
href=3D"mailto:guy_j_edwards@hotpop.com"><FONT face=3DArial=20
size=3D2>guy_j_edwards@hotpop.com</FONT></A><FONT face=3DArial=20
size=3D2>></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>To: "MAILING LIST" <</FONT><A=20
href=3D"mailto:gloucs@mailman.lug.org.uk"><FONT face=3DArial=20
size=3D2>gloucs@mailman.lug.org.uk</FONT></A><FONT face=3DArial=20
size=3D2>></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Sent: Monday, January 06, 2003 3:14 =
PM</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>Subject: Re: [Gloucs] [ot] sourceforge=20
website</FONT></DIV></DIV>
<DIV><FONT face=3DArial><BR><FONT size=3D2></FONT></FONT></DIV>
<DIV><FONT face=3DArial size=3D2>> On Mon, 2003-01-06 at 11:27, bjh=20
wrote:<BR>> > ***** You have to be careful using Java code if you =
are=20
looking to attract<BR>> > the blind user - but I think Sun Systems =
started=20
to market a Plug In for the<BR>> > blind user - could be wrong on =
this -=20
Java code can be so useful to stop<BR>> > aspects of site theft of =
graphics etc...<BR>> >=20
****************************************************<BR>> <BR>> =
Really=20
petty point here - that was Javascript not Java. They are very<BR>> =
different=20
(completely - honest).</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2><STRONG>+++ Correct - I really use the =
word Java as=20
a cover heading for both Java and Javascript</STRONG></FONT></DIV>
<DIV><FONT face=3DArial=20
size=3D2>**********************************************************<BR>&g=
t;=20
<BR>> Stopping theft of graphics is server side I would think though, =
so<BR>> perhaps you mean Java there? (but you can use Javascript on =
the=20
server<BR>> too can't you?) I don't have any experience of this but I =
understand you<BR>> use the http referer reference or something=20
similar?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><STRONG><FONT face=3DArial size=3D2>+++ A typical piece of code to=20
insert</FONT></STRONG><FONT size=3D2><FONT face=3DArial> (Cut & =
Paste this=20
script... this information goes<BR>right under the HEAD in the HTML area =
of your=20
webpage - the message can be altered to read whatever you want to=20
say....)<BR><STRONG> in a web page to stop right click copying of =
site=20
graphics is:</STRONG></FONT></FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2><head></FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2><script language=3D"JavaScript"> =
<!--<BR>//=20
No rightclick script v.2.5<BR>// (c) 1998 barts1000<BR>// <A=20
href=3D"mailto:barts1000@aol.com">barts1000@aol.com</A><BR>// Don't =
delete this=20
header!</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>var message=3D"Sorry, that function is=20
disabled.\n\nContents & Graphics Copyright =A9your name\nOur work is =
not=20
Public Domain, and should NOT be taken from this site."; // Message for =
the=20
alert box</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>// Don't edit below!</FONT></DIV>
<DIV> </DIV>
<DIV><FONT face=3DArial size=3D2>function click(e) {<BR>if =
(document.all) {<BR>if=20
(event.button =3D=3D 2) {<BR>alert(message);<BR>return =
false;<BR>}<BR>}<BR>if=20
(document.layers) {<BR>if (e.which =3D=3D 3) =
{<BR>alert(message);<BR>return=20
false;<BR>}<BR>}<BR>}<BR>if (document.layers)=20
{<BR>document.captureEvents(Event.MOUSEDOWN);<BR>}<BR>document.onmousedow=
n=3Dclick;<BR>//=20
--> </script></FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial=20
size=3D2>****************************************************************=
</FONT><BR><FONT=20
face=3DArial size=3D2>> <BR>> I'm going to combine the other post =
here, to=20
save emails<BR>> <BR>> On Mon, 2003-01-06 at 11:19, bjh =
wrote:<BR>>=20
> ***** Interesting stuff, I did the research a few years ago when =
the=20
<BR>> > older browsers were the only ones available, obviously at =
that=20
point <BR>> > in time - I got interested in this subject matter =
when I=20
started to <BR>> > look at the default fonts in the various email=20
programmes of the <BR>> > period, and of course the adoption of =
Times New=20
Roman by Microsoft <BR>> > became an interesting bench =
mark.<BR>> >=20
I would still stick to the three base fonts I mentioned, using Arial =
<BR>>=20
> for "copy" due to its clarity on screen...<BR>> >=20
***************************************************************<BR>> =
<BR>>=20
I have to admit to being unadventurous with fonts. I usually use<BR>> =
Helvetica, (followed by the sans-serif generic) just because I =
haven't<BR>>=20
really experimented yet.<BR>> <BR>> Guy<BR>> <BR>> <BR>> =
<BR>>=20
_______________________________________________<BR>> gloucs mailing=20
list<BR>> </FONT><A href=3D"mailto:gloucs@mailman.lug.org.uk"><FONT =
face=3DArial=20
size=3D2>gloucs@mailman.lug.org.uk</FONT></A><BR><FONT face=3DArial =
size=3D2>>=20
</FONT><A =
href=3D"http://mailman.lug.org.uk/mailman/listinfo/gloucs"><FONT=20
face=3DArial=20
size=3D2>http://mailman.lug.org.uk/mailman/listinfo/gloucs</FONT></A><BR>=
<FONT=20
face=3DArial size=3D2>> </FONT></DIV></BODY></HTML>
------=_NextPart_000_005E_01C2B5B7.CD3461C0--