I'm trying to pull the data from
tribe.net/event/category/4000
into an online calendar to post at
alittleredhairedgirl.blogspot.com/
I did in PHP:
<?php
$pagecontents = file_get_contents("tribe.net/event/category/4000
$totallen = strlen($pagecontents);
$findme = '<table class="listings"';
$pos = strpos($pagecontents, $findme)-23;
$findme = '<div id="pageCount"';
$pos1 = strpos($pagecontents, $findme)-30;
$contents = substr($pagecontents, $pos, $pos1);
print $contents;
?>
Trying to figure out hom to automagical get that into RSScalendar.com
(I get this script back)
<script language="JavaScript" src="www.rsscalendar.com/rss/publish.asp
Or put it into iCal format and publish to icalshare.com
tribe.net/event/category/4000
into an online calendar to post at
alittleredhairedgirl.blogspot.com/
I did in PHP:
<?php
$pagecontents = file_get_contents("tribe.net/event/category/4000
$totallen = strlen($pagecontents);
$findme = '<table class="listings"';
$pos = strpos($pagecontents, $findme)-23;
$findme = '<div id="pageCount"';
$pos1 = strpos($pagecontents, $findme)-30;
$contents = substr($pagecontents, $pos, $pos1);
print $contents;
?>
Trying to figure out hom to automagical get that into RSScalendar.com
(I get this script back)
<script language="JavaScript" src="www.rsscalendar.com/rss/publish.asp
Or put it into iCal format and publish to icalshare.com
-
Re: Getting Events
03/25i got some java code that can scrape events pretty well. interested?
-
Re: Getting Events
03/26source code:
www.cs.usfca.edu/~egloben/...tribal.zip
uses gj-scrape, gj-core from
www.osjava.org/
also uses:
commons-lang.jar, commons-collections.jar
and mysql-connector-java-3.1.6-bin.jar
reads event data from an account's events page, goes into each event and fetches event info + rsvp list. might take slight adjustments to make it work with an event category page but not too hard.
here's a _sample_ of what i plan to use it for: hellonline.com/TribeVents/ -
-
Re: Getting Events
03/28 -
-
Re: Getting Events
03/28had some strange problems myself last nite with that server. dont know what happened there... -
-
Re: Getting Events
03/28do you need a server to host the file?
I can give you a small amount of space on my bbs. -
-
Re: Getting Events
03/28thanks, i'm good. not planning on having it up there for too long anyway.
-
-
-
-