A New Approach to Web Applications' Journal
[Most Recent Entries]
[Calendar View]
[Friends]
Below are the 20 most recent journal entries recorded in
A New Approach to Web Applications' LiveJournal:
[ << Previous 20 ]
| Saturday, March 13th, 2010 | 12:34 pm [main_framer]
 |
| | Thursday, November 8th, 2007 | 2:00 pm [xmliacom] |
Ironpunch.com
"АйронПанч"("Железный Удар")-это услуга в формате Web 2.0,основанная двумя ветеранами безстероидного безэкипировочного пауэрлифтинга,Артуром Гольдюком(вес 82.5,жим 205) и Алексеем Сапожниковым (вес 125,жим 220), позволяющяя вам получать деньги за помощь и бесценные советы молодым!
 Алексей Сапожников,33 года вес 125 кг,жим 220 кг,,спортсмен-любитель,автор многих статей по теории и практики натурального лифтинга,рекордсмен Севера Израиля по жиму лежа.  Евгений Кондрашoв, Ех-2-кратный рекордсмен мира среди юношей по Жиму лежа 2001 Чемпион Мира среди Юниоров по Пауерлифтингу 2006,Абсолютный Чемпион Мира среди Юниоров 2006,Чемпион Европы среди Юниоров по Пауерлифтингу 2006 Вице Чемпион Мира,Европы среди Юниоров по Пауерлифтингу 2001,2003,2004,2005 17кратный чемпион Германии по Пауерлифтингу и Жиму лежа среди юношей,юниоров и в открытой категории присед: 400 кг,жим 285кг,тяга 362,5кг.  Артур Гольдюк вес 82 кг,жим лежа 205,Уникальный жимовик ,автор неофициального мирового рекорда в категории до 82.5 кг в жиме.  Николай Жуков , Присед 290 кг,Жим Лежа 180 кг,Тяга становая 277,5 кг.МС по тяжелой атлетике 1998г. МС ФПР по пауэрлифтингу 2005г. г. Москва., категория до 82,5 кг.Чемпион РФ 2005,2006 по пауэрлифтингу федерации WDFPF.Обладатель Кубка РФ 2005, 2007 в отдельных упражнениях WDFPF в экипировочном и без экипировочном дивизионах.Чемпион Кубка Евразии AWPC. | | Monday, April 16th, 2007 | 4:58 pm [xmliacom] |
http://xmlia.com
Dear friends! We are glad to you to inform on opening new, absolutely free-of-charge site about online XML-validator and web-based editor. For what to pay huge money for different win-based editors or to put the unchecked cracked copies? Use our site, and you should not install anything on computer. Our site does not contain advertising, is quickly loaded,consumes not enough traffic and quickly processes your data. At your service XML visualisation not only in the form of TREE, but also in the form of GRID, that is actually avaliable only in very expensive windows XML editors. all what you need to do-its just register for free See you in http://xmlia.com | | Monday, April 9th, 2007 | 8:38 am [cocktailbuilder]
 |
Ajax Metrics
I'm working on an analytics system for Ajax applications - a modular component that would help web 2.0 site owners track what users are doing on their sites. Something like Google Analytics, but for Ajax sites. I'd love to hear what you guys think - my early plans are here: ajaxmetrics.comAlso, let me know if you'd like to contribute - I'd love to work in a tandem. Cheers, Alex | | Thursday, March 22nd, 2007 | 3:12 pm [xmliacom] |
http://xmlia.com
Dear friends! We are glad to you to inform on opening new, absolutely free-of-charge site about online XML-validator and web-based editor. For what to pay huge money for different win-based editors or to put the unchecked cracked copies? Use our site, and you should not install anything on computer. Our site does not contain advertising, is quickly loaded,consumes not enough traffic and quickly processes your data. At your service XML visualisation not only in the form of TREE, but also in the form of GRID, that is actually avaliable only in very expensive windows XML editors. all what you need to do-its just register for free See you in http://xmlia.com | | Friday, January 5th, 2007 | 8:53 pm [cocktailbuilder]
 |
cocktail builder: fully ajaxed
Cocktail builder: what's in your bar? what cocktails can you make from it? All server chatter is done through Ajax (I'm using XAJAX as a platform), and there's lots of custom JavaScript. http://www.cocktailbuilder.comBTW, if you're interested in my "development chronicles" (JavaScript tips and tricks, design discussions), check out my LJ. | | Thursday, November 2nd, 2006 | 1:27 pm [cyclotron]
 |
Returning data as text
Hi. I am new to getXMLHTTPRequest() function and var mytext = http.responseText; syntax. When I return text from PHP like echo "hello moto"; it works fine. But what I really want to do is return HTML created with a MySQL query and PHP ( PHP scriptCollapse )When I run the requested PHP+Query by itself, there are no errors. But if I request it with AJAX, it sticks at a readyState of 1. I was wondering if you guys could tell me why my PHP+query stall. The requested file is in the same dir as the calling page.
SOLUTION I went line by line commenting out elements of the HTML the php generates and it doesnt like the form tag. It wont let me insert a form with AJAX. | | Thursday, September 21st, 2006 | 9:39 am [lozette]
 |
