One of the new features available in Notes 8.5.2 are the
24Bit icons for DatabasesApplications. Having seen and played around with the new feature in the Beta stages of 8.5.2 I have to admit, I really like this feature. It makes me kind of more productive in a special way: it makes me feel better when seeing them and it allows me to realize some of the applications more easily on my Workspace an the Tabs than the old 16 color icons:
There were a few things I personally missed with the new feature but that I also see not as being necessarily implemented into core Domino Designer by default. So I thought I just extend Domino Designer with a small plugin that provides this functionality:
- As the new 24 Bit Application Icon is really an Image Resource under the hood, one could easily export it to disk, if he was given the opportunity by Designer. As exporting such is not Designers purpose, this is a feature that can be added by the AppIcon Plugin
- Did you know, your Application Icons are easily available from any web browser? Yes, they are: one could use the ?OpenIcon URL command to get a perfectly rendered version of the Classic Application Icon and <database.nsf>/$DbIcon?open for the new 24 Bit Application Icon. Not everyone likes this to be exposed to anyone who has HTTP Access to a server. Well, the new Application Icon could be hidden from Web as it is actually a special kind of an Image Resource. But as it is a special Image Resyource that is not so easy: it is hidden from the NSFs Image Resources listing and so you don't have a chance to see it anywhere in the database design. Normally a very good idea but not for this particular use case. AppIcon thus allows you to hide and unhide the new 24 Bit Application Icon from Web access with an easy click. But of course there are more general methods like using SecureDomino (a short hand setting is available in the current release) to generally block all requests of such a kind to all databases on a sever - but sometimes you can't be sure SecureDomino is installed on the server you are deploying your database to and so this granular solution might be a good solution.
- I thought it might be a good idea to be able to export the Classic Application icon (the traditional 16 Color one). Sure, one could do so by putting the database in question to a server and use the ?OpenIcon URL command - but honestly, if that are the things I would have to do for getting hands on a file version of the traditional database icon I would be too lazy most of the times. The AppIcon Plugin allows for storing the Classic Icon in PNG format easily and directly from Domino Designer.
Sounds interesting? Well, I have good news: The
AppIcon plugin is freely available. Easiest way to install is to drag the
widget descriptor to your Lotus Notes "My Widgets" sidebar.
It took only a couple of hours after the release of Notes/Domino 8.5.2 until I got the first question whether SecureDomino is supported on Domino 8.5.2. I am happy to have an easy answer to that:
Yes.
We have done plenty of tests with SecureDomino on the Beta versions of Domino 8.5.2 and know the software is ready for this release. So from that side, there's no reason to not update a server to Domino 8.5.2 - especially if you think about the new features that came with 8.5.1 and 8.5.2 like SPNEGO Single Sign on. But there are organizations that just can't update all their servers straight to the latest release - reality often covers some pitfalls that force organizations to stay at least with one server on an elder release. In such situations the rollout of new features like SPNEGO can become less remarkable as end users rather see the event of being challenged for a password and do not understand the background (why should they even want to). Especially such situations can be solved with SecureDomino's current release: allowing for a more seamless activation of SPNEGO Single Sign On in organizations - by
enabling Domino Servers prior to 8.5.1 and even non Windows Servers for an unchallenged login using SPNEGO and a
Designated Authentication Server.
It has been quite silent on this blog for a longer time now - and the reason is not that this blog is dead - it is only because I had too much to do. I was working on so many things at the same time - I simply did not find the time to write. Sure, some things I was working on were under different NDAs and I was unable to write but that was not sufficient for an excuse and over time my bad conscience became louder and louder ;-)
Especially when we we released new Versions of
SecureDomino or the
FireNotes Mozilla Plugin I was involved in writing things down for the Web and could have easily posted some information here too - and I should have. But there were other things that I was working on or playing with : Eclipse Plugins for Notes and Domino Designer, writing articles, preparing
conference sessions, working with new exiting stuff in XPages, at some point even
participating in a podcast and last but certainly not least doing my normal job and having a private live ;-). Really exiting times and I promise to post stuff here more frequently in the future.
There is so much stuff that I could write about - I really have to pick some of all those interesting topics an post about it. Expect more to come ;-)
Das alljährliche
Hussitten-Kirschfest steht mal wieder bevor. Für alle Naumburger ein muss - und für alle, die schon einmal da waren, ein absolutes Highlight. Und für die die es noch nicht kennen, eine absolute Empfehlung!
Das
Hussitten-Kirschfest in Naumburg geht auf ein Schulfest zurück und wird seit vielen, vielen Jahren jedes Jahr um das letzte Wochenende im Juni gefeiert. Los geht's bereits Morgen mit dem Einzug der Stadtwache und der Ratsherren auf der
Vogelwiese (man beachte, dass Googles Aufnahmen auch gerade zum Kirschfest gemacht wurden). Samstag ist dann der historische Umzug und Sonntag Peter Pauls Messe. Von Donnerstag bis Montag Abend ist natürlich reges Treiben in den Festzelten auf der Vogelwiese.
Und wer schon einmal üben möchte, der kann gerne ein bisschen Kirschfest-Karaoke betreiben:
As mentioned
earlier, a couple of @Functions are missing in XPages serverside JavaScript. When I was a bit confused by that before I am now in a state of simply doing it another way without even realizing an @Function is missing - probably a reason why some of them are not available. Another reason is how easy it sometimes is to achieve the same by incorporating native Java inside serverside JavaScript.
Since I just showed how to incorporate native Java inside JavaScript with XPages in my
XPages session here at
DNUG, I thought I should post the code for both sharing two other extensions to the already available
@WebDbname() function and for showing how easy one can leverage native Java code inside his serverside JavaScript.
So this is the first example - @URLEncode() in JavaScript:
/** ****************************************************************************
* @URLEncode()
* provides closely the same functionality its @Formula pendant, that is it
* encodes an object to a URL encoded format
*
* @param encodeObject the Object to encode. The Objects toString() method is
* used to retrieve a String to encode!
* @param encSch optional encoding scheme to use
* @see java.net.URLEncoder
* (http://java.sun.com/j2se/1.5.0/docs/api/java/net/URLEncoder.html)
* @see http://java.sun.com/j2se/1.5.0/docs/api/java/lang/package-summary.html
* @returns URL encoded version of encodeObject or null in case of any error
* @author Michael Gollmick
* @version 1.0
* @date 20090509
* @depends java.net.URLEncoder
**************************************************************************** **/
function @URLEncode(encodeObject, encSch:String) {
try {
var encScheme = ((encSch) && (encSch !== null))?encSch:"UTF-8";
return java.net.URLEncoder.encode(encodeObject.toString(),
encScheme);
} catch (e) {
print("ERROR in @URLEncode:" + e);
}
return null;
}
To complete the encoding experience, we need the function to retranslate encodings - @URLDecode() in JavaScript:
/** ****************************************************************************
* @URLDecode()
* provides closely the same functionality its @Formula pendant, that is it
* Decodes a URL Encoded string to normal format
*
* @param strToDecode the String to decode
* @param encodeObject optional encoding scheme to use
* @see java.net.URLDecoder
* (http://java.sun.com/j2se/1.4.2/docs/api/java/net/URLDecoder.html)
* @see http://java.sun.com/j2se/1.5.0/docs/api/java/lang/package-summary.html
* @returns decoded version of strToDecode or null in case of any error
* @author Michael Gollmick
* @version 1.0
* @date 20090509
* @depends java.net.URLDecoder
**************************************************************************** **/
function @URLDecode(strToDecode:String, encSch:String) {
try {
var encScheme = ((encSch) && (encSch !== null))?encSch:"UTF-8";
return java.net.URLDecoder.decode(strToDecode, encScheme);
} catch (e) {
print("ERROR in @URLDecode:" + e);
}
return null;
}
As you easily see - the magic is done in both cases in only one line, invoking a native static final Java method. So that would make it easy to use only that lines. Of course the whole functions do have some more functionality, so it is probably not the worst idea to use them ;-)
Just got an invitation to a exhibit opening on Friday. Unfortunately I cannot go. But I know it is going to be very good - and the exhibit will last some days. The city of Naumburg is showing some pictures of New York, my friend
Andreas Klingebiel shot back in 2000, when he was there for an internship. That pictures were shown several times before, for instance in the City of Cologne and in Leipzigs main train station. Quite impressive!
Picture is © 2000 by Andreas Klingebiel and must not be redistributed!
If you visit Naumburg until September this year, you should probably have a look at these pictures in the city library:
Stadtbibliothek Naumburg, Jägerstr. 4, D-06618 Naumburg
The exhibit is free of charge.
Vor einigen Tagen erhielt ich eine Mail eines aufmerksamen Lesers meines allerersten
Web-Projekts. Er hatte, als er 1990 Naumburg nach einigen Jahren zum ersten mal wieder besuchte Bilder gemacht. Soweit nix besonderes, Bilder machen jährlich hunderttausende Touristen in Naumburg. Das Außergewöhnliche liegt in seinem Sinn für Feinheiten: nach einigen Jahren hat er dieselben Fotos am, gleichen Standort noch einmal geschossen. Das Ergebnis spricht für sich selbst:
Naumburg vor 20 Jahren. Als Naumburger tut es gut zu sehen, wie wunderbar sich die Stadt entwickelt hat, wie die massiven anfangs öffentlichen, schnell aber privaten Investitionen Wirkung gezeigt haben. Wie Hausbesitzer es endlich schaffen konnten, Ihre Fassaden und zunehmend auch die Baumasse an sich in instand zu halten...
Wie ich neulich mitbekommen habe, lesen hier auch Leute, von denen ich nie geglaubt hätte, dass sie hier vorbei schauen - aber so ist das nun mal, wenn etwas im Internet steht - eigentlich also doch kein Wunder!
Naja, und da wir in den letzten Jahren immer wieder wunderbare Überraschungen (sprich überraschende Wiedersehen) erlebt haben, hier schonmal der Termin fürs schönste Heimatfest Mitteldeutschlands:
Das Naumburger Hussitten-Kirschfest. Wer keine Ahnung hat, was das ist, aber ein wenig Spaß an einer Mischung aus historischem Treiben, einigen Spektakeln und einem urigen Festwiesentreiben im Juni hat, der sollte sich das auf jeden Fall einmal
ansehen (oder auch
hier bei
Andreas)!
Das
Kirschfest findet vom
25. bis zum 29. Juni 2009 statt (wie immer die Tage um das letzte Juni-Wochenende).
Der
Umzug ist am 27.06.2009
Die
Peter-Pauls-Messe ist am 28.06.
Und an den anderen Tagen ist natürlich immer was auf der Vogelwiese los!
Ich vermute mal,
Kai wird dieses Jahr auch wieder eine
Seite auf die Beine stellen - dort finden sich in der Regel höchstaktuelle Meldungen die natürlich auch während der dollen Tage aktualisiert werden.


