<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.comp.web.dojo.user">
    <title>gmane.comp.web.dojo.user</title>
    <link>http://blog.gmane.org/gmane.comp.web.dojo.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34414"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34413"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34412"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34411"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34410"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34409"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34408"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34407"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34406"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34405"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34404"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34403"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34402"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34401"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34400"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34399"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34398"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34397"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34396"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.web.dojo.user/34395"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34414">
    <title>adding initial value in dijit.form.FilteringSelect</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34414</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>sharath karnati</dc:creator>
    <dc:date>2008-12-01T22:22:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34413">
    <title>Re: dojox.gfx: Rotate in an ellipse shape</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34413</link>
    <description>Hi Eugene,

Thanks so much for that in-depth explanation, it was a lot of help.
Using, I got the elliptical rotation working (code below).  The one
issue with the way I managed to get it working is that I have to use
two chained animations, one to move it right as it rotates from 0 to
10 deg, and one to move it left as it rotates from 180 to 360 deg.

Can you think of a way to make it work all in one animation?
Preferably I'd be able to specify a single rotation and have it go
both left and right.  This would enable me to set a very large angle
so it'll go around multiple times, rather than having to chain
together multiple 180 degree rotations.

Thanks

Shane

P.S. Here's the code, for anyone looking to do this.

&lt;html&gt;
&lt;head&gt;
&lt;style type="text/css"&gt;
&lt; at &gt;import "../dojo/resources/dojo.css";
&lt; at &gt;import "../dijit/tests/css/dijitTests.css";
&lt;/style&gt;
&lt;script type="text/javascript" src="../dojo/dojo.js"
djConfig="isDebug: true,baseUrl:'../dojo/'"&gt;&lt;/script&gt;

&lt;script type="text/javascript"&gt;
dojo.require("dojox.gfx");
dojo.require("dojox.gfx.fx");
dojo.require("dojo.fx");
dojo.require("dojox.gfx.matrix");
dojo.require("dojo.fx.easing");

  var circle, surface, cx = 50, cy = 200, rx = 40, ry = 20;
var ellipse;

var g = dojox.gfx, m = g.matrix;

dojo.addOnLoad(function(){

var domNode = dojo.byId("test");
surface = dojox.gfx.createSurface(domNode, 400, 400);

circle = surface.createEllipse({cx: 10, cy: cy, rx: 5, ry:5});
circle.setFill("blue");

ellipse = surface.createEllipse({cx: cx, cy: cy, rx: rx, ry: ry});
ellipse.setStroke("black");
  });

function getAnim(isLTR) {
var startAngle = isLTR ? 0 : 180;
var endAngle = isLTR ? 180: 360;
var startX = isLTR ? 0 : rx;
var endX = isLTR ? rx: 0;

return g.fx.animateTransform({
  shape: circle,
  duration: 1000,
  transform: [
    {name: "translate",
      start: [startX, 0], end: [endX, 0]},
    {name: "rotateAt",
      start: [m._degToRad(startAngle), cx - ry, cy],
end: [m._degToRad(endAngle), cx - ry, cy]}
  ],
onEnd: function(){
getAnim(!isLTR).play();
},
easing: dojo.fx.easing.linear
});
}

function animate() {
var angle = 125.663704;
var elMatrix = new dojox.gfx.matrix.Matrix2D({xx: 100, yx: 25});
var rMatrix = m.multiply(m.rotateg(angle), m.rotateg(400), m.rotateg(400));

var anim1 = getAnim(true);
anim1.play();
}

&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;button onclick="animate()"&gt;Animate!&lt;/button&gt;&lt;br/&gt;
&lt;div id="test" style="border:1px solid black;margin-top:10px;"&gt;&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;


