Re: [Wt-interest] Inter-Session Communication

2008-05-19 Thread Koen Deforche
Hey Archimedes, 2008/5/19 Archimedes B. Cortes [EMAIL PROTECTED]: Thanks for the insight. I think this is enough for me to go further with the idea. At least, I know it should work. I will try to separate the two chat window (guest 1 and guest 2) and see how I can implement the mentioned

Re: [Wt-interest] getCgiValue

2008-05-27 Thread Koen Deforche
Hey Guy, 2008/5/25 Guy Deleeuw [EMAIL PROTECTED]: Hello Two or more call to this function with the same value produce a bad return ex. getCgiValue(REMOTE_USER) return guy = ok getCgiValue(REMOTE_USER) return = error nothing I could not reproduce this. Can you be more specific on when it

Re: [Wt-interest] Using the bultin http server?

2008-05-29 Thread Koen Deforche
Hey Michael, 2008/5/28 Michael Medin [EMAIL PROTECTED]: Anyways are there any info/samples on how to use the built in http server? I tried to look around a bit but it seemed all examples assumed the program was a stupid demon as they all did void main(void) { Wrun(...); } I need to start

Re: [Wt-interest] small thread safety issue in http:server::Server

2008-05-30 Thread Koen Deforche
Hey Max, 2008/5/30 Max M [EMAIL PROTECTED]: I believe that the strategy used in http:server::Server to shutdown the acceptor(s) is not thread safe. Although the handleStop function is called through the io_service event loop, there is no guarantee that handleStop and handle(Tcp|Ssl)Accept

Re: [Wt-interest] Invalid Pages User Permissions

2008-06-11 Thread Koen Deforche
Hey Roja, 2008/6/9 Roja Anthony Buck [EMAIL PROTECTED]: Hi, I am just taking a look at your framework and am mighty impressed with its simplicity. That said i wondered if anyone could give me a hint towards solving the following questions: 1) Is there any way of making the served pages

Re: [Wt-interest] Invalid Pages User Permissions

2008-06-12 Thread Koen Deforche
Hey Roja, Out of interest, how easy is it to fake a session? The reason i ask is that i adore the simplicity of your aforementioned login from a static page especially aligned to https however say a malicious user becomes aware of a logged in user-session, how difficult would it be for the

Re: [Wt-interest] Wrappers for Qt

2008-06-16 Thread Koen Deforche
Hey all, 2008/6/12 0xd34df00d [EMAIL PROTECTED]: I've been creating an application using C++/Qt which should provide web-interface. As I've noticed, WAbstractItemModel is very similar to QAbstractItemModel, so the simplest solution would be writing some kind of proxy class from

Re: [Wt-interest] google maps widget

2008-07-04 Thread Koen Deforche
Hey Misi, 2008/6/13 misi e [EMAIL PROTECTED]: Now my concrete question: I wonder if somebody already created a wrapper widget arround google maps? If please give me some tips how to start. I promis I will share the code, if I will have to write this... I personally have never used the google

Re: [Wt-interest] is there any templating mechanism?

2008-07-04 Thread Koen Deforche
Hey Misi, I wonder if somebody thought or already implemented some html template mechanism (the blahblah with web designer defines general visual outlook of a homepage/web application, and then the contents business logic is manipulated by the application etc.) and now the essence..

Re: [Wt-interest] Examples, paths and --docroot

2008-07-06 Thread Koen Deforche
Hey Pau, While testing the Ubuntu/Debian packages, I've noticed in the examples files (for instance, localization XMLs) are opened assuming they are in the same folder the application binary is when it is started. True. And many of them make the additional assumption that you have 'ln -s'ed

Re: [Wt-interest] Examples, paths and --docroot

2008-07-09 Thread Koen Deforche
Hey Pau, 2008/7/6 Pau Garcia i Quiles [EMAIL PROTECTED]: Am I wrong? Shouldn't --docroot be enforced? Or maybe something like BinReloc ( http://autopackage.org/docs/binreloc/ ) to use the directory where the binary is as the root? (I like docroot enforced better, FWIW) Sorry, I didn't

Re: [Wt-interest] LineEdit with completion

2008-07-13 Thread Koen Deforche
Hey, 2008/7/13 misi e [EMAIL PROTECTED]: Hello, Did anybody write any extension for the LineEdit gadget ( :) ) that supports autocompletien like on maps.google.com or gmail.com?? Like in the composer example, using WSuggestionPopup ? Regards, koen

Re: [Wt-interest] WContainerWidget::setLayout(WGridLayout) can crash

2008-07-13 Thread Koen Deforche
Hey Bart, 2008/7/12 bvh [EMAIL PROTECTED]: Wt will crash when trying to call WContainerWidget::setLayout when you pass in a WGridLayout that satisfies the following conditions - does not yet have that WContainerWidget as a Parent - is not complete, ie for example when adding a widget to

Re: [Wt-interest] Examples, paths and --docroot

