Partners in the News

Using Templates to Simplify HTML and Zimlets

Zimbra - Tue, 03/09/2010 - 18:17

If you have ever written a Zimlet that includes HTML markup directly in JavaScript, you know that escaping and formatting the HTML can be a cumbersome and error prone process.

There is an easier way: Templates. Templates allow you to separate HTML markup from JavaScript code. This enables you to leverage HTML in your Zimlets without the formatting hassles.

The Problem

A common technique for using HTML markup within JavaScript is to use an Array() and append HTML markup data as array entries. Once you have all of the HTML markup in the Array(), you perform an Array.join() to create a single String that represents the HTML markup.

For example, say you wanted you to use the following HTML in your Zimlet:

<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tbody>
<tr>
<td colspan="2">This is a sample table HTML code...</td>
</tr>
</tbody>
</table>

Using the Array() technique, your JavaScript would look like:

var htmlArray = new Array(); var i = 0;
htmlArray[i++] = "<table border=\"0\" cellspacing=\"0\" cellpadding=\"2\" width=\"100%\"><tbody><tr><td colspan=\"2\">";
htmlArray[i++] = "This is a sample table HTML code...";
htmlArray[i++] = "</td></tr></tbody></table>";
htmlMarkup = html.join("");

Even with this simple HTML <table> example, you can see formatting the HTML into an Array() can be tedious. Plus, the extensive use of escaped characters makes it harder to debug the HTML markup. And if you include CSS and style elements with your HTML, the challenge only increases. It’s easy to see that using the JavaScript Array() technique can quickly become out-of-control.

The Solution

With Templates, you separate the HTML markup from your JavaScript code. You create a Template file that contains the HTML markup. That Template file gets compiled into JavaScript and that compiled Template can be referenced from your Zimlet JavaScript.

So instead of the JavaScript Array() technique described above, you can put the HTML markup directly in a Template file (just wrap the HTML in a <template> identification element) and compile.

Here is the same simple HTML <table> example from before in a Template file:

<template id="Simple">
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tbody>
<tr>
<td colspan="2">This is a sample table HTML code...</td>
</tr>
</tbody>
</table>
</template>

Compiling the Template file converts the HTML markup into JavaScript that can be referenced and used from your Zimlet. No longer do you have to format and escape the HTML markup by hand.

To reference the compiled Template from your Zimlet, first, in your Zimlet Definition File XML, <include> the compiled Template as a resource. Then, in your Zimlet JavaScript, use AjxTemplate.expand() to retrieve the HTML markup from the Template.

var html = AjxTemplate.expand("com_zimbra_template.templates.Simple#Simple");

Now the HTML markup is available for use in your Zimlet as you see fit.

A Word about Compiling Templates

Prior to Zimbra Collaboration Suite 6.0.5, you had to compile your Templates manually and include the compiled Templates with your Zimlet ZIP package. We have tried to make that manual compilation process a little easier by providing a simple Template Compiler utility found here.

But new with is ZCS 6.0.5 is automatic template compilation. Template files included with your Zimlet are compiled at Zimlet deploy time, eliminating the need for manual compilation. This automatic compilation is also supported when using the Development Directory, which makes iterative development even easier.

One More Thing

Your Template can be more than just static HTML markup. You can pass data to the compiled Template when you call AjxTemplate.expand() and reference dynamic data within your Template.

var dataArray = {phone: "123-456-7890"}; canvas.innerHTML = AjxTemplate.expand("com_zimbra_template.templates.Simple#Simple", dataArray);

Useful Links

More information on creating, compiling and using dynamic data with Templates can be found here:

http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimlet_Developers_Guide:Templates

There are also examples available in the Zimlet Developer’s Guide:

Happy coding!

Ubuntu Weekly Newsletter #183

Ubuntu weekly news - Mon, 03/08/2010 - 01:46

Welcome to the Ubuntu Weekly Newsletter. This is Issue #183 for the week February 28th - March 6th, 2010 and is available here.