2008/12/1 Eugene Lazutkin &lt;eugene.lazutkin&lt; at &gt;gmail.com&gt;:
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Shane O'Sullivan</dc:creator>
    <dc:date>2008-12-01T20:44:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34412">
    <title>Re: DataGrid 1.2 - invoking edit.start()</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34412</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Matt Lorence</dc:creator>
    <dc:date>2008-12-01T18:06:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34411">
    <title>Re: dojox.gfx: Rotate in an ellipse shape</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34411</link>
    <description>There is no provision to support custom transformation functions. It was 
assumed that if you want something like that you can implement your own 
animation loop.

dojox.gfx.fx.animateTransform() operates on standard matrix-producing 
functions. But in 99% of cases you can do what you want with what's 
available. Example: slowly rotate the picture around its center and move 
to the right.

We can do it like that:

var g = dojox.gfx, m = g.matrix;

g.fx.animateTransform({
   shape: group,
   duration: 5000,
   transform: [
     {name: "translate",
       start: [0, 0], end: [dx, 0]},
     {name: "rotategAt",
       start: [0, cx, cy], end: [180, cx, cy]},
     {name: "original"}
   ]
});

Notice the reversed order of application: we set the old matrix first 
(O), rotate the picture in degrees around some predefined center (R), 
and than move it to the right up to "dx" pixels (T). It is in the same 
order if you define it with the array notation: [T, R, O].

We can expand it in the same fashion by replacing rotategAt() with more 
primitive functions:

g.fx.animateTransform({
   shape: group,
   duration: 5000,
   transform: [
     {name: "translate",
       start: [0, 0], end: [dx, 0]},
     m.translate(cx, cy),
     {name: "rotateg",
       start: [0], end: [180]},
     m.translate(-cx, -cy),
     {name: "original"}
   ]
});

Notice that we can use constant matrices (that do not change during the 
animation) as is. We can even merge steps, e.g., the two consequent 
translations:

g.fx.animateTransform({
   shape: group,
   duration: 5000,
   transform: [
     {name: "translate",
       start: [cx, cy], end: [cx + dx, cy]},
     {name: "rotateg",
       start: [0], end: [180]},
     m.translate(-cx, -cy),
     {name: "original"}
   ]
});

Usually all animation loops starts with the original matrix, but they 
don't have to. In some cases it may make sense to use incremental changes:

g.fx.animateTransform({
   shape: group,
   duration: 5000,
   transform: [m.rotateg(180 / 5000, cx, cy)]
});

This picture will rotate around its center like in the previous examples 
(but do not move to the right).

Obviously animation chains consist of more primitive fragments. These 
fragments can be saved and reassembled into bigger animation chains 
using regular array operations: slicing, splicing, concatenation. It may 
make sense to have a library of such functions, and even parameterize 
chains.

If you still feel that the custom transformation function support is 
necessary, please file the enhancement ticket for that. It is easy to 
add, just nobody required it before.

Thanks,

Eugene


Shane O'Sullivan wrote:
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Eugene Lazutkin</dc:creator>
    <dc:date>2008-12-01T17:58:59</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34410">
    <title>PDF inside iframe inside dijit.Dialog and Firefox</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34410</link>
    <description>Firefox won't display the PDF using a simple pattern I modeled from
thickbox.

Using a single dialog I wire up onclick events for hrefs using the following
code:

dojo.query('.dojobox').forEach(function(item) {
                dojo.connect(item, "onclick", function(evt) {
                    dojo.stopEvent(evt);
                    dijit.byId('dialog_dojobox').startup();
                    dijit.byId('dialog_dojobox').show();
                    dojo.io.iframe.setSrc(dojo.byId("dialog_dojobox_frame"),
dojo.attr(item, "href"), false);
                });
            });

The dialog looks like this: 

&lt;div dojoType="dijit.Dialog" id="dialog_dojobox" title="Dialog"
style="width: 700px; display:none;height: 450px;" draggable="false"
preventCache="true" extractContent="true" parseOnLoad="true" preload="true"
refreshOnShow="true"&gt;
   &lt;iframe id="dialog_dojobox_frame" style="width: 650px; height: 400px;