2008-07-14 Thread Koen Deforche
Hey Pau, 2008/7/9 Pau Garcia i Quiles [EMAIL PROTECTED]: One would expect that WApplication::useStyleSheet and WMessageResourceBundle::use look for the CSS stylesheet and the localization XML in the docroot or where the binary is. Given that this is not the case, I think the docs should make

[Wt-interest] Unpleasant change in CVS: Wt include directories

2008-07-14 Thread Koen Deforche
All, Unless your hobby is setting up build files or configure scripts, I am afraid the latest CVS commit will draw your attention to an unpleasant change. Until now, Wt installed its include files directly into the (...)/include folder, where (...) corresponds to ${CMAKE_INSTALL_PREFIX} as

Re: [Wt-interest] Unpleasant change in CVS: Wt include directories

2008-07-14 Thread Koen Deforche
Hey Ray, 2008/7/14 Ray Burkholder [EMAIL PROTECTED]: Unless your hobby is setting up build files or configure scripts, I am afraid the latest CVS commit will draw your attention to an unpleasant change. Until now, Wt installed its include files directly into the (...)/include folder, where

Re: [Wt-interest] Bug in src/wt/WLogger.C

2008-07-14 Thread Koen Deforche
Hey Goetz, 2008/7/14 Goetz Babin-Ebell [EMAIL PROTECTED]: Hello Folks, Index: src/wt/WLogger.C === RCS file: /opt/cvs/wt/src/wt/WLogger.C,v retrieving revision 1.1 diff -u -r1.1 WLogger.C --- src/wt/WLogger.C13 Jul 2008

Re: [Wt-interest] Unpleasant change in CVS: Wt include directories

2008-07-15 Thread Koen Deforche
Hey all, I bit the bullet and updated the tree so that Wt now uses the new Wt/... include file style in its own include files. Unfortunately (which is why I was postponing this change), this required reorganizing the src/ directory, something which CVS does not handle very well. When updating

Re: [Wt-interest] WContainerWidget::setLayout(WGridLayout) can crash

2008-07-15 Thread Koen Deforche
Hey Bart, 2008/7/14 bvh [EMAIL PROTECTED]: On Sun, Jul 13, 2008 at 08:25:49PM +0200, Koen Deforche wrote: Wt will crash when trying to call WContainerWidget::setLayout when you pass in a WGridLayout that satisfies the following conditions - does not yet have that WContainerWidget

Re: [Wt-interest] Bug in src/wt/WLogger.C

2008-07-15 Thread Koen Deforche
Hey Goetz, 2008/7/15 Goetz Babin-Ebell [EMAIL PROTECTED]: The crash I observed was inside of WT (build with debug info) backtrace: #0 0x081eff5c in Wt::WLogger::Field::isString (this=0x0) at /usr/src/buildenv/wt-cvs-wt/src/Wt/WLogger:84 #1 0x081ef3f5 in Wt::WLogEntry::Impl::quote

Re: [Wt-interest] WMessageBox using javascript alert() / confirm() ?

2008-07-16 Thread Koen Deforche
Hey Goetz, 2008/7/15 Goetz Babin-Ebell [EMAIL PROTECTED]: Hello folks, would it be a reasonable idea to change the WMessagebox to use the javascript functions alert() and confirm() if possible ? As an option (native JavaScript versus WDialog-like), it would definitely add value. I am not

Re: [Wt-interest] About hideRow()

2008-07-25 Thread Koen Deforche
Hey Zhimin, 2008/7/25 zhimin song [EMAIL PROTECTED]: I am making a TableSearch using TableView and AbstractItemModel, i want to realize the functions like OpenOffice's Data-Filter-AutoFilter. But now, because Wt has not a hideRow() method for TableView, I use tow Data Model,

[Wt-interest] Wt 2.1.5 released

2008-07-25 Thread Koen Deforche
Hey all, I've uploaded Wt 2.1.5 to sourceforge. It is mostly an incremental bug fix release, with a few major changes and additions: - The directory layout has changed: Wt now installs its include files within a Wt/ subdirectory. This is mostly good news because it now longer clobbers the

Re: [Wt-interest] Wt 2.1.5 released

2008-07-27 Thread Koen Deforche
Hey Michael, 2008/7/26 Michael Ivanov [EMAIL PROTECTED]: - There is a new widget WTextEdit, that is a rich text editor. It wraps around the nice JavaScript library TinyMCE (LGPL licensed). Just tried this widget (used cvs version instead of 2.1.5 though). Either I miss sthing from

Re: [Wt-interest] Cookies crumbling?

2008-07-29 Thread Koen Deforche
Hey Brad, 2008/7/29 Brad [EMAIL PROTECTED]: I'm trying to use setCookie and getCookie bt have struck some problems. I have modified the hello example so that it calls this-setCookie( loggedin, 1, 15, rskikr, / ); in the constructor. I noticed it created a cookie with the value enclosed

Re: [Wt-interest] WFileUpload progress.

