Thursday, January 31, 2008

OutputFormat=JSON

Just found,

I read that it should be only in 8.0 version, but it works in 7.02 also, but it is undocumented feature of Notes Domino. I pulled &OutputFormat=JSON as additional parametres in URL and got back JSON. Great, it opens some new ways for me. Will play with it a little more, and probably will get something to show very soon.

Wednesday, January 30, 2008

All LotusSphere2008 presentations here (free and without any passwords)

I found (Actually not me but in any case I will share them as well) ! One of my blog's friend found the way how we can download all presentations from LS2008: download

Probably it will save a lot of time for many people which looking for them in Internet.

But I don't know, is it legal to share them? because if no, I will remove the link.

Monday, January 28, 2008

Generate HTML for all fields


I used it for some years and only now I read some articles about several bugs which didn't see before. Probably because I've made not so difficult applications in web, but in any case I still like it.
It makes my life more simple!

several Domino->JS functions: StrLeft, StrRight, StrLeftBack, StrRightBack, StrMidleBack, StrMiddle

Here are a few JavaScript functions to mimic the @-function capabilities. I dont like to write every time my own functionals, just because they will be my and I will be proud for them. I don't like this :). I prefer to find some different solutions and take one that better (of course on my opinion)

function rightString(fullString, subString) {
if (fullString.indexOf(subString) == -1) {
return "";
}
else {
return (fullString.substring(fullString.indexOf(subString)+subString.length, fullString.length));
}
}

function leftString(fullString, subString) {
if (fullString.indexOf(subString) == -1) {
return "";
} else {
return (fullString.substring(0, fullString.indexOf(subString)));
}
}

You can find many other functions here site

Monday, January 21, 2008

Lotus Notes and SAP will join for Project Atlantic

This is an article from Ed Brill blog

The announcement I've been waiting months to talk about!


Today, IBM and SAP announced a joint product development, codenamed "Atlantic". From the press release:
Currently planned for inclusion in the first release of project "Atlantic" is support for SAP workflows, reporting and analytics, and the use of roles from within the Lotus Notes client. In addition, tools are planned to be included to provide the ability to extend and adapt these roles and capabilities, as well as leverage additional collaborative and offline capabilities inherent in Lotus Notes and Domino products. The initial release is planned to ship in the fourth quarter of 2008 and will be sold by both companies.

"SAP and IBM Lotus are strategic partners to The Coca-Cola Company," said Jean Michel-Ares, CIO, Coca-Cola Company. "Our IT goal is to help our people to be more responsive, productive and effective, and SAP and IBM Lotus have helped us get closer to that goal. The partnership between IBM Lotus, SAP and The Coca-Cola Company promises to deliver additional value to our associates and improve the tools they use every day."