|
What is most efficient way (code example) to do an XSL transformation on a DataSet in .NET 2.0?
Started by moose-in-the-jungle on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I use this all the....
This worked out pretty well performance-wise for me in the past:
http://www.tkachenko.com/blog/archives/000246.html
Best way to do this is to save the DataSet to XML, then you have a simple XML document that you can run the XSL on .
|
|
I'm using XSLT to transform an XML document to text. The text nodes of the XML document have < characters in them, which of course bombs the transformation. Is there anyway to get an XSLT transformation to work with a < character in a text node?...
Started by chernevik on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Work</myTextTag>
And there should be an option in your API to convert them on transformation properly implemented XML parsing API will load the document and properly transform the entities into <.
|
|
I wonder if it is possible (and if it is then how) to re-present an arbitrary M3 matrix transformation as a sequence of simpler transformations (such as translate, scale, skew, rotate)
In other words: how to calculate MTranslate, MScale, MRotate, MSkew...
Started by Sergey Ilinsky on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Choose any invertible matrix....
Also you should rather put translation at the end (the order of the rest doesn't matter)
For any given square matrix A there exists infinitely many matrices B and C so that A = B*C .
Yes, but the solution will not be unique.
|
Ask your Facebook Friends
|
As a followup to my previous question about determining camera parameters I have formulated a new problem.
I have two pictures of the same rectangle:
The first is an image without any transformations and shows the rectangle as it is.
The second image ...
Started by dwergkees on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
transformation matrix, my guess is 3 equations) and then solve it for the 4 transformations of the corner-points.
|
|
I know namespace are used to describe, like doctype, but is there a way or a trick to transform inner namespace html with an xsl using xsd ?
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http...
Started by belaz on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In XHTML (i.e..
No, you cannot perform an XSL transformation without using some kind of scripting technology if the transformation for some reason does not succeed on the client or runs slow.
|
|
I am trying to solve the below problem. I don't have much knowledge in Affine transformations . Could someone help me answer this question:
Find a 3x3 matrix representing a 2D affine transformation of homogeneous coordinates (i.e. every point [x,y] is...
Started by Sheena on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
In the comment.
You'd need to look for similar
I just wanted to point out that four points over constrain a 2D affine transformation.
Affine) transform, scaling, shearing and rotating the input shape.
|
|
I'm trying to use an XSL file to transform an XML file into an XHTML file. How can I view the XHTML source that is output after the transformation. I'm currently viewing the results through Firefox, but all I see is the rendered version of the XHTML file...
Started by Corey on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I would do the transform on the command line.
XSL sample page if anyone wants to test it out .
|
|
In flash10 I can easly rotate an image around its center in 3D space.
The flash10 example I have is at http://jsc.sourceforge.net/examples/web/MatrixStuffExample/Application.htm
I want to port this example to WPF.
Is there an example how to do such 3D...
Started by zproxy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
<Viewport3D Name="mainViewport> </Viewport3D> </StackPanel>
And heres the code behind, the transformation is the last, new Action<double>(Transform....
Setup your Viewport in the xaml ..
The transform works through C# ...
|
|
Hi! i'm generating controls dynamically on my asp.net page by xslt transformation from an xml file. i will need to reference these controls from code behind later. i would like to add these references to the list/hashtable/whatever during creation (in...
Started by agnieszka on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
This string represents.
The attribute transform http://www.w3schools.com/XSL/el_attribute.asp
Could be tricky with a pure XSL(object sender, EventArgs e) { // Fetch your XML here and transform it.
|
|
For a current project the decision has to be made whether to use XML and an XSL-transformation to produce HTML or to directly use HTML-templates.
I'd be interested in arguments for or against the XSL-approach. I understand that in cases where you have...
Started by Benedikt Eger on
, 17 posts
by 17 people.
Answer Snippets (Read the full thread at stackoverflow):
Having the XML sent to the browser with a transformation link (like, <!--MENU-->, <!--CONTENT-->), and replace markers with xslt-transformation callens earlier, if the you are pulling ....
Customers to consume your sites data...
|