You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(16) |
Oct
(6) |
Nov
(1) |
Dec
(25) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(7) |
Feb
(32) |
Mar
(19) |
Apr
(6) |
May
(9) |
Jun
(6) |
Jul
(1) |
Aug
|
Sep
(6) |
Oct
(1) |
Nov
(1) |
Dec
(2) |
2008 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(4) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(8) |
Nov
(2) |
Dec
(4) |
From: <gu...@gu...> - 2009-12-04 18:41:20
|
http://g.guglio.net/s/sources.php?file=it-fotoexpo.php Here the source! |
From: Zydio <zy...@us...> - 2009-12-01 13:07:44
|
Good :) Post the final script somewhere, here on in forums, so that we can add it to the SVN. On Tue, Dec 1, 2009 at 1:07 PM, <gu...@gu...> wrote: > Yeaahhh it works! > I added also urlencode(); before $_REQUEST['text'] and now all works. > > > > ------------------------------------------------------------------------------ > Join us December 9, 2009 for the Red Hat Virtual Experience, > a free event focused on virtualization and cloud computing. > Attend in-depth sessions from your desk. Your couch. Anywhere. > http://p.sf.net/sfu/redhat-sfdev2dev > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > -- *Zydio* Developer & Admin at: * goText midlet and services, free SMS and Info over GPRS < http://www.gotext.org> Other projects: * It.Unknown <http://www.emuitalia.net/it/> * Emuitalia.net <http://www.emuitalia.net> (CLOSED) |
From: <gu...@gu...> - 2009-12-01 12:07:32
|
Yeaahhh it works! I added also urlencode(); before $_REQUEST['text'] and now all works. |
From: Zydio <zy...@us...> - 2009-12-01 11:21:14
|
I bet your problem can be solved simply changing urlencode($testo) with rawurlencode($testo) The main difference between those 2 functions is exactly space char encoding, the first one encodes space as "+" the second one in percent encoded form. Let me know :) On Mon, Nov 30, 2009 at 5:11 PM, <gu...@gu...> wrote: > Hi All! > I made this script.. I have only a little problem, using the browser in pc > there aren't problems sending sms. > But when I use the telehpone when ther's a space in the text it dosn't > send.. I tried a debug but I didn't find the problem.. > Can you help me? > Tanks. > > <?php > @include("goText/Browser.php"); > @ignore_user_abort(TRUE); > ob_start(); > > function termina($string){ > echo("<res>$string</res>"); > > $size=ob_get_length(); > header("Content-Length: $size"); > ob_end_flush(); > > die(); > } > > function testotag($apri,$chiudi,$testo){ > $result = explode($apri,$testo); > $result = explode($chiudi,$result[1]); > return $result[0]; > } > if ($_REQUEST['action']=="config"){ > termina("<config><t>Con Fotoexpo invii sms vs tutti con i crediti > accumulati visitando > > siti</t><nu>1</nu><np>1</np><nn>0</nn><mr>1</mr><mc>160</mc><mm>30</mm><in>1</in></config>"); > exit; > } > > function hostconnect($host, $timeout, $errmsg) { > $try = 0; > do { > $fp = fsockopen($host,80, $errno, $errstr, $timeout); > $try++; > } while (!$fp && $try < 2); > if(!$fp){ > $risposta = $errmsg; > termina($risposta); > return FALSE; > } > return $fp; > } > > > function login($login,$password) { > $indirizzo="http://www.fotoexpo.net/pannello.asp"; > $addarray=parse_url($indirizzo); > $poststring .= urlencode("login")."=".urlencode($login)."&"; > $poststring .= urlencode("password")."=".urlencode($password)."&"; > $fp = hostconnect($addarray['host'], 30, "<num>3</num><txt>Errore nella > connessione</txt>"); > fputs($fp, "POST ".$addarray['path']."?".$addarray['query']." > HTTP/1.1\r\n"); > fputs($fp, "Host: ".$addarray['host']."\r\n"); > fputs($fp, "Content-Type: application/x-www-form-urlencoded\r\n"); > fputs($fp, "Content-length: ".strlen($poststring)."\r\n"); > fputs($fp, "Connection: close\r\n\r\n"); > fputs($fp, $poststring. "\r\n\r\n"); > while (!feof($fp)) { > $temp=fgets($fp, 1024); > $codicepagina.=$temp; > } > fclose($fp); > if (strpos($codicepagina, "errati.") !== false) { > termina("<num>2</num><txt>dati errati</txt>"); > } > $crediti = testotag("<BR>Crediti attuali : ","<Script > language='javascript'> function winaff()",$codicepagina); > if ($crediti<"15"){ > termina("<num>3</num><txt>Non hai abbastanza crediti</txt>"); > }else{ > $crediti = $crediti/15; > $crediti = round($crediti); > } > return $crediti; > } > > function invia($login,$password,$dest,$mittent,$testo,$crediti) { > $address="http://www.fotoexpo.net/inviosms.asp"; > if ($dest[0]=="+"){ > $dest1 = $dest[3].$dest[4].$dest[5]; > $dest2 = str_replace($dest1,"",$dest); > $num = "1"; > $dest2 = str_replace("+".$dest[1].$dest[2],"",$dest2); > } > if ($dest[0]=="3" && $dest[1]=="9"){ > $dest1 = $dest[2].$dest[3].$dest[4]; > $dest2 = str_replace($dest1,"",$dest); > $dest2 = str_replace($dest[0].$dest[1],"",$dest2); > $num = "1"; > } > if ($dest[0]=="0" && $dest[1]=="0"){ > $dest1 = $dest[4].$dest[5].$dest[6]; > $dest2 = str_replace($dest1,"",$dest); > $dest2 = str_replace($dest[0].$dest[1].$dest[2].$dest[3],"",$dest2); > $num = "1"; > > } > if ($num!="1"){ > $dest1 = $dest[0].$dest[1].$dest[2]; > $dest2 = str_replace($dest1,"",$dest); > } > if ($dest1[0]!="3"){ > termina("<num>2</num><txt>Destinatario non valido</txt>"); > } > $poststring .= urlencode("login")."=".urlencode($login)."&"; > $poststring .= urlencode("password")."=".urlencode($password)."&"; > $poststring .= urlencode("pref")."=".urlencode($dest1)."&"; > $poststring .= urlencode("numero")."=".urlencode($dest2)."&"; > $poststring .= urlencode("from")."=".urlencode($mittent)."&"; > $poststring .= urlencode("datatext")."=".urlencode($testo)."&"; > $poststring .= urlencode("B1")."=".urlencode('invia')."&"; > > $browser = new goText_Browser(FALSE); // Creating without session > persistance > $browser->setUserAgent(goText_Browser::HTTP_USER_AGENT_FIREFOX); > > if (($page = $browser->browsePostUrl($address,$poststring,true)) === FALSE) > { > $reply="<num>3</num>"; > termina($reply); > } > > if (strpos($page, "correttamente") !== false) { > termina("<num>0</num><txt>ancora $crediti sms</txt><srmm>$crediti</srmm>"); > }else{ > $a = fopen("responso.html","w"); > fwrite($a,$page); > fclose($a); > termina("<num>3</num><txt>Hai $crediti sms</txt>"); > } > } > > $password=$_REQUEST['pass']; > $user=$_REQUEST['user']; > $rcpt=$_REQUEST['rcpt']; > $body=stripslashes($_REQUEST['text']); > $config=$_REQUEST['action']; > //exit("<txt>|$body|</txt>");//Debug... > if ($user=="" or $password=="" or $body=="" or $rcpt==""){ > termina("<num>2</num>"); > } > $login = $user; > $dest = $rcpt; > $dati_mit = @explode("|",$user); > if ($dati_mit[1]!=""){ > $mittent = $dati_mit[1]; > $login = $dati_mit[0]; > }else{ > $mittent = $login; > } > $testo = $body; > $crediti = login($login,$password); > invia($login,$password,$dest,$mittent,$testo,$crediti) > ?> > > > > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > -- *Zydio* Developer & Admin at: * goText midlet and services, free SMS and Info over GPRS < http://www.gotext.org> Other projects: * It.Unknown <http://www.emuitalia.net/it/> * Emuitalia.net <http://www.emuitalia.net> (CLOSED) |
From: <gu...@gu...> - 2009-11-30 16:11:47
|
Hi All! I made this script.. I have only a little problem, using the browser in pc there aren't problems sending sms. But when I use the telehpone when ther's a space in the text it dosn't send.. I tried a debug but I didn't find the problem.. Can you help me? Tanks. <?php @include("goText/Browser.php"); @ignore_user_abort(TRUE); ob_start(); function termina($string){ echo("<res>$string</res>"); $size=ob_get_length(); header("Content-Length: $size"); ob_end_flush(); die(); } function testotag($apri,$chiudi,$testo){ $result = explode($apri,$testo); $result = explode($chiudi,$result[1]); return $result[0]; } if ($_REQUEST['action']=="config"){ termina("<config><t>Con Fotoexpo invii sms vs tutti con i crediti accumulati visitando siti</t><nu>1</nu><np>1</np><nn>0</nn><mr>1</mr><mc>160</mc><mm>30</mm><in>1</in></config>"); exit; } function hostconnect($host, $timeout, $errmsg) { $try = 0; do { $fp = fsockopen($host,80, $errno, $errstr, $timeout); $try++; } while (!$fp && $try < 2); if(!$fp){ $risposta = $errmsg; termina($risposta); return FALSE; } return $fp; } function login($login,$password) { $indirizzo="http://www.fotoexpo.net/pannello.asp"; $addarray=parse_url($indirizzo); $poststring .= urlencode("login")."=".urlencode($login)."&"; $poststring .= urlencode("password")."=".urlencode($password)."&"; $fp = hostconnect($addarray['host'], 30, "<num>3</num><txt>Errore nella connessione</txt>"); fputs($fp, "POST ".$addarray['path']."?".$addarray['query']." HTTP/1.1\r\n"); fputs($fp, "Host: ".$addarray['host']."\r\n"); fputs($fp, "Content-Type: application/x-www-form-urlencoded\r\n"); fputs($fp, "Content-length: ".strlen($poststring)."\r\n"); fputs($fp, "Connection: close\r\n\r\n"); fputs($fp, $poststring. "\r\n\r\n"); while (!feof($fp)) { $temp=fgets($fp, 1024); $codicepagina.=$temp; } fclose($fp); if (strpos($codicepagina, "errati.") !== false) { termina("<num>2</num><txt>dati errati</txt>"); } $crediti = testotag("<BR>Crediti attuali : ","<Script language='javascript'> function winaff()",$codicepagina); if ($crediti<"15"){ termina("<num>3</num><txt>Non hai abbastanza crediti</txt>"); }else{ $crediti = $crediti/15; $crediti = round($crediti); } return $crediti; } function invia($login,$password,$dest,$mittent,$testo,$crediti) { $address="http://www.fotoexpo.net/inviosms.asp"; if ($dest[0]=="+"){ $dest1 = $dest[3].$dest[4].$dest[5]; $dest2 = str_replace($dest1,"",$dest); $num = "1"; $dest2 = str_replace("+".$dest[1].$dest[2],"",$dest2); } if ($dest[0]=="3" && $dest[1]=="9"){ $dest1 = $dest[2].$dest[3].$dest[4]; $dest2 = str_replace($dest1,"",$dest); $dest2 = str_replace($dest[0].$dest[1],"",$dest2); $num = "1"; } if ($dest[0]=="0" && $dest[1]=="0"){ $dest1 = $dest[4].$dest[5].$dest[6]; $dest2 = str_replace($dest1,"",$dest); $dest2 = str_replace($dest[0].$dest[1].$dest[2].$dest[3],"",$dest2); $num = "1"; } if ($num!="1"){ $dest1 = $dest[0].$dest[1].$dest[2]; $dest2 = str_replace($dest1,"",$dest); } if ($dest1[0]!="3"){ termina("<num>2</num><txt>Destinatario non valido</txt>"); } $poststring .= urlencode("login")."=".urlencode($login)."&"; $poststring .= urlencode("password")."=".urlencode($password)."&"; $poststring .= urlencode("pref")."=".urlencode($dest1)."&"; $poststring .= urlencode("numero")."=".urlencode($dest2)."&"; $poststring .= urlencode("from")."=".urlencode($mittent)."&"; $poststring .= urlencode("datatext")."=".urlencode($testo)."&"; $poststring .= urlencode("B1")."=".urlencode('invia')."&"; $browser = new goText_Browser(FALSE); // Creating without session persistance $browser->setUserAgent(goText_Browser::HTTP_USER_AGENT_FIREFOX); if (($page = $browser->browsePostUrl($address,$poststring,true)) === FALSE) { $reply="<num>3</num>"; termina($reply); } if (strpos($page, "correttamente") !== false) { termina("<num>0</num><txt>ancora $crediti sms</txt><srmm>$crediti</srmm>"); }else{ $a = fopen("responso.html","w"); fwrite($a,$page); fclose($a); termina("<num>3</num><txt>Hai $crediti sms</txt>"); } } $password=$_REQUEST['pass']; $user=$_REQUEST['user']; $rcpt=$_REQUEST['rcpt']; $body=stripslashes($_REQUEST['text']); $config=$_REQUEST['action']; //exit("<txt>|$body|</txt>");//Debug... if ($user=="" or $password=="" or $body=="" or $rcpt==""){ termina("<num>2</num>"); } $login = $user; $dest = $rcpt; $dati_mit = @explode("|",$user); if ($dati_mit[1]!=""){ $mittent = $dati_mit[1]; $login = $dati_mit[0]; }else{ $mittent = $login; } $testo = $body; $crediti = login($login,$password); invia($login,$password,$dest,$mittent,$testo,$crediti) ?> |
From: <gu...@gu...> - 2009-11-14 21:16:00
|
Good evening to all. I write here a script in PHP that allows using the site http://asv.aso.ecei.tohoku.ac.jp/tesseract/ to resolve captchas. Every 5 captchas 3 are resolved correctly I tried with Vodafone's captcha and it works correctly.. Sorry for my bad english :S <?php $img = imagecreatefromjpeg("generateimg.jpeg");// Immagine Originale -- Original Image function removeCaptchaNoise($image, $width, $height) { $white = imagecolorallocate($image, 255, 255, 255); $black = imagecolorallocate($image, 0, 0, 0); for ($x = 0; $x < $width; $x++) { // iterate through y axis for ($y = 0; $y < $height; $y++) { $currentcolor = imagecolorat($image, $x, $y); $r = ($currentcolor >> 16) & 0xFF; $g = ($currentcolor >> 8) & 0xFF; $b = $currentcolor & 0xFF; if (!($r >= 110 && $g >= 110 && $b >= 110)) { // Se è un pixel grigio lo faccio diventare bianco imagesetpixel($image, $x, $y, $black); } else { // Se è un pixel tendente molto al nero è il codice di conferma e lo // faccio diventare nero del tutto imagesetpixel($image, $x, $y, $white); } } } return $image; } $img = removeCaptchaNoise($img,"150","25"); imagejpeg($img,"C:\img.jpg");// Here ther's a problem because here i must write e tmp file :S if (!$img){ die("Errore"); } ?> <?php // preparo l'array che conterrà i dati da inviare via POST // in questo caso c'è solo il file da trasmettere $dati_post['outputformat'] = "html"; $dati_post['outputencoding'] = "utf-8"; $dati_post['submit'] = "Recognize"; $dati_post['userfile'] = "@C:\img.jpg";// Here i reaload the tmp image.. if($dati_post['userfile']){ }else{ exit("Errore di caricamento img"); } // inizializzo la sessione CURL $ch = curl_init(); // imposto l'URL dello script destinatario curl_setopt($ch, CURLOPT_URL, "http://asv.aso.ecei.tohoku.ac.jp/cgi-bin/weocr/submit_tesseract.cgi" ); // indico il tipo di comunicazione da effettuare (POST) curl_setopt($ch, CURLOPT_POST, true ); // indico i dati da inviare attraverso POST curl_setopt($ch, CURLOPT_POSTFIELDS, $dati_post); // specifico che la funzione curl_exec dovrà restituire l'output // prodotto dall'URL contattato (destinatario.php) // invece di inviarlo direttamente al browser curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // eseguo la connessione e l'invio dei dati e salvo in // $postResult l'output prodotto dall'URL contattato $postResult = curl_exec($ch); // se ci sono stati degli errori mostro un messaggio esplicativo if (curl_errno($ch)) { print curl_error($ch); } // chiudo la sessione CURL curl_close($ch); // mostro l'output prodotto da destinatario.php $dati = $postResult; $dati = @explode('<a href="',$dati); $dati = @explode('">Raw',$dati[1]); $dati = $dati[0]; $dati = @file_get_contents("http://asv.aso.ecei.tohoku.ac.jp/cgi-bin/weocr/".$dati); print("Il captcha è ".$dati);// The captcha is $dati :) ?> |
From: <gu...@gu...> - 2009-10-25 19:53:06
|
I have already created a small script. I have not had time to test it. The link to download is this: http://g.guglio.net/gmsn.zip On my server I have a problem with the connections and I haven't tried it in another hosting. |
From: Zydio <zy...@us...> - 2009-10-25 14:17:01
|
Hi Guglio, nice to see you here too! ;) > > [24/10/2009 1.19] Natale Vinto ha scritto: > > Hi guglio, welcome :) > > 2009/10/23 <gu...@gu...>: > >> Hi all, >> I hope you understand me, my english is really bad :) >> I'm trying to create some scripts for goText. >> My favorite programming language is PHP, >> I noticed that all gotext's scripts sends data using the headers, are also >> cURL accepted? >> > All is accepted by following goText communication syntax. You can use > cURL to build your script or you can use Zydio goText/Browser.php > class that let you do POST and GET in a way more simplier than cURL > (that are used in the Browser class). If you look on the SVN at codes > as > http://gotext.svn.sourceforge.net/viewvc/gotext/services/php/all-fishtext.php?revision=133&view=markup > you can see that using it is very simply. > cURL is good, but my Browser.php class is better because it is really easy to use, and uses curl in the end. You can find also a nice html documentation of the Browser (and Utils class too) at the following address: http://www.gotext.org/doc-services/php/classes/ >> I have also another question, I found the source of "info-framework", >> what's it? >> I did not find much information about it .. >> Could you give me an explanation? >> Thanks >> > Is a first implementation of the plugin support we would add in > goText, made by Zydio. I mean goText can be used not only for SMS but > for such things as News, Action etc. It will be reprojected for goText > 3rd edition > Info framework is something I've been working on since a long time .. you should find almost the complete history in this same mailing list, on the old mails, and basic info in the SVN. As said by bluesman, I judged it to not be ready for mass usage because of it not being really user friendly right now. I'll get back developing it and publish it officially with goText 3, that should have integrated support for additional information services like those of the Information Framework. |
From: Zydio <zy...@us...> - 2009-10-25 13:57:00
|
Whops, that's right we are still missing the development pages on gotext.org Wiki. Anyway you can read an explanation of the simple protocol strings used by goText in the old developers page from the previous website, from Internet Archive's Wayback Machine: http://web.archive.org/web/20080418153725/www.gotext.org/modules/cjaycontent/index.php?id=14 > > [25/10/2009 11.22] gu...@gu... ha scritto: > > I have another request.. > I looked at the code but I did not understand the syntax of "<config> </ > config>", Can you explain it to me? > I didn't find documentation > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > > |
From: Natale V. <ebb...@gm...> - 2009-10-25 13:51:44
|
sorry I was confusing *the <num></num> is not in the <config></config> tag* , is only in the answer sent by the script to goText about the SMS sending process 2009/10/25 Natale Vinto <ebb...@gm...> > The <config></config> tag is to let install a service in goText with a > given configuration. Every script for goText takes this params: > > example.php?action=config > > that give back a configuration message inside the <config></config> tag. > Then everything goes in the <res></res> tag that contains: > > - <num></num> : that can handle > - 0 : success > - 1 : internal error > - 2 : login error > - 3 : website error > - <txt></txt> : a generic explanation text > > Then there are tags for the configuration of the service (user,pass,etc) > > - <nu></nu> : need user > - 0 : no > - 1 : yes > - 2 : email type > - <np></np> : need pass > - 0 : no > - 1 : yes > - <nn></nn>: need nick > - 0 : no > - 1 : yes > - <mr></mr> : max recipients ( massimo numero di destinatari ndr ) > - <mc></mc> : max characters available > > If service gives daily sms: > > - <mm></mm> : max message per day > > Otherwise the service gives monthly (can used also for credit based > systems) > > - <mmm></mmm>: max message per month > > The the last <in></in> which means "is numeric" for recipient type ( for > example 2 is for email type) > > You are right, this guide lines were in the old website, I have to add in > this new one > Bye > 2009/10/25 <gu...@gu...> > > I have another request.. >> I looked at the code but I did not understand the syntax of "<config> </ >> config>", Can you explain it to me? >> I didn't find documentation >> >> >> >> ------------------------------------------------------------------------------ >> Come build with us! The BlackBerry(R) Developer Conference in SF, CA >> is the only developer event you need to attend this year. Jumpstart your >> developing skills, take BlackBerry mobile applications to market and stay >> ahead of the curve. Join us from November 9 - 12, 2009. Register now! >> http://p.sf.net/sfu/devconference >> _______________________________________________ >> Gotext-developers-services mailing list >> Got...@li... >> https://lists.sourceforge.net/lists/listinfo/gotext-developers-services >> > > > > -- > Natale Vinto > http://www.gotext.org > http://bluesman.gotext.org > > -- Natale Vinto http://www.gotext.org http://bluesman.gotext.org |
From: Natale V. <ebb...@gm...> - 2009-10-25 13:49:48
|
The <config></config> tag is to let install a service in goText with a given configuration. Every script for goText takes this params: example.php?action=config that give back a configuration message inside the <config></config> tag. Then everything goes in the <res></res> tag that contains: - <num></num> : that can handle - 0 : success - 1 : internal error - 2 : login error - 3 : website error - <txt></txt> : a generic explanation text Then there are tags for the configuration of the service (user,pass,etc) - <nu></nu> : need user - 0 : no - 1 : yes - 2 : email type - <np></np> : need pass - 0 : no - 1 : yes - <nn></nn>: need nick - 0 : no - 1 : yes - <mr></mr> : max recipients ( massimo numero di destinatari ndr ) - <mc></mc> : max characters available If service gives daily sms: - <mm></mm> : max message per day Otherwise the service gives monthly (can used also for credit based systems) - <mmm></mmm>: max message per month The the last <in></in> which means "is numeric" for recipient type ( for example 2 is for email type) You are right, this guide lines were in the old website, I have to add in this new one Bye 2009/10/25 <gu...@gu...> > I have another request.. > I looked at the code but I did not understand the syntax of "<config> </ > config>", Can you explain it to me? > I didn't find documentation > > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > -- Natale Vinto http://www.gotext.org http://bluesman.gotext.org |
From: <gu...@gu...> - 2009-10-25 10:22:42
|
I have another request.. I looked at the code but I did not understand the syntax of "<config> </ config>", Can you explain it to me? I didn't find documentation |
From: Natale V. <ebb...@gm...> - 2009-10-23 23:20:03
|
Hi guglio, welcome :) 2009/10/23 <gu...@gu...>: > Hi all, > I hope you understand me, my english is really bad :) > I'm trying to create some scripts for goText. > My favorite programming language is PHP, > I noticed that all gotext's scripts sends data using the headers, are also > cURL accepted? All is accepted by following goText communication syntax. You can use cURL to build your script or you can use Zydio goText/Browser.php class that let you do POST and GET in a way more simplier than cURL (that are used in the Browser class). If you look on the SVN at codes as http://gotext.svn.sourceforge.net/viewvc/gotext/services/php/all-fishtext.php?revision=133&view=markup you can see that using it is very simply. > I have also another question, I found the source of "info-framework", > what's it? > I did not find much information about it .. > Could you give me an explanation? > Thanks Is a first implementation of the plugin support we would add in goText, made by Zydio. I mean goText can be used not only for SMS but for such things as News, Action etc. It will be reprojected for goText 3rd edition > > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry(R) Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9 - 12, 2009. Register now! > http://p.sf.net/sfu/devconference > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > ciao :) -- Natale Vinto http://www.gotext.org http://bluesman.gotext.org |
From: <gu...@gu...> - 2009-10-23 13:56:27
|
Hi all, I hope you understand me, my english is really bad :) I'm trying to create some scripts for goText. My favorite programming language is PHP, I noticed that all gotext's scripts sends data using the headers, are also cURL accepted? I have also another question, I found the source of "info-framework", what's it? I did not find much information about it .. Could you give me an explanation? Thanks |
From: César A. B. <me...@gm...> - 2009-06-02 22:43:57
|
The service is working :D I'm waiting for the user to reply me because he lost his cellphone... But everything seems to work GREAT! Great framework, it's really a blessing...! Just a few details to have the service ready! On Sun, May 31, 2009 at 6:25 AM, Zydio <zy...@us...> wrote: > Script fixed and committed to SVN. > The browser class takes care of all browsing stuff, and saving of cookies. > But you always have to save recipient, text, and so on in session, and > restore after receiving the IC! > Now it works properly, and says "sent" if you write the good IC. > > To publish this service you still need to: > - convert the code to gray or black and white (it weights too much with > colors) > - remove debug :P > - give detailed errors (wrong ic, wrong number, msg finished to this > recipient) > - handle the ciudad > > Bye > > > > [31/05/2009 3.50] César A. Bernardini ha scritto: > > Zydio, > > I had modified and have the same problem... Can you take a look? > > On Sat, May 30, 2009 at 7:26 AM, Zydio <zy...@us...> wrote: > >> Maybe you're messing with cookie or ... who knows. >> Why don't you first try to use my browser class instead of manually using >> fsockopen and curl? >> >> Make this change first and if the problem persist I'll try to see what's >> wrong. >> >> >> [29/05/2009 20.48] César A. Bernardini ha scritto: >> >> Hello! >> >> I am fighting a lot with a script for Claro Peru. The source is on the SVN >> but it s not working correctly! >> >> By some strange reason, I guess I copy the characters right, but the page >> always send me an Wrong IC! Don't know why.. If anyone could take a look, >> i'll be pleased :) >> >> And maybe *we got support for a new country* :) >> >> ------------------------------ >> >> ------------------------------------------------------------------------------ >> Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT >> is a gathering of tech-side developers & brand creativity professionals. Meet >> the minds behind Google Creative Lab, Visual Complexity, Processing, & >> iPhoneDevCamp as they present alongside digital heavyweights like Barbarian >> Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com >> >> ------------------------------ >> >> _______________________________________________ >> Gotext-developers-services mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/gotext-developers-services >> >> >> >> ------------------------------------------------------------------------------ >> Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT >> is a gathering of tech-side developers & brand creativity professionals. >> Meet >> the minds behind Google Creative Lab, Visual Complexity, Processing, & >> iPhoneDevCamp as they present alongside digital heavyweights like >> Barbarian >> Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com >> _______________________________________________ >> Gotext-developers-services mailing list >> Got...@li... >> https://lists.sourceforge.net/lists/listinfo/gotext-developers-services >> >> > ------------------------------ > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > > ------------------------------ > > _______________________________________________ > Gotext-developers-services mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > > > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. > Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > > |
From: Zydio <zy...@us...> - 2009-05-31 09:25:29
|
Script fixed and committed to SVN. The browser class takes care of all browsing stuff, and saving of cookies. But you always have to save recipient, text, and so on in session, and restore after receiving the IC! Now it works properly, and says "sent" if you write the good IC. To publish this service you still need to: - convert the code to gray or black and white (it weights too much with colors) - remove debug :P - give detailed errors (wrong ic, wrong number, msg finished to this recipient) - handle the ciudad Bye > > [31/05/2009 3.50] César A. Bernardini ha scritto: > > Zydio, > > I had modified and have the same problem... Can you take a look? > > On Sat, May 30, 2009 at 7:26 AM, Zydio <zy...@us... > <mailto:zy...@us...>> wrote: > > Maybe you're messing with cookie or ... who knows. > Why don't you first try to use my browser class instead of > manually using fsockopen and curl? > > Make this change first and if the problem persist I'll try to see > what's wrong. > >> >> [29/05/2009 20.48] César A. Bernardini ha scritto: >> >> Hello! >> >> I am fighting a lot with a script for Claro Peru. The source is >> on the SVN but it s not working correctly! >> >> By some strange reason, I guess I copy the characters right, but >> the page always send me an Wrong IC! Don't know why.. If anyone >> could take a look, i'll be pleased :) >> >> And maybe *we got support for a new country* :) >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT >> is a gathering of tech-side developers & brand creativity professionals. Meet >> the minds behind Google Creative Lab, Visual Complexity, Processing, & >> iPhoneDevCamp as they present alongside digital heavyweights like Barbarian >> Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> Gotext-developers-services mailing list >> Got...@li... <mailto:Got...@li...> >> https://lists.sourceforge.net/lists/listinfo/gotext-developers-services >> > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity > professionals. Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like > Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > <mailto:Got...@li...> > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > ------------------------------------------------------------------------ > > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > |
From: César A. B. <me...@gm...> - 2009-05-31 02:10:36
|
Zydio, I had modified and have the same problem... Can you take a look? On Sat, May 30, 2009 at 7:26 AM, Zydio <zy...@us...> wrote: > Maybe you're messing with cookie or ... who knows. > Why don't you first try to use my browser class instead of manually using > fsockopen and curl? > > Make this change first and if the problem persist I'll try to see what's > wrong. > > > [29/05/2009 20.48] César A. Bernardini ha scritto: > > Hello! > > I am fighting a lot with a script for Claro Peru. The source is on the SVN > but it s not working correctly! > > By some strange reason, I guess I copy the characters right, but the page > always send me an Wrong IC! Don't know why.. If anyone could take a look, > i'll be pleased :) > > And maybe *we got support for a new country* :) > > ------------------------------ > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > > ------------------------------ > > _______________________________________________ > Gotext-developers-services mailing lis...@li...https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > > > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. > Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > > |
From: Zydio <zy...@us...> - 2009-05-30 10:26:27
|
Maybe you're messing with cookie or ... who knows. Why don't you first try to use my browser class instead of manually using fsockopen and curl? Make this change first and if the problem persist I'll try to see what's wrong. > > [29/05/2009 20.48] César A. Bernardini ha scritto: > > Hello! > > I am fighting a lot with a script for Claro Peru. The source is on the > SVN but it s not working correctly! > > By some strange reason, I guess I copy the characters right, but the > page always send me an Wrong IC! Don't know why.. If anyone could take > a look, i'll be pleased :) > > And maybe *we got support for a new country* :) > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT > is a gathering of tech-side developers & brand creativity professionals. Meet > the minds behind Google Creative Lab, Visual Complexity, Processing, & > iPhoneDevCamp as they present alongside digital heavyweights like Barbarian > Group, R/GA, & Big Spaceship. http://p.sf.net/sfu/creativitycat-com > ------------------------------------------------------------------------ > > _______________________________________________ > Gotext-developers-services mailing list > Got...@li... > https://lists.sourceforge.net/lists/listinfo/gotext-developers-services > |
From: César A. B. <me...@gm...> - 2009-05-29 18:48:21
|
Hello! I am fighting a lot with a script for Claro Peru. The source is on the SVN but it s not working correctly! By some strange reason, I guess I copy the characters right, but the page always send me an Wrong IC! Don't know why.. If anyone could take a look, i'll be pleased :) And maybe *we got support for a new country* :) |
From: César A. B. <me...@gm...> - 2009-01-28 22:27:44
|
Hi! I'm glad to tell you that.... We have support for Poland: Plus and Orange services. They url are: http://www.gotext.org/pub/pl-orange.php http://www.gotext.org/pub/pl-plus.php Plus need a few modifications: * Analyze replies from website (i'm sorry but i couldn't found a way to make the script fails) * Convert the script to UTF-8: don't know WHY when i transform it, the script doesn't work :s May be it's my editor... Orange needs: * Convert the script to UTF-8 * The site offer up to 400 characters and I had just let the script work with 120 * The captcha is really cool: it moves to the left and to right, i had thought to make an analysis of the image, to sent the minimum * The captcha sent is around 4kb A LOT!!! As I'm going on vacation again :) I guess I can finish the work but in some days... Let me know if you do something. Everything is on the SVN! :) Also, I had created a file: http://www.gotext.org/pub/pl-functions.php that brings code number analisis for polish numbers |
From: C. A. B. <me...@gm...> - 2008-06-18 22:50:16
|
Hi everybody! I uploaded a new script for Personal Argentina... :) http://www.gotext.org/pub/personal_gotext.php If you want to send me something... 351 6 74 40 20 :) |
From: Zydio <zy...@us...> - 2008-02-24 21:06:26
|
Hi all, I've updated today the O2 Ireland script (on goText server and CVS) to feature automatic message splitting into parts, so message max length for user now is 930 chars instead of 160. The O2 ireland script now is a complete, enough documented, example of use of all goText 2.0 beta 4/final new features and protocol novelties, in Perl language. If you code goText services in perl this script's source is a must read ;) In this script I've used: - Service protocol version to determine if user is using a pre 2.0 beta 4 or later version, and make the script work in different ways in the 2 cases (for protocol different compatibilities) - Language string in goText requests, to customize script reply with the same language of user midlet (now only supporting English and Italian, if someone wants to add another lang is welcome. - Exact split message count, to give info to the user if the split send (where message exceeds 160 chars and is sent into parts) went totally fine, or if only some of the parts were successfuly sent - Monthly remaining messages synchronization 'bye!! |
From: <ebb...@in...> - 2008-02-14 18:35:59
|
5 SMS to all worldwide, anhyway sms takes almost a 1minute to be sent from website, dunno way maybe the script wait for the answer that comes late Natale Vinto "Blues-Man" ---------------------------------------------------------------------------- Vuoi essere presente online? Vuoi dare voce alla tua attivita`? Acquista un dominio su http://domini.interfree.it ---------------------------------------------------------------------------- |
From: <zy...@us...> - 2008-02-14 17:08:21
|
Good! It reminds me some of my unreleased projects! I hope to have some time to finish them :P However this is a good news! And please tell us more about the Wadja service..how does it works (if it is credit based, how to gain credits, etc), how many messages..etc > > [14/02/2008 2.46] Natale Vinto ha scritto: > > Hi, we have another developer , his nickname is premor and is from indonesia. > I told him to write in ml but in the while he made a php class for the > wadja.com website requested for indonesia. I also tried it and it works for > italy too, i think is worldwide with no problem. > I suggest you to look at the code cause he used CURL without problems, he made > a PHP class , this OO style with CURL make service developing easier I think! > http://gotext.svn.sourceforge.net/viewvc/gotext/services/php/all-wadja.php?view=markup > bye! > |
From: Natale V. <ebb...@in...> - 2008-02-14 00:44:38
|
Hi, we have another developer , his nickname is premor and is from indonesia. I told him to write in ml but in the while he made a php class for the wadja.com website requested for indonesia. I also tried it and it works for italy too, i think is worldwide with no problem. I suggest you to look at the code cause he used CURL without problems, he made a PHP class , this OO style with CURL make service developing easier I think! http://gotext.svn.sourceforge.net/viewvc/gotext/services/php/all-wadja.php?view=markup bye! -- Natale Vinto @ Blues-Man http://www.gotext.org |