In this issue we cover:

* Mark Shuttleworth: “Light” the new look of Ubuntu
* Announcing the 10.10 Ubuntu Developer Summit
* UI Freeze in place for Lucid
* Developer Membership Board meeting
* International Women’s Day Vote
* Ubuntu Stats
* Getting Patches Upstream
* The Grand App Writing Challenge Submissions!
* Server Bug Zapping results
* Ubuntu Classroom Team presents “ClassBot”
* In the Press & Blogosphere
* February 2010 Team Reports
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Craig A. Eddy
* Dave Bush
* Amber Graner
* Liraz Siri
* Nathan Handler
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Ubuntu Weekly Newsletter #182

Ubuntu weekly news - Mon, 03/01/2010 - 00:57

Welcome to the Ubuntu Weekly Newsletter. This is Issue #182 for the week February 21st - February 27th, 2010 and is available here.

In this issue we cover:

* Lucid Alpha 3 Released
* Rocking The Opportunistic Desktop
* Can you hear the Music?
* New Ubuntu Members: Americas Board Meeting
* Ubuntu Stats
* Ubuntu Libya LoCo at the Technology & Science Fair
* Help localization testing with the ISO tracker
* Translating software descriptions with Nightmonkey
* Attention Encrypted Home Users
* Server Bug Zapping - Call for Participation
* Ubuntu Women has a new IRC Channel
* In the Press & Blogosphere
* Full Circle Magazine #34
* Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Craig A. Eddy
* Dave Bush
* Amber Graner
* Liraz Siri
* Scott Gwin
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Ubuntu Weekly Newsletter #181

Ubuntu weekly news - Mon, 02/22/2010 - 01:39

Welcome to the Ubuntu Weekly Newsletter. This is Issue #181 for the week February 14th - February 20th, 2010 and is available here.

In this issue we cover:

* Debian Import Freeze in effect
* Feature Freeze in place - Alpha 3 freeze ahead
* New MOTU
* Ubuntu single sign on service launched
* Ubuntu Stats
* Meet Jelmer Vernooij
* Sikuli — scripting your use of GUIs
* The Planet: Daniel, Dustin, Jono, Alan, David, & Robert
* In the Press & Blogosphere
* Mark Shuttleworth to give keynote at PyCon 2010
* Ubuntu UK podcast returns
* Ubuntu torrents are now IPv6 enabled
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Dave Bush
* Craig A. Eddy
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Zimbra Transition to VMware is Complete

Zimbra - Tue, 02/16/2010 - 07:05

It’s official–  Zimbra is now a part of VMware.

As we settle into our new digs in Palo Alto, you can bet we remain as focused as ever on building and supporting the best open source email and collaboration software for our community, customers and partners. We’re committed to our mission to set the standard for Web-based collaboration and to VMware’s overall mission to simplify IT.

We’re excited to join VMware’s Cloud Services organization, helping to meet increasing customer demand for more public and private on-premises cloud computing services delivered through VMware’s innovative virtualization platform. Zimbra’s modular architecture and APIs make it ideal for virtualization, and for offering cloud-based email and collaboration services.

With VMware’s support, we’re looking forward to accelerating our product roadmap, optimizing Zimbra products for VMware’s vSphere cloud infrastructure, and continuing to build on the record growth that has allowed us to reach more than 55 million paid mailboxes in just five years.

Here’s to Zimbra and VMware!

Ubuntu Weekly Newsletter #180

Ubuntu weekly news - Mon, 02/15/2010 - 01:36

Welcome to the Ubuntu Weekly Newsletter. This is Issue #180 for the week February 7th - February 13th, 2010 and is available here.

In this issue we cover:

* Ubuntu Opportunistic Developer Week: Call For Participation!
* Interview With Jono by Joe Barker
* Interview with Dustin Kirkland, Ubuntu Core Developer about encryption in Ubuntu
* Ubuntu Stats
* Upcoming Ubuntu Global Jam and your Loco Team
* Ubuntu Honduras Loco Team at the T3 conference
* The Planet: Jono Bacon & David Planella
* In the Press & Blogosphere
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Dave Bush
* Craig A. Eddy
* Liraz Siri
* Amber Graner
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Ubuntu Weekly Newsletter #179

Ubuntu weekly news - Sun, 02/07/2010 - 22:02

Welcome to the Ubuntu Weekly Newsletter. This is Issue #179 for the week January 31st - February 6th, 2010 and is available here.

In this issue we cover:

* Open source industry veteran Matt Asay joins Canonical as COO
* Lucid Translations now open
* Ubuntu Developer Week Re-Cap
* Ubuntu 8.04.4 LTS Maintenance release
* Lucid Ubuntu Global Jam Announced
* Project Awesome Opportunity
* New Ubuntu Review Team: Reviewing bug with patches
* Jane Silber Interview
* Dustin Kirkland Interview: Encryption in Ubuntu
* Ubuntu Stats
* Nicaraguan LoCo Team’s Third Anniversary
* Report on Launchpad down-time of 4th Feb 2010
* The Planet
* In the Press & Blogosphere
* January Team Meeting Reports
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Craig A. Eddy
* Dave Bush
* Liraz Siri
* Amber Graner
* J. Scott Gwin
* Nathan Handler
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Revisiting the Zimbra REST API…

Zimbra - Wed, 02/03/2010 - 22:41

For years, the Zimbra Collaboration Suite (ZCS) has exposed mailbox data via REST. And lately, a few customers have asked about the Zimbra REST API (e.g. How is the API used? What methods are available? How does the Zimbra REST API compare to the Zimbra SOAP API?). So I thought it would be good to revisit the topic.

Some background: REST (REpresentational State Transfer) is an approach for building application services that make application resources available via a URL. There is more than ample information about REST out there on the web so I’ll just point you to the REST Wikipedia article for simplicity.

The Zimbra REST API is a great mechanism for reading user mailbox data and outputting that data in different formats (everything from XML-and-JSON to RSS-and-Atom to iCal-and-VCF). In addition to reading data, we’ve exposed methods to import items — like contacts and appointments — into a mailbox. This capability is very useful when performing a migration (i.e. “how do I import contacts from one system into Zimbra?”)

Here is an example of using the REST API to read mailbox data: if you want an output of messages from the “john doe” inbox folder, you call the Zimbra REST API like this:

http://localhost:7070/home/john.doe/inbox?fmt=xml

You can try this method against a Zimbra server via a browser but more commonly customers use the REST API methods from perl scripts or PHP applications…or even just from the command line using curl.

Here is an example of importing contacts into the “john doe” account: perform a POST of a CSV file to the “contacts” folder. The following command shows importing contacts using curl:

curl -{username}:{password} --upload-file /tmp/mycontacts.csv http://localhost:7070/home/john.doe/contacts?fmt=csv

That’s just a couple examples and as you can see, the REST API is a simple yet powerful mechanism for accessing mailbox data. For more information on the Zimbra REST API (i.e. information on authentication, output formats or just a list & syntax for the REST API methods), here is a link to Zimbra REST API Reference document:

http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimbra_REST_API_Reference

One more thing: A very common question is: “why does the SOAP API support so many more functions than the REST API?” Well, the Zimbra REST API is different (in form and function) than the Zimbra SOAP API. At a high level, it’s really an apples-to-oranges comparison. The REST API is for accessing user mailbox data, and the SOAP API is for executing functionality on the server (which can access user mailbox data and also perform account and administrative functions).

The Zimbra SOAP API is the foundational platform service that the Zimbra Web Client uses to communicate between the browser and the Zimbra server. As you can imagine, to create the rich interface experience the Zimbra Web Client delivers, the SOAP API is very complete with advanced and complex functionality, much more than the REST API. To re-create all of this complex functionality in REST API would be a challenge as well as take significant time. So as the alternative, we expose the SOAP API for direct use by our customers & partners.

