[qooxdoo-devel] Qooxdoo Build process and a CDN

2010-07-20 Thread mootcycle
I've been looking for a way in the build process to allow for a CDN to have a mirror of the local asset folders. For example, if I have a file... myapp/source/resource/myapp/image/tray.png ...stored locally and I refer to it in my code with the asset tag... #asset(myapp/image/tray.png) ...and

Re: [qooxdoo-devel] Blueprint JSON Structure Discussion

2009-10-07 Thread MootCycle
I did look at your prototype, and it is pretty clear to me that we're working along similar lines. I am hoping to contribute to the discussion both directly and through development of Blueprint. Since we're already using Blueprint in an internal product, I do have an interest in developing bluepri

Re: [qooxdoo-devel] Blueprint JSON Structure Discussion

2009-10-07 Thread MootCycle
Yeah, type can probably be gotten rid of. The recursion can happen or not depending on the existance of the contents/children node. That wouldn't be a difficult change to make. Also, I do prefer children to contents. I'm not sure how I feel about an events key. The blueprint scripts node already

[qooxdoo-devel] Blueprint JSON Structure Discussion

2009-10-02 Thread MootCycle
I wanted to do a quick post here about the current JSON structure of Blueprint and where I think it is going. I definitely would appreciate comments on what people think I've done right or wrong with my design. The basic design philosophy for the JSON is that the layout objects exist in the same h