border: 1px solid;z-index:99999;"&gt;&lt;/iframe&gt;
&lt;/div&gt;

The link is:

&lt;a id="links_help" href="/OakMap/Content/Documents/OakMapHelp.pdf"
class="dojobox"&gt;Help&lt;/a&gt; |

I've used this pattern in the past for non-PDF content without issue...also
the PDF displays in everything except FF. Lastly, you can see the underlying
PDF if you resize your browser and move the dialog around. I've spent the
morning checking the CSS using firebug to no avail.

Thanks,
Eric Polerecky
http://eric.polerecky.com

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Polerecky, Eric</dc:creator>
    <dc:date>2008-12-01T15:47:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34409">
    <title>Re: DateTextBox focus problem</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34409</link>
    <description>Had similar issue. This was occuring on page load upon initial setValues
and validation.
Resolved it by making the datetextbox the second field instead of the
first one on the page.



-----Original Message-----
From: dojo-interest-bounces&lt; at &gt;dojotoolkit.org
[mailto:dojo-interest-bounces&lt; at &gt;dojotoolkit.org] On Behalf Of Wendell
Turner
Sent: Thursday, November 20, 2008 3:59 PM
To: dojo-interest&lt; at &gt;dojotoolkit.org
Subject: [Dojo-interest] DateTextBox focus problem

When using dojo 1.2.1, and declaring a datebox with:

  &lt;label for="date_move"&gt;Date of Move to this Address:&lt;/label&gt;
  &lt;input type="text" name="date_move" id="date_move" size="11"
       dojoType="dijit.form.DateTextBox" /&gt;&lt;br/&gt;

The drop-down calendar always appears when the browser window gains
focus (after losing it, that is).  Also, clicking on the input field
does not bring up the calendar (unless the window loses focus and
regains it).  Is this correct?

Wendell

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Jeff Utley</dc:creator>
    <dc:date>2008-12-01T14:13:12</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34408">
    <title>dijit.layout.TabContainer</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34408</link>
    <description>Hello everyone,

I am having problems useing the dijit.layout.TabContainer. 

When I submit a form inside a tab it reloads the site but just the one
inside the tab and the tab-container-page gone.
So I get the tab as a full page without the tab-container.

Anyone have an idea what I am doing wrong?

 Here is the code I am using:

&lt;script type="text/javascript"&gt;

dojo.addOnLoad(function () {
Spring.addDecoration(new Spring.ElementDecoration({
elementId : "detailsTab",
widgetType : "dojox.layout.ContentPane",
widgetAttrs : { title: "Details",
executeScripts:true, selected:true,
href:"content-flow?execution=${flowExecutionKey}&amp;_eventId=showDetails"}
}));

Spring.addDecoration(new Spring.ElementDecoration({
elementId : "kategorienTab",
widgetType : "dojox.layout.ContentPane",
widgetAttrs : { title: "Kategorien",
executeScripts:true}
}));

Spring.addDecoration(new Spring.ElementDecoration({
elementId : "mainTabContainer",
widgetType : "dijit.layout.TabContainer"}));

dojo.connect(dojo.byId("mainTabContainer"), 'onclick',
'clickedOnTab');
   });
   
&lt;/script&gt;

&lt;h1&gt;&lt;c:out value="Artikel anlegen" escapeXml="false"/&gt;&lt;/h1&gt;
&lt;div id="mainTabContainer" style="width:955px;height:565px"&gt;
&lt;div id="detailsTab"&gt;&lt;/div&gt;
&lt;div id="kategorienTab"&gt;&lt;/div&gt;
&lt;/div&gt;

Thx a lot in advance for any hints you guys might have for me!

Wolfgang

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Kurz Wolfgang</dc:creator>
    <dc:date>2008-12-01T10:16:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34407">
    <title>Re: dojox.gfx: Rotate in an ellipse shape</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34407</link>
    <description>Hi Dylan,