But that’s another story…I’ll save the Zimbra SOAP API discussion for a different day…until then, enjoy the REST API and happy coding!

Ubuntu Weekly Newsletter #178

Ubuntu weekly news - Mon, 02/01/2010 - 01:24

Welcome to the Ubuntu Weekly Newsletter. This is Issue #178 for the week January 24th - January 30th, 2010 and is available here.

In this issue we cover:

* Contribute with Ubuntu One Bug Day
* Lucid changes to Firefox default search provider
* Announcement: Ubuntu Server update for Lucid Alpha3
* Interview With Ubuntu Manual Project Leader Ben Humphrey
* Ubuntu Stats
* Ubuntu Honduras
* Back up old sources from PPA’s
* Improved Bug Patch Notifications
* Getting your code into Launchpad
* The Planet
* In the Press & Blogosphere
* NZ school ditches Microsoft and goes totally open source
* Full Circle Magazine
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Dave Bush
* Craig A. Eddy
* Amber Graner
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Now showing: opensource.com

Red Hat Magazine - Fri, 01/29/2010 - 11:00

Hi. We’re back. Well, not back exactly. We’d just like to take a minute to introduce you to somebody. Somebody that’s important to us.

opensource.com

We promised we’d let you know when we had news–and now we do. Opensource.com is our new adventure. It’s still sponsored by Red Hat, and still shining a bright light on the open source stories we’ve always sought out.

At opensource.com, we’ll be doing some things a little differently than we used to. We won’t be addressing as many technical topics–but we do hope to address more topics more often. We welcome contributions in the areas of Business, Law, Education, Government, and Life. We welcome new (and old) contributors.

You can bookmark us, or add us to your RSS feed reader. Register with the site and you can post and track comments, give a bit of a biography, and network with other contributors.

Like it? Share it. Help us spread the word through identi.ca, facebook, or twitter.

And for those of you that were fond of our video contributions? Never fear. Our crack video team is fully involved.

So give it a click. Check out the articles. Sure, it’s not the same comfy digs you’d gotten used to, but pretty soon, it’ll feel just as homey. And that’s where we’ll be, for the next while.

Red Hat Magazine enjoyed a fantastic run. It’s launched careers, ideas, and helped publish–and promote–writers we dearly know and love. It gave us experience–and information–we can take to this newer, bigger venture. And now we’ve got a new venue–and a new name–to keep doing the kind of work we love. That kind of work and more.

One thing that has changed and–we think–for the better: It’s not just Red Hat’s magazine anymore. Opensource.com belongs to everyone. It’s a conversation-starter, a place for debate, and we hope you’ll come be a part of it.

And thank you. For subscribing, for contributing, and for reading–at RHM and beyond.


Ubuntu Weekly Newsletter #177

Ubuntu weekly news - Mon, 01/25/2010 - 01:09

Welcome to the Ubuntu Weekly Newsletter. This is Issue #177 for the week January 17th - January 23rd, 2010 and is available here.

In this issue we cover:

* Developer Membership Board election results
* Ubuntu User Days A Big Success
* Bugs and hugs
* Ubuntu Developer Week: January 25th – January 29th, 2010
* Canonical Blog: ISV support for Ubuntu Server Edition widens
* January 20th America’s Membership Review Board Meeting
* Ubuntu Stats
* Ubuntu LoCo Re-Approval Process
* LoCo Stories: the Ubuntu Honduras School Tour
* Launchpad 10.1 roll-out 09.00-11.30 27th January 2010
* Anonymous Access to the Launchpad Web Service API
* The Planet
* In the Press & Blogosphere
* Introducing Ubuntu Electronics Remix 9.10
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Dave Bush
* Craig A. Eddy
* Amber Graner
* And many others
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons License