2008-07-29 Thread Koen Deforche
Hey Jim, 2008/7/29 Jim Koornneef [EMAIL PROTECTED]: I've been digging around in the code, but I admit I'm no JavaScript wizard and have no idea how to implement this myself – maybe someone has an idea, if they haven't done this themselves already. I'm beginning with the AttachmentEdit code

[Wt-interest] Pretty URLs

2008-08-06 Thread Koen Deforche
Hey all, We did some serious work in the core of Wt to now fully support pretty URLs (while I did not care about them in the beginning, I can be quite enthousiastic about them now!) You can skip the description, and perhaps take a look at the homepage which has been deployed today against the

Re: [Wt-interest] Fwd: Problem with extkitchen - Possible problem in StaticReply

2008-08-06 Thread Koen Deforche
Hey Daniel, 2008/8/6 Daniel Cavalcanti [EMAIL PROTECTED]: I've setup ext 2.2 correctly (or so I believe) but when I run ExtKitchen and try to login, I get the following in stderr: 127.0.0.1 - - [2008-Aug-06 11:35:16.640625] GET / HTTP/1.1 200 847 mxml: Character entity not terminated under

Re: [Wt-interest] Pretty URLs

2008-08-07 Thread Koen Deforche
Hey Goetz, 2008/8/7 Goetz Babin-Ebell [EMAIL PROTECTED]: I still don't see a way to get the entry point for the application without the applicationName() method. You were right. The initial internal path was only propagated to the application after it is constructed, through an

Re: [Wt-interest] Wt is in Debian

2008-08-11 Thread Koen Deforche
Hey Pau, 2008/8/10 Pau Garcia i Quiles [EMAIL PROTECTED]: Hello, Wt 2.1.4 has been just included in Debian Unstable: http://packages.debian.org/search?keywords=witty I expect the package to flow to Debian derivatives, such as Ubuntu I'm at aKademy 2008 now, so I'm pretty busy with

Re: [Wt-interest] Wt internal error: type XXX has no properties, code: undefined...

2008-08-11 Thread Koen Deforche
Hey, 2008/8/8 [EMAIL PROTECTED]: How to reproduce: Slot code has to delete something from DOM page (for example table from root) and then create something on it. You should activate slot reaction several times simultaneously (for example rapidly clicking the button that in connected to a

Re: [Wt-interest] WTable

2008-08-11 Thread Koen Deforche
Hey John, 2008/8/8 John Giordano [EMAIL PROTECTED]: Hello: Does anyone know why a WTable object inherits from a WInteractWidget. Why doesn't it inherit from a WContainerWidget? Because it is not clear how it could be, as it cannot not directly contain other widgets, except as children

Re: [Wt-interest] Compile error on Fedora 9 with current CVS

2008-08-14 Thread Koen Deforche
Hey Maurice, 2008/8/13 Maurice Gittens [EMAIL PROTECTED]: Hi, just got back from holiday to find that FileServe.C in current cvs needs to include string.h (for stncmp) for compilation to succeed for me. I am using gcc 4.3.0. Thanks for pointing this out ! Regards, koen

Re: [Wt-interest] Strategy check please

2008-08-14 Thread Koen Deforche
Hey Brad, 2008/8/12 Brad [EMAIL PROTECTED]: I have a witty app. which is designed to use cascading WTabWidgets (2 levels deep at the moment), it looks similar to the layout in the witty class reference. Each tab represents an applet, usually a form. As I change from tab to tab my applets

Re: [Wt-interest] Ext Javascript error in IE7

2008-08-14 Thread Koen Deforche
Hey Brad, 2008/8/14 Brad [EMAIL PROTECTED]: I have just completed an application which grabs data from several databases and combines the data in a standard model and then displays that model in a Wt::Ext::TableView I developed and tested the app in FF3 and it works fine, ext issues some

Re: [Wt-interest] Embedded build request for comments (RFC)

2008-08-22 Thread Koen Deforche
Hey John, 2008/8/21 John Giordano [EMAIL PROTECTED]: I want to try and use this library in an embedded environment. My Coldfire 32-bit V2 processor board has 512K bytes of flash and 2MB of ram. This platform is probably too limited to run a decent Wt application. I am not entirely sure,

Re: [Wt-interest] wt-2.1.5 release version internal error

2008-08-27 Thread Koen Deforche
Hey Billy, 2008/8/26 Billy Muma [EMAIL PROTECTED]: Every once in a while wt pops up a dialog box with the following message: Wt internal error: TypeError: j5487 is null code: undefined, description: undefined I can't recreate the error consistently so my efforts to find out what the

Re: [Wt-interest] fyi: wt build with boost 1_36

2008-08-27 Thread Koen Deforche
Hey, 2008/8/24 misi e [EMAIL PROTECTED]: did not follow emails, probably similar info was already on the wire; wt latest builds well with boost latest (1.36) except I had to make a change in .../include/boost/thread/thread.hpp, where I had to add the line: #include thread/condition.hpp I

Re: [Wt-interest] Some Bug or Memory Leak that Valgrind tells

2008-08-27 Thread Koen Deforche
Hey Zhimin, 2008/8/27 zhimin song [EMAIL PROTECTED]: 1) when using the examples/form/Form.C , edit-label()-decorationStyle().setForegroundColor(WColor());, the valgrind told ==8731== Conditional jump or move depends on uninitialised value(s) ==8731==at 0x4117E3D:

Re: [Wt-interest] Adding custom translators

2008-08-29 Thread Koen Deforche
Hey Goetz, 2008/8/29 Goetz Babin-Ebell [EMAIL PROTECTED]: Just a question: Why did you make hibernate() and resolveKey() private and declare WApplication, WebSession and WString as friends ? That would be my influence... These methods were private API up till now. It does not make sense to

Re: [Wt-interest] Multiserver with wt

2008-09-02 Thread Koen Deforche
Mathias, 2008/9/1 Mathias L. Baumann [EMAIL PROTECTED]: Hi there, i plan to write an multiserver. That is, a server that not only works with http but also several other protocols. For that i need to start my own socket functions and so on. if read that for executing wt one needs to call

Re: [Wt-interest] wstring

2008-09-10 Thread Koen Deforche
Hey John, 2008/9/4 John Giordano [EMAIL PROTECTED]: Hello: In order to compile Wt I had to add the following #define or else the compiler did not find wstring: _GLIBCXX_USE_WCHAR_T That sounds a bit dirty. Perhaps it compiles then, but does it work? It might be fine to have it

Re: [Wt-interest] ( Нет темы )

2008-09-10 Thread Koen Deforche
Hey Alex, 2008/9/9 Alex [EMAIL PROTECTED]: Hi, It seems cookie don't work. I am tried to set it at IE and Firefox - browser do not understand token name=value. Changing to name=value, withown quotes, fix problem. It is need fix WEnvironment.C and WebRenderer.C Thanks for letting us know.

Re: [Wt-interest] Missing children() methods?

2008-09-11 Thread Koen Deforche
Hey Richard, 2008/9/3 Richard Dale [EMAIL PROTECTED]: In the Qt api, the QObject class has a public children() method and I use the method in the QtRuby bindings for marking ruby instances as not needing garbage collection. In RubyWt I am having problems with some widgets being garbage

Re: [Wt-interest] WApplication::enableUpdates()

2008-09-11 Thread Koen Deforche
Hey, 2008/9/6 [EMAIL PROTECTED]: Has anyone used this along with triggerUpdate() on FCGI deployment? On my setup this works fine when launching with embedded HTTP server, but with fcgi+apache it fails. Application launches but any event leads to application reload... Do you get any errors

Re: [Wt-interest] Adding custom translators

2008-09-11 Thread Koen Deforche
Hey all, 2008/8/29 Koen Deforche [EMAIL PROTECTED]: 1. Add an abstract base class WTranslator (below). I named it WLocalizedStrings. 2. Make WMessageResourceBundle inherit WTranslator; 3. Change WApplication::messageResourceBundle_ from WMessageResourceBundle

Re: [Wt-interest] Examples not working!

2008-09-11 Thread Koen Deforche
Hey Andy, 2008/9/9 Andy Fong [EMAIL PROTECTED]: I first tried the latest release download and the chart example. The page came up but all the graph a blank. I am using FF3 and when I look at the examples online from the main web site, it shows up correctly, so the broswer should be fine. How

Re: [Wt-interest] examples build target with fcgi

2008-09-11 Thread Koen Deforche
Hey Misi, 2008/9/10 misi e [EMAIL PROTECTED]: yes, linux. Wt was latest version downloaded 2 weeks ago (do not have access now to the machine). Why is fcgi connector support on Linux an issue? It isn't. To use the FastCGI connector with the examples, you need to have in your CMakeCache.txt:

Re: [Wt-interest] newbie question about slots