Thanks for that.  I'm trying to do this with the
dojox.gfx.fx.animateTransform function, but cannot seem to figure out
how to multiply the matrices.

The InterpolTransform function in gfx performs some magic that makes
this work.  However, while I could add another function to the
dojox.gfx.matrix object and use InterpolTransform, I'm sure this is
not the way to go, and all attempts to do this programmatically have
failed miserably.

There do not seem to be any docs on how to use custom matrices (and
combinations of multiple custom matrices) with animateTransform, so
I'm a bit lost.

Eugene, would you have an idea how this could be accomplished?

Thanks

Shane





2008/11/30 Dylan Schiemann &lt;mail&lt; at &gt;dylans.org&gt;:
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Shane O'Sullivan</dc:creator>
    <dc:date>2008-12-01T09:26:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34406">
    <title>Safari Users: What's the deal with this?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34406</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Aaron L.</dc:creator>
    <dc:date>2008-12-01T03:07:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34405">
    <title>Re: Problem with Grid in Firefox 2.0.0.18 w. add-onUser Agent Switcher 0.6.11</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34405</link>
    <description>Hi Frederic,

I'm glad you were able to find the error.
In regards to documentation, we are working full steam on releasing a  
feature complete new documentation by the end of the year.
You can find the "unofficial" sandbox at http://docs.dojotoolkit.org -  
any feedback is very welcome (so if stuff is not clear, let us know  
and we will do our best to make it clearer).

Another good resource to get started with Dojo is http://www.dojocampus.org 
, there are many very useful tutorials which should make your life  
lots easier.
Regards,

Nikolai

On Nov 30, 2008, at 10:30 PM, Fredric Fredricson wrote:


_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Nikolai Onken</dc:creator>
    <dc:date>2008-11-30T22:05:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34404">
    <title>Problem with Grid in Firefox 2.0.0.18 w. add-on User Agent Switcher 0.6.11</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34404</link>
    <description>Hi all,
I'm new to dojo, and have played around with it on and off for
3-4 weeks now and I must confess it has been the most frustrating
weeks in SW development I have ever had. Nothing to works as
expected, the documentation is poor and dojo, or at least part of
it, seem to be a moving target.
But I know dojo is open source so you take what you get and if you
have time to complain you have time to fix the problem. And I would
not have stayed with dojo unless I saw something promising there.

As it turned out, one of my major problems was an add-on in Firefox.

With User Agent Switcher version 0.6.11 installed I get the error
"userAgentButton has no properties" when I try to run the example
"A Simple Grid" in "The Book of Dojo 1.0 / Part 2: Dijit / Advanced
Editing and Display / Grid (1.0)".
I have also found numerous other examples where this add-on cause
dojo to crash (for example when I try to log in to the dojo web site).

(And, yes, I know I should have payed more attention to the error
message and what it said but remember I am new to dojo and had no
idea that Firefox plugins could cause problems in javascript).

I posted this to give other newbies with User Agent Switcher installed
a chance and to ask if there are other similar known problems
with Firefox or any other browser that I should know.

/Fredric

PS. Without the plugin (that I no not _really_ need) life with dojo
look much brighter and, who knows, I might even start to like
the documentation....


_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Fredric Fredricson</dc:creator>
    <dc:date>2008-11-30T21:30:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34403">
    <title>Re: dojox.gfx: Rotate in an ellipse shape</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34403</link>
    <description>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Shane,

iirc, the matrix for rotating about an ellipse is:

M =
[cos(t)  sin(t)]
[-sin(t) cos(t)]

to include your width and height, you would divide them by 2 (to get
their x,y values about their center), so you would have:

[x y] M = your new rotation matrix.

Regards,
- -Dylan

