Keith Lofstrom | 1 Jan 2009 01:23
Favicon

Happy UTC New Year!

console message:

root <at> alix:/# Clock: inserting leap second 23:59:60 UTC

Happy new year!

Keith

--

-- 
Keith Lofstrom          keithl <at> keithl.com         Voice (503)-520-1993
KLIC --- Keith Lofstrom Integrated Circuits --- "Your Ideas in Silicon"
Design Contracting in Bipolar and CMOS - Analog, Digital, and Scan ICs
John Jason Jordan | 1 Jan 2009 03:41
Picon

How to stop popup blockers

I don't know the answer. But I do know that someone has figured it out.

http://www.btscene.com/details/881376/

Using Firefrox, with popup blocker enabled, click on just about
anything on that page. You will be treated to a full-screen popup
window advertising hot girls. Why they thought someone searching for a
Gernsheim symphony would be interested in hot girls escapes me.

I find this on more and more sites. Searching the Firefox forums I find
that it is being treated as a bug in the popup blocker.

So if you're creating a website and you want to annoy the hell out of
your visitors, apparently there is now a way.
Fedor Pikus | 1 Jan 2009 05:42
Picon

Re: How to stop popup blockers

On Wed, Dec 31, 2008 at 6:41 PM, John Jason Jordan <johnxj <at> comcast.net> wrote:
> I don't know the answer. But I do know that someone has figured it out.
>
> http://www.btscene.com/details/881376/
>
> Using Firefrox, with popup blocker enabled, click on just about

Using Firefox 3 on Fedora 6, I don't get any pop-ups, not even the
warning that a pop-op was attempted.

> anything on that page. You will be treated to a full-screen popup
> window advertising hot girls. Why they thought someone searching for a
> Gernsheim symphony would be interested in hot girls escapes me.

It's a torrent site, a lot of them are supported by ads of porn sites.

>
> I find this on more and more sites. Searching the Firefox forums I find
> that it is being treated as a bug in the popup blocker.
>
> So if you're creating a website and you want to annoy the hell out of
> your visitors, apparently there is now a way.
> _______________________________________________
> PLUG mailing list
> PLUG <at> lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>

--

-- 
Fedor G Pikus (fpikus <at> gmail.com)
(Continue reading)

Michael Robinson | 1 Jan 2009 08:11

SELinux and NFS root...

Anyone know how to make SELinux and NFS root play nice together on the
server side without disabling SELinux?
Carlos Konstanski | 2 Jan 2009 06:30

apache webdav: read vs write

Is there a way to make an apache webdav folder allow read access to
everybody, but require basic authentication for write access?

Carlos
drew wymore | 2 Jan 2009 08:01
Picon

Re: apache webdav: read vs write

On Thu, Jan 1, 2009 at 9:30 PM, Carlos Konstanski <
ckonstanski <at> pippiandcarlos.com> wrote:

> Is there a way to make an apache webdav folder allow read access to
> everybody, but require basic authentication for write access?
>
> Carlos
> _______________________________________________
> PLUG mailing list
> PLUG <at> lists.pdxlinux.org
> http://lists.pdxlinux.org/mailman/listinfo/plug
>

It looks like WebDAV supports ACL's for that type of access control but the
documentation I've found so far isn't very good.
john_re | 2 Jan 2009 14:27
Picon

BerkeleyTIP TOMORROW Jan 3 Sat- Party Time :) Video Talks: Asterisk, GPU

Hey David Mandel: I saw your announcement:

> Also, we are always looking for speakers.  If you or anyone you know
> (or don't know) is interested in speaking at PLUG, please let me know.

A suggestion: Organize a PLUG meeting in conjunction w/ BerkeleyTIP -
then you all can watch the talk videos together. :)

I hope some of y'all can join with us online tomorrow, Saturday.  :)

=====
YOU ARE INVITED TO ATTEND  :)  Join in with the friendly BTIP people.
IRC & VOIP communication - Use Ekiga VOIP SW & a Headset.

GLOBAL SIMULTANEOUS GNU(Linux), BSD & All Free SW & HW Monthly Meeting
TIP = Talks, Installfest, Potluck & ProgrammingParty
January 3rd 2009, Saturday.
Time: 10 AM - 6 PM    (All times Pacific USA)
  Adjust for your local time zone.   (Ex: = 1 PM - 9 PM Eastern)