Adding Tab Applications to the Zimbra Web Client

Zimbra - Wed, 01/20/2010 - 23:19

New with Zimbra Collaboration Suite 6.0 is the ability to create Zimlets that show-up as tab applications in the Zimbra Web Client.  This powerful new feature, unique to the Zimbra platform, enables partners & customers to more easily integrate third-party applications with the Zimbra Web Client. And there are already new Zimlets taking advantage of this feature, like the Social Zimlet or the BroadSoft Zimlet.

Let’s take a look at how to implement some of the basic operations of this new feature…But first, some background: the Zimbra Web Client displays multiple default applications across the top of the interface as “tabs”. These applications include (based on your deployment configuration): mail, address book, calendar, tasks, documents and briefcase. With the Zimlet Tab feature, you can add “tabs” to this array of applications.

Creating the Tab

It starts with creating the tab in your Zimlet JavaScript code. A createApp() method has been added to the ZmZimletBase class. Since all zimlets extend ZmZimletBase, to create a tab, all you need to do is call the this.createApp() method from your Zimlet. The three parameters to createApp() are:

  • Tab label: the visible text “label” for the tab (for example, “My Tab”).
  • Tab icon: the CSS class to use for the icon in the tab.
  • Tab tool tip: the tab tool tip shown when hovering over the tab.

So creating a tab is as simple as calling the following from your Zimlet:

this._tabAppName = this.createApp("My Tab", "zimbraIcon", "A new tab app");

This method returns a unique application name for the newly created tab. You will need this unique name to manage and retrieve the different components of the tab, so it’s best to capture this return value.

Listening for Tab Application Events

Your Zimlet will also receive application events as tab applications are launched for the first time and as a user navigates around the Zimbra Web Client between tab applications. The events will be received in the ZmZimletBase.appActive() and ZmZimletBase.appLaunch() methods. By implementing these methods in your Zimlet, you will be able to know when a user launches and switches between tab applications.

Anatomy of a Tab Application

The layout of a tab application includes the following: the Tab and the Content Areas (i.e. Toolbar, Main and Overview).

The Tab

The row of tab applications across the top of the Zimbra Web Client interface is managed by an application chooser, which is represented by the Zimbra JavaScript class ZmAppChooser. The ZmAppChooser class extends ZmToolBar, making the row of tab applications basically a toolbar with buttons that look like “tabs”.

That means, after tab creation, you can manage the actual “tab” for the application as a ZmAppButton. For example, you can obtain a handle to the tab “button” through the app chooser and set, among other things, the text label & the tool tip.

var controller = appCtxt.getAppController(); var appChooser = controller.getAppChooser(); // change the tab label and tool tip var appButton = appChooser.getButton(this._tabAppName); appButton.setText("NEW TAB LABEL"); appButton.setToolTipContent("NEW TAB TOOL TIP");

The Content Areas

You can set the various content areas of the tab to suit your Zimlet needs. The Toolbar area is the area directly under the row of tab applications. This is typically the place where you put toolbar buttons for application control. The Overview area is located on the left-side of the page. This area typically houses a navigation tree but you can set any content you see fit. The Main area is the primary content location for the tab and can be set with whatever application content as needed.

The Toolbar Area can be obtained from the ZmZimletApp and is represented as a ZmToolBar object:

var app = appCtxt.getApp(this._tabAppName); var toolbar = app.getToolbar(); toolbar.setContent("<b>TAB APPLICATION - TOOLBAR AREA</b>");

The Main Area can be accessed directly from the ZmZimletApp:

var app = appCtxt.getApp(this._tabAppName); app.setContent("<b>TAB APPLICATION - MAIN AREA</b>");

The Overview Area can be obtained from the ZmZimletApp and is represented as a ZmOverview object:

var app = appCtxt.getApp(this._tabAppName); var overview = app.getOverview(); overview.setContent("<b>TAB APPLICATION - OVERVIEW AREA</b>");

