AGB  ·  Datenschutz  ·  Impressum  







Anmelden
Nützliche Links
Registrieren
Zurück Delphi-PRAXiS Projekte Skype Indicator inkl. PHPBB Mod!
Thema durchsuchen
Ansicht
Themen-Optionen

Skype Indicator inkl. PHPBB Mod!

Ein Thema von Kidix · begonnen am 7. Mai 2005 · letzter Beitrag vom 14. Mai 2005
Antwort Antwort
Seite 1 von 2  1 2      
Kidix
Registriert seit: 14. Jan 2005
Hallo,


man kennt es ja von ICQ und Co.! Dort kann man seinen Status auch auf einer Website anzeigen lassen.
Für Skype gab es diese Möglichkeit bisher nicht. Derzeit gibt es aber schon mehrere Varianten, dieses zu ermöglichen.

Ein Programm habe ich geschrieben. Es nennt sich IndiC.

Man muss es nur herunterladen und starten.
Es müssen jetzt nur noch alle erforderlichen Daten eingegeben und IndiC neugestartet werden. (Natürlich muss Skype an sein )
Ab jetzt kannst du deinen Status unter

http://www.skypeindicator.de.vu/src/...?user=USERNAME anzeigen lassen. Solltest du ein Image in deine Private Homepage einbauen wollen kannst du dies so machen:

<img src=http://kidix.ki.funpic.de/src/status.php?user=USERNAME border=0>

Der PHPBB MOD sieht so aus:

Code:
######################################################## 
## MOD Title:      Skype Indicator Mod IndiCM
##
## MOD Description:   Dieser Mod zeigt euch den Status von Skype an. Ihr benötigt lediglich noch IndiC
##          um den Status zu erkennen!
## MOD Version:      1.0.0
## 
## Installation Level:   Easy
## Installation Time:   15 Minutes
##
## Files To Edit:   10
##   viewtopic.php
##   includes/usercp_register.php
##   includes/functions_validate.php
##   includes/usercp_avatar.php
##   includes/usercp_viewprofile.php
##   
##   language/lang_english/lang_main.php
##   templates/subSilver/subSilver.cfg
##   templates/subSilver/profile_view_body.tpl
##   templates/subSilver/profile_add_body.tpl
##   templates/subSilver/viewtopic_body.tpl
##
############################################################## 
## Bevor du hier irgendwas im Forum änders, mache bitte Updates!
##############################################################

#-----[ SQL ]------------------------------------------ 

ALTER TABLE `phpbb_users` ADD `user_skype` VARCHAR( 255 ) ;
ALTER TABLE `phpbb_users` ADD `user_skype1` VARCHAR( 255 ) ;


#-----[ OPEN ]------------------------------------------ 
#
viewtopic.php


#-----[ FIND ]------------------------------------------ 
#
$sql = "SELECT u.username, u.user_id,


#-----[ IN-LINE FIND ]------------------------------------------ 
#
u.user_yim,


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 u.user_skype, u.user_skype1,


#-----[ FIND ]------------------------------------------ 
#
      $yim = ( $postrow[$i]['user_yim'] ) ? '[url="http://edit.yahoo.com/config/send_webmesg?.target=' . $postrow[$i]['user_yim'] . '&amp;.src=pg"]' . $lang['YIM'] . '[/url]' : '';


#-----[ AFTER, ADD ]------------------------------------------ 
#
      $skype_img = ( $postrow[$i]['user_skype'] ) ? '[url="callto://' . $postrow[$i]['user_skype'] . '/"][img]http://kidix.ki.funpic.de/src/status.php?user=' . $postrow[$i]['user_skype1'] . '[/img][/url]' : '';
      $skype = ( $postrow[$i]['user_skype'] ) ? '[url="callto://' . $postrow[$i]['user_skype'] . '/"]' . $lang['SKYPE'] . '[/url]' : '';


#-----[ FIND ]------------------------------------------ 
#
      $yim_img = '';
      $yim = '';


#-----[ AFTER, ADD ]------------------------------------------ 
#
      $skype_img = '';
      $skype = '';
      $skype1 = '';


#-----[ FIND ]------------------------------------------ 
#
      'YIM_IMG' => $yim_img,
      'YIM' => $yim,