Re: [qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-10-02 Thread MootCycle
look at the > 'contribution' skeleton, just create a throw-away one somewhere with > 'create-application.py -n test -t contribution' and check the folder > structure. This would also be good for later inclusion of demos from > your contrib. > > Cheers, > Thomas &g

Re: [qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-09-28 Thread MootCycle
Yeah, there are some known bugs in the designer at the moment. I'm trying to figure out how the UI can clearly display a form and it's actions. The simple "design view" isn't enough. I think that particular bug has to do with a context menu action removing the object that fired the context menu ev

Re: [qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-09-26 Thread MootCycle
Currently in blueprint, there isn't a step where the json is converted into native qooxdoo code. The json is processed directly into the form object. For example, here's the full code for the blueprint.ui.form.Button stub: qx.Class.define("blueprint.ui.form.Button", { extend : qx.ui.form.

Re: [qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-09-26 Thread MootCycle
Thanks for taking a look at the project! Everything that you're seeing is entirely done in javascript. There are no server components and the examples will run off of your file system directly if you want to. If you want to use a server to generate json, you certainly can. For our application we

Re: [qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-09-26 Thread MootCycle
Right now, we're just copying and pasting (and doing some manual editing) from the designer into a text file which is stored on the server. It's very low tech. ;) At some point, we want to add a server component that will talk to the designer directly and save forms on our custom server. I don't t

[qooxdoo-devel] New qooxdoo contrib: Tartan Blueprint Serialization and WYSIWYG Form Designer

2009-09-25 Thread MootCycle
I'd just like to get some feedback on a new addition I've made to the qooxdoo-contrib svn. Everything you need can be found in the TartanBlueprint directory. If you don't already have the qooxdoo-contrib checked out, this will get you started with Tartan Blueprint: svn co https://qooxdoo-contrib.

Re: [qooxdoo-devel] Problems creating a new Shadow decorator.

2009-04-15 Thread MootCycle
Yeah, I was able to clear up all the errors using asset hints. Is this a case where adding "Check your asset hints" to the warning message would be helpful? As for the style property, I was just copying the structure from the qx.theme.modern.Decoration file. Everything seems to be working properl

Re: [qooxdoo-devel] Problems creating a new Shadow decorator.

2009-04-14 Thread MootCycle
I just wanted to provide a very simple skeleton example of the problem I am encountering: Source version: http://evil-lemur.com/misc/test082/source/ http://evil-lemur.com/misc/test082/source/ Build version: http://evil-lemur.com/misc/test082/build/ http://evil-lemur.com/misc/test082/build/ Zipp

[qooxdoo-devel] Problems creating a new Shadow decorator.

2009-04-10 Thread MootCycle
I've been working on creating a few additional shadow decorators for use with form fields. I just want to add a few colors for validation. I took the existing shadow files for the Modern theme (shadow-b, shadow-bl, etc...) and created colored versions. I then added: "highlight-red" : { de

[qooxdoo-devel] New QX Contrib: Flowchart

2008-12-18 Thread MootCycle
I just wanted to post here about a new set of classes I'm trying to put the finishing touches on. I've built a simple system that should allow people to generate flowcharts within qooxdoo. There's definitely room for improvement here, but so far, my classes support: * Orthogonal connectors betwee

[qooxdoo-devel] Flash Objects in a Window Qx 0.8

2008-11-24 Thread MootCycle
I just wanted to make a quick post on how to get Flash objects into a qx.ui.window.Window. No one has asked this question, but it wasn't immediately obvious to me and I wanted to make a post here in case someone else has the same issue in the future. Here's some code: var doc = this.getRoot(); v

Re: [qooxdoo-devel] 0.8 - Error in Hello World application

2008-11-10 Thread MootCycle
I have seen this problem before. If I test the Qx framework on a new machine, it always works without a problem, but this error crops up on older machines. I don't have a definitive answer, but I think it might have something to do with multiple versions of python or python libraries installed. Yo

Re: [qooxdoo-devel] Makefile Migration from 0.7 to 0.8 questions and suggestions

2008-10-28 Thread MootCycle
thron7 wrote: > > > This is stark, Dan! I'm glad it works for you, but I don't recommend > this as a general strategy. > > For one thing you defined a "run" job, which is fine. But you have to be > aware that every run job is (recursively) replaced by it's subjobs (the > jobs in the run lis

Re: [qooxdoo-devel] Makefile Migration from 0.7 to 0.8 questions and suggestions

2008-10-08 Thread MootCycle
I figured this issue out myself by looking at the example.json, application.json, and the base.json files in the SDK. In case anyone else has the same issue I did, the way I ended up solving this was to define my own job with the appropriate settings in the JSON file and then to call the build sou

[qooxdoo-devel] Makefile Migration from 0.7 to 0.8 questions and suggestions

2008-10-07 Thread MootCycle
I have recently been working on migrating a qooxdoo 0.7 web application to the 0.8 framework. I've reached the point where I have most of the components transferred using an 0.8 sandbox, and I wanted to convert the main application. I've been reading a lot about the new build system, but I can't s

[qooxdoo-devel] New Class: Filtered Table Model

2007-08-23 Thread MootCycle
I've written a new table model that allows for hiding rows client side in a way similar to how TreeVirtual hides data. You can specify to filter rows based on numeric values or on regex matching. Let me know if you have any comments. Demo: http://evil-lemur.com/misc/filtered/ Application: http:/

[qooxdoo-devel] Really Simple Filtered Table Model

2007-08-14 Thread MootCycle
I threw this together a couple of days ago, and I've been meaning to post it. Demo: http://evil-lemur.com/misc/filtered/ Sample Class: http://evil-lemur.com/misc/filtered/Filtered.js Maybe this should be done as a mixin instead of a class. I just needed a quick and dirty solution, so I threw th

Re: [qooxdoo-devel] How do I hide table rows in the table class?

2007-08-07 Thread MootCycle
Derrell, I really appreciate the reply. I was looking at your solution for hidden rows, and I'm trying to decide how to proceed with our implementation. We really need tables to be able to filter out rows, but I am hesitant to follow the same method you have described. Since we need this to o

Re: [qooxdoo-devel] How do I hide table rows in the table class?

2007-08-03 Thread MootCycle
I appreciate the responses, but I need to hide table rows, not table columns. We routinely have a couple thousand rows, and it would be much easier to hide the rows rather than re-request them each time someone applies a filter in the application. -Dan -- View this message in context: http://w

[qooxdoo-devel] How do I hide table rows in the table class?

2007-08-02 Thread MootCycle
I have a table with a large amount of data pushed to it from a server. It would be nice to be able to filter the data on the client side so we do not have to re-request all the data from the server. I've been looking through the TreeVirtual files looking for how that object hides certai

[qooxdoo-devel] SVG support in Qooxdoo

2007-04-05 Thread MootCycle
I'd like to get people's opinions on putting some kind of SVG support into the qx framework. I know that SVG isn't as widely supported as it could be (most notably IE 6) but now that IE 7 has added some level of SVG support, is it time to consider adding this to the qx framework? I personally

Re: [qooxdoo-devel] New classes: ImageDataCellRenderer and ConditionalDataCellRenderer

2007-02-09 Thread MootCycle
Thanks for your input! I'll fix the code comments and add the ability to format based on data values from adjacent cells and repost my work shortly. -Dan -- View this message in context: http://www.nabble.com/New-classes%3A-ImageDataCellRenderer-and-ConditionalDataCellRenderer-tf3195213.html#a8

Re: [qooxdoo-devel] New classes: ImageDataCellRenderer and ConditionalDataCellRenderer

2007-02-08 Thread MootCycle
Does anyone know of a way to get the Table or TableModel object from inside the CellRenderer class without passing it in an argument? I'm working on adding conditions for neighboring columns and I need a way to access the values for those cells. Thanks, -Dan -- View this message in context: htt

[qooxdoo-devel] New classes: ImageDataCellRenderer and ConditionalDataCellRenderer

2007-02-08 Thread MootCycle
I've created two classes that I'd like to submit to the project, assuming they've been coded correctly. The first is a simple data cell renderer that can handle any PNG image rather than just the boolean true/not true. It is a pretty simple class and I don't think there are any problems with it.

Re: [qooxdoo-devel] Another quick NumberFormat.js bug/question.

2007-02-06 Thread MootCycle
My bad, this is already corrected in the SVN copy of this file. I was looking at an older local download of the 0.6.5 release. Sorry about that. -Dan -- View this message in context: http://www.nabble.com/Another-quick-NumberFormat.js-bug-question.-tf3182071.html#a8831227 Sent from the qooxdoo-d

[qooxdoo-devel] Another quick NumberFormat.js bug/question.

2007-02-06 Thread MootCycle
Currently in NumberFormat.js, we have: > 91 if (num != 0) { // Math.log(0) = -Infinity > 92 var integerStr = numStr.substring(0, integerDigits); > 93 } else { > 94integerDigits = 1; > 95 } > 96 > 97 var numStr = "" + num; > I think that the variable declaration for numStr should appe

Re: [qooxdoo-devel] Bug: Number Formatting in the Table Object?

2007-01-29 Thread MootCycle
ested it out a bit myself, and it seems to work alright. Any thoughts? -Dan MootCycle wrote: > > Well, I found the problem, and it seems like it is a rounding error in > javascript: > > 005959 DEBUG: qx.util.format.NumberFormat[18]: num => 1000 -- str => 100 >

Re: [qooxdoo-devel] Bug: Number Formatting in the Table Object?

2007-01-29 Thread MootCycle
ual 3. but javascript calculates it to 2.99. Log(x)/Log(10) can't just be rounded up because then other values passed in will calculate incorrectly. I'll keep looking at this, but if someone else already has a solution, please let me know. -Dan MootCycle wrote: > > I've been work

[qooxdoo-devel] Bug: Number Formatting in the Table Object?

2007-01-26 Thread MootCycle
I've been working on a conditional cell formatter, and I noticed that I got some odd results when I edited the number values of certain cells. I checked, and I get the same odd behavior in both the 0.6.4 and 0.6.5 qooxdoo showcases. Here's how it works: When numbers are initially populated into a