2008-09-12 Thread Koen Deforche
Hey Jose, 2008/9/12 Jose M. Sanchez [EMAIL PROTECTED]: Hi, I have different widgets created in a generic way with slots connected to the same method. How can I know which widget triggered the event? void Test::createWidgets() { WText *text1 = new WText(...); WText *text2 = new

Re: [Wt-interest] Witty Build problem in solaris

2008-09-17 Thread Koen Deforche
Hey Amitendra, wt-2.2.0 should build fine on that configuration without any problems. Can you try that ? Regadrs, koen - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux

Re: [Wt-interest] decodeSignal() error preventing timers

2008-09-19 Thread Koen Deforche
Hey Billy, 2008/9/18 Billy Muma [EMAIL PROTECTED]: Hello again, I am experiencing a problem with Wt 2.1.5 release version. I have not found any mention of it on the message boards, so i am posting it. My apologies in advance if its an error on my part else, a description of the problem and

Re: [Wt-interest] Witty Build problem in solaris

2008-09-22 Thread Koen Deforche
Hey Amitendra, version of /opt/SUNWspro/bin/../prod/bin/../../bin/cc: Sun C 5.8 2005/10/13 version of /opt/SUNWspro/bin/../prod/bin/../../bin/CC: Sun C++ 5.8 Patch 12101 7-10 2007/02/21 Unfortunately, we only support more recent version of the SunStudio (see the version numbers I indicated)

Re: [Wt-interest] Witty Build problem in solaris

2008-09-23 Thread Koen Deforche
Hey Amitenda, 2008/9/23 Amitendra Mukherjee [EMAIL PROTECTED]: Hello Koen, Now it gives the following error... == [100%] Building CXX object src/http/CMakeFiles/wthttp.dir/WServer.o /export/home/amitendra/WT_Build/wt-2.2.0/src/http/WServer.C,

Re: [Wt-interest] Problem with WComboBox

2008-10-01 Thread Koen Deforche
Hey Amitendra, 2008/10/1 Amitendra Mukherjee [EMAIL PROTECTED]: I am running wt-2.2.0 in solaris machine. Now I am trying to run the form example. This example is running fine, but whenever I am selecting a country from the country combo, corresponding cities are not showing in city combo.

Re: [Wt-interest] IGNORE wt session behaviour

2008-10-04 Thread Koen Deforche
Hey Billy, 2008/9/30 Billy Muma [EMAIL PROTECTED]: Hello sorry about that last post concerning wt session behaviour. Please disregard it until i can be more specific about the cause. I can't seem to recreate it today and i am wondering if it was simply a result of upgrading from a

Re: [Wt-interest] Problem with WComboBox

2008-10-08 Thread Koen Deforche
Hey Amitendra, 2008/10/1 Amitendra Mukherjee [EMAIL PROTECTED]: I am using IE6 and built-in http. Server is always getting calls. Now I discover that it is running fine in Mozilla. A bug for resetting combobox content for IE fixed recently in CVS, so my guess is this will fix your problem too

Re: [Wt-interest] File Upload issue

2008-10-13 Thread Koen Deforche
Hey Ghazi, 2008/10/12 ghazi bousselmi [EMAIL PROTECTED]: I have added a class to the Wt library, to handle a JAVA Applet. The applet uploads a FILE to the server. The file is received by the server, but my Applet Widget receives no notification of file upload. With some (painful) debug, I

Re: [Wt-interest] witty with windows mobile internt explorer

2008-10-21 Thread Koen Deforche
Hey Misi, 2008/10/21 misi e [EMAIL PROTECTED]: Unfortunately wt applications cannot be displayed (yes, nor http://www.webtoolkit.eu) on windows mobile 6.0 internet explorer as they do not support full ajax... We are aware of problems with IE mobile, but we recently added support for IE Mobile

Re: [Wt-interest] Javascript library

2008-10-23 Thread Koen Deforche
Hey Jakob, 2008/10/20 Jakov af Wallby [EMAIL PROTECTED]: http://code.google.com/p/ie7-js/ It upgrades IE to behave more like a standards complient browser. I have come across that library before, and was very tempted to use it, but unfortunately, it doesn't do anything for dynamic content, so

Re: [Wt-interest] Example for Wt::WSocketNotifier

2008-11-03 Thread Koen Deforche
Hey Mathias, 2008/11/2 Mathias L. Baumann [EMAIL PROTECTED]: It is now time to have a closer look at witty for me. I looked at the suggested methodes and using the Wt::WSocketNotifier sounds nice, but I can't figure out how. At the moment, I use asio with async sockets. I would need to

[Wt-interest] Wt 2.2.1 released.

2008-11-03 Thread Koen Deforche
Hey all, We have uploaded Wt 2.2.1 was uploaded to sourceforge. As usual, this release is a mix of bug fixes, improvements, and new features. All changes were recorded in the Changelog. The most note-worthy new additions: - The WAbstractItemModel interface and the WStandardItemModel

Re: [Wt-interest] Standards seamless home page degradation...

2008-11-04 Thread Koen Deforche
Hey Anthony, 2008/11/4 Anthony Roger Buck [EMAIL PROTECTED]: Hi all, I have posed this query before (well of a similar vein) but got a not important enough reply, however i have come back as yet again it has stopped me using the framework with a client. What is main reason We're sorry to

Re: [Wt-interest] [My own Hello World app problem ] Dedicated session processes for test2 terminated cleanly

2008-11-04 Thread Koen Deforche
Hey Dushan, 2008/11/5 Dushan Savich [EMAIL PROTECTED]: # ./test2.wt --docroot . --http-address 0.0.0.0 --http-port When I try to open 0.0.0.0: from firefox I get 404 Error . And few seconds later ,from console , I get the folowing message: Dedicated

Re: [Wt-interest] Errors in widget gallery?

2008-11-05 Thread Koen Deforche
Hey Anthony, 2008/11/5 Anthony Roger Buck [EMAIL PROTECTED]: Just grabbed the latest wt (2.2.1) to demo to a client ( pushing js-only to them ;) ) only to find the example i was going to show them keeps chucking errors out for me :S (see attached...) Not 100% what's causing them so thought i

Re: [Wt-interest] [My own Hello World app problem ] Dedicated session processes for test2 terminated cleanly

2008-11-05 Thread Koen Deforche
Hey Dushan, 2008/11/5 Dushan Savich [EMAIL PROTECTED]: The output can be found here : http://www.stosha.net/core-dump It seems that you have also a version of Wt installed in /usr/lib, which is used at runtime. e.g. I see from your dump: /usr/lib/libwt.so.4 I'm using boost 1.36 and Wt

Re: [Wt-interest] [ExtJS] Ext:: Controls are not displayed at all

2008-11-07 Thread Koen Deforche
Hey Dushan, 2008/11/7 Dushan Savich [EMAIL PROTECTED]: When I create my own example, only normal controls ( Wt:: ) are displayed, but Wt::Ext:: are not . I've zipped wt_config.xml , kitchen sink example output , and directory listing of ext/folder. You can

Re: [Wt-interest] Wt licensing (was: Re: Where can I download extjs version 2.1 ?)

2008-11-07 Thread Koen Deforche
Hey Pau, 2008/11/7 Pau Garcia i Quiles [EMAIL PROTECTED]: Dushan Savich wrote: It would be a lot easier to just deploy ExtJS 2.02 with witty , wouldn't it :) ? Dushan Dushan, Consider the licensing issues involved. Now that's a good question, really. ExtJS used to be LGPLv2 +

Re: [Wt-interest] Great product

2008-11-07 Thread Koen Deforche
Hey Daniel, 2008/11/7 Daniel Derr [EMAIL PROTECTED]: I just starting experimenting with witty, and it is working great so far. Are there any books available for Wt? Additionally, is there a list of Witty experts out there who may be interested in doing a wt project? This mailing-list is

Re: [Wt-interest] Wt::WApplication::processEvents() Exception

2008-11-11 Thread Koen Deforche
Hey Zhimin, 2008/11/9 zhimin song [EMAIL PROTECTED]: hi, Koen I almost never met the Wt::WApplication::processEvents() Exception after have put my application into a newer and high capacity server:) but still have in my old pc for development.:) Can you describe in more detail what happens?

Re: [Wt-interest] Boot.html error

2008-11-12 Thread Koen Deforche
Hey Anthony, 2008/11/10 Anthony Roger Buck [EMAIL PROTECTED]: Just a quick heads up, alteration to boot.html in svn... !--[if IE 6] script id=ie-deferred-loader defer=defer src=//:/script ! [endif-- should read !--[if IE 6] script id=ie-deferred-loader defer=defer src=//:/script !

Re: [Wt-interest] strange error on IE7

2008-11-13 Thread Koen Deforche
Hey Guy, 2008/11/12 Guy Deleeuw [EMAIL PROTECTED]: Hi all I cannot start our application under IE7, I receive these error : Line 1184 Char : 20 Error : 'Ext.QuickTips' is null or not an object Code : 0 Safari and firefox work fine. Do you get this for the extkitchen example too ? I am

Re: [Wt-interest] Js Inline?

2008-11-13 Thread Koen Deforche
Hey Anthony, 2008/11/12 Anthony Roger Buck [EMAIL PROTECTED]: Is there any major reason why the bootstrap js is in the html file (both skeleton and generated) and not in an external .js file? The reason i ask is that i feel it would be rather nice to reduce the size of the files sent to

Re: [Wt-interest] more obvious waiting output

2008-11-13 Thread Koen Deforche
Hey Goetz, After the user processed some data and sent this to the server, in the upper right edge of the window there is this waiting on red background. How do I configure WT to give a more prominent feedback to the user ? (like window turns grey, with a box in the center saying

Re: [Wt-interest] Menu orientation

2008-11-13 Thread Koen Deforche
Hey Brad, 2008/11/9 Brad Hubbard [EMAIL PROTECTED]: The following appears to produce a vertically oriented menu where I would expect to see horizontal orientation. Is this right? You are right. It should be horizontal. However, the menu was not conceived with submenu's in a horizontal layout

Re: [Wt-interest] Streaming a resource in multiple chunks? (modified WFileResource)

2008-11-14 Thread Koen Deforche
Hey Michael, 2008/11/13 Michael Sørensen Loft [EMAIL PROTECTED]: I am using wt in an embedded application and therefore I have limited memory. I need to provide download of files and for that I use a WFileResource. From looking at the implementation of WFileResource, it seems that the entire

Re: [Wt-interest] Application size for embedded application

2008-11-14 Thread Koen Deforche
Hello Andrii, 2008/10/29 Andrii Arsirii [EMAIL PROTECTED]: I have tried to evaluate witty application size. I've made empty application with wthttp connector on i386 arch. Build options: MinSizeRel, -DHAVE_GNU_REGEX, -fvisibility=hidden, without libz and OpenSSL, static linkage with wt and

Re: [Wt-interest] more obvious waiting output

2008-11-14 Thread Koen Deforche
All, 2008/11/14 Brad Hubbard [EMAIL PROTECTED]: Hey Koen, I think Goetz may have had something like this in mind http://www.sitepoint.com/forums/showthread.php?t=581377 Is that doable using your new loading indicator module? Basically this form of loading indicator is becoming a kind of

Re: [Wt-interest] Streaming a resource in multiple chunks?(modified WFileResource)

2008-11-18 Thread Koen Deforche
Hey Michael, 2008/11/18 Michael Sørensen Loft [EMAIL PROTECTED]: I suggest that we make a build configuration option for the wthttpd that allows the choice between either scenario (transmitting a buffer using async I/O versus directly streaming using sync I/O). The latter option would then be

Re: [Wt-interest] Odd behavior of Ext::ComboBox

2008-11-18 Thread Koen Deforche
Hey Michael, 2008/11/18 Michael Sørensen Loft [EMAIL PROTECTED]: Hi, zhimin wrote: the good one is: http://cx.cun.edu.cn/bug/good.bmp the odd one is: http://cx.cun.edu.cn/bug/bad.bmp I am having the same problem where the drop down list in a ComboBox is very narrow compared to the size

Re: [Wt-interest] Odd behavior of Ext::ComboBox

2008-11-20 Thread Koen Deforche
Hey Michael, 2008/11/20 Michael Sørensen Loft [EMAIL PROTECTED]: Hi Koen, This was (supposedly) fixed in Wt. You may have another problem? Can you send me a screenshot? better yet, here is code to reproduce the problem. The combo box behaves incorrectly, when it is added to a container

Re: [Wt-interest] Cookie-Help needed

2008-11-21 Thread Koen Deforche
Hey Torsten, 2008/11/21 Torsten Schulz [EMAIL PROTECTED]: Hi, I think I don't understand how Cookies in Wt work. Ever if I will read a Cookie with Username = instance()-environment().getCookie(username); Wt only creates the following error and don't show the page: [2008-Nov-21

Re: [Wt-interest] Question about click event

2008-11-21 Thread Koen Deforche
Hey Bin Tan, 2008/11/19 Bin Tan [EMAIL PROTECTED]: Hi, In Javascript, if the onclick handler of an anchor ends with a return true; clause, when someone clicks on the anchor, he will go to the destined page finally. But in Wt, the clicked event does not allow you to do that. I can use

Re: [Wt-interest] [ Bug Report] inWt::Ext::Button::resize

2008-11-21 Thread Koen Deforche
Hey Dushan, 2008/11/21 Dushan Savich [EMAIL PROTECTED]: Basically, when height != 20 , it goes wild , and it looks like width parameter is completely ignored ( the length of buttons depends solely of length of the buttons' text ) This is not indicated in the documentation, but, a major

Re: [Wt-interest] WT memory usage

2008-11-24 Thread Koen Deforche
Hey Goetz, 2008/11/24 Goetz Babin-Ebell [EMAIL PROTECTED]: Hello folks, With the actual WT release our application uses 36MB of RAM. Considering the fact that the system has only 32 MB at all, this is a major problem. The way you phrase your question suggests you saw a big jump in memory

Re: [Wt-interest] sound

2008-11-24 Thread Koen Deforche
Hey Lalo, 2008/11/23 Lalo Martins [EMAIL PROTECTED]: So this client wants little sound effects when the user clicks a widget. I did try to dissuade them :-P but they're adamant. Is that possible with wt? Not as such. Googling around suggests that flash is the accepted solution for sound

Re: [Wt-interest] Runtime image generation/embedding

2008-11-24 Thread Koen Deforche
Hey Rudoy, 2008/11/22 0xd34df00d [EMAIL PROTECTED]: That would do for my own images, but I try to solve this problem applied to adaptor from QAbstractItemModel to WAbstractItemModel, converting DecorationRole and the corresponding QIcon to Wt's format. There's another problem - I can create

Re: [Wt-interest] WT memory usage

2008-11-24 Thread Koen Deforche
Hey Goetz, 2008/11/24 Goetz Babin-Ebell [EMAIL PROTECTED]: The way you phrase your question suggests you saw a big jump in memory usage with the latest release? With 2.1.5 it was a problem (20MB), but not that burning... I think I have found a reason for this behaviour: threads were

Re: [Wt-interest] WT memory usage

2008-11-24 Thread Koen Deforche
Hey Goetz, 2008/11/24 Goetz Babin-Ebell [EMAIL PROTECTED]: That is okay. But, those are mapped memory, not actually used. Mapped memory does not consume memory until it is actually used (i.e. swapped in). And that is the problem: It is an embedded device, which means no swap. And

Re: [Wt-interest] Emitting a clicked signal from a WAnchor?

2008-11-25 Thread Koen Deforche
Hey Michael, 2008/11/25 Michael Sørensen Loft [EMAIL PROTECTED]: Hi, I'm trying to emit the clicked signal on a WAnchor from code. The code is: anchor-clicked.emit(); but gcc says that I have no matching function call. The candidate is: void Wt::EventSignalE::emit(E) [with E =

Re: [Wt-interest] origin of session thread

2008-11-27 Thread Koen Deforche
Hey Sergey, 2008/11/27 sergey bryukov [EMAIL PROTECTED]: linux kernel 2.6.22-15-386 wt 2.2.1 boost-1_35 In the example each session prints out thread id during initiation and destroying. It is clear that not all session has uniq TID(thread id). The output (out.txt) are given in the

Re: [Wt-interest] origin of session thread

2008-11-27 Thread Koen Deforche
Hey Sergey, 2008/11/28 sergey bryukov [EMAIL PROTECTED]: Koen, thanks! It was my client/server arch misunderstanding. In asio examples there is a multi thread server implementation and I beveled all multi-client servers are implemented like that. In my solution I need unique session ID to

Re: [Wt-interest] Odd behavior of Ext::ComboBox

2008-11-28 Thread Koen Deforche
Hey Michael, 2008/11/25 Michael Sørensen Loft [EMAIL PROTECTED]: Hi Koen, Thanks for the fix. But I've found what is probably yet another version of the same problem. If the panel containing the combobox is added to a WContainerWidget, the elements in the combo are still to short. I've

Re: [Wt-interest] Witty, MySQL and Umlauts

2008-11-28 Thread Koen Deforche
Hey Torsten, 2008/11/27 Torsten Schulz [EMAIL PROTECTED]: Hi there, I've the Problem that many Entries in my Database (MySQL) are umlauts (German ä, ö, ü, ...). And I've tested many things with witty like WString::fromUTF8, toUTF8 and so on. But what ever I do, I'm not able to see the

Re: [Wt-interest] Wt-2.2.1 WLayout Compile Error

2008-12-01 Thread Koen Deforche
Hey Osei, 2008/12/1 Osei Simba Hinds [EMAIL PROTECTED]: Hi all, I recently upgraded to Wt-2.2.1 and these two includes in my project related to layout seem to be causing a problem #include Wt/WGridLayout #include Wt/WBorderLayout Here's what I get when I try to compile:-

Re: [Wt-interest] Wt-2.2.1 WLayout Compile Error

2008-12-01 Thread Koen Deforche
All, (I am really starting to hate GMail's keyboard behaviour!) 2008/12/1 Koen Deforche [EMAIL PROTECTED]: Here's what I get when I try to compile:- /usr/local/include/Wt/WLayout:170: error: expected ';' before 'margins_' In the file at that line - int*WT_ARRAY margins_

[Wt-interest] Wt 2.2.2

2008-12-01 Thread Koen Deforche
Hey all, Wt 2.2.2 was released, and, if it weren't better than 2.2.1 we would not have done that. Not only have we fixed quite some little bugs in various places, but there are also some new classes and features: - WTreeView (and WAbstractItemModel) now have support for drag and drop: a

Re: [Wt-interest] Wt 2.2.2

2008-12-01 Thread Koen Deforche
Hey Pau, Goetz, 2008/12/1 Pau Garcia i Quiles [EMAIL PROTECTED]: Wt 2.2.2 was released, and, if it weren't better than 2.2.1 we would not have done that. Really ? Are you sure ? ;-) We all live with the big fear of Recession^H^H, I mean, Regression :-) Unfortunately I stumbled on a problem

Re: [Wt-interest] Input Image

2008-12-01 Thread Koen Deforche
Hey Anthony, 2008/12/1 Anthony Buck [EMAIL PROTECTED]: Koen, Cheers for clearing up the JS issue :) Is there any way of using input images in the system? i.e. Input type=imageSpecifically i was thinking that they would be a better replacement for the JavaScript onclick used to

Re: [Wt-interest] Combobox-Entries with CSS

2008-12-02 Thread Koen Deforche
Hey Torsten, 2008/12/2 Torsten Schulz [EMAIL PROTECTED]: With cvs-version, i'm not able to compile my program: /bin/sh ../libtool --tag=CXX --mode=link g++ -O0 -g3 -o fantasimwt application.o benutzerliste.o chat.o db.o fantasimwt.o flogin.o spiel.o treffpunkt.o -lmysqlpp -lwt -lwtext

Re: [Wt-interest] Internal path issues

2008-12-03 Thread Koen Deforche
Hey Anthony, 2008/12/3 roja [EMAIL PROTECTED]: Sorry was being mighty dense! Anyway, there still seem to be the problem (WAnchor/bookmarkURL) as indicated in the refresing session email last night. Here is another example: I didn't get this first. There is another config option in the play:

  1   2   3   4   5   6   7   8   9   10   >