#-----[ AFTER, ADD ]------------------------------------------ 
#
      'SKYPE_IMG' => $skype_img,
      'SKYPE' => $skype,
      'SKYPE1' => $skype1,


#-----[ OPEN ]------------------------------------------ 

includes/usercp_register.php


#-----[ FIND ]------------------------------------------ 

$strip_var_list = array('username' => 'username'


#-----[ IN-LINE FIND ]------------------------------------------ 
#
'yim' => 'yim',


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 'skype' => 'skype', 'skype1' => 'skype1',



#-----[ FIND ]------------------------------------------ 
#
validate_optional_fields($icq,


#-----[ IN-LINE FIND ]------------------------------------------ 
#
$yim,


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 $skype, $skype1,


#-----[ FIND ]------------------------------------------ 
#
      $yim = stripslashes($yim);


#-----[ AFTER, ADD ]------------------------------------------ 
#
      $skype = stripslashes($skype);
      $skype1 = stripslashes($skype1);


#-----[ FIND ]------------------------------------------ 
#
$sql = "UPDATE " . USERS_TABLE . "
            SET " . $username_sql . $passwd_sql


#-----[ IN-LINE FIND ]------------------------------------------ 
#
user_msnm = '" . str_replace("\'", "''", $msn) . "',


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 user_skype = '" . str_replace("\'", "''", $skype) . "', user_skype1 = '" . str_replace("\'", "''", $skype1) . "',


#-----[ FIND ]------------------------------------------ 
#
$sql = "INSERT INTO " . USERS_TABLE . "  (user_id, username


#-----[ IN-LINE FIND ]------------------------------------------ 
#
user_msnm,


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 user_skype,user_skype1,


#-----[ FIND ]------------------------------------------ 
#
VALUES ($user_id, '" . str_replace("\'", "''", $username)


#-----[ IN-LINE FIND ]------------------------------------------ 
#
'" . str_replace("\'", "''", $msn) . "',


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 '" . str_replace("\'", "''", $skype) . "', '" . str_replace("\'", "''", $skype1) . "',


#-----[ FIND ]------------------------------------------ 
#
               'YIM' => $yim,


#-----[ AFTER, ADD ]------------------------------------------ 
#
               'SKYPE' => $skype, 'SKYPE1' => $skype1,


#-----[ FIND ]------------------------------------------ 
#
   $yim = stripslashes($yim);


#-----[ AFTER, ADD ]------------------------------------------ 
#
   $skype = stripslashes($skype);
   $skype1 = stripslashes($skype1);


#-----[ FIND ]------------------------------------------ 
#
   $yim = $userdata['user_yim'];


#-----[ AFTER, ADD ]------------------------------------------ 
#
   $skype = $userdata['user_skype'];
   $skype1 = $userdata['user_skype1'];


#-----[ FIND ]------------------------------------------ 
#
display_avatar_gallery($mode, $avatar_category,


#-----[ IN-LINE FIND ]------------------------------------------ 
#
$yim,


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 $skype,$skype1,


#-----[ FIND ]------------------------------------------ 
#
      'YIM' => $yim,


#-----[ AFTER, ADD ]------------------------------------------ 
#
      'SKYPE' => $skype, 'SKYPE1' => $skype1,


#-----[ FIND ]------------------------------------------ 
#
      'L_YAHOO' => $lang['YIM'],


#-----[ AFTER, ADD ]------------------------------------------ 
#
      'L_SKYPE' => $lang['SKYPE'], 'L_SKYPE1' => $lang['SKYPE1'],


#-----[ OPEN ]------------------------------------------ 
#
includes/functions_validate.php


#-----[ FIND ]------------------------------------------ 
#
function validate_optional_fields(&$icq,


#-----[ IN-LINE FIND ]------------------------------------------ 
#
&$yim,


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 &$skype, &$skype1,


#-----[ FIND ]------------------------------------------ 
#
$check_var_length = array('aim'


#-----[ IN-LINE FIND ]------------------------------------------ 
#
'yim',


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 'skype','skype1',


#-----[ OPEN ]------------------------------------------ 
#
includes/usercp_avatar.php


#-----[ FIND ]------------------------------------------ 
#
function display_avatar_gallery($mode, &$category,


#-----[ IN-LINE FIND ]------------------------------------------ 
#
&$yim,


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 &$skype, &$skype1,


#-----[ FIND ]------------------------------------------ 
#
$params = array('coppa', 'user_id', 'username',


#-----[ IN-LINE FIND ]------------------------------------------ 
#
'yim',


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 'skype','skype1',


#-----[ OPEN ]------------------------------------------ 
#
includes/usercp_viewprofile.php


#-----[ FIND ]------------------------------------------ 
#
$yim = ( $profiledata['user_yim'] ) ? '[url="http://edit.yahoo.com/config/send_webmesg?.target=' . $profiledata['user_yim'] . '&amp;.src=pg"]' . $lang['YIM'] . '[/url]' : '';


#-----[ AFTER, ADD ]------------------------------------------ 
#
$skype_img = ( $profiledata['user_skype'] ) ? '[url="callto://' . $profiledata['user_skype'] . '/"][img]http://kidix.ki.funpic.de/src/status.php?user=' . $profiledata['user_skype1'] . '[/img][/url]' : '';
$skype = ( $profiledata['user_skype'] ) ? '[url="callto://' . $profiledata['user_skype'] . '/"]' . $lang['SKYPE'] . '[/url]' : '';


#-----[ FIND ]------------------------------------------ 
#
   'YIM_IMG' => $yim_img,
   'YIM' => $yim,


#-----[ AFTER, ADD ]------------------------------------------ 
#
   'SKYPE_IMG' => $skype_img,
   'SKYPE' => $skype,
   'SKYPE1' => $skype1,


#-----[ FIND ]------------------------------------------ 
#
   'L_YAHOO' => $lang['YIM'],


#-----[ AFTER, ADD ]------------------------------------------ 
#
   'L_SKYPE' => $lang['SKYPE'],'L_SKYPE1' => $lang['SKYPE1'],


#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/profile_add_body.tpl


#-----[ FIND ]------------------------------------------ 
#
   <tr>
     <td class="row1"><span class="gen">{L_YAHOO}:</span></td>
     <td class="row2">
      <input type="text" class="post"style="width: 150px" name="yim" size="20" maxlength="255" value="{YIM}" />
     </td>
   </tr>


#-----[ AFTER, ADD ]------------------------------------------ 
#
   <tr>
     <td class="row1"><span class="gen">{L_SKYPE} / {L_SKYPE1}:</span></td>
     <td class="row2">
      <input type="text" class="post"style="width: 150px" name="skype" size="20" maxlength="255" value="{SKYPE}" /> <input type="text" class="post"style="width: 150px" name="skype1" size="20" maxlength="255" value="{SKYPE1}" />
     </td>
   </tr>


#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/profile_view_body.tpl


#-----[ FIND ]------------------------------------------ 
#
      <tr>
        <td valign="middle" nowrap="nowrap" align="right"><span class="gen">{L_YAHOO}:</span></td>
        <td class="row1" valign="middle"><span class="gen">{YIM_IMG}</span></td>
      </tr>


#-----[ AFTER, ADD ]------------------------------------------ 
#
      <tr>
        <td valign="middle" nowrap="nowrap" align="right"><span class="gen">{L_SKYPE} / {L_SKYPE1}:</span></td>
        <td class="row1" valign="middle"><span class="gen">{SKYPE_IMG}</span></td>
      </tr>




#-----[ OPEN ]------------------------------------------ 
#
templates/subSilver/viewtopic_body.tpl


#-----[ FIND ]------------------------------------------ 
#
<td valign="middle" nowrap="nowrap">{postrow.PROFILE_IMG}


#-----[ IN-LINE FIND ]------------------------------------------ 
#
{postrow.MSN_IMG}


#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
 {postrow.SKYPE_IMG}




#-----[ OPEN ]------------------------------------------ 
#
language/lang_german/lang_main.php


#-----[ FIND ]------------------------------------------ 
#
$lang['YIM'] = 'Yahoo Messenger';


#-----[ AFTER, ADD ]------------------------------------------ 
#
$lang['SKYPE'] = 'Skype Name';
$lang['SKYPE1'] = 'IndiCator Name';


#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 

# EoM
Gruß

Kidix
 
Benutzerbild von Pr0g
Pr0g

 
Delphi 7 Personal
 
#2
  Alt 7. Mai 2005, 19:11
Und veräts du auch, wo man sich das "Programm" runterladen kann
  Mit Zitat antworten Zitat
Benutzerbild von Aenogym
Aenogym

 
Delphi 7 Enterprise
 
#3
  Alt 7. Mai 2005, 19:43
Zitat von Pr0g:
Und veräts du auch, wo man sich das "Programm" runterladen kann
ich denke mal, bei http://www.skypeindicator.de.vu

aenogym

edit: huch, doch nicht
Steffen Rieke
  Mit Zitat antworten Zitat
Kidix

 
Delphi 4 Standard
 
#4
  Alt 7. Mai 2005, 19:45
Hier:

http://kidix.ki.funpic.de/download.htm (IndiC)

Direktes Verlinken geht nicht, datei ist ca 700 kb groß!

Kidix
  Mit Zitat antworten Zitat
Benutzerbild von Meflin
Meflin
 
#5
  Alt 7. Mai 2005, 20:15
nur mal sone dumme frage: warum lande ich bei yahoo, wenn ich die webseite besuchen will?

macht irgendiw eso den eindruck als wolltest du den eindruck erwecken dein service sei von yahoo...
oder noch schlimmer es ist eine phishing webseite

Leo S.
  Mit Zitat antworten Zitat
Benutzerbild von Ultimator
Ultimator

 
FreePascal / Lazarus
 
#6
  Alt 7. Mai 2005, 20:23
Zitat von Meflin:
nur mal sone dumme frage: warum lande ich bei yahoo, wenn ich die webseite besuchen will?

macht irgendiw eso den eindruck als wolltest du den eindruck erwecken dein service sei von yahoo...
oder noch schlimmer es ist eine phishing webseite
Bei mir besteht die Seite aus nichts als 2 Links (IndiC und Easy Splitter).

//edit Ups. Das scheint die Yahoo-Seite zu sein, auch von den Link-Zielen her kommts mir nich vor wie ne Phishing-Seite
Julian J. Pracht
  Mit Zitat antworten Zitat
Benutzerbild von toms
toms

 
Delphi XE Professional
 
#7
  Alt 7. Mai 2005, 20:23
Zitat von Kidix:
Direktes Verlinken geht nicht, datei ist ca 700 kb groß!
Geht schon: Rechte Maustaste, speichern unter...
http://kidix.ki.funpic.de/files/indic.zip
Thomas
  Mit Zitat antworten Zitat
Benutzerbild von Meflin
Meflin
 
#8
  Alt 7. Mai 2005, 20:24
Zitat von Ultimator:
Zitat von Meflin:
nur mal sone dumme frage: warum lande ich bei yahoo, wenn ich die webseite besuchen will?

macht irgendiw eso den eindruck als wolltest du den eindruck erwecken dein service sei von yahoo...
oder noch schlimmer es ist eine phishing webseite
Bei mir besteht die Seite aus nichts als 2 Links (IndiC und Easy Splitter).
ich mein die skypeindicator.de.vu

Leo S.
  Mit Zitat antworten Zitat
Benutzerbild von Assun
Assun

 
Delphi 2005 Personal
 
#9
  Alt 7. Mai 2005, 20:26
Meflin meint skypeindicator.de.vu
Sebastian Dietrich
  Mit Zitat antworten Zitat
Kidix

 
Delphi 4 Standard
 
#10
  Alt 7. Mai 2005, 20:38
Das Ihr die Seite nicht über www.skypeindicator.de.vu nicht aufrufen könnt liegt am REFERER Block!
Die de.vu Domain ist nur für den Statusgeber da. (Deshalb auch die Umleitung auf yahoo.de)

Gruß

Kidix
  Mit Zitat antworten Zitat
Antwort Antwort
Seite 1 von 2  1 2      


Forumregeln

Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are aus

Gehe zu:

Impressum · AGB · Datenschutz · Nach oben
Alle Zeitangaben in WEZ +1. Es ist jetzt 18:43 Uhr.
Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz