Community-Credit.com | NonProfitWays.com | SOAPitstop.com   Skin:   
      User: Not logged in 
Home
Newsletter Signup
XSLT Library
Latest XML Blogs
Featured Examples
Presentations
Featured Articles
Book Chapters
Training Courses
Events
NewsGroups
 
Discussions
Examples
Tutorials
Tools
Articles
Resources
Websites
 
Sign In
My Profile
My Articles
My Examples
My Favorites
My Resources
Add a Resource
Logout
 
About Me
My Blog
HeadGeek Articles
Talking Portfolio
Resume
Pictures
World Trip Pics

Prev Next
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40
 
TECFA's XSL Page (17-Jan-2000)
XSL is two languages of the XML framework: XSL/FO is for formatting (as more powerful alternative to CSS). XSLT is for transformations.

Type: XSL  #Views: 371  Category: Example    

perl-XML-XSLT
perl-XML-XSLT - Perl module XML::XSLT: This is a Perl module to parse XSL Transformational sheets

Type: XSL  #Views: 403  Category: Tool    

perl-XML-XSLT
This is a Perl module to parse XSL Transformational sheets.

Type: XSL  #Views: 370  Category: Tool    

GrandTech CG Systems Inc.
What is new in FileMaker Pro 6? The best just got better with FileMaker Pro 6 database software. It features digital image capture* and import; more than 20 modern and powerful templates for "instant productivity" in business, education and home; many time-saving features like Format Painter and Custom Dialog Boxes for users and developers; and integrated XML support so FileMaker can exchange data with a large and growing number of other applications.

Type: XSL  #Views: 458  Category: Tool    

Tony Bowden: Understanding Nothing: XSLT, Perl, Haskell, and a ...
An interesting thread over at kuro5hin on the tribulations one person had when writing a filter to convert XML documents to LaTeX using XSLT (with examples of how some of the transformations would be handled using Perl or Haskell instead).

Type: XSL  #Views: 409  Category: Article    

Evitech: XSLT exercises
Create these two files (below), replacing the data with your own. Examine the syntax and view the file in Internet Explorer 6 and Netscape 7.0. Always check that the code is free of errors (I may accidentally leave typos in my examples, sorry..), the quotes are straight, etc.

Type: XSL  #Views: 446  Category: Example    

Examples from Chapter 20, XSLT Reference
Chapter 20 Examples. There are no long examples in this chapter. [
| Previous Chapter | Next Chapter | Examples from Other Chapters ...

Type: XSL  #Views: 273  Category: Example    

XSLT Examples
XSLT Examples. 1) Converting XML to HTML - XML source - XSLT source. 2)Matching parent-child
elements - XML source - XSLT source.

Type: XSL  #Views: 447  Category: Example    

XML Examples Package*
The examples in this package illustrate how to generate and parse XML data using SAX and DOM parsers. All the examples use the Java API for XML Parsing (JAXP) to access the particular SAX or DOM parser rather than accessing the parsers directly. Detailed instructions for building and running each example are included on the individual example pages.

Type: XSL  #Views: 430  Category: Example    

XSLToolbox
The XSLToolbox is available for download at ftp://ftp.nist.gov/pub/mel/lubell/xsltoolbox/. The distribution includes the APEX and ATTS XSLT transforms, examples, and the documentation on these web pages.

Type: XSL  #Views: 397  Category: Example    

The Functional Programming Language XSLT - A proof through ...
In this section we'll provide a solution to the following problem: given a real-valued function f which has one real argument, and two endpoints a and b estimate the area of the shape defined by the graphic of the function, the abscissa axis and the end-points.

Type: XSL  #Views: 416  Category: Example    

The Functional Programming Language XSLT - A proof through ...
Differentiating a function at a point yields the slope of the graph of the function at that point. Therefore, a rough first calculation of f'(x) will be obtained by the following function:

Type: XSL  #Views: 388  Category: Example    