So that’s the basics of tab applications and Zimlets. As you can see, by leveraging this new Zimlet Tab feature, you will be able to create new & powerful integrations with Zimbra Collaboration Suite.

More information on implementing your own Zimlet tab application can be found in the Zimlet Developer’s Guide at:

http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimlet_Developers_Guide:Introduction

http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimlet_Developers_Guide:Zimlet_Tab

Zimlet Tab Examples are available at:

http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimlet_Developers_Guide:Example_Zimlets#Tab_Zimlets

And checkout the Zimlet JavaScript API Reference for information on the ZmZimletBase class and tab application methods such as createApp(), appAction() and appLaunch():

http://files.zimbra.com/docs/zimlet/zcs/6.0/jsdocs/index.html

Red Hat Counters Oracle, Novell Linux Support Claims

The VAR Guy feed - Tue, 01/19/2010 - 21:54

At first glance, Red Hat’s biggest rival is Microsoft. But take a closer look and Red Hat seems to be equally concerned about two other fierce rivals. They are (1) Free Linux and (2) so-called low-cost Linux support offerings from Novell and Oracle. Here’s the story.

Red Hat on February 3 will host a webcast titled “Understanding the Risks of Free and ‘Low Cost’ Linux.” Red Hat’s event pitch is concise:

Join Red Hat for this webinar to learn why self supported Linux isn’t a risk-free alternative to a Red Hat Enterprise Linux subscription. And understand how 3rd party supported Red Hat Enterprise Linux can become a nightmare to integrate into your infrastructure.

Hmmm… what’s does all that mean?

Returning Fire Against Novell, Oracle

Read between the lines and Red Hat seems to be countering key Linux support statements by Novell and Oracle. As you may recall…

  • Novell’s SUSE Linux Enterprise Server Subscription with Expanded Support allows customers to transition to SUSE Linux Enterprise over a three-year period while receiving technical support for certain existing Linux deployments (most notably: Red Hat Enterprise Linux).
  • And Oracle promotes Unbreakable Linux support services — which allow customers to continue running Red Hat Enterprise Linux.

Are customers and partners flocking to Red Hat Enterprise Linux support offerings from Novell and Oracle? Frankly, The VAR Guy doesn’t think so.

No doubt, Red Hat has financial momentum — as demonstrated by the company’s Q3 results, announced in December 2009. And Red Hat ranked atop The VAR Guy’s 2009 Open Source 50 report, which tracks the most promising open source channel partner programs. (The 2010 research report is underway now.) Plus, Red Hat is pushing beyond Linux and JBoss middleware to promote the hosted virtual desktop market.

So far, so good for Red Hat. But competitive Linux support claims from Novell and Oracle seem to have caught Red Hat’s attention. Red Hat will return fire on February 3.



Read More About This Topic

Ubuntu Weekly Newsletter #176

Ubuntu weekly news - Tue, 01/19/2010 - 06:30

Welcome to the Ubuntu Weekly Newsletter, Issue #176 for the week January 10th - January 16th, 2010 is available.

In this issue we cover:

* Ubuntu 10.4 Lucid Lynx Alpha 2
* Ubuntu Developer Week
* Ubuntu User Day
* New Ubuntu Women leadership
* Ubuntu Free Culture Showcase
* Kernel Bug Day
* Ubuntu 10.04 Alpha 2 Removes HAL
* Ubuntu Stats
* The Planet
* In the Press & Blogosphere
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Craig A. Eddy
* Dave Bush
* Amber Graner
* Liraz Siri
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons LicenseAttribution 3.0 License

Aito Technologies Embeds MySQL to Manage Several TB of Mobile Traffic Data

MySQL - Fri, 01/15/2010 - 03:00
Finland-based Aito Technologies, developer of a customer experience analytics product suite, today announced its plans to employ Sun Microsystems’ MySQL Embedded Database Server software to successfully analyze up to billions of phone calls, text messages, and mobile data sessions on a daily basis.

