changed all ref's to lib.php to ga4php.php
authorpaulr <me@pjr.cc>
Wed, 17 Nov 2010 22:06:18 +0000 (09:06 +1100)
committerpaulr <me@pjr.cc>
Wed, 17 Nov 2010 22:06:18 +0000 (09:06 +1100)
doco/TODO.txt
example/old/tokenstore.php
example/provisioning/token.php
example/simple/extend.php
unittests/authtest.php
unittests/createkey.php
unittests/createurl.php
unittests/createuser.php

index 813d34d..08deb16 100644 (file)
@@ -5,7 +5,6 @@ The Almighty TODO list:
 2) a "hasToken" method for determining if a user has a token or not
 3) implement googles key integrity algorithm thing
 4) make a better example
-5) rename lib.php to something more appropriate
 
 Maybe:
 Move to exceptions
index d6a1130..d65b376 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 // ok, so this will be our overloading class
-require_once("../../lib/lib.php");
+require_once("../../lib/ga4php.php");
 
 class myGoogleAuth extends GoogleAuthenticator {
        
index 5c9d903..f0950d8 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-require_once("../../lib/lib.php");
+require_once("../../lib/ga4php.php");
 
 // define our token class
 class myGA extends GoogleAuthenticator {
@@ -81,4 +81,4 @@ class myGA extends GoogleAuthenticator {
        }
 }
 
-?>
\ No newline at end of file
+?>
index f50595d..20e20e5 100644 (file)
@@ -3,7 +3,7 @@
 /*
  * This file just shows a simple example of how to extend the GoogleAuthenticator schema
  */
-require_once("../../lib/lib.php");
+require_once("../../lib/ga4php.php");
 
 
 /* we now define the three methods we have to define
@@ -106,4 +106,4 @@ class MyGoogleAuth extends GoogleAuthenticator {
 }
 
 // and thats it...
-?>
\ No newline at end of file
+?>
index 649cc64..a4db43c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-require_once("../lib/lib.php");
+require_once("../lib/ga4php.php");
 
 // just in case
 
@@ -40,4 +40,4 @@ if($ga->authenticateUser("User1", "598723")) {
        echo "Failed: INCORRECT\n";
 }
 
-?>
\ No newline at end of file
+?>
index 251132e..3e62a35 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-require_once("../lib/lib.php");
+require_once("../lib/ga4php.php");
 
 $ga = new GoogleAuthenticator("/dev/null");
 
@@ -14,4 +14,4 @@ for($i = 0; $i < 10000; $i++) {
 }
 
 echo "Last key: $key\n";
-?>
\ No newline at end of file
+?>
index f1240f7..19eaa36 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-require_once("../lib/lib.php");
+require_once("../lib/ga4php.php");
 
 $ga = new GoogleAuthenticator("/dev/null");
 
index 7b037a4..06736c4 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-require_once("../lib/lib.php");
+require_once("../lib/ga4php.php");
 
 $dbfile = "/tmp/db.sqlite";
 
@@ -14,4 +14,4 @@ system("qrencode -s 6 -o /tmp/file.unittest $url");
 system("eog /tmp/file.unittest");
 unlink("/tmp/file.unittest");
 
-?>
\ No newline at end of file
+?>