Shane O'Sullivan wrote:
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.7 (Darwin)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFJMqIi8nLgh/JJsxERAt56AJ4v1TRx/zrvO+B87X2EzBWK9XQcqQCfbd6y
mXTpx+9bOxp20PpohXY+SAM=
=19N4
-----END PGP SIGNATURE-----
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Dylan Schiemann</dc:creator>
    <dc:date>2008-11-30T14:24:34</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34402">
    <title>dojox.gfx: Rotate in an ellipse shape</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34402</link>
    <description>Hi,

I'm trying to animate a dojox.gfx shape to rotate around a fixed
point.  However, the animateTransform function accepts rotate matrices
that rotate a shape in a circular fashion, and I would like to be able
to rotate it in an ellipse, by specifying the height and width of the
ellipse.

It's probably just a matter of specifying the correct matrix, but my
matrix-fu is pretty weak.

Any ideas?

Thanks

Shane
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Shane O'Sullivan</dc:creator>
    <dc:date>2008-11-30T14:10:58</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34401">
    <title>Re: JSP, JS variable</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34401</link>
    <description>I don't know, but your value is a not well formed json...
Regards,
    Nicola

On Fri, Nov 28, 2008 at 8:19 PM, Peter O'Reilly &lt;pr144&lt; at &gt;yahoo.com&gt; wrote:
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Nicola Rizzo</dc:creator>
    <dc:date>2008-11-30T10:42:42</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34400">
    <title>Re: Grid &amp; JsonQueryRestStore - setQuery &amp; filter</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34400</link>
    <description>Kris,

Wow, thanks a ton!  I updated my svn, pulled in your fix, and all
appears to be working great!  I can use setQuery or filter and get the
right number of rows returned (I can even limit it using the jsonquery
[20:50] style selectors) -- awesome.