Using the Zimlet Development Directory for Iterative Development

Zimbra - Thu, 01/14/2010 - 21:38

When developing a Zimlet, you are constantly making code changes and then packaging and deploying the Zimlet to be able to test those changes. This is the Zimlet development process and is done over & over again until your Zimlet is “ready” for production. An iterative development process like this that involves packaging and deploying with each code change can be quite time consuming and really impact your developer productivity.

That’s where the Zimlet Development Directory comes in.

By using the Zimlet Development Directory, you can develop your Zimlets without having to package and deploy the Zimlet with each code change. You can make your code changes directly in the Zimlet files and just refresh your browser to see the changes take affect. This will greatly reduce your development time and overall, make it much easier to build Zimlets.

To use the Zimlet Development Directory, create a _dev folder in the {zcs-install-dir}/zimlets-deployed directory. In the _dev folder, create your Zimlet folder and file structure that you can modify on the fly. It’s just that easy.

For example, say you want to create a Zimlet named “com_zimbra_myzimlet”:

  1. Create the development directory:
    {zcs-install-dir}/zimlets-deployed/_dev
  2. Create the Zimlet folder:
    {zcs-install-dir}/zimlets-deployed/_dev/com_zimbra_myzimlet
  3. Now put your Zimlet Definition File (com_zimbra_myzimlet.xml) and whatever other resources your Zimlet needs in that directory (like JavaScript files, JSP files, Properties files, etc).
  4. Make code changes to the Zimlet files as necessary and voila, just refresh your browser to see the changes take affect.

There are some limitations, however. If using Internationalization resource properties, you will need to load the Zimbra Web Client in Development Mode (i.e. with “?dev=1″ on the URL). Also, the “allowed domains” setting in the Zimlet Configuration File (config_template.xml) for the Proxy Servlet is not recognized. There is a workaround for this situation described in the Proxy Servlet Setup section of the Zimlet Developer’s Guide.

We still recommend that you package and deploy your Zimlet when you plan to go into production. But as you can see, the Zimlet Development Directory cuts-out the deploy & package development steps and is a convenient way to do iterative Zimlet development.

More information on the Zimlet Development Directory can be found in the Zimlet Developer’s Guide at:

http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimlet_Developers_Guide:Dev_Environment_Setup#Zimlet_Development_Directory

Zimbra to Join VMware: 2010 Will Accelerate Growth

Zimbra - Tue, 01/12/2010 - 23:06

Big news for Zimbra – we’re excited and looking forward to starting a new chapter as part of VMware. We want to thank Yahoo! for helping Zimbra usher in a period of phenomenal growth over the past 2 years.  And we are proud to have contributed to the current and future success of Yahoo! during this time as well.  Zimbra’s technologies have and will continue to play a role in Yahoo!’s communications services, including Yahoo! Mail and Yahoo! Calendar.  The Yahoo! team is very happy for us, our customers and our community as we prepare to enter this new era.  We owe Yahoo! a great deal of appreciation for their support.

First and foremost, we want to reassure our community, customers and partners that we stay 100% committed to our mission.  Together with VMware, we will accelerate our investments in Zimbra and strive to be even better at building and supporting the best open source email and collaboration software in the market.  As always, we will work tirelessly to strengthen and grow our business relationships and service our customers and community.

In just five years, Zimbra has grown to become one of the largest email and collaboration providers in the world with Microsoft and IBM, totaling more than 55 million paid mailboxes at over 150 thousand organizations worldwide – that’s upwards of 80% year-over-year growth. We are happy to count among our customers leading cloud providers (Comcast, NTT Communications, Westnet); universities (University of Pennsylvania, Stanford, Georgia Tech); companies big (Bechtel, H&R Block) and small (Digg, Mozilla); plus many governments and non-profits (the Drug Enforcement Administration, Malaysian Federal Government, Food for the Hungry).  We are honored by these customers and thank them and our community for the continued support.

