Opentalk serve static files

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
10 messages Options
Reply | Threaded
Open this post in threaded view
|

Opentalk serve static files

Oleg Richards
Hello Everybody!

Can somebody say me: how can i serve static css files for my seaside application using opentalk as web server. Now i'm storing all in filelibrary, but it is very hard for css development (update css, load it to library). In my production i will use apache and that problem will be solved, but what can i use for development needs? What do you recommend?

Cheers, Oleg
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

James Robertson-7
Look at #updateRoot: in your subclass of WAComponent

James Robertson
http://www.cincomsmalltalk.com/blog/blogView
Talk Small and Carry a Big Class Library



On Mar 29, 2008, at 4:56 AM, Oleg Richards wrote:

>
> Hello Everybody!
>
> Can somebody say me: how can i serve static css files for my seaside
> application using opentalk as web server. Now i'm storing all in
> filelibrary, but it is very hard for css development (update css,  
> load it to
> library). In my production i will use apache and that problem will be
> solved, but what can i use for development needs? What do you  
> recommend?
>
> Cheers, Oleg
> --
> View this message in context: http://www.nabble.com/Opentalk-serve-static-files-tp16367343p16367343.html
> Sent from the VisualWorks mailing list archive at Nabble.com.
>
> _______________________________________________
> vwnc mailing list
> [hidden email]
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

Oleg Richards
So i can assign file from local system as stylesheet in updateRoot...


James Robertson-7 wrote
Look at #updateRoot: in your subclass of WAComponent

James Robertson
http://www.cincomsmalltalk.com/blog/blogView
Talk Small and Carry a Big Class Library



On Mar 29, 2008, at 4:56 AM, Oleg Richards wrote:

>
> Hello Everybody!
>
> Can somebody say me: how can i serve static css files for my seaside
> application using opentalk as web server. Now i'm storing all in
> filelibrary, but it is very hard for css development (update css,  
> load it to
> library). In my production i will use apache and that problem will be
> solved, but what can i use for development needs? What do you  
> recommend?
>
> Cheers, Oleg
> --
> View this message in context: http://www.nabble.com/Opentalk-serve-static-files-tp16367343p16367343.html
> Sent from the VisualWorks mailing list archive at Nabble.com.
>
> _______________________________________________
> vwnc mailing list
> vwnc@cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>

_______________________________________________
vwnc mailing list
vwnc@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

James Robertson-7
As I understand it, yes

In the header section of the page

James Robertson
http://www.cincomsmalltalk.com/blog/blogView
Talk Small and Carry a Big Class Library



On Mar 29, 2008, at 2:02 PM, Oleg Richards wrote:

>
> So i can assign file from local system as stylesheet in updateRoot...
>
>
>
> James Robertson-7 wrote:
>>
>> Look at #updateRoot: in your subclass of WAComponent
>>
>> James Robertson
>> http://www.cincomsmalltalk.com/blog/blogView
>> Talk Small and Carry a Big Class Library
>>
>>
>>
>> On Mar 29, 2008, at 4:56 AM, Oleg Richards wrote:
>>
>>>
>>> Hello Everybody!
>>>
>>> Can somebody say me: how can i serve static css files for my seaside
>>> application using opentalk as web server. Now i'm storing all in
>>> filelibrary, but it is very hard for css development (update css,
>>> load it to
>>> library). In my production i will use apache and that problem will  
>>> be
>>> solved, but what can i use for development needs? What do you
>>> recommend?
>>>
>>> Cheers, Oleg
>>> --
>>> View this message in context:
>>> http://www.nabble.com/Opentalk-serve-static-files-tp16367343p16367343.html
>>> Sent from the VisualWorks mailing list archive at Nabble.com.
>>>
>>> _______________________________________________
>>> vwnc mailing list
>>> [hidden email]
>>> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>>>
>>
>> _______________________________________________
>> vwnc mailing list
>> [hidden email]
>> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>>
>>
>
> --
> View this message in context: http://www.nabble.com/Opentalk-serve-static-files-tp16367343p16372751.html
> Sent from the VisualWorks mailing list archive at Nabble.com.
>
> _______________________________________________
> vwnc mailing list
> [hidden email]
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

Holger Kleinsorgen-3
In reply to this post by Oleg Richards
Oleg Richards schrieb:
> Hello Everybody!
>
> Can somebody say me: how can i serve static css files for my seaside
> application using opentalk as web server. Now i'm storing all in
> filelibrary, but it is very hard for css development (update css, load it to
> library). In my production i will use apache and that problem will be
> solved, but what can i use for development needs? What do you recommend?

WAExternalFileLibrary
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

Holger Kleinsorgen-3
Holger Kleinsorgen schrieb:

> Oleg Richards schrieb:
>> Hello Everybody!
>>
>> Can somebody say me: how can i serve static css files for my seaside
>> application using opentalk as web server. Now i'm storing all in
>> filelibrary, but it is very hard for css development (update css, load it to
>> library). In my production i will use apache and that problem will be
>> solved, but what can i use for development needs? What do you recommend?
>
> WAExternalFileLibrary

PS: ...although I'll have to confess that I'm not using
WAExternalFileLibrary, because it doesn't seem to support
subdirectories, which quickly requires other solutions. I'm now using a
custom (and slightly  twisted) file handler instead of WAFileHandler.
_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

Oleg Richards
In reply to this post by Holger Kleinsorgen-3
Thank you Guys!

One more question is OpenTalk better for production, than VW WebToolkit?
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

Boris Popov, DeepCove Labs (SNN)
In reply to this post by Oleg Richards
Re: [vwnc] Opentalk serve static files

I would guess so, but note that its fairly new and webtookit isn't without faults of its own. I am in the process of porting our production apps to 7.6 right now and its looking good so far.

Cheers!

-Boris (via BlackBerry)

----- Original Message -----
From: [hidden email] <[hidden email]>
To: [hidden email] <[hidden email]>
Sent: Sat Mar 29 11:38:56 2008
Subject: Re: [vwnc] Opentalk serve static files


Thank you Guys!

One more question is OpenTalk better for production, than VW WebToolkit?
--
View this message in context: http://www.nabble.com/Opentalk-serve-static-files-tp16367343p16373125.html
Sent from the VisualWorks mailing list archive at Nabble.com.

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc


_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: [vwnc] Opentalk serve static files

James Robertson-7
In reply to this post by Oleg Richards
If you want to use Seaside in a supported fashion with the latest  
release, then the Opentalk HTTP server is the way to go.

James Robertson
http://www.cincomsmalltalk.com/blog/blogView
Talk Small and Carry a Big Class Library



On Mar 29, 2008, at 2:38 PM, Oleg Richards wrote:

>
> Thank you Guys!
>
> One more question is OpenTalk better for production, than VW  
> WebToolkit?
> --
> View this message in context: http://www.nabble.com/Opentalk-serve-static-files-tp16367343p16373125.html
> Sent from the VisualWorks mailing list archive at Nabble.com.
>
> _______________________________________________
> vwnc mailing list
> [hidden email]
> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
>

_______________________________________________
vwnc mailing list
[hidden email]
http://lists.cs.uiuc.edu/mailman/listinfo/vwnc
Reply | Threaded
Open this post in threaded view
|

Re: Opentalk serve static files

Oleg Richards
In reply to this post by Oleg Richards
So do I Boris, so do i :)