The Functional Programming Language XSLT - A proof through ...
A very powerful feature of some FP languages (e.g. Haskell ) is having so called non-strict functions and lazy evaluation. A function f is said to be strict if, when applied to a non-terminating expression, it also fails to terminate. For most programming languages all functions are strict. But this is not so in Haskell. In Haskell if a function does not need a value from its argument, it never gets evaluated. Such kind of function evaluation is called lazy evaluation, and non-strict functions are called "lazy functions", and are said to evaluate their arguments "lazily", or "by need" [10]. With lazy evaluation it becomes possible to operate on infinite data structures. For example,

Type: XSL  #Views: 389  Category: Example    

The Functional Programming Language XSLT - A proof through ...
The same generalised functions exist not only for lists, but also for trees. A tree is defined as a set of node (root) having a labelX, and a set of sub-trees:

Type: XSL  #Views: 376  Category: Example    

The Functional Programming Language XSLT - A proof through ...
The function sum that computes the sum of the elements of a list can be defined as follows:

Type: XSL  #Views: 404  Category: Example    

XSLT Tutorials, Code Examples & Articles - Technology Tutorials ...
This week the XML-Deviant looks at a community project, being conducted on the XSL mailing list, which has grown out of the recent concerns and debate over the XSLT 1.1 Working Draft The Beginnings 2001 is certainly turning into an eventful year for the XML community. The new year began with the community-led development of RDDL (see Old Ghosts: XML Namespaces ), and the past month has seen a lot of heated debate over the future directions of many core W3C... Found at XML.com.

Type: XSL  #Views: 377  Category: Article    

The Functional Programming Language XSLT - A proof through ...
Let's first consider the Newton-Raphson algorithm for finding square roots. The square root of a number N is computed starting from an initial approximation a0 and successively computing better ones using the rule:

Type: XSL  #Views: 402  Category: Example    

The Functional Programming Language XSLT - A proof through ...
As a starting point, let's define some basic terminology and present examples of the use of higher-order functions in FP. Then, we'll take a first step towards our FP implementation in XSLT by defining the "template reference" data type and demonstrate a simple example of its use.

Type: XSL  #Views: 447  Category: Example    

The Functional Programming Language XSLT - A proof through ...
In this section we provide the XSLT implementation of many of the functions defined in John Hughes paper "Why functional programming matters" [1]. We provide numerous implementations of list-processing functions, and of a very generic tree-folding function and other functions that are based on it. We also demonstrate how lazy evaluation can be simulated in XSLT.

Type: XSL  #Views: 399  Category: Example    

The Functional Programming Language XSLT - A proof through ...
In this section we provide the XSLT implementation of some advanced numerical algorithms by using essentially higher order functions for list processing and list generation. Essentially used in these implementations is a function within , which is passed a list-generator function and a tolerance as parameters. within uses the buildListWhile function with the list-generator passed to it as parameter and with its own controller function, which triggers the stop condition, whenever the difference between the last two generated list elements becomes less than the tolerance parameter eps.

Type: XSL  #Views: 403  Category: Example    

Prev Next
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
31 32 33 34 35 36 37 38 39 40


Fans of "The Office"
Dwight Bobbleheads are here!

  “It's me! I'm the bobblehead! Yes!”



Advertise on XMLPitstop

Advertise on XMLPitstop


EggHead Cafe
Web Servicee development
DotNetSlackers
Lexmark printer refills
confrence call glossary
help desk services
online faxing
chicago web design
Alojamiento de Web
Cheap Web Hosting
San Diego Limo Services
Fendi sunglasses
Video Surveillance
Skype vs. sipcall

4,332 Total Members
9 members(last 30 days)
6 members(last 7 days)
0 members(today)

1,953 Total Discussions
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)

47,487 Total Blog Posts
0 Blogs(last 30 days)
0 Blogs(last 7 days)
0 Blogs(today)

8,699 Newsgroup Posts
0 Posts(last 30 days)
0 Posts(last 7 days)
0 Posts(today)

14,268 Total Resources
7 Resources(last 30 days)
4 Resources(last 7 days)
1 Resources(today)


 

David Silverlight's XMLPitstop.com| 2801 Florida Ave #225|Miami, FL 33133|Ph:305-447-1139