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: Kevin <ke...@dr...> - 2006-10-16 06:00:39
|
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 |
From: Kevin <ke...@dr...> - 2006-10-10 00:28:33
|
> Hrm, it used to be there by passing in "what=3Dsaved" - but that got > removed during the change to model-view-controller. > > There should be a parameter that takes tags for view/rss: > > view.php?tag=3Dcool,gadget > and also as > rss.php?tag=3Dsaved It's "view.php?flag=3Dsaved". I made changes to view.php query string handling when I fixed the pagination links. I renamed some of the field names to make them more descriptive. See fof_request2search() function in lib/view_helper.php fo= r the "what" and "how" of view.php/rss.php query string parsing. I also added a little feature to view.php. It now includes an alternate link for the rss feed of the page currently being viewed. --=20 Kevin |
From: Andrew T. <ajt...@hi...> - 2006-10-09 23:57:40
|
Hrm, it used to be there by passing in "what=saved" - but that got removed during the change to model-view-controller. There should be a parameter that takes tags for view/rss: view.php?tag=cool,gadget and also as rss.php?tag=saved On 10/9/06, Miles Beck <mil...@gm...> wrote: > I entered this feature request (1445226) awhile ago and was wondering if > this could be included in 0.4. > > I'm not sure how much work or time this would take but I really like the sav > feature. It would be nice to know how many items are flagged as saved. > > Saved Item feed > What I'm really after here is something like a feed > display that could show you on the main page how many > items were in the View Saved Items section. This way > you could easily see at a glance how many you had > marked as saved. > > > Thanks, > > -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 |
From: Kevin <ke...@dr...> - 2006-10-09 22:31:51
|
Not hard really. A few methods will need to be added to the model code, then some place to put the values in the UI. I'm not sure where this fit= s in the UI, though. -Kevin > I entered this feature request (1445226) awhile ago and was wondering i= f > this could be included in 0.4. > > I'm not sure how much work or time this would take but I really like th= e > sav > feature. It would be nice to know how many items are flagged as saved. > > Saved Item feed > What I'm really after here is something like a feed > display that could show you on the main page how many > items were in the View Saved Items section. This way > you could easily see at a glance how many you had > marked as saved. --=20 Kevin |
From: Miles B. <mil...@gm...> - 2006-10-09 17:13:35
|
I entered this feature request (1445226) awhile ago and was wondering if this could be included in 0.4. I'm not sure how much work or time this would take but I really like the sav feature. It would be nice to know how many items are flagged as saved. Saved Item feed What I'm really after here is something like a feed display that could show you on the main page how many items were in the View Saved Items section. This way you could easily see at a glance how many you had marked as saved. Thanks, -Miles |
From: Kevin <ke...@dr...> - 2006-10-06 02:55:50
|
Andrew Turner wrote: > On 10/5/06, Kevin <ke...@dr...> wrote: >> Looks good. All that server side code is already there, its just a >> matter >> of exposing it via some remoting api. >> > > Right - takers? ;) > Umm.. (raises hand sheepishly...) > > THat would be a super-huge bonus! I think there is only 1 other > aggregator out there (Newsgator) that has an API. I really think we > can get huge leverage if we have an API and then work with a project > like NewsOwl (for Windows) or Vienna (for Mac OS X) to get them to do > syncing via that API. > http://gggeek.altervista.org/sw/article_20060426.html Using this howto, we can literally have the exact same server side url service both xmlrpc and jsonrpc requests. I'm liking what I see so far. The ajax addon (phpxmlrpc extras package) will autogenerate javascript functions for all methods exposed by the jsonrpc server. There's a real bonus, on the fly code generation. -Kevin |
From: Andrew T. <ajt...@hi...> - 2006-10-05 20:50:11
|
On 10/5/06, Kevin <ke...@dr...> wrote: > Looks good. All that server side code is already there, its just a matter > of exposing it via some remoting api. > Right - takers? ;) > I've done some work with integrating phpxmlrpc. > (http://phpxmlrpc.sourceforge.net/) I like what it can do so far. It > allowed me to pull a list of feeds into a thick java app without touching > the database directly. Apparently there's a JSON extension which might > work for our ajax needs. > > That would be really nice to add ajax remoting support and get generic > XML-RPC support as a bonus. THat would be a super-huge bonus! I think there is only 1 other aggregator out there (Newsgator) that has an API. I really think we can get huge leverage if we have an API and then work with a project like NewsOwl (for Windows) or Vienna (for Mac OS X) to get them to do syncing via that API. Andrew |
From: Kevin <ke...@dr...> - 2006-10-05 16:40:29
|
> Good point - what is the list of functionality we'll want first: > > * Set Read Status > * Set Tags (this will handle add/remove) > * Update Feed (s) > * Delete Feed > * Modify Feed (title, category) > * Get Items (number of, cat/feed/tag) > > does that cover first iteration? Looks good. All that server side code is already there, its just a matte= r of exposing it via some remoting api. I've done some work with integrating phpxmlrpc. (http://phpxmlrpc.sourceforge.net/) I like what it can do so far. It allowed me to pull a list of feeds into a thick java app without touching the database directly. Apparently there's a JSON extension which might work for our ajax needs. That would be really nice to add ajax remoting support and get generic XML-RPC support as a bonus. --=20 Kevin |
From: Andrew T. <ajt...@hi...> - 2006-10-05 16:23:05
|
Good point - what is the list of functionality we'll want first: * Set Read Status * Set Tags (this will handle add/remove) * Update Feed (s) * Delete Feed * Modify Feed (title, category) * Get Items (number of, cat/feed/tag) does that cover first iteration? On 10/5/06, Kevin <ke...@dr...> wrote: > > Khaled, > > > Also one great option to have is utiliting the new google reader option > > of making the feed as read when you scroll over it (that could be more > > of an option to have in the future, if anyone has any idea how to > > implement that?). > > We have to create functions to do common things via Ajax. (ex: mark as > read, add/remove tags, update feed, check for new items in view) Once > that's done, we could hook those functions into UI events in various > ways. We already have a feature request to auto mark as read when the > user clicks on the link for an item. We could also mark as read when the > item scrolls past the viewable window, etc. > > > > -- > Kevin > > > ------------------------------------------------------------------------- > 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 |
From: Kevin <ke...@dr...> - 2006-10-05 16:04:36
|
Khaled, > Also one great option to have is utiliting the new google reader option > of making the feed as read when you scroll over it (that could be more > of an option to have in the future, if anyone has any idea how to > implement that?). We have to create functions to do common things via Ajax. (ex: mark as read, add/remove tags, update feed, check for new items in view) Once that's done, we could hook those functions into UI events in various ways. We already have a feature request to auto mark as read when the user clicks on the link for an item. We could also mark as read when the item scrolls past the viewable window, etc. --=20 Kevin |
From: Andrew T. <ajt...@hi...> - 2006-10-04 21:09:10
|
Khaled is alive too! Yay! Broken Kode <bro...@gm...> wrote: > > If you can just wait for me to finish off my site then I can just finish > off the css code and write some notes on functionality. That's probably best - for you to go ahead and do it. Because then I can focus on other things (and the more always the merrier?) > > On a similar note, has everyone had a look at newsgator? That's kind of > how seamlessly I think FOFR should operate, with some better > javascripting (currently some of it is windows friendly only which is a > bit rubbish). Right - definitely. > > Also one great option to have is utiliting the new google reader option > of making the feed as read when you scroll over it (that could be more > of an option to have in the future, if anyone has any idea how to > implement that?). There are ways. I haven't tried it yet on GoogleReader, but supposedly it also has "infinite scrolling"? I have a greasemonkey script that does the same thing on Google Results. When I get to the bottom of the page, the next set of results is automatically appended to the bottom. I really like that feature. Thanks for the heads up Khaled, Andrew |
From: Broken K. <bro...@gm...> - 2006-10-04 21:03:26
|
Andrew, I'm actually finishing off a website this week (come rain or shine) as it's been going on for nearly 2 months now, so as I'm getting into the whole css thing right now I can definitely finish this off by next week and that's a promise (simply because it will be something I really want to do). If you can just wait for me to finish off my site then I can just finish off the css code and write some notes on functionality. On a similar note, has everyone had a look at newsgator? That's kind of how seamlessly I think FOFR should operate, with some better javascripting (currently some of it is windows friendly only which is a bit rubbish). Also one great option to have is utiliting the new google reader option of making the feed as read when you scroll over it (that could be more of an option to have in the future, if anyone has any idea how to implement that?). On Wed, 2006-10-04 at 10:17 -0400, Andrew Turner wrote: > Hi all, > > one problem is we could really use a CSS/Web person to finish up the > implementation of Khaled's design. Anyone know of a designer with time > and desire to finish that? :) > > And as Kevin pointed out the JS needs to be added. I think the top two > contenders were Prototype/Scriptaculous & the Yahoo JS UI libraries. > > Andrew > > On 10/4/06, Kevin <ke...@dr...> wrote: > > Miles Beck wrote: > > > I'm just curious when we'll get back to working on 0.4. I notice it > > > has been about three weeks since anything has been comitted. > > > > > > Do we know what still needs to be done before this release is good to go? > > There's quite a few UI bugs logged. Those should be fixed at the very > > least. > > > > http://sourceforge.net/tracker/?group_id=148967&atid=778255 > > > > I'd like to see some easy ajax features added also. (like > > background/async 'mark as read', refresh, etc) > > > > -Kevin > > > > ------------------------------------------------------------------------- > 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-10-04 14:17:55
|
Hi all, one problem is we could really use a CSS/Web person to finish up the implementation of Khaled's design. Anyone know of a designer with time and desire to finish that? :) And as Kevin pointed out the JS needs to be added. I think the top two contenders were Prototype/Scriptaculous & the Yahoo JS UI libraries. Andrew On 10/4/06, Kevin <ke...@dr...> wrote: > Miles Beck wrote: > > I'm just curious when we'll get back to working on 0.4. I notice it > > has been about three weeks since anything has been comitted. > > > > Do we know what still needs to be done before this release is good to go? > There's quite a few UI bugs logged. Those should be fixed at the very > least. > > http://sourceforge.net/tracker/?group_id=148967&atid=778255 > > I'd like to see some easy ajax features added also. (like > background/async 'mark as read', refresh, etc) > > -Kevin > |
From: Kevin <ke...@dr...> - 2006-10-04 04:19:03
|
Miles Beck wrote: > I'm just curious when we'll get back to working on 0.4. I notice it > has been about three weeks since anything has been comitted. > > Do we know what still needs to be done before this release is good to go? There's quite a few UI bugs logged. Those should be fixed at the very least. http://sourceforge.net/tracker/?group_id=148967&atid=778255 I'd like to see some easy ajax features added also. (like background/async 'mark as read', refresh, etc) -Kevin |
From: Miles B. <mil...@gm...> - 2006-10-04 03:02:40
|
I'm just curious when we'll get back to working on 0.4. I notice it has been about three weeks since anything has been comitted. Do we know what still needs to be done before this release is good to go? -Miles |
From: Kevin <ke...@dr...> - 2006-10-02 13:59:01
|
I think I found the problem. Some html content for the item is being partially filtered by fof_sanitize_content. I see this with inline youtube and google video objects. -kevin Kevin wrote: > I see a strange problem when viewing items sometimes. It looks like some > of the page is rendered in a layer below everything else. Have a look. > (Please disregard the picture of Karl Rove in a Mickey Mouse hat.) > > > |
From: Kevin <ke...@dr...> - 2006-09-08 18:35:05
|
I see a strange problem when viewing items sometimes. It looks like some of the page is rendered in a layer below everything else. Have a look.=20 (Please disregard the picture of Karl Rove in a Mickey Mouse hat.) http://www.drule.org/kev/fofr_css_overlap.gif --=20 Kevin |
From: Kevin <ke...@dr...> - 2006-08-30 18:06:48
|
> On 8/30/06, Miles Beck <mil...@gm...> wrote: >> I was checking out the latest snapshot and found a nice surprise. When >> you update the database the list of new articles is displayed as it >> checks each feed. This is a nice touch and it appears to be a lot >> faster than previously. > > Yes, updating got much faster - Kevin must have beaten it into submissi= on. > :) Boy, I hope so. I was really annoyed with how update worked before and a= m happy it's finally fixed. --=20 Kevin |
From: Andrew T. <ajt...@hi...> - 2006-08-30 16:00:00
|
On 8/30/06, Miles Beck <mil...@gm...> wrote: > I was checking out the latest snapshot and found a nice surprise. When > you update the database the list of new articles is displayed as it > checks each feed. This is a nice touch and it appears to be a lot > faster than previously. Yes, updating got much faster - Kevin must have beaten it into submission. :) > The text wrapping around images is very nice and looks very good now > when there is a lot of images in a post. Well, I'll admit - I just finally updated my personal copy to the new UI, which is forcing me to fix the most glaring things so that I can read my feeds. This will prompt me to get into gear fixing other things. > I also noticed the footer is still stuck at the end of the currently > displayed conent. And when you scroll down the footer stays in place. Hrm, you're right - this should have been fixed. Not sure how it got "unfixed" > -Miles > -- Andrew Turner ajt...@hi... 42.4266N x 83.4931W http://highearthorbit.com Northville, Michigan, USA |
From: Miles B. <mil...@gm...> - 2006-08-30 15:51:53
|
I was checking out the latest snapshot and found a nice surprise. When you update the database the list of new articles is displayed as it checks each feed. This is a nice touch and it appears to be a lot faster than previously. The text wrapping around images is very nice and looks very good now when there is a lot of images in a post. I also noticed the footer is still stuck at the end of the currently displayed conent. And when you scroll down the footer stays in place. -Miles |
From: Kevin <ke...@dr...> - 2006-08-28 21:33:38
|
> On 8/25/06, Kevin <ke...@dr...> wrote: >> Gah! Evil cut&paste error. Please change the line to read: >> >> $retval =3D $dd->connection->Execute($add_catid_ddl[0]); >> >> >> Or, just wait for tomorrow's snapshot.. >> >> >> -- >> Kevin > > After chagning the line I now get the following error: > > Notice: Only variables should be assigned by reference in > /home/bluntmon/public_html/fofreduxtest/lib/model/option.php on line > 123 > > Fatal error: mysql error: [Table 'fr_items' already exists] in > EXECUTE("CREATE TABLE fr_items ( id INTEGER NOT NULL AUTO_INCREMENT, > name VARCHAR(250) NOT NULL, PRIMARY KEY (id) )") > Error performing database operation, Maybe you need to run the installe= r. > in /home/bluntmon/public_html/fofreduxtest/lib/model/base.php on line 2= 51 Fixed. another cut&paste error. --=20 Kevin |
From: Kevin <ke...@dr...> - 2006-08-28 21:29:55
|
Benjamin wrote: > For logging and general debugging, you should be using Firebug. It's > fantastic for all web dev work. Wow that is a kick ass extension. And YUI Logger integrates with Firebug= . Bonus! -Kevin > > On 8/28/06, Kevin <ke...@dr...> wrote: >> >> > Good finds - these are worth looking at. I had unofficially chosen >> > Prototype due to its large base, stability, and my familiarity with >> > it. However, no JS coding has been done yet, so we can look at these >> > options. >> > >> > I think a big thing to think about when evaluating these is how to >> > make them "unobtrusive" - graceful degradation to non-JS browsers, >> > clean code/maintenance. >> > >> > If anyone on the mailing list has any feedback on JS libraries they'= ve >> > used, nows the time to speak up! :) >> >> I think anything is better than POJS.(plain old javascript) The >> features >> of Prototype and YUI seem to be about equal.(ajax, DOM manipulation, >> events, etc) I'm leaning toward YUI because of what I've seen with th= e >> Logger. I don't know what Prototype has for logging/debugging, but I >> think that's a key feature to have from a development point of view. >> >> http://developer.yahoo.com/yui/logger/ >> >> -- >> 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=3Dlnk&kid=3D120709&bid=3D263057&da= t=3D121642 >> _______________________________________________ >> Fofredux-devel mailing list >> Fof...@li... >> https://lists.sourceforge.net/lists/listinfo/fofredux-devel >> >> > --=20 Kevin |
From: Benjamin S. <bst...@gm...> - 2006-08-28 20:59:05
|
For logging and general debugging, you should be using Firebug. It's fantastic for all web dev work. On 8/28/06, Kevin <ke...@dr...> wrote: > > > Good finds - these are worth looking at. I had unofficially chosen > > Prototype due to its large base, stability, and my familiarity with > > it. However, no JS coding has been done yet, so we can look at these > > options. > > > > I think a big thing to think about when evaluating these is how to > > make them "unobtrusive" - graceful degradation to non-JS browsers, > > clean code/maintenance. > > > > If anyone on the mailing list has any feedback on JS libraries they've > > used, nows the time to speak up! :) > > I think anything is better than POJS.(plain old javascript) The features > of Prototype and YUI seem to be about equal.(ajax, DOM manipulation, > events, etc) I'm leaning toward YUI because of what I've seen with the > Logger. I don't know what Prototype has for logging/debugging, but I > think that's a key feature to have from a development point of view. > > http://developer.yahoo.com/yui/logger/ > > -- > 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 > > |
From: Kevin <ke...@dr...> - 2006-08-28 20:55:57
|
> Good finds - these are worth looking at. I had unofficially chosen > Prototype due to its large base, stability, and my familiarity with > it. However, no JS coding has been done yet, so we can look at these > options. > > I think a big thing to think about when evaluating these is how to > make them "unobtrusive" - graceful degradation to non-JS browsers, > clean code/maintenance. > > If anyone on the mailing list has any feedback on JS libraries they've > used, nows the time to speak up! :) I think anything is better than POJS.(plain old javascript) The feature= s of Prototype and YUI seem to be about equal.(ajax, DOM manipulation, events, etc) I'm leaning toward YUI because of what I've seen with the Logger. I don't know what Prototype has for logging/debugging, but I think that's a key feature to have from a development point of view. http://developer.yahoo.com/yui/logger/ --=20 Kevin |
From: Kevin <ke...@dr...> - 2006-08-28 18:32:59
|
> I put in a temporary fix that will fix the footer either to the bottom > of the window, or to the bottom of the content, whichever is "lower". > This currently doesn't have the nice effect of fixing the footer to > the bottom of the window. I like this. It's a good compromise between what we have now and the footer under the old UI. I don't like forcing positioning using JS event= s because the bar will jump around and distract/annoy the user (namely me) when scrolling. Thanks, Kevin > ALA has a decent article I may implement on how to fix it to the > bottom of the window. It is using JS, but using JS with good CSS where > JS isn't present should make it degrade nicely and be hidable on > diff't displays. > http://alistapart.com/articles/footers > > Andrew > > On 8/28/06, Andrew Turner <ajt...@hi...> wrote: >> Yeah, that is a problem. I know just enough CSS trickery to make neat >> things, but they break easily :p >> >> There *should* be a way for CSS to handle this properly. I've seen >> sites that use the JS event and that usually seems jerky, and >> unnecessary processing for just a footer. >> >> I'll look into it. >> Andrew >> >> On 8/28/06, Kevin <ke...@dr...> wrote: >> > >> > I like the way the footer anchors itself to the bottom of the viewab= le >> > page. I don't like that it sticks to the page while scrolling and >> > obscures the content under it. I assume it needs a little JS event >> > magic for it to work right.. >> > >> > -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 j= ob >> easier >> > Download IBM WebSphere Application Server v.1.0.1 based on Apache >> Geronimo >> > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&= dat=3D121642 >> > _______________________________________________ >> > 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 > --=20 Kevin |