If you want something that automatically updates in the page without a refresh, you're going to need something on the client side to request and process the data in the DOM, or get even more advanced with push techniques. Jquery/ajax is in my opinion the easiest and most readable way to do this, and it works on a vanilla apache server.
If you don't need continuous updates, you can use any number of tools to dynamically generate content when the browser requests page content. Perl, python, anything that can generate a text file will work if you configure your web server to call it via cgi, or with a little shell php script to put it together. This will make your life easy at first, but really limit your capability down the line. I'm cleaning up the aforementioned libraries based on python, jquery,ajax, and sqlite and will update when it's public. You can poke around and see if anything is of interest. Colin > On Jan 6, 2014, at 17:43, Top-Dog <[email protected]> wrote: > > CReese wrote >> There are a dozen ways to display your data. The absolute simplest is to >> parse the text data directly in the 1wire directory directly using >> javascript/jquery on timeout in the page, and manipulating the dom using >> class or id identifiers. I can outline some options and techniques if you >> are interested in this route. There are many other considerations that I >> can get into if you like. >> >> Colin > > That sounds good. Is it possible to phrase the data in the C source code? > I'd prefer that over writing java or perl as I don't have and real > experience using those languages. > > > > > -- > View this message in context: > http://owfs-developers.1086194.n5.nabble.com/Modifying-owhttpd-tp10099p10173.html > Sent from the OWFS Developers mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Rapidly troubleshoot problems before they affect your business. Most IT > organizations don't have a clear picture of how application performance > affects their revenue. With AppDynamics, you get 100% visibility into your > Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro! > http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk > _______________________________________________ > Owfs-developers mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/owfs-developers ------------------------------------------------------------------------------ Rapidly troubleshoot problems before they affect your business. Most IT organizations don't have a clear picture of how application performance affects their revenue. With AppDynamics, you get 100% visibility into your Java,.NET, & PHP application. Start your 15-day FREE TRIAL of AppDynamics Pro! http://pubads.g.doubleclick.net/gampad/clk?id=84349831&iu=/4140/ostg.clktrk _______________________________________________ Owfs-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/owfs-developers
