The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
New Ajax Feed Reader

2 replies on 1 page. Most recent reply: Dec 19, 2006 10:50 PM by king star

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 2 replies on 1 page
Max Zone

Posts: 9170
Nickname: dzone
Registered: Jun, 2006

dzone.com is a link-sharing community where member participation determines what gets published
New Ajax Feed Reader Posted: Nov 28, 2006 4:06 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Max Zone.
Original Post: New Ajax Feed Reader
Feed Title: dzone.com: ruby
Feed URL: http://feeds.dzone.com/dzone/ruby
Feed Description: dzone.com: fresh ruby and rails links for developers
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Max Zone
Latest Posts From dzone.com: ruby

Advertisement
Velakor Feeds is a new Ruby on Rails ajaxed feed reader. It uses Python for parsing the feeds.

Read: New Ajax Feed Reader


king star

Posts: 5
Nickname: kingstar
Registered: Dec, 2006

Recommend an AJAX IDE - JoyiStar AJAX WebShop x Posted: Dec 11, 2006 2:19 AM
Reply to this message Reply
The Release of JoyiStar AJAX WebShop 3 Beta

The JoyiStar AJAX WebShop development team is proud to announce the release of JoyiStar AJAX WebShop 3.0 Beta for Personal Edition. This release is a major improvement in the AJAX WebShop series, which includes a large number of new features and security enhancements.
Further details and the full list of changes about this release can be found in JoyiStar AJAX WebShop 3.0 Beta for personal edition.
Downloading page link is: Free Downloads
Notes:
Please refer to the END-USER LICENSE AGREEMENT FOR JoyiStar Corporation products when you use JoyiStar Softwares.
If you have any problems or discover any bugs, please feel free to contact us, thank you!


http://www.joyistar.com

king star

Posts: 5
Nickname: kingstar
Registered: Dec, 2006

Re: Recommend an AJAX IDE - JoyiStar AJAX WebShop x Posted: Dec 19, 2006 10:50 PM
Reply to this message Reply
How to convert the output format in Javascript
Mini commend

If you want to format the output in Javascript, you must realize your codes by yourself because there are no related functions in Javascrip. These days, I got a set of functions written in Javascript to realize the data formatting coded by AJAX WebShop (You can dowonload AJAX WebShop in theire official site: http://www.joyistar.com. Version 3 is recommended). They are very helpful.

Find “system.js” in the directory of AJAX WebShop and you will get these functions below:

function FormatFloat(value,mask)
{
return BasicFormat(value,mask,'FormatNumber')
}
function FormatDate(varDate, bstrFormat, varDestLocale)
{
return BasicFormat(varDate,bstrFormat,'FormatDate',varDestLocale);
}
function FormatTime(varTime, bstrFormat, varDestLocale)
{
return BasicFormat(varTime,bstrFormat,'FormatTime',varDestLocale);
}
function BasicFormat(value,mask,action,param)
{
var xmlDoc;
var xslDoc;
var v=''+value+''+mask+'';
xmlDoc=parseXML(v);

var x;
if(isIE)
x=''
else
x='';
x+='';
if(isIE) {
x+=''+action+'('+value+',"'+mask+'"';
if(param)x+=','+param;
x+=')';
}
else
x+='';

x+='';
xslDoc=parseXML(x);
var s;
if(isIE)
s= xmlDoc.transformNode(xslDoc)
else{
//for mozilla/netscape
var processor = new XSLTProcessor();
processor.importStylesheet(xslDoc);
var result = processor.transformToFragment(xmlDoc, xmlDoc);
var xmls = new XMLSerializer();
s = xmls.serializeToString(result);
}
return s;
}

Flat View: This topic has 2 replies on 1 page
Topic: ZenTest version 3.4.3 released Previous Topic   Next Topic Topic: Ruby Snippets, Part Two

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use