http://groups.google.com/group/BerkTIPGlobal
[Click "Join this group" on the right page side to join the mail list.]

VIDEO TALKS
12N  - The Asterisk Telephone System - Paul Charles Leddy NYLUG
 2PM - GPU Computing - John Stone CLUG.org.za

==  TALK TOPICS, PROGRAMMING PARTY, INSTALLFEST, DISCUSSION  ==
Two great TALK TOPICS this month, one on the Asterisk Telephone/VOIP
system, and the other on GPUs -  Graphics Processing Units (the hardware
in graphics cards) which can do general purpose computing.
(Continue reading)

Carlos Konstanski | 2 Jan 2009 18:23

Re: apache webdav: read vs write

On Thu, 1 Jan 2009, drew wymore wrote:

> Date: Thu, 1 Jan 2009 23:01:38 -0800
> From: drew wymore <drew.wymore <at> gmail.com>
> Reply-To: "General Linux/UNIX discussion and help;	civil and on-topic"
>     <plug <at> lists.pdxlinux.org>
> To: "General Linux/UNIX discussion and help,	civil and on-topic"
>     <plug <at> lists.pdxlinux.org>
> Subject: Re: [PLUG] apache webdav: read vs write
> 
> On Thu, Jan 1, 2009 at 9:30 PM, Carlos Konstanski <
> ckonstanski <at> pippiandcarlos.com> wrote:
>
>> Is there a way to make an apache webdav folder allow read access to
>> everybody, but require basic authentication for write access?
>>
>> Carlos
>> _______________________________________________
>> PLUG mailing list
>> PLUG <at> lists.pdxlinux.org
>> http://lists.pdxlinux.org/mailman/listinfo/plug
>>
>
>
> It looks like WebDAV supports ACL's for that type of access control but the
> documentation I've found so far isn't very good.

Looks like I found an RFC:

http://www.webdav.org/specs/rfc3744.html
(Continue reading)

Galen Seitz | 2 Jan 2009 18:39

Re: apache webdav: read vs write

Carlos Konstanski wrote:
> Is there a way to make an apache webdav folder allow read access to
> everybody, but require basic authentication for write access?
> 

Something like this might work.  I'm not sure whether the Satisfy Any 
line is required, so you might want to try it both ways.  Also, don't 
forget that you'll need to set up ssl if you care about the security 
of your passwords.

...
   # try anonymous access first, resort to real
   # authentication if necessary.
   Satisfy Any
   <LimitExcept GET PROPFIND OPTIONS REPORT>
     Require valid-user
   </LimitExcept>

   # how to authenticate a user
   AuthType Basic
...

--

-- 
Galen Seitz
galens <at> seitzassoc.com
Carlos Konstanski | 2 Jan 2009 19:53

Re: apache webdav: read vs write

On Fri, 2 Jan 2009, Galen Seitz wrote:

> Date: Fri, 02 Jan 2009 09:39:30 -0800
> From: Galen Seitz <galens <at> seitzassoc.com>
> Reply-To: "General Linux/UNIX discussion and help;	civil and on-topic"
>     <plug <at> lists.pdxlinux.org>
> To: "General Linux/UNIX discussion and help;	civil and on-topic"
>     <plug <at> lists.pdxlinux.org>
> Subject: Re: [PLUG] apache webdav: read vs write
> 
> Carlos Konstanski wrote:
>> Is there a way to make an apache webdav folder allow read access to
>> everybody, but require basic authentication for write access?
>>
>
> Something like this might work.  I'm not sure whether the Satisfy Any
> line is required, so you might want to try it both ways.  Also, don't
> forget that you'll need to set up ssl if you care about the security
> of your passwords.
>
> ...
>   # try anonymous access first, resort to real
>   # authentication if necessary.
>   Satisfy Any
>   <LimitExcept GET PROPFIND OPTIONS REPORT>
>     Require valid-user
>   </LimitExcept>
>
>   # how to authenticate a user
>   AuthType Basic
(Continue reading)


Gmane