[cvs] web/img collapse.png,NONE,1.1 expand.png,NONE,1.1

2007-08-17 Thread Christian Schaffner
Update of /cvsroot/fink/web/img
In directory sc8-pr-cvs17:/tmp/cvs-serv24685/img

Added Files:
collapse.png expand.png 
Log Message:
On the redesign_pdb branch:
- Hide advanced search/browse options in a collapsable div tag, controled
  via javascript
- Add the release id to the package links, if a tree or section is chosen 
  in the search options.


--- NEW FILE: expand.png ---
(This appears to be a binary file; contents omitted.)

--- NEW FILE: collapse.png ---
(This appears to be a binary file; contents omitted.)


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] web/pdb browse.php,1.1.2.16,1.1.2.17

2007-08-17 Thread Christian Schaffner
Update of /cvsroot/fink/web/pdb
In directory sc8-pr-cvs17:/tmp/cvs-serv24685/pdb

Modified Files:
  Tag: redesign_pdb
browse.php 
Log Message:
On the redesign_pdb branch:
- Hide advanced search/browse options in a collapsable div tag, controled
  via javascript
- Add the release id to the package links, if a tree or section is chosen 
  in the search options.


Index: browse.php
===
RCS file: /cvsroot/fink/web/pdb/browse.php,v
retrieving revision 1.1.2.16
retrieving revision 1.1.2.17
diff -u -d -r1.1.2.16 -r1.1.2.17
--- browse.php  15 Aug 2007 16:28:52 -  1.1.2.16
+++ browse.php  17 Aug 2007 20:33:12 -  1.1.2.17
@@ -6,15 +6,18 @@
 
 
 function addGETParam(&$params, $param_name) {
-  $value = $_GET[$param_name];
+  $value = stripslashes($_GET[$param_name]);
   if ($value)
-$params[$param_name] = $value;
+$params[$param_name] = urlencode($value);
 }
 
 
-if (isset($_GET['submit']) && $_GET['submit'] == 'Browse') {
+if (isset($_GET['submit']) && $_GET['submit'] == 'Search') {
   // Re-direct to clean out empty params
   $getparams = array();
+  $value = $_GET['nomaintainer'];
+  if ($value == 'on')
+$_GET['maintainer'] = 'None';
   addGETParam($getparams, 'maintainer');
   addGETParam($getparams, 'name');
   addGETParam($getparams, 'summary');
@@ -33,6 +36,14 @@
   header("Location: browse.php$redirect_url");
 }
 
+// are there any advanced search options? If no, collapse advanced search div
+if ($_GET['maintainer'] || $_GET['name'] || $_GET['dist'] || $_GET['tree'] || 
$_GET['section'] || $_GET['nochildren'] || $_GET['noshlibsdev'] || 
$_GET['sort'])
+  $pdb_has_adv_searchoptions = true;
+else
+  $pdb_has_adv_searchoptions = false;
+
+// load javascript for pdb in header.inc
+$pdb_scripts = true;
 
 include "header.inc";
 ?>
@@ -79,10 +90,9 @@
   return ((float)$usec + (float)$sec);
 }
 
-// This function generates a form popup, with the given label,
+// This function generates a form popup, with the given
 // variable name, current value, and list of possible values.