Zimbra Collaboration Suite has become a great open source platform because of the people who provide input and guidance each day.  Our recent launch of ZCS 6.0 was a direct result of community and customer feedback.  ZCS 6.0 includes powerful new collaboration features for enterprise users, new capabilities for system administrators, better mobile device management, and the ability to manage Twitter, Facebook and other social networking sites (find out what’s new in 6.0 here).

We believe that the shift toward cloud computing and virtualization will continue to change the industry landscape and revolutionize how the IT industry builds, deploys and uses software.   Zimbra is excited to be joining our open source friends at SpringSource, and becoming another cornerstone in an impressive suite of VMware products.  The VMware platform now integrates virtualization, middleware and applications – and enables the decoupling of applications from traditional concepts of linear hardware scaling.   Private and/or public cloud computing networks can work together and applications can be deployed and managed seamlessly across those clouds.  Zimbra products were designed from the ground up with virtualization and the cloud in mind, with a modular architecture and APIs to allow distributed access to data and storage.   Email and collaboration services have always been ubiquitous to organizations, but now the barriers to transitioning them to efficient virtualized environments will be much more seamless.

At VMware, Zimbra will continue focusing on our product roadmap and setting the standard for web-based collaboration.  Look forward to Zimbra Desktop 2.0, more real-time messaging, new ways for sharing content in collaborative workspaces, enhanced team scheduling and business continuity services.  Over time we will also adjust the scope and scale of our roadmap to reflect incremental investment, plus we will integrate Zimbra with VMware’s vSphere cloud infrastructure.

Today Steve Herrod, VMware CTO, wrote an excellent post laying out the emerging VMware strategy and how Zimbra products will fit in; be sure to take a look.

Finally, I’d like to thank the amazing Zimbra team for your hard work in building this fantastic product and this business.   We have built something very valuable to the market and to the industry in just a few years.  As we take this next step with VMware, we will continue our mission – to create an innovative, open source collaboration experience for organizations to use in the cloud and in private on-premises networks.

So on that note, happy new year everybody and stay tuned for a lot of Zimbra news in 2010.

About

Zimbra - Mon, 01/11/2010 - 19:42

This is an example of a WordPress page, you could edit this to put information about yourself or your site so readers know where you are coming from. You can create as many pages like this one or sub-pages as you like and manage all of your content inside of WordPress.

Hello world!

Zimbra - Mon, 01/11/2010 - 19:42

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Ubuntu Weekly Newsletter #175

Ubuntu weekly news - Mon, 01/11/2010 - 00:47

Welcome to the Ubuntu Weekly Newsletter, Issue #175 for the week January 3rd - January 9th, 2010 is available.

In this issue we cover:

* Edubuntu bug day on Tuesday, January 12th
* 2nd call for votes: Ubuntu Developer Membership Board Election
* Simplified Main Inclusion Request process
* New MOTU members
* Ubuntu Manual Project
* 2010: Your Year for Ubuntu Membership
* Ubuntu Stats
* Ubuntu Florida Team and the “Youth Build Day”
* Lanuchpad - Jonathan Lange: The Road Ahead
* The Planet
* In the Press & Blogosphere
* Community and Ubuntu Live Videocast
* Ubuntu Women project growing in Strength
* Upcoming Meetings & Events
* Updates & Security
* And much, much more!

This issue of The Ubuntu Weekly Newsletter is brought to you by:

* John Crawford
* Craig A. Eddy
* Dave Bush
* Amber Graner
* Liraz Siri
* And many others

If you have a story idea for the Weekly News, join the Ubuntu News Team mailing list and submit it. Ideas can also be added to the wiki!

Except where otherwise noted, content in this issue is licensed under a Creative Commons Attribution 3.0 License BY SA Creative Commons LicenseAttribution 3.0 License