I tried a whole bunch of different jsonquery queries, using the syntax
from your jsonquery blog post.  Most of them work well, but I am seeing
a few issues with some of the syntax -- and almost all of those issues
are IE6-specific issues so far.  Yep, IE6 still sucks folks.  Anyway, I
was able to get around almost all of them using some of the alternate
syntax you detailed on your post.  The only one that I can't seem to get
past is IE6 with the [/blah] or [\blah] sorting syntax.  So, I'm still
trying things out, but you can take a look back at the
http://tpsreports.realsage.biz/qtest2.html page and try some of the
buttons out -- check out the speed, very nice.  (View source and you'll
see some comments from me on syntax that didn't work.)

I have to say the speed of this client-side jsonquery stuff blows away
all the other stores.  If anyone out there was trying to do any
client-side filtering using something like AndOrReadStore, and it was
slow (particularly in IE), then you should consider switching.

I do have a couple of other questions for ya, but I'll leave for those
for later.  Thanks again for the fast patch!

Dylan Tynan

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Dylan Tynan</dc:creator>
    <dc:date>2008-11-30T05:06:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34399">
    <title>Re: Grid &amp; JsonQueryRestStore - setQuery &amp; filter</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34399</link>
    <description>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
 
OK, I just checked in a fix, so hopefully the next nightly will
resolve your issue, let me know if it doesn't. Thank you for providing
an easy to follow test case.
Kris

Dylan Tynan wrote:

- --
Kris Zyp
SitePen
(503) 806-1841
http://sitepen.com
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
iEYEARECAAYFAkkxqmcACgkQ9VpNnHc4zAw0TwCeIhuHG+kuYPo5KFzCKwaCMtin
77YAnjptU8Yjjz1vimzoCKaPfvoUVhf1
=DFgr
-----END PGP SIGNATURE-----

_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Kris Zyp</dc:creator>
    <dc:date>2008-11-29T20:47:35</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34398">
    <title>Re: Grid &amp; JsonQueryRestStore - setQuery &amp; filter</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34398</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Dylan Tynan</dc:creator>
    <dc:date>2008-11-29T18:38:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34397">
    <title>Re: Menus... what am I missing here?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34397</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Karl Tiedt</dc:creator>
    <dc:date>2008-11-29T02:17:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34396">
    <title>Re: Menus... what am I missing here?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34396</link>
    <description>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Karl Tiedt wrote:


OK: that worked!  I knew I was missing something simple. Thank you very
very much.


My next question is there a menu variant within Dojo that is displayed
"normally" and the kicks off a subchild and displays it during a
mouse-over.

This style menu needs the user to "right click", which has its place,
but not quite what I'm after.

Or... should I just stop being lazy and write my own?


- --

Peter L. Berghold     http://www.berghold.net   peter&lt; at &gt;berghold.net
Unix Professional     Dog Agility Fan   Crazed Cook
"Those who fail to learn from history are condemned to repeat it."
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iEYEARECAAYFAkkwpSsACgkQUM9/01RIhaAX/ACfZKBOMG59M4gZPHw54E9f2CKy
HpIAoLJVAoiFW31gsXW+kvphbdJ9I1k5
=+bnO
-----END PGP SIGNATURE-----
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Peter L. Berghold</dc:creator>
    <dc:date>2008-11-29T02:13:03</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34395">
    <title>Re: Menus... what am I missing here?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34395</link>
    <description>_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest
</description>
    <dc:creator>Karl Tiedt</dc:creator>
    <dc:date>2008-11-28T23:52:16</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.web.dojo.user/34394">
    <title>Menus... what am I missing here?</title>
    <link>http://permalink.gmane.org/gmane.comp.web.dojo.user/34394</link>
    <description>-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi folks,

Trying to wrap my head around what is going on here.

I have fairly simple (walk before I run) menu that I'm trying to
instantiate with Dojo.

Here are the sniglets of code that I have in place:

&lt;link rel="stylesheet" type="text/css" href="/resources/css/site.css"&gt;
&lt;link rel="stylesheet" type="text/css"
href="/js-lib/dojo/resources/dojo.css"&gt;
&lt;link rel="stylesheet" type="text/css"
href="/js-lib/dijit/themes/tundra/tundra.css"&gt;

&lt;script type="text/javascript" src="/js-lib/dojo/dojo.js"
djConfig="parseOnLoad: true"&gt;
&lt;/script&gt;
&lt;script type="text/javascript"
src="/resources/javascript/public_menu_requires.js"&gt;
&lt;/script&gt;
&lt;script type="text/javascript"&gt;
dojo.require("dijit.Menu");
dojo.require("dijit.MenuItem")
dojo.require("dijit.Toolbar");
dojo.require("dijit.PopupMenuItem")
dojo.require("dojo.parser");

var menu1=new
dijit.Menu({targetNodeIds:["homeMenu"],id:"homeMenuInst",contextMenuForWindow:true});
menu1.addChild(new dijit.MenuItem({label:"HOME",onClick:homeAction}));

&lt;/script&gt;


and then somewhere on my page I have a div with the id of "homeMenu"
with just the text "HOME" in it.
I mouse over, right click, left click and nothing seems to be going on
here.

What am I missing?   What magic foo do I need?


- --

Peter L. Berghold     http://www.berghold.net   peter&lt; at &gt;berghold.net
Unix Professional     Dog Agility Fan   Crazed Cook
"Those who fail to learn from history are condemned to repeat it."

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org

iEYEARECAAYFAkkwdzgACgkQUM9/01RIhaC/3ACgrdyqCAj1DZQ95wHoSva1+hLI
rL8AmQE1WYdZ5TuEYTC972/4ewHRXES+
=+i82
-----END PGP SIGNATURE-----
_______________________________________________
FAQ: http://dojotoolkit.org/support/faq
Book: http://dojotoolkit.org/docs/book
Forums: http://dojotoolkit.org/forum
Dojo-interest&lt; at &gt;dojotoolkit.org
http://turtle.dojotoolkit.org/mailman/listinfo/dojo-interest

</description>
    <dc:creator>Peter L. Berghold</dc:creator>
    <dc:date>2008-11-28T22:57:00</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.comp.web.dojo.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.web.dojo.user</link>
  </textinput>
</rdf:RDF>