-function genFormSelect($label, $var_name, $cur_val, $values, $description = 
'') {
-   echo $label;
+function genFormSelect($var_name, $cur_val, $values, $description = '') {
echo "\n";
foreach ($values as $key => $val) {
echo "  
 
 
-
-
-
-
-
-Maintainer:
-
-(list packages without 
maintainer)
+
+Summary:
+ (Leave empty to list all)
 
 
-Name:
-
+
+
+
 
 
-Summary:
-
+ Advanced 
search options
 
 
+
+
+
+Package Name:
+ (Exact match. Use '%' 
as wildcard.)
+
+Maintainer:
+
+
+>
+No maintainer
+
+
+
 
 
+
+Distribution:
+
+
+Tree:
+
+
+Section:
+
+
+Sort order:
+
+
+
 >
 Exclude packages with parent (includes most "-dev", "-shlibs", ... splitoffs)
 
@@ -215,8 +239,8 @@
 Exclude -shlibs, -dev, -bin, -common, -doc packages 
 
 
-
-
+
+
 
 
 
@@ -228,7 +252,7 @@
 // Build the big query string
 //
 $query = 
- "SELECT p.name, p.version, p.revision, p.descshort ";
+ "SELECT p.name, p.version, p.revision, p.descshort, r.rel_id ";
 if ($dist && $tree) {
   // show pkg of specifc dist/tree
   if ($tree == 'testing') {
@@ -318,7 +342,7 @@
$query .= "AND p.maintainer LIKE '%$maintainer%' ";
 
 if ($name != "")
-   $query .= "AND p.name LIKE '%$name%' ";
+   $query .= "AND p.name LIKE '$name' ";
 
 if ($summary != "")
$query .= "AND (p.name LIKE '%$summary%' OR p.descshort LIKE 
'%$summary%' OR p.desclong LIKE '%$summary%' OR p.descusage LIKE '%$summary%') 
";
@@ -368,8 +392,12 @@
 print 'NameLatest VersionDescription';
   }
   while ($row = mysql_fetch_array($rs)) {
-print ''.
-  ''.$row["name"].'';
+print '';
+if ($tree || $dist)
+  $rel_id_str = '?rel_id='.$row["rel_id"];
+else
+  $rel_id_str = '';
+print ''.$row["name"].'';
 if ($tree == 'testing') {
   print ''.$row['version_unstable'].''.
 ''.$row['version_stable'].'';


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] web fink.pdb.js, NONE, 1.1 fink.css, 1.28, 1.29 header.inc, 1.109, 1.110

2007-08-17 Thread Christian Schaffner
Update of /cvsroot/fink/web
In directory sc8-pr-cvs17:/tmp/cvs-serv24685

Modified Files:
fink.css header.inc 
Added Files:
fink.pdb.js 
Log Message:
On the redesign_pdb branch:
- Hide advanced search/browse options in a collapsable div tag, controled
  via javascript
- Add the release id to the package links, if a tree or section is chosen 
  in the search options.


Index: fink.css
===
RCS file: /cvsroot/fink/web/fink.css,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- fink.css22 Feb 2007 23:45:10 -  1.28
+++ fink.css17 Aug 2007 20:33:11 -  1.29
@@ -218,3 +218,9 @@
border-color: #fff #fff #666 #eee ;
text-align: center ;
 }
+
+div#avancedsearch {
+   border: 1px #CCC solid;
+   padding: 10px;
+   background-color: #F2F2F2;
+}

Index: header.inc
===
RCS file: /cvsroot/fink/web/header.inc,v
retrieving revision 1.109
retrieving revision 1.110
diff -u -d -r1.109 -r1.110
--- header.inc  17 Aug 2007 20:08:05 -  1.109
+++ header.inc  17 Aug 2007 20:33:11 -  1.110
@@ -311,10 +311,11 @@



-'; ?>
+   '; ?>
+   '; ?>
 
 
-
+>
 
 
 

--- NEW FILE: fink.pdb.js ---
function list_unmaintained_packages(value) {
  if (value) {
document.pdb_browser.elements.maintainer.value="None"
  }
  else {
if (document.pdb_browser.elements.maintainer.value=="None") {
  document.pdb_browser.elements.maintainer.value=""
}
  }
}

function set_list_nomaintainer(text) {
  if (text=="None") {
document.pdb_browser.elements.nomaintainer.checked=true
  }
  else {
document.pdb_browser.elements.nomaintainer.checked=false
  }
}

function switchMenu(obj, img) {
  var el = document.getElementById(obj);
  if (el.style.display != 'none') {
el.style.display = 'none';
document.getElementById(img).src = "../img/expand.png";
  }
  else {
el.style.display = '';
document.getElementById(img).src = "../img/collapse.png";
  }
}



-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/web trac-py.info,1.6,1.7

2007-08-17 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/web
In directory sc8-pr-cvs17:/tmp/cvs-serv19218/main/finkinfo/web

Modified Files:
trac-py.info 
Log Message:
Upgrading Trac to 0.10.4, forcing the use of pysqlite2 (uses sqlite3).


Index: trac-py.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/web/trac-py.info,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- trac-py.info16 Jun 2007 22:30:56 -  1.6
+++ trac-py.info17 Aug 2007 20:20:39 -  1.7
@@ -1,25 +1,25 @@
 Info2: <<
 Package: trac-py%type_pkg[python]
-Version: 0.10.3.1
+Version: 0.10.4
 Revision: 1000
 Distribution: (%type_pkg[python] = 23) 10.3, (%type_pkg[python] = 23) 10.4
-Type: python(2.3 2.4)
+Type: python(2.3 2.4 2.5)
 Maintainer: Charles Lepple <[EMAIL PROTECTED]>
 Depends: <<
-sqlite, 
+sqlite3, 
 python%type_pkg[python]-shlibs | python%type_pkg[python]-nox-shlibs,
-pysqlite-py%type_pkg[python],
+pysqlite2-py%type_pkg[python],
 clearsilver-py%type_pkg[python],
 svn-swig-py%type_pkg[python] (>= 1.2.3-1012)
 <<
 BuildDepends: <<
 python%type_pkg[python] | python%type_pkg[python]-nox
 <<
-Conflicts: trac-py22, trac-py23, trac-py24
-Replaces: trac-py22, trac-py23, trac-py24
+Conflicts: trac-py22, trac-py23, trac-py24, trac-py25
+Replaces: trac-py22, trac-py23, trac-py24, trac-py25
 Recommends: silvercity-py%type_pkg[python]
 Source: http://ftp.edgewall.com/pub/trac/trac-%v.tar.gz
-Source-MD5: b625af0ca7cab8b7f79d92778efd6d7d
+Source-MD5: 52a3a21ad9faafc3b59cbeb87d5a69d2
 CompileScript: <<
   %p/bin/python%type_raw[python] setup.py build
 <<


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] web header.inc,1.108,1.109

2007-08-17 Thread Christian Schaffner
Update of /cvsroot/fink/web
In directory sc8-pr-cvs17:/tmp/cvs-serv13248

Modified Files:
header.inc 
Log Message:
Fix typo


Index: header.inc
===
RCS file: /cvsroot/fink/web/header.inc,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- header.inc  15 Aug 2007 18:28:30 -  1.108
+++ header.inc  17 Aug 2007 20:08:05 -  1.109
@@ -311,7 +311,7 @@



-('; ?>
+'; ?>
 
 
 


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/gnome gtk2-engines.info, 1.5.2.18, 1.5.2.19 gtkmm2.4.info, 1.4.2.21, 1.4.2.22 rhythmbox.info, 1.5.2.26, 1.5.2.27

2007-08-17 Thread Benjamin Reed
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome
In directory sc8-pr-cvs17:/tmp/cvs-serv26647/main/finkinfo/gnome

Modified Files:
  Tag: pangocairo-branch
gtk2-engines.info gtkmm2.4.info rhythmbox.info 
Log Message:
new upstreams

Index: rhythmbox.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/rhythmbox.info,v
retrieving revision 1.5.2.26
retrieving revision 1.5.2.27
diff -u -d -r1.5.2.26 -r1.5.2.27
--- rhythmbox.info  4 Aug 2007 19:05:32 -   1.5.2.26
+++ rhythmbox.info  17 Aug 2007 16:37:37 -  1.5.2.27
@@ -1,5 +1,5 @@
 Package: rhythmbox
-Version: 0.11.1
+Version: 0.11.2
 Revision: 1
 Recommends: gst-plugins-0.10
 Depends: <<
@@ -83,7 +83,7 @@
xft2-dev
 <<
 Source: mirror:gnome:sources/%n/0.11/%n-%v.tar.bz2
-Source-MD5: f2dcaca1b4896f1a455c94fe3bafa1bc
+Source-MD5: 125440f92e5c64b530894c5f3ca9038b
 Patch: %n.patch
 NoSetMAKEFLAGS: true
 SetMAKEFLAGS: -j1

Index: gtk2-engines.info
===
RCS file: 
/cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gtk2-engines.info,v
retrieving revision 1.5.2.18
retrieving revision 1.5.2.19
diff -u -d -r1.5.2.18 -r1.5.2.19
--- gtk2-engines.info   14 Aug 2007 00:42:51 -  1.5.2.18
+++ gtk2-engines.info   17 Aug 2007 16:37:36 -  1.5.2.19
@@ -1,5 +1,5 @@
 Package: gtk2-engines
-Version: 2.11.5
+Version: 2.11.6
 Revision: 1
 Depends: <<
atk1-shlibs (>= 1.19.6-1),
@@ -34,7 +34,7 @@
 <<
 Replaces: gnome-themes (<< 2.11.3-1), gnome-themes-extras (<<0.8.1-1)
 Source: mirror:gnome:sources/gtk-engines/2.11/gtk-engines-%v.tar.bz2
-Source-MD5: 73628223575bbf19609fa43dc88bbe23
+Source-MD5: 74327bc3f6e26439602bf5fcaf9531ea
 ConfigureParams: --disable-dependency-tracking 
PKG_CONFIG_PATH="%p/lib/pango-ft219/lib/pkgconfig:%p/lib/fontconfig2/lib/pkgconfig:%p/lib/freetype219/lib/pkgconfig:$PKG_CONFIG_PATH"
 FREETYPE_CONFIG=%p/lib/freetype219/bin/freetype-config
 CompileScript: <<
  ./configure %c

Index: gtkmm2.4.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/gnome/gtkmm2.4.info,v
retrieving revision 1.4.2.21
retrieving revision 1.4.2.22
diff -u -d -r1.4.2.21 -r1.4.2.22
--- gtkmm2.4.info   4 Aug 2007 14:29:40 -   1.4.2.21
+++ gtkmm2.4.info   17 Aug 2007 16:37:36 -  1.4.2.22
@@ -1,5 +1,5 @@
 Package: gtkmm2.4
-Version: 2.11.6
+Version: 2.11.7
 Revision: 1
 GCC: 4.0
 Depends: <<
@@ -32,7 +32,7 @@
xft2-dev
 <<
 Source: mirror:gnome:sources/gtkmm/2.11/gtkmm-%v.tar.bz2
-Source-MD5: ffddf21ec5f1ee9b15905ec06998c38f
+Source-MD5: c8943bab5801280681834adea821c6b0
 PatchScript: <<
perl -pi -e 's/^(SUBDIRS.*)tests/\1/' Makefile.in
perl -pi -e 's/;;/;/' gtk/gtkmm/*.h


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci freefem++.info,1.5,1.6

2007-08-17 Thread Martin Costabel
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv6432

Modified Files:
freefem++.info 
Log Message:
How did that get there twice?

Index: freefem++.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/freefem++.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- freefem++.info  17 Aug 2007 12:46:03 -  1.5
+++ freefem++.info  17 Aug 2007 15:49:41 -  1.6
@@ -17,7 +17,7 @@
 Depends: x11, x11-shlibs
 BuildDepends: g95, x11-dev, tetex3-base
 PatchScript: <<
-  /usr/bin/sed -i -e 's|INSTALL\-MacOSX||g; /Install-MacOS/d; 
/Install-MacOS/d' Makefile.in
+  /usr/bin/sed -i -e 's|INSTALL\-MacOSX||g; /Install-MacOS/d' Makefile.in
 <<
 ConfigureParams: <<
  --without-fltk --enable-optim 'F77=g95' --with-flib="-lg95" \


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/sci freefem++.info,1.4,1.5

2007-08-17 Thread Martin Costabel
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci
In directory sc8-pr-cvs17:/tmp/cvs-serv31057

Modified Files:
freefem++.info 
Log Message:
New upstream version 2.18

Index: freefem++.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/sci/freefem++.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- freefem++.info  26 Mar 2007 08:41:08 -  1.4
+++ freefem++.info  17 Aug 2007 12:46:03 -  1.5
@@ -1,8 +1,8 @@
 Package: freefem++
-Version: 2.7
+Version: 2.18
 Revision: 1
 Source: http://www.freefem.org/ff++/ftp/%n-%v.tar.gz
-Source-MD5: 56a32247ae73165b3fd8be5fd3754bc5
+Source-MD5: 40a2170a0223980e547df6cac1491468
 Source2: http://www.caam.rice.edu/software/ARPACK/SRC/arpack96.tar.gz
 source2-MD5: fffaa970198b285676f4156cebc8626e
 Source2ExtractDir: %n-%v/arpack
@@ -11,10 +11,14 @@
 Source3Rename: arpack96-patch.tar.gz
 Source3ExtractDir: %n-%v/arpack
 Source4: 
http://www.cise.ufl.edu/research/sparse/umfpack/v4.4/UMFPACKv4.4.tar.gz
-Source4-MD5: 6f4de37ec711c406a50f5d6760ea9f06
+Source4-MD5: f6e87606bfb198d5c21c0a8c4936bc5c
+Source4Rename: UMFPACK-06-Sep-2006.tar.gz
 Source4ExtractDir: %n-%v/download/umfpack
 Depends: x11, x11-shlibs
-BuildDepends: g95, x11-dev
+BuildDepends: g95, x11-dev, tetex3-base
+PatchScript: <<
+  /usr/bin/sed -i -e 's|INSTALL\-MacOSX||g; /Install-MacOS/d; 
/Install-MacOS/d' Makefile.in
+<<
 ConfigureParams: <<
  --without-fltk --enable-optim 'F77=g95' --with-flib="-lg95" \
  --with-arpack='%b/arpack/ARPACK/libarpack_Darwin.a' \


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits


[cvs] dists/10.4/unstable/main/finkinfo/text texshop.info,1.9,1.10

2007-08-17 Thread Martin Costabel
Update of /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text
In directory sc8-pr-cvs17:/tmp/cvs-serv15778

Modified Files:
texshop.info 
Log Message:
New upstream version 2.14

Index: texshop.info
===
RCS file: /cvsroot/fink/dists/10.4/unstable/main/finkinfo/text/texshop.info,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- texshop.info9 Aug 2007 22:50:18 -   1.9
+++ texshop.info17 Aug 2007 09:21:19 -  1.10
@@ -1,8 +1,8 @@
 Package: texshop
-Version: 2.13
+Version: 2.14
 Revision: 1
 Source: http://www.uoregon.edu/~koch/texshop/texshopsource.zip
-Source-MD5: 99ded2c48d9775384cc0af4f0f51103b
+Source-MD5: eabb41d7cf2f8aec25c74f1d47ad5331
 SourceRename: texshopsource-%v-%r.zip
 SourceDirectory: texshopsource
 License: GPL
@@ -20,7 +20,7 @@
 DocFiles: Docs/*
 PostInstScript: <<
  if ! test -e /Applications/Fink; then /usr/bin/install -d -m 755 
/Applications/Fink; fi
- ln -s %p/Applications/TeXShop.app /Applications/Fink/
+ ln -nsf %p/Applications/TeXShop.app /Applications/Fink/
 <<
 PostRmScript: rm -f /Applications/Fink/TeXShop.app
 Description: TeX previewer for Mac OS X, written in Cocoa


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/fink-commits