You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(92) |
Dec
(142) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(33) |
Feb
(65) |
Mar
(76) |
Apr
(172) |
May
(124) |
Jun
(45) |
Jul
(76) |
Aug
(78) |
Sep
(1) |
Oct
(20) |
Nov
(6) |
Dec
(2) |
2007 |
Jan
(12) |
Feb
(7) |
Mar
(17) |
Apr
(3) |
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
From: Miles B. <mil...@gm...> - 2007-02-27 15:37:51
|
Thanks, Do we have an idea when 0.4 will be released? On 2/27/07, Kevin <ke...@dr...> wrote: > Miles Beck wrote: > Done. I guess they replaced the shell server at SourceForge. My cron > job i setup to create daily snapshots was missing. It also looks like > they scaled up the SVN setup. Our repository URL has changed. Anyone > with a checkout of the code will either need to recheckout or do an 'svn > switch'. > > -Kevin |
From: Kevin <ke...@dr...> - 2007-02-27 11:48:21
|
Miles Beck wrote: > Hi All, > > I noticed today that some new code has been checked in. Can we get the > snapshots to be generated correctly again? > > I'd like to take a look at the new changes once Kevin is done with > what he is doing, but the last several snapshots are 1k in size and > the last one is from the 12th. > Done. I guess they replaced the shell server at SourceForge. My cron job i setup to create daily snapshots was missing. It also looks like they scaled up the SVN setup. Our repository URL has changed. Anyone with a checkout of the code will either need to recheckout or do an 'svn switch'. My changes so far are probably not noticeable. I'm cleaning up and moving all the HTML output to templates. After that, maybe I'll add a simple ajax feature. -Kevin |
From: Miles B. <mil...@gm...> - 2007-02-26 17:17:21
|
Hi All, I noticed today that some new code has been checked in. Can we get the snapshots to be generated correctly again? I'd like to take a look at the new changes once Kevin is done with what he is doing, but the last several snapshots are 1k in size and the last one is from the 12th. -Miles |
From: Miles B. <mil...@gm...> - 2007-02-01 02:15:07
|
On 1/31/07, Kevin <ke...@dr...> wrote: > > I forget, what snapshot are you running? It looks like I have the snapshot right before the index change was made. A lot of the files have a time/date stamp of July of 2006 and a few of the directories have a date of August 3rd. So I could have the changes you made, or I just missed getting the changes. It sounds like Wordpress is having issues. I checked the biggest log and it showed 25 entries that took too long. One which used 42 seconds of cpu time and all the others from .20 to .71 seconds. It looks like the combined GETs that were slow was the culprit. Thanks for the help. -Miles |
From: Kevin <ke...@dr...> - 2007-02-01 00:54:09
|
> On 1/31/07, Miles Beck <mil...@gm...> wrote: >> Here is the log of the cpu utlization. Is there a way to find out >> I did notice that when you click on the Edit link for a feed you can >> set an update interval. I tried setting a feed to a one minute update >> and it did not seem to work. Using this method (if it worked) I could >> set up half my feeds to be every 30 minutes, and the other half to be >> every 60 minutes. Though even this would not solve the problem as it >> is an excessive mysql query which seems to be the culprit. > > Yeah, I don't know when the 'update interval' showed up, but I don't > believe it's being used currently. The 'slickest'/easiest solution > would be to included a PHP script (or just bash script) that would > handle spacing out updating your feeds. > > It would be called by cron every 30 or 60 mins, then do a query to the > DB to get, say, the 5 oldest feeds that are due for updating (based on > update interval) and update just those, and the next time cron called > it, it would get 5 (or whatever) different ones. Variable feed updates has been a feature for a while. 1) enable variable feed updates in settings page. 2) define an update interval for all your feeds, based on how fresh you want the feed to be. (default is 60min) 3) run update-quiet.php from cron periodically. (I do it every 30 mins) What it does is only update a feed if the last time it was updated is longer then $UPDATE_INTERVAL for that feed. So every time update-quiet.php is run, only a small number of feeds are updated. For example: A feed like a web comic that only changes once a day, can have an update interval set much higher (several hours) compared to a chatty blog or news website. The user can adjust the update intervals to their own liking. --=20 Kevin |
From: Miles B. <mil...@gm...> - 2007-01-31 21:30:17
|
I do have access to phpmysladmin. I did an optimization and here are the differences. The total table size went from 14.5 MiB to 13.2 MiB. The overhead went from 736.3 KiB to 0 KiB. -Miles On 1/31/07, Evan Roth <eva...@gm...> wrote: > if you have phpmysqladmin access to your database, try to optimize all of > the tables. with 48 feeds, i could imagine that the items table could be > quite fragmented, if you are not reading often and deleting stuff as it gets > added. perhaps your provider would let you see the SQL that is taking so long on > the server, to allow us to optimize. we could also take a deeper look at > the db itself...perhaps we should add some indexing somewhere or something. > or at least it tells us exactly what is causing the problem. |
From: Miles B. <mil...@gm...> - 2007-01-31 18:41:03
|
This looks like the time I had set my feeds to be updated: Wed Jan 31 09:59:10 2007: used 0.34 seconds of cpu time for HTTP Request: : GET /?feed=rss2 HTTP/1.1 The others are from the blog that is hosted on the machine that my wife writes. Looks like the rss feeds to the blog articles took a long time for some reason. On 1/31/07, Evan Roth <eva...@gm...> wrote: > are you positive the problem is occurring with an update of feeds...and not > simply a get, when you are reading? > > you could also try to put your update at a weird time, like 19 minutes after > the hour. i could imagine that lots of people have crons running on the > hour...which would possibly add up to a cumulative delay for all the jobs. That's a good idea. I'll try that as well and monitor the cpu_exceeded logs to see when/if this occurs again. |
From: Andrew T. <ajt...@hi...> - 2007-01-31 17:51:29
|
On 1/31/07, Miles Beck <mil...@gm...> wrote: > Here is the log of the cpu utlization. Is there a way to find out > I did notice that when you click on the Edit link for a feed you can > set an update interval. I tried setting a feed to a one minute update > and it did not seem to work. Using this method (if it worked) I could > set up half my feeds to be every 30 minutes, and the other half to be > every 60 minutes. Though even this would not solve the problem as it > is an excessive mysql query which seems to be the culprit. Yeah, I don't know when the 'update interval' showed up, but I don't believe it's being used currently. The 'slickest'/easiest solution would be to included a PHP script (or just bash script) that would handle spacing out updating your feeds. It would be called by cron every 30 or 60 mins, then do a query to the DB to get, say, the 5 oldest feeds that are due for updating (based on update interval) and update just those, and the next time cron called it, it would get 5 (or whatever) different ones. Sounds like something Kevin could probably do in 10 mins ;) |
From: Miles B. <mil...@gm...> - 2007-01-31 17:45:28
|
Here is the log of the cpu utlization. Is there a way to find out which feed is taking so long? -------------------------------------------------------------------------------- CPU Exceeded Log For Thu Oct 26 11:30:55 2006 Thu Oct 26 11:30:30 2006: used 0.19 seconds of cpu time for HTTP Request: : GET /?feed=rss2 HTTP/1.0 Thu Oct 26 11:30:50 2006: used 41.00 seconds of cpu time for [[mysql query]] -------------------------------------------------------------------------------- CPU Exceeded Log For Thu Oct 26 11:31:16 2006 Thu Oct 26 11:30:30 2006: used 0.19 seconds of cpu time for HTTP Request: : GET /?feed=rss2 HTTP/1.0 Thu Oct 26 11:30:50 2006: used 41.00 seconds of cpu time for [[mysql query]] -------------------------------------------------------------------------------- CPU Exceeded Log For Thu Oct 26 11:31:32 2006 Thu Oct 26 11:30:30 2006: used 0.19 seconds of cpu time for HTTP Request: : GET /?feed=rss2 HTTP/1.0 Thu Oct 26 11:30:50 2006: used 41.00 seconds of cpu time for [[mysql query]] On 1/31/07, Evan Roth <eva...@gm...> wrote: > i would start by checking the feeds more intermittently. > you can set a cron for each feed to: > http://yourhost/fofinstall/update.php?feed=XX > (see the link if you mouseover the u (for update) in the frameview) Thanks for the suggestion on spacing out the cron jobs. But having 48 seperate cron jobs kinda is overkill. I did notice that when you click on the Edit link for a feed you can set an update interval. I tried setting a feed to a one minute update and it did not seem to work. Using this method (if it worked) I could set up half my feeds to be every 30 minutes, and the other half to be every 60 minutes. Though even this would not solve the problem as it is an excessive mysql query which seems to be the culprit. |
From: Miles B. <mil...@gm...> - 2007-01-31 17:13:34
|
Hello, I've run into a problem using FoFRedux on a shared host. A few times I have had my account suspended briefly due to excessive cpu utilization. The error that I get is that the account had used more than 20% of the cpu and the account has briefly been suspended. Is there a way to still have FoFREdux work but limit the cpu utilization? I have 48 feeds that are checked once per hour. Thanks, -Miles |
From: Andrew T. <ajt...@hi...> - 2007-01-25 17:52:21
|
Woah - sorry about the file sizes on those images - I forgot to check before sending them out. My bad. :( On 1/25/07, Andrew Turner <ajt...@hi...> wrote: > Yes, development is continuing. I just got back in the country late > last week and was finishing up work on this: > http://oreilly.com/catalog/neogeography > > Here are screen-shots of the current dev as it will be released. There > are some known issues, such as the "view today's, view saved" etc. not > being viewable in the 'Full page of feeds' view, and there aren't > folders etc. in the panel view. These will be addressed in the next > release. > > But I fear its been too long for a release, and better to move forward. :) > > Andrew > > On 1/25/07, Miles Beck <mil...@gm...> wrote: > > Is development going to continue? > > > > I know Andrew sent out an email on 12/31 saying 0.4 would be released soon. > > > > I did wonder if the the Panel view would be completed before the release. > > > > -Miles > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share your > > opinions on IT & business topics through brief surveys - and earn cash > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Fofredux-devel mailing list > > Fof...@li... > > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > > > > > -- > Andrew Turner > ajt...@hi... 42.4266N x 83.4931W > http://highearthorbit.com Northville, Michigan, USA > > > -- Andrew Turner ajt...@hi... 42.4266N x 83.4931W http://highearthorbit.com Northville, Michigan, USA |
From: Miles B. <mil...@gm...> - 2007-01-25 17:41:43
|
Is development going to continue? I know Andrew sent out an email on 12/31 saying 0.4 would be released soon. I did wonder if the the Panel view would be completed before the release. -Miles |
From: Miles B. <mil...@gm...> - 2007-01-13 15:52:25
|
The error does not occur for me any longer. I read all the articles in the feeds that were not updating. I noted which feed it was and now when I try and update that feed there is a different error. Warning: MagpieRSS: Failed to parse RSS file. (junk after document element at line 402, column 0) in /public_html/fofredux_0.4-dev/magpierss/rss_fetch.inc on line 240 Error: MagpieRSS: Failed to parse RSS file. (junk after document element at line 402, column 0) try to validate it? done. 0 new items It looks like when that error in that rss feed drops off the feed the error will go away. And now all the feeds past this one are updating correctly. As far as updating to a new snapshot, no, that's not really an option as the newer snapshots do not have the panel view (which is the view I use) fully fleshed out. Thanks, -Miles On 1/13/07, Kevin <ke...@dr...> wrote: > > This was fixed quite a while ago. (see log below) Is upgrading to a > newer snapshot an option?. > > -Kevin > > ------------------------------------------------------------------------ > r514 | kevbob | 2006-08-29 09:58:27 -0600 (Tue, 29 Aug 2006) | 2 lines > Changed paths: > M /fofredux/trunk/init.php > > fix sql error during item purge when item id exclusion list is empty > ------------------------------------------------------------------------ |
From: Kevin <ke...@dr...> - 2007-01-13 11:33:13
|
This was fixed quite a while ago. (see log below) Is upgrading to a newer snapshot an option?. -Kevin ------------------------------------------------------------------------ r514 | kevbob | 2006-08-29 09:58:27 -0600 (Tue, 29 Aug 2006) | 2 lines Changed paths: M /fofredux/trunk/init.php fix sql error during item purge when item id exclusion list is empty ------------------------------------------------------------------------ Miles Beck wrote: > I'm having a problem with my installation of FoFRedux. I noticed quite > a few feeds had not been updated in hours. So I did a manual Update > All from the panel view and then I got the following error: > > Fatal error: mysql error: [You have an error in your SQL syntax; check > the manual that corresponds to your MySQL server version for the right > syntax to use near ') AND cache_time < '2006-12-13 17:40:23' AND > i.flag = 1 ) ORDER BY i.id , i.i' at line 17] in EXECUTE("SELECT i.id, > i.flag as item_read, f.title as feed_title, f.link as feed_link, f.id > as feed_id, i.link as item_link, i.title as item_title, i.flag, > i.cache_time, i.content, i.publish_time, i.dccreator, i.latitude, > i.longitude, cat.id as category_id, cat.title as category_title, > i.enclosure_link as enclosure_link, i.enclosure_type as > enclosure_type, f.url as feed_url FROM fr_feeds f JOIN fr_categories > cat ON (f.category_id = cat.id) JOIN fr_items i ON (i.feed_id = f.id) > WHERE ( feed_id = 79 AND i.id NOT IN ( ) AND cache_time < '2006-12-13 > 17:40:23' AND i.flag = 1 ) ORDER BY i.id , i.id ") > Error performing database operation, > /fofredux_0.4-dev/lib/model/base.php on line 251 > > Anyone have an idea how I can fix this? > > -Miles > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > |
From: Miles B. <mil...@gm...> - 2007-01-13 00:41:50
|
I'm having a problem with my installation of FoFRedux. I noticed quite a few feeds had not been updated in hours. So I did a manual Update All from the panel view and then I got the following error: Fatal error: mysql error: [You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') AND cache_time < '2006-12-13 17:40:23' AND i.flag = 1 ) ORDER BY i.id , i.i' at line 17] in EXECUTE("SELECT i.id, i.flag as item_read, f.title as feed_title, f.link as feed_link, f.id as feed_id, i.link as item_link, i.title as item_title, i.flag, i.cache_time, i.content, i.publish_time, i.dccreator, i.latitude, i.longitude, cat.id as category_id, cat.title as category_title, i.enclosure_link as enclosure_link, i.enclosure_type as enclosure_type, f.url as feed_url FROM fr_feeds f JOIN fr_categories cat ON (f.category_id = cat.id) JOIN fr_items i ON (i.feed_id = f.id) WHERE ( feed_id = 79 AND i.id NOT IN ( ) AND cache_time < '2006-12-13 17:40:23' AND i.flag = 1 ) ORDER BY i.id , i.id ") Error performing database operation, /fofredux_0.4-dev/lib/model/base.php on line 251 Anyone have an idea how I can fix this? -Miles |
From: khaled A. A. <bro...@gm...> - 2007-01-03 18:18:47
|
Sounds good to me. I will say that I would like to have a look at the interface a little bit and come up with a few modifications for streamlining the interface ever so slightly, after all I did this nearly a year ago and I've had a little bit more exposure and experience under my belt to try and tweak things so that it's a more usable product. I've got a couple of ideas which I think people will get a kick out of. Also I'll need to come up with a design for the mobile version as well, very important really as well. On 12/31/06, Miles Beck <mil...@gm...> wrote: > > Is the full view going to be cleaned up and the missing features added > back in? > > Andrew, we discussed this on August 30th if you want to check your > emails on it. I sure hope this is added back in or I will not be > upgrading. The frames view bugs the heck out of me. :) > > If you need the emails again I can forward them to you. > > -Miles > > On 12/31/06, Andrew Turner <ajt...@hi...> wrote: > > Bah - I wrote this several weeks ago but never sent it. Sorry! :) > > > > -- > > > > Hi team - it's been quite a few quiet months for FoFRedux. > > > > I've been busy with conferences, wedding planning, and upcoming book > > and couple of articles. Those are just about out of the way now. > > > > I checked in Khaled's design changes to the repository. It's getting > > to where I actually would like to push 0.4 out as a release, it's a > > pretty good and big milestone - then start adding the ajax stuff in. > > > > When I get back Mid-January I will bundle up the current stuff and > > push it into a release so users stop having to grab out of the > > repository. > > > > Andrew > > > > -- > > Andrew Turner > > ajt...@hi... 42.4266N x 83.4931W > > http://highearthorbit.com Northville, Michigan, USA > > > > > ------------------------------------------------------------------------- > > Take Surveys. Earn Cash. Influence the Future of IT > > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > > opinions on IT & business topics through brief surveys - and earn cash > > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > > _______________________________________________ > > Fofredux-devel mailing list > > Fof...@li... > > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > |
From: Miles B. <mil...@gm...> - 2006-12-31 19:51:17
|
Is the full view going to be cleaned up and the missing features added back in? Andrew, we discussed this on August 30th if you want to check your emails on it. I sure hope this is added back in or I will not be upgrading. The frames view bugs the heck out of me. :) If you need the emails again I can forward them to you. -Miles On 12/31/06, Andrew Turner <ajt...@hi...> wrote: > Bah - I wrote this several weeks ago but never sent it. Sorry! :) > > -- > > Hi team - it's been quite a few quiet months for FoFRedux. > > I've been busy with conferences, wedding planning, and upcoming book > and couple of articles. Those are just about out of the way now. > > I checked in Khaled's design changes to the repository. It's getting > to where I actually would like to push 0.4 out as a release, it's a > pretty good and big milestone - then start adding the ajax stuff in. > > When I get back Mid-January I will bundle up the current stuff and > push it into a release so users stop having to grab out of the > repository. > > Andrew > > -- > Andrew Turner > ajt...@hi... 42.4266N x 83.4931W > http://highearthorbit.com Northville, Michigan, USA > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > |
From: Andrew T. <ajt...@hi...> - 2006-12-31 19:39:55
|
Bah - I wrote this several weeks ago but never sent it. Sorry! :) -- Hi team - it's been quite a few quiet months for FoFRedux. I've been busy with conferences, wedding planning, and upcoming book and couple of articles. Those are just about out of the way now. I checked in Khaled's design changes to the repository. It's getting to where I actually would like to push 0.4 out as a release, it's a pretty good and big milestone - then start adding the ajax stuff in. When I get back Mid-January I will bundle up the current stuff and push it into a release so users stop having to grab out of the repository. Andrew -- Andrew Turner ajt...@hi... 42.4266N x 83.4931W http://highearthorbit.com Northville, Michigan, USA |
From: Evan R. <eva...@gm...> - 2006-11-01 17:26:05
|
i'm in full agreement with andrew on this one. in the future, i'd imagine seeing a treeview list of the feed categories, so you can open/close the cats. (imagine windows explorer) ./evan On 11/1/06, Andrew Turner <ajt...@hi...> wrote: > > Good question: > I would use categories as general "organization" of feeds (since I > subscribe to ~120) like: photography (for my flickr feeds), geo, > programming, design, news. I can then easily read all of my "geo" > feeds, or "photography" feeds. > > And then tags would be finer organization. For one, some feeds include > tags in their feed items (photography, boston, outside, funny or php, > howto). Tags would also be for marking as "saved", "toread" etc. > > del.icio.us has the idea of "Tags" and "Bundles" , which is kind of > the same, though Bundles are defined by what tags they have. > > Searches can be done by specifying: keywords, tags, category, > date/time - any of them inclusive or exclusive. > > So, search for: "geocoding" in cat: geo, tags: code, php, ruby > > What do you think? > > > On 11/1/06, Katie Bechtold <ka...@ho...> wrote: > > On Wed, Nov 01, 2006 at 02:31:41PM +0200, khaled Abou Alfa wrote: > > > Now in my mind I had originally thought that we'd have 4 different > > > views: the standard view, the category view (view things according to > > > category), Tags view and the flagged items. > > > > Not to de-rail the conversation, but I'd like to bring up the > > categories-versus-tags issue, if only for my own clarification. I'm > > not clear on the usefulness of having categories if we provide tags. > > How do we envision users using categories differently from how they > > could use tags? > > > > -- > > Katie Bechtold http://hoteldetective.org/ > > > > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, > security? > > Get stuff done quickly with pre-integrated technology to make your job > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Fofredux-devel mailing list > > Fof...@li... > > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > > > > > -- > Andrew Turner > ajt...@hi... 42.4266N x 83.4931W > http://highearthorbit.com Northville, Michigan, USA > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > |
From: Andrew T. <ajt...@hi...> - 2006-11-01 16:19:46
|
Good question: I would use categories as general "organization" of feeds (since I subscribe to ~120) like: photography (for my flickr feeds), geo, programming, design, news. I can then easily read all of my "geo" feeds, or "photography" feeds. And then tags would be finer organization. For one, some feeds include tags in their feed items (photography, boston, outside, funny or php, howto). Tags would also be for marking as "saved", "toread" etc. del.icio.us has the idea of "Tags" and "Bundles" , which is kind of the same, though Bundles are defined by what tags they have. Searches can be done by specifying: keywords, tags, category, date/time - any of them inclusive or exclusive. So, search for: "geocoding" in cat: geo, tags: code, php, ruby What do you think? On 11/1/06, Katie Bechtold <ka...@ho...> wrote: > On Wed, Nov 01, 2006 at 02:31:41PM +0200, khaled Abou Alfa wrote: > > Now in my mind I had originally thought that we'd have 4 different > > views: the standard view, the category view (view things according to > > category), Tags view and the flagged items. > > Not to de-rail the conversation, but I'd like to bring up the > categories-versus-tags issue, if only for my own clarification. I'm > not clear on the usefulness of having categories if we provide tags. > How do we envision users using categories differently from how they > could use tags? > > -- > Katie Bechtold http://hoteldetective.org/ > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > -- Andrew Turner ajt...@hi... 42.4266N x 83.4931W http://highearthorbit.com Northville, Michigan, USA |
From: Katie B. <ka...@ho...> - 2006-11-01 16:09:43
|
On Wed, Nov 01, 2006 at 02:31:41PM +0200, khaled Abou Alfa wrote: > Now in my mind I had originally thought that we'd have 4 different > views: the standard view, the category view (view things according to > category), Tags view and the flagged items. Not to de-rail the conversation, but I'd like to bring up the categories-versus-tags issue, if only for my own clarification. I'm not clear on the usefulness of having categories if we provide tags. How do we envision users using categories differently from how they could use tags? -- Katie Bechtold http://hoteldetective.org/ |
From: khaled A. A. <bro...@gm...> - 2006-10-31 14:51:04
|
I've actually moved forward with the css a lot and should be sending things to everyone in the next couple of days. I'll leave the html alone for now (with the exception of things that need to be added removed for the migration away from the frames. On 10/31/06, Andrew Turner <ajt...@hi...> wrote: > > Hi Khaled - glad to see you poke your head out. Based on your blog, > you've been rather busy. Glad you caught a breath for awhile. > > Agreed that frames should go. For now, design the css as such - and > the html will get moved. Really, what will happen is that the HTML in > the frames page will get moved to a div in the main view page. > > Andrew > > On 10/31/06, khaled Abou Alfa <bro...@gm...> wrote: > > Hey all, > > > > Just wanted to say sorry for the delay, I know I promised this a while > ago > > but I've been slightly busy however I think we can kill this very soon > and > > release version 0.4 soon. I've been playing around with the css and > should > > have something very soon. > > > > One thing that I've been looking at which would be good if we got sorted > out > > as well is getting rid of the frames in this version for pure css. Now I > > know we've discussed this before but I've stumbled onto this article as > well > > which should help in the right direction: > > > > http://www.456bereastreet.com/archive/200609/css_frames_v2_fullheight/ > > > > Anyone up for the task of moving the html without frames? > > > > Also when it's released we REALLY should make a big deal about the speed > of > > the software which is sooo much faster than a lot of online counterparts > > (I've been playing around with a couple and FOFR beats newsgator hands > down, > > not sure about google reader though, it's just that gr is really ugly as > is > > most of the gmail software, which is a shame as they've got the money to > > sort out a decent interface for all of these things. > > > > > > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, > security? > > Get stuff done quickly with pre-integrated technology to make your job > > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > _______________________________________________ > > Fofredux-devel mailing list > > Fof...@li... > > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > > > > > > > > > -- > Andrew Turner > ajt...@hi... 42.4266N x 83.4931W > http://highearthorbit.com Northville, Michigan, USA > |
From: Andrew T. <ajt...@hi...> - 2006-10-31 13:08:57
|
Hi Khaled - glad to see you poke your head out. Based on your blog, you've been rather busy. Glad you caught a breath for awhile. Agreed that frames should go. For now, design the css as such - and the html will get moved. Really, what will happen is that the HTML in the frames page will get moved to a div in the main view page. Andrew On 10/31/06, khaled Abou Alfa <bro...@gm...> wrote: > Hey all, > > Just wanted to say sorry for the delay, I know I promised this a while ago > but I've been slightly busy however I think we can kill this very soon and > release version 0.4 soon. I've been playing around with the css and should > have something very soon. > > One thing that I've been looking at which would be good if we got sorted out > as well is getting rid of the frames in this version for pure css. Now I > know we've discussed this before but I've stumbled onto this article as well > which should help in the right direction: > > http://www.456bereastreet.com/archive/200609/css_frames_v2_fullheight/ > > Anyone up for the task of moving the html without frames? > > Also when it's released we REALLY should make a big deal about the speed of > the software which is sooo much faster than a lot of online counterparts > (I've been playing around with a couple and FOFR beats newsgator hands down, > not sure about google reader though, it's just that gr is really ugly as is > most of the gmail software, which is a shame as they've got the money to > sort out a decent interface for all of these things. > > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > > > -- Andrew Turner ajt...@hi... 42.4266N x 83.4931W http://highearthorbit.com Northville, Michigan, USA |
From: khaled A. A. <bro...@gm...> - 2006-10-31 08:31:42
|
Hey all, Just wanted to say sorry for the delay, I know I promised this a while ago but I've been slightly busy however I think we can kill this very soon and release version 0.4 soon. I've been playing around with the css and should have something very soon. One thing that I've been looking at which would be good if we got sorted out as well is getting rid of the frames in this version for pure css. Now I know we've discussed this before but I've stumbled onto this article as well which should help in the right direction: http://www.456bereastreet.com/archive/200609/css_frames_v2_fullheight/ Anyone up for the task of moving the html without frames? Also when it's released we REALLY should make a big deal about the speed of the software which is sooo much faster than a lot of online counterparts (I've been playing around with a couple and FOFR beats newsgator hands down, not sure about google reader though, it's just that gr is really ugly as is most of the gmail software, which is a shame as they've got the money to sort out a decent interface for all of these things. |
From: Andrew T. <ajt...@hi...> - 2006-10-16 16:14:02
|
Great Work Kevin! Hopefully I'll get a chance to look at this in the next couple of days - though things are really busy for me. Khaled, what's the schedule for your avail. on finishing up the UI? Andrew On 10/16/06, Kevin <ke...@dr...> wrote: > Team, > XML-RPC and JSON-RPC support is in place. I added phpxmlrpc for the > server side and jsolait for the javascript client. > > I added a temporary link to the top menu to demonstrate it working. > "Send a ping to web service". > > To add more methods you just need edit the files in lib/api/. > * rpc_map.php defines the method signature. > * rpc_methods.php defines the method/function implementation. > > > The javascript generator is fairly limited. It doesn't like periods in > the names of rpc methods Also, it defaults to do synchronous method > calls. For event handling, I know this is not good. In order to do an > async json-rpc call, you have to pass a function as the last argument to > the method. It will automatically switch to async mode and use that > function argument as the callback for the response. > > Cheers, > Kevin > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Fofredux-devel mailing list > Fof...@li... > https://lists.sourceforge.net/lists/listinfo/fofredux-devel > -- Andrew Turner ajt...@hi... 42.4266N x 83.4931W http://highearthorbit.com Northville, Michigan, USA |