librefm-commits
[Top][All Lists]
Advanced

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

[Librefm-commits] [1746] make sure that the transition functions get inc


From: Clint Adams
Subject: [Librefm-commits] [1746] make sure that the transition functions get included
Date: Sat, 23 May 2009 21:08:18 +0000

Revision: 1746
          http://svn.sv.gnu.org/viewvc/?view=rev&root=librefm&revision=1746
Author:   clint
Date:     2009-05-23 21:08:18 +0000 (Sat, 23 May 2009)
Log Message:
-----------
make sure that the transition functions get included

Modified Paths:
--------------
    trunk/gnukebox/scrobble-utils.php
    trunk/nixtape/auth.php

Added Paths:
-----------
    trunk/gnukebox/temp-utils.php

Modified: trunk/gnukebox/scrobble-utils.php
===================================================================
--- trunk/gnukebox/scrobble-utils.php   2009-05-23 21:01:48 UTC (rev 1745)
+++ trunk/gnukebox/scrobble-utils.php   2009-05-23 21:08:18 UTC (rev 1746)
@@ -20,6 +20,7 @@
 */
 
 require_once('database.php');  // include the database connection string
+require_once('temp-utils.php');
 
 function usernameFromSID($session_id)
 {
@@ -243,30 +244,4 @@
 
 }
 
-function username_to_uniqueid($username) {
-       global $adodb;
-
-       $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
-       try {
-               $uniqueid = GetOne('SELECT uniqueid from Users where 
lower(username) = lower('.$adodb->qstr($username).')');
-       } catch (exception $e) {
-               return null;
-       }
-
-       return $uniqueid;
-}
-
-function uniqueid_to_username($uniqueid) {
-       global $adodb;
-
-       $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
-       try {
-               $username = GetOne('SELECT username from Users where uniqueid) 
= '.($uniqueid));
-       } catch (exception $e) {
-               return null;
-       }
-
-       return $username;
-}
-
 ?>

Copied: trunk/gnukebox/temp-utils.php (from rev 1745, trunk/nixtape/auth.php)
===================================================================
--- trunk/gnukebox/temp-utils.php                               (rev 0)
+++ trunk/gnukebox/temp-utils.php       2009-05-23 21:08:18 UTC (rev 1746)
@@ -0,0 +1,52 @@
+<?php
+
+/* Libre.fm -- a free network service for sharing your music listening habits
+
+   Copyright (C) 2009 Free Software Foundation, Inc
+
+   This program is free software: you can redistribute it and/or modify
+   it under the terms of the GNU Affero General Public License as published by
+   the Free Software Foundation, either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU Affero General Public License for more details.
+
+   You should have received a copy of the GNU Affero General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+require_once('database.php');  // include the database connection string
+
+// these functions should be short-lived while things go through a transition
+
+function username_to_uniqueid($username) {
+       global $adodb;
+
+       $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
+       try {
+               $uniqueid = GetOne('SELECT uniqueid from Users where 
lower(username) = lower('.$adodb->qstr($username).')');
+       } catch (exception $e) {
+               return null;
+       }
+
+       return $uniqueid;
+}
+
+function uniqueid_to_username($uniqueid) {
+       global $adodb;
+
+       $adodb->SetFetchMode(ADODB_FETCH_ASSOC);
+       try {
+               $username = GetOne('SELECT username from Users where uniqueid) 
= '.($uniqueid));
+       } catch (exception $e) {
+               return null;
+       }
+
+       return $username;
+}
+
+?>

Modified: trunk/nixtape/auth.php
===================================================================
--- trunk/nixtape/auth.php      2009-05-23 21:01:48 UTC (rev 1745)
+++ trunk/nixtape/auth.php      2009-05-23 21:08:18 UTC (rev 1746)
@@ -21,6 +21,8 @@
 
 require_once('database.php');
 require_once('data/User.php');
+require_once('temp-utils.php');
+
 session_start();
 if(isset($_COOKIE['session_id'])) {
        $err = 0;





reply via email to

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