Do you want to Live Blog at Lotusphere?

Since I started going to Lotusphere I have
live blogged quite a few sessions and keynotes. It is a great way to take
notes during the sessions and also helps people who may have attended other
sessions at the same time and even people who can’t make it to Lotusphere.

For the first few years of Live Blogging
I just used Blogsphere, I would write my entry and as I’d write stuff down
I’d hit the save button to publish it to my blog. Last year I discovered
CoverItLive, an external live blogging tool
that you could embed on any webpage, and one of the features allowed you
to have multiple authors in the Live Blog, I asked around and ended up
with a great team of writers for the Opening General Session live blog.
It was so good that we have gotten the same team back together again this
years for the OSG.

Since last year CoverItLive has added
a new ‘groups’ feature. This feature allows us to create a group of live
blogs and display them in a single interface embedded on any site. You’ll
be able to go to a single place to see which members of the group are currently
running live blogs and also be able to review all the finished blogs.

If you are thinking of doing any Live
Blogging at Lotusphere this year and you want to use CoverItLive then please
send me an IM or email me your CoverItLive username and I can add you to
the special Lotusphere Group. Your live blogs will then appear embedded
on your own blog and also on the special http://live.lotusphereblog.com
website. CoverItLive is really easy to use and best of all it is FREE.

Tagged with:
Posted in Uncategorized

Lotusphere 2010 OGS Live Blog Reminder

After last years successful Live Blog of
the Opening General Session with myself, Paul Mooney, Stuart McIntyre,
Matt White and Turtle running a joint effort to give you the best of coverage
it has been decided that we will run the live blog again.

You can sign up for a reminder using
the form below. Hope to see you online at Lotusphere if you can’t be there
yourself.

Tagged with:
Posted in Uncategorized

Setting the Dojo djConfig variable in XPages

Last year I wrote about how to load
the Firebug Lite debugger in Internet Explorer
by downloading
the javascript files and adding them into your xPages application. At the
time I mentioned that Dojo contains a version of Firebug Lite but that
there was currently no method to enable it.

With Lotus Domino 8.5.1 we can now use
the built in Firebug Lite. To turn it on you need to get the Xpages parser
to add isDebug:true to the djConfig line that it uses to load the base
Dojo javascript files. The way to do this is a little hidden away so here
is a step by step…

First of all open the application that
you want to add the Firbug Lite console to in your Domino Designer client.
We then need to open the package explorer view. This is an eclipse view
that is not part of the Domino Designer perspective so to open this view
click on the ‘Window – Show Eclipse Views – Other’ menu. In the dialog
that pops up scroll down to ‘Java’, expand it out and then select ‘Package
Explorer’.

A picture named M2

A new eclipse view should open, probably
on the right of your screen where the the list of controls appears when
your editing an xPage. You will see a set of folders that kinda matchup
to the different design elements in the Domino Designer perspective along
with a few extra folders. the one we are interested in is a file called
xsp.properties and it is inside the WebContentWEB-INF folder.

A picture named M3

Opening this file will show you all
of the xsp properties in effect for this application. Most of them you
will recognize from the Application Properties dialog. To set the djConfig
line just add in xsp.client.script.dojo.djConfig= and put in the additional
values that you desire, so for the Firebug Lite you add in isDebug:true.

A picture named M4

Now you just close and save that tab
and Firebug Lite will automatically load in any web browser that supports
it.

Just don’t forget to take the value
out before releasing your code to end users, I’m sure they won’t want to
be seeing a debug console all the time.

Tagged with: , , ,
Posted in None

SNTT : Monitoring Additional Tasks In the Domino Administrator

Do you use the built-in server monitoring
in the Domino administrator client and wish you could extend it a little
to monitor the tasks that are added to the Domino server by add-in products?
Well it’s actually fairly simple and just needs a few design changes to
the domadmin.nsf database that is created on your local machine when you
first run the admin client.

A picture named M2

Open the domadmin.nsf database in your
designer client and have a look at all the forms that you see there. You’ll
see a load of forms that all start with ‘Task’ These are the forms that
control how the task monitoring and the ‘Load’ and ‘Tell’ commands work
for each task that the Domino Administrator client can manage.

A picture named M3

Do a copy and paste on one of these
task forms. I normally use one that does not have and UI defined for the
‘Load’ and ‘Tell’ portions of the task. A good example of one of these
would be the ‘TaskCatalog’ form. Open the duplicate form once you have
made your copy. The first thing you’ll need to do is change the forms name
using the same naming conventions of all the other Task forms. Don’t forget
the alias. For the form name you should use the name of the command that
you would type in for the load command if you wanted to load the task.
In the example below to start Traveler I’d type ‘Load Traveler’ on the
server console so the name of the form becomes ‘Tasktraveler’ and the
alias is ‘task_traveler’

A picture named M4

Now we need to change the default values
iin the fields on the form.

‘Task_name’ is what is displayed in
all the views and dialog boxes in the Domino Administrator client. In this
example I’m going to enter in ‘Lotus Traveler’

‘Task_filename’ is the name of the command
you would type for the load command. In this example it is just ‘traveler’
as in ‘Load Traveler’.

‘Task_monitorname’ is what appears in
the list of tasks when you type ‘Show Tasks’ on the server console. For
Lotus Traveler it shows up in the list as ‘Lotus Traveler’

You can set the description to whatever
you want. For my Lotus Traveler task I set mine to ‘Provides mail services
to smartphone clients.’

A picture named M5

When your done just save the new form
and then switch to your Lotus Administration client and add the new task
on the monitor screen.

A picture named M6

Once the next cycle kicks in your server
monitor will start reporting the status on your new task

A picture named M7

You can use this method to monitor any
additional add-in and third party products that show up in a ‘Show Tasks’
command on the server console, including things like Anti-Virus software,
third party archive utilities etc.

Tagged with: ,
Posted in Uncategorized
Archives