Prototype problems
I hope Prototype questions are OK in here... I think I've found a bug in Prototype.js, but am not sure how/where to report it, since the Rails spinoffs mailing list seems to be in suspended animation (and I can't seem to join it), and Sam Stephenson himself isn't contactable. Frustrating. I have some code in an iFrame which attempts to update divs in its parent window. <script type="text/javascript" src="{$context}/javascript/prototype.js"></script> <script language="javascript"> div2 = window.parent.document.getElementById('details'); div2.innerHTML = ""; </script>
Running this script gives me the following error in Firefox 1.5: $A is not defined prototype.js (line 48) $A is not defined prototype.js (line 48)
(FWIW I'm using the totally vanilla unaltered 1.4 version of Prototype.js). After a bit of sniffing around it appears that if I remove the import of the Prototype library, the error disappears. But I need the library to be imported, as I'm using Prototype elsewhere on the page. I'd read that Prototype does tend to hijack all JavaScript on a page, so I tried instead to use the Prototyped version of innerHTML, Element.update(div2, ""); This, however, makes it worse, and I get the following error: uncaught exception: [Exception... "Component returned failure code:0xc1f30001 (NS_ERROR_NOT_INITIALIZED) [nsIDOMJSWindow.setTimeout]"nsresult: "0xc1f30001 (NS_ERROR_NOT_INITIALIZED)" location: "JS frame:: http://localhost:8080/javascript/prototype.js ::anonymous :: line 952" data: no]...which appears to be something to do with a bug in XMLHTTPRequest in Mozilla ( from Quirksmode). Aargh. It's driving me up the wall. Anyone got any ideas? | | Friday, July 28th, 2006 | 12:04 pm [hamoperator]
 |
| | Friday, June 24th, 2005 | 3:07 pm [zachkessin]
 |
| | Thursday, June 9th, 2005 | 10:30 am [filthymonkey]
 |
| | Tuesday, May 10th, 2005 | 11:24 am [zachkessin]
 |
XAB Toolkit version 0.20
I would like to announce version 0.20 of the XAB Toolkit. XAB version 0.20 is a major upgrade to the software and it will automate a large amount of software development in an Ajax database front end. In tests yesterday I was able to create an interface to a database in about 15 minutes with no coding. Included in version 0.20 * Ability to have multiple detail forms * Ability to have Foreign key fields shown as a menu or a form or both * Ability to add, delete or change the order of fields. * Automatic creation of page navigation * Smarter including of Javascript code * Expanding textarea boxes. * A menu editor Also a large number of smaller features and bug fixes. You can Download XAB from the Ajax WikiXAB requires PHP version 5.0x and MySQL version 4.1. It also requires Mozilla or Firefox to use. Cross posted to ajaxengine and zkessin Current Mood: Excited | | Tuesday, May 3rd, 2005 | 8:55 am [filthymonkey]
 |
| | Thursday, April 21st, 2005 | 5:15 pm [zachkessin]
 |
XAB toolkit version 0.10
I would like to announce version 0.10 of the XAB toolkit. XAB version 0.10 is greatly enhanced from version 0.03, it features a much more robust support for foreign keys and detail tables. With version 0.10 I have been able to create much of a database application with only XAB generated code. Look for more improvements with future versions XAB Version 0.10 Current Mood: tired | | Tuesday, April 12th, 2005 | 8:45 pm [zachkessin]
 |
XAB Screen Shots
I have posted some screenshots of XAB. Note these are a little different that version 0.03 but should look like what 0.04 will be like. Mostly some styles have changed. Current Mood: tired | | Thursday, April 7th, 2005 | 9:09 am [filthymonkey]
 |
| 12:18 pm [zachkessin]
 |
XAB Toolkit version 0.03
I have released a new version of my XAB toolkit, version 0.03. It adds a bunch of new features and fixes quite a few bugs. you can get more information and download it via The XAB Wiki Current Mood: tired | | Monday, April 4th, 2005 | 10:53 am [zachkessin]
 |
Ajax Spell Checker
Ok this might have been done, but how about a spell checker written as an Ajax applet? How many web text boxes could have been helped by a live spell check? The service half of it would be easy. I don’t think the javascript should be too hard to do. Current Mood: excited | | Sunday, April 3rd, 2005 | 5:51 pm [zachkessin]
 |
Ajax Wiki
Is there a good central Ajax Wiki or other community site out there? I didn’t see what appeared to be one on my google search. If there isn’t one I hereby designate my Wiki as a general AJax wiki in addition to being a special wiki for XAB. Current Mood: excited | 11:04 am [zachkessin]
 |
Thoughts on XMLhttpRequest vs SOAP I Just posted this on my wikiIt should be posible to create a simple SOAP request in XML and send it over XMLHttpRequest, thus emulating the mozilla SOAPCall Interface in IE. After all SOAP is just some specific XML tags. Here is a simple SOAP request to an example service. Note that the function being called is <ns1:setContact> whiere setContact is the function name, and the paramaters are just listed as XML tags with types (in this case xsd:string). There should be no problem writting this in Javascript assuming no one has. <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=" http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <ns1:setContact> <param0 xsi:type="xsd:string">20</param0> <param1 xsi:type="xsd:string">Test Contact 5</param1> <param2 xsi:type="xsd:string">555 1212</param2> <param3 xsi:type="xsd:string">555 1212</param3> <param4 xsi:type="xsd:string">555 1212</param4> <param5 xsi:type="xsd:string">example@example.com</param5> <param6 xsi:type="xsd:string"/> </ns1:setContact> </SOAP-ENV:Body> </SOAP-ENV:Envelope> Current Mood: excited |
[ << Previous 20 ]
|