savannah-hackers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Savannah-hackers] /subversions/sourceforge/src/savannah


From: Mark H. Weaver
Subject: [Savannah-hackers] /subversions/sourceforge/src/savannah
Date: 16 Mar 2001 00:52:17 -0500
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.0.97

Two things regarding /subversions/sourceforge/src/savannah, the
checked-out copy of the savannah source which is web-visible:

The */CVS/Root files contained "address@hidden:/cvsroot/savannah",
which meant that people other than loic couldn't do any CVS operations from
that directory (or at least I couldn't).  I changed those files to contain
"/cvsroot/savannah", which is more efficient anyway.

Also, there are several changes made to that copy which have not been
checked into CVS.  This should probably be rectified by whoever made
these changes, so that appropriate log messages can be entered.  Here's
the output of "cvs diff -u" :

Index: ChangeLog
===================================================================
RCS file: /cvsroot/savannah/savannah/ChangeLog,v
retrieving revision 1.66
diff -u -r1.66 ChangeLog
--- ChangeLog   2001/03/15 17:36:12     1.66
+++ ChangeLog   2001/03/15 19:20:35
@@ -1,3 +1,8 @@
+Thu Mar 15 11:20:07 2001  Loic Dachary  <address@hidden>
+
+       * www/account/login.php: Remove reference to Microsoft, add info for
+         w3, lynx, mozilla.
+
 Thu Mar 15 09:28:39 2001  Loic Dachary  <address@hidden>
 
        * gnuscripts/sf_xml: Build savannah.gnu.org/savannah.xml file
Index: gnuscripts/sf_xml
===================================================================
RCS file: /cvsroot/savannah/savannah/gnuscripts/sf_xml,v
retrieving revision 1.1
diff -u -r1.1 sf_xml
--- gnuscripts/sf_xml   2001/03/15 17:36:12     1.1
+++ gnuscripts/sf_xml   2001/03/15 20:01:52
@@ -37,6 +37,10 @@
 $user = "--user=$user" if($user);
 $password = "--password=$password" if($password);
 
+sub quote {
+    s/&/&amp;/g; s/>/&gt;/g; s/</&lt;/g;
+}
+
 open(FILE, ">$xml") or die "cannot open $xml for writing : $!";
 print FILE <<EOF;
 <?xml version='1.0' encoding='ISO-8859-1' ?>
@@ -49,6 +53,7 @@
 open(LIST, "mysql $user $password -Ne \"SELECT 
user_id,user_name,realname,email,add_date FROM user WHERE ( unix_status = 'A' 
OR unix_status = 'N' ) AND user.user_name != 'admin'\" sourceforge|") or die 
"mysql $user $password failed";
 while(<LIST>) {
     chop;
+    quote;
     my($id, $user, $realname, $mail, $created) = split("\t", $_);
     print FILE <<EOF;
   <user id='$id'>
@@ -67,10 +72,11 @@
 open(LIST, "mysql $user $password -Ne \"SELECT 
group_id,group_name,unix_group_name,html_cvs FROM groups WHERE status = 'A'\" 
sourceforge|") or die "mysql $user $password failed";
 while(<LIST>) {
     chop;
+    quote;
     my($id, $name, $unix_name, $html_cvs) = split("\t", $_);
 
     if($html_cvs) {
-       $html_cvs = "\n<url>http://www.gnu.org$html_cvs/</url>";
+       $html_cvs = "\n<url>http://www.gnu.org$html_cvs</url>";
     }
     print FILE <<EOF;
   <project id='$id'>
@@ -88,6 +94,7 @@
 open(LIST, "mysql $user $password -Ne \"SELECT user.user_name, user.user_id, 
groups.unix_group_name, groups.group_id FROM user,user_group,groups WHERE 
user.user_id=user_group.user_id AND user_group.group_id=groups.group_id AND 
(user.unix_status = 'A' || user.unix_status = 'N') AND user.user_name != 
'admin' AND groups.status = 'A'\" sourceforge|") or die "mysql $user $password 
failed";
 while(<LIST>) {
     chop;
+    quote;
     my($user, $user_id, $group, $group_id) = split("\t", $_);
 
     print FILE <<EOF;
Index: www/account/login.php
===================================================================
RCS file: /cvsroot/savannah/savannah/www/account/login.php,v
retrieving revision 1.4
diff -u -r1.4 login.php
--- www/account/login.php       2001/03/02 15:59:16     1.4
+++ www/account/login.php       2001/03/15 19:20:00
@@ -109,9 +109,8 @@
 <p>
 You will be connected with an SSL server and your password will not be visible 
to other users. 
 <P>
-<B>Internet Explorer</B> users will have intermittent SSL problems, so they 
should leave SSL 
-after login. Netscape users should stay in SSL mode permanently for maximum 
security.
-Visit <A HREF="http://www.microsoft.com/";>Microsoft</A> for more information 
about this known problem.
+<B>Lynx, Emacs w3 and Internet Explorer</B> users will have intermittent SSL 
problems, so they should leave SSL 
+after login. Mozilla and Netscape users should stay in SSL mode permanently 
for maximum security.
 <P>
 <input type="submit" name="login" value="Login">
 </form>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]