Well, when you're doing development, any web page is an example as you're
running locally.  The jump would be to compile it as a stand-alone.  I was
impressed how easily we have an http server.  Compare that to configuring
IIS to run ASP pages, and I want to barf.  (Yes, I know that's not apples to
apples, but often I just want the core of the apple!)

If you want to follow the path of least resistance, try getting the
calculator running then modify from there.  Next, compare to the blog webapp
and try to run it from the same 'run-calculator' type word.  Blogs should
teach you enough about chloe to decide if you like it or not.

Using fhtml templates is like php development.  Play with it:

: fhtml-file ( fname -- str ) <fhtml> [ call-template ] with-string-writer ;

I never have understood the exact difference between dispatcher and
responder, but somehow still can get things working.

You'll probably need to know about db-tuples, although you can do quite a
bit keeping objects in memory.  Although the web page is stateless, global
variables in factor are available because there's only one instance running
all requests.  You can also temporarily violate best practices and save
whatever you want in the session, then come back later and make it more able
to run from anywhere if you need.

On Thu, Nov 11, 2010 at 11:11 PM, Shaping <shap...@charter.net> wrote:

> What is currently the best example/demo involving a locally running
> web-server serving  HTML pages?  I need to get more deeply into HTML 5 and
> CSS 3, anyway.
>
>
>
>
>
> Shaping
>
>
>
> *From:* Jim mack [mailto:j...@less2do.com]
> *Sent:* 2010-November-11, 13:29
> *To:* factor-talk@lists.sourceforge.net
> *Subject:* Re: [Factor-talk] Factor GUI
>
>
>
> Don't ignore the possibility of deploying as a local http server and having
> a local webapp.  The server would be on the box, so it could do things
> locally, call COM, access clipboard.  It's how I'm trying to do things, and
> works cross-platform, and is only limited by your html/css skills.
>
> On Thu, Nov 11, 2010 at 1:35 AM, Shaping <shap...@charter.net> wrote:
>
> > I would still like to convince my sup that Factor is the way to go, and
>
> > he'll want the latest and greatest Windows 7 GUI, eventually. So my next
>
> > question is:  Has anyone undertaken the task of making a more up-to-date
>
> > looking set of widgets for Factor to use when creating GUI apps, even if
>
> > those widgets/gadgets will not be used in the dev-environ itself?
>
>
>
> The widget styles for the Factor UI itself are just images, stored in
>
> basis/ui/gadgets/theme. Reskinning is a simple matter of replacing
>
> those images. But for end-user applications, you don't necessarily
>
> have to stick with the Factor UI's widgets. Since you're only
>
> targeting Windows, you can use the native Win32 APIs, or some other UI
>
> toolkit library.
>
>
>
> Yes, I was referring to the Win32 APIs.  Is anyone working on this now?
>
>
>
> This is not the best strategy, anyway, if a broad deployment is the
> objective.  The current Factor style reminds me of the Motif style.
>
>
>
>
>
> Shaping
>
>
>
> ------------------------------------------------------------------------------
> Centralized Desktop Delivery: Dell and VMware Reference Architecture
> Simplifying enterprise desktop deployment and management using
> Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
> client virtualization framework. Read more!
> http://p.sf.net/sfu/dell-eql-dev2dev
> _______________________________________________
> Factor-talk mailing list
> Factor-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/factor-talk
>
>
>
>
> --
> Jim
> "I'm for extending the working Medicare program for our seniors all the way
> back to contraception, so Americans can concentrate on living their lives
> without fear of changing a job, going bankrupt from deductibles or fighting
> HMO bureaucracy."
>
>
> ------------------------------------------------------------------------------
> Centralized Desktop Delivery: Dell and VMware Reference Architecture
> Simplifying enterprise desktop deployment and management using
> Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
> client virtualization framework. Read more!
> http://p.sf.net/sfu/dell-eql-dev2dev
> _______________________________________________
> Factor-talk mailing list
> Factor-talk@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/factor-talk
>
>


-- 
Jim
"I'm for extending the working Medicare program for our seniors all the way
back to contraception, so Americans can concentrate on living their lives
without fear of changing a job, going bankrupt from deductibles or fighting
HMO bureaucracy."
------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
Factor-talk mailing list
Factor-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/factor-talk

Reply via email to