Changeset 11459

Show
Ignore:
Timestamp:
08/02/07 09:24:18 (1 year ago)
Author:
juhana
Message:

Moved contactgrabber libraries under lib/

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/midcom/com.magnettechnologies.contactgrabber/config/manifest.inc

    r11454 r11459  
    1515'package.xml' => array 
    1616( 
     17    'license' => 'GPL', 
    1718    'summary' => 'Extensive package that can be used to grab user contact lists from the most important email and social networking sites: Rediff, Orkut, MySpace, Yahoo, Gmail and MSN Messenger.', 
    1819    'description' => 'Extensive package that can be used to grab user contact lists from the most important email and social networking sites: Rediff, Orkut, MySpace, Yahoo, Gmail and MSN Messenger.', 
  • trunk/midcom/com.magnettechnologies.contactgrabber/contactgrabber.php

    r11454 r11459  
    8989            if($_POST['domain']=="rediff.com") 
    9090            { 
    91                 require("rediff/grabRediff.class.php"); 
     91                require("lib/rediff/grabRediff.class.php"); 
    9292                $this->_email = $_POST['username']; 
    9393                $this->resource_obj = new rediff(); 
     
    9696            if($_POST['domain']=="gmail.com") 
    9797            { 
    98                 require("gmail/libgmailer.php"); 
     98                require("lib/gmail/libgmailer.php"); 
    9999                $this->_email = $_POST['username']."@".$_POST['domain']; 
    100100                $this->_resource_obj = new GMailer(); 
     
    103103            if($_POST['domain']=="orkut.com") 
    104104            { 
    105                 require("orkut/grabOrkut.class.php"); 
     105                require("lib/orkut/grabOrkut.class.php"); 
    106106                $this->_email = $_POST['username']; 
    107107                $this->_resource_obj = new orkut(); 
     
    110110            if($_POST['domain']=="myspace.com") 
    111111            { 
    112                 require("myspace/grabMyspace.class.php"); 
     112                require("lib/myspace/grabMyspace.class.php"); 
    113113                $this->_email = $_POST['username']; 
    114114                $this->_resource_obj = new myspace(); 
     
    117117            if($_POST['domain']=="yahoo.com") 
    118118            { 
    119                 require("yahoo/class.GrabYahoo.php"); 
     119                require("lib/yahoo/class.GrabYahoo.php"); 
    120120                $this->_email = $_POST['username']; 
    121121                $this->_resource_obj = new yahoo(); 
     
    124124            if($_POST['domain']=="hotmail.com") 
    125125            { 
    126                 require("hotmail/msn_contact_grab.class.php"); 
     126                require("lib/hotmail/msn_contact_grab.class.php"); 
    127127                $this->_email = $_POST['username']."@".$_POST['domain']; 
    128128                $this->_resource_obj = new hotmail();