After having run this layout for more than three years now, I just did not like it that much anymore - so I started to build a new one more than a half a year ago. But I had much to do - really a lot, and really interesting stuff. In the end, the new layout needed to suffer the existence of a forgotten stepchild - I just never managed to make it fully usable...
Today I needed some break after a long day of reading, thinking planning and writing. As funny as it sounds - I relaxed over the last 30 minutes or so by having a look into that unfinished layout. Well - and I realized, I had left it very close to being usable. So I decided to finish it and launch it. There may still be flaws in it, there may be a way to go - but hey, this is a Blog and not a professional website ;-)
All in all the left panel has moved to the right now since I simply agree to the opinion, Content is more important the meta information (aka links). There is now also some fancy DHTML search, I hope everybody will understand. Another, very important thing is now also implemented - the comments can now be added and seen directly - I simply was not aware of this lack of an option but wondered about the rare comments.
I reused some code,
Daniel has in use for quite a while now - and did not report any complaints to me. For him this code is fixing an
issue with MIME HTML - for me it allows for typing with inline spell checking during edit - a feature I really appreciate, 'cause my feeling for correct spelling in English is not the very best ;-)
After all, this design looks IMO much more slick and cleaned up than the one before - I really like it - and it is in fact a bit less resource demanding while also being valid XHTML at the same time. But besides that the contents are better readable to mobile devices and look cleaner and smoother for CSS capable browsers. I remember having worked also on a print style - but I am not sure if that was finished then - I guess, there can still be issues with that. Hope you like it too ;-)
There was only one thing that drove me mad on my Ubuntu installation. In a certain location I use, all WIFI access points are accessed by a https based login. The SSL certificate used for that, are self signed, which is fully ok, if you know the background and the care that is taken by the administrators of that environment. Unfortunately from the very first days of my Ubuntu installation, I was unable to connect to those sites, since my Firefox simply did not accept that certificates. While I got that "normal" exception message, that the certificate is self signed and the site probably harmful, I opted to add an exception, retrieved the certificate, even showed it and then pressed on "Add Exception". Nothing happened. The Window did not close nor was an exception added. I even tried to add an exception manually via Advanced Options - no way :-(
That happened even after several Updates of my Ubuntu installation. Lastly I found a tiny but easily overseen hint on the web: delete your profile once and rebuild it.
So I started
firefox -p
from a terminal and opted to delete the default profile. Well, I had to reinstall every single Add on, but on the bright side two things happened: I am now able to access those WIFI access points and I am also able to retrieve my bookmarks now via
Syncplaces - that was a second thing, I never managed to get to work on Ubuntu - and it wasn't the fault of Syncplaces as I already had assumed.
So, if anybody is experiencing similar things, give that profile removing thing a chance - probably it is better to rename such a profile of firstly to try out a newly created one instead of deleting as I did...