<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.novell.com/communities" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Novell Users International (NUI)</title>
 <link>http://www.novell.com/communities/nui</link>
 <description>Area where Novell users from around the world enjoy the benefits of community membership.</description>
 <language>en</language>
<item>
 <title>Welcome to NUI</title>
 <link>http://www.novell.com/communities/node/2182/welcome-nui</link>
 <description> &lt;p&gt;&lt;img src=&quot;/communities/files/img/nuilogo_sm.gif&quot; width=&quot;75&quot; height=&quot;67&quot; alt=&quot;nuilogo_sm.gif&quot; /&gt;&lt;/p&gt;
&lt;p&gt;Novell Users International (NUI) supports a network of 50 user groups worldwide. &lt;/p&gt;
&lt;p&gt;NUI provides both Novell and Linux User Groups with materials for Install Fests, guest presenters for meetings, and regular Novell technology updates. &lt;/p&gt;
&lt;p&gt;This new web community for NUI presidents and members will allow NUI presidents to interact with each other, with Novell, and with their members more effectively. &lt;/p&gt;
&lt;p&gt;Each NUI Group has its own private space for the exclusive use of its members.  NUI Presidents can use this space to post local events, provide info about upcoming events, welcome new members, and much more.  NUI members can use this space to ask questions, make suggestions, interact with fellow members and the president, and share ideas.&lt;/p&gt;
&lt;p&gt;Special forums for NUI Presidents will make it easy for presidents worldwide to discuss issues, share ideas, and interact with Novell experts as needed.&lt;/p&gt;
&lt;p&gt;Membership connects you to the global network of professionals who know enterprise and open source technology best. Get involved today, and expand your career and your professional network.&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/nui&quot; class=&quot;og_links&quot;&gt;Novell Users International (NUI)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/2182/welcome-nui#comments</comments>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <pubDate>Sat, 27 Oct 2007 10:09:06 -0600</pubDate>
 <dc:creator>nuiguys</dc:creator>
 <guid isPermaLink="false">2182 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>How to check if Javascript is enabled on the client side using php</title>
 <link>http://www.novell.com/communities/node/8897/how-check-if-javascript-enabled-client-side-using-php</link>
 <description> &lt;p&gt;You might be using validations for your form on client side using Javascript. It may arise that client side Javascript is disabled, given this scenario your validations will go for a toss.&lt;/p&gt;
&lt;p&gt;You can check in your php if Javascript is enabled on client side using the following method.&lt;/p&gt;
&lt;p&gt;Add a hidden input in your form in the &amp;lt;noscript&amp;gt; tag. The contents of noscript tag are rendered on a &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/517&quot;&gt;&lt;acronym title=&quot;1. Software used to explore or navigate. For example, a Web browser (such as Firefox or Internet Explorer) allows a user to access pages on the World Wide Web; a NetWare Administrator browser window allows a user to access the eDirectory tree. Web browsers with a particular encryption capability called Secure Socket Layer (SSL) are sometimes called SSL browsers.2. In the Common Desktop Environment (CDE) Application Builder, a window that provides a symbolic, hierarchical view of a module in a user interface. The browser shows parent-child relationships and groups. It can also be used to find objects in complex modules and to edit a user interface.&quot;&gt;browser&lt;/acronym&gt;&lt;/a&gt; with Javascript disabled:&lt;/p&gt;
&lt;pre&gt;&amp;lt;form id=&quot;&quot; action=&quot;&quot; method=&quot;post&quot;&amp;gt;
	&amp;lt;noscript&amp;gt;
		&amp;lt;input name=&quot;js_enabled&quot; type=&quot;hidden&quot; value=&quot;1&quot;&amp;gt;
	&amp;lt;/noscript&amp;gt;
	&amp;lt;input id=&quot;email&quot; name=&quot;email&quot; size=&quot;30&quot; class=&quot;required email&quot; &amp;gt;&amp;lt;br&amp;gt;
	&amp;lt;input id=&quot;submit_data&quot; value=&quot;Submit&quot; type=&quot;submit&quot;&amp;gt;&amp;lt;br&amp;gt;
&amp;lt;/form&amp;gt;

&lt;/pre&gt;&lt;p&gt;Now the following will be the php code to check whether Javacript is enabled:&lt;/p&gt;
&lt;pre&gt;&amp;lt;?php

// Check if Javascript is enabel from hidden value in &amp;lt;noscript&amp;gt;&amp;lt;/noscript&amp;gt;
$browser_check = 0;
if(isset($_POST[&#039;js_enabled&#039;]))
	$browser_check = $_POST[&#039;js_enabled&#039;];

if ($browser_check == 1) {
	echo &#039; Javascript is disabled on your system&#039;;
}

?&amp;gt;&lt;/pre&gt;&lt;p&gt;This is useful if you use ajax submission of form. Say to check if email exists and display the same in error div. Or maybe other scenarios that may suit your requirements.&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/coolsolutions&quot; class=&quot;og_links&quot;&gt;Cool Solutions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/8897/how-check-if-javascript-enabled-client-side-using-php#comments</comments>
 <category domain="http://www.novell.com/communities/product/linux">Linux</category>
 <category domain="http://www.novell.com/communities/product/opensuse">openSUSE</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/24">SUSE Linux</category>
 <category domain="http://www.novell.com/communities/content-type/tip">Tip</category>
 <category domain="http://www.novell.com/communities/topic/forms">Forms</category>
 <category domain="http://www.novell.com/communities/topic/linux">Linux</category>
 <category domain="http://www.novell.com/communities/topic/open-source">Open Source</category>
 <category domain="http://www.novell.com/communities/topic/scripting">Scripting</category>
 <category domain="http://www.novell.com/communities/topic/windows">Windows</category>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <pubDate>Thu, 03 Sep 2009 15:58:16 -0600</pubDate>
 <dc:creator>mendesdomnic</dc:creator>
 <guid isPermaLink="false">8897 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>My Top 5 Favorite jQuery Plugins</title>
 <link>http://www.novell.com/communities/node/8800/my-top-5-favorite-jquery-plugins</link>
 <description> &lt;p&gt;&lt;b&gt;Tablesorter 2.0&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Tablesorter can turn any standard &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/1482&quot;&gt;&lt;acronym title=&quot;HyperText Markup LanguageThe markup language used to create pages on the World Wide Web. Because HTML uses ASCII text character combinations to code or tag various options, it can be used on a variety of platforms. HTML coding can be used to format text, create lists, insert multimedia, create forms for collecting user input, and create links to other Web locations.HTML is a language for describing page layout in electronic documents such as Web pages, help files, and e-mail messages. HTML can be used in e-mail and news posts to insert images and apply text treatments.&quot;&gt;HTML&lt;/acronym&gt;&lt;/a&gt; table with THEAD and TBODY tags into a sortable table without page refreshes. Tablesorter can successfully &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/633&quot;&gt;&lt;acronym title=&quot;To break down a string of information such as a command or file into its constituent parts.&quot;&gt;parse&lt;/acronym&gt;&lt;/a&gt; and sort many types of data including linked data in a cell.&lt;/p&gt;
&lt;p&gt;Why it&#039;s my favorite?&lt;br /&gt;
Easy and quick pagination, sorting of data. No complex code for pagination and sorting. Faster response since no ajax call and reloading.&lt;/p&gt;
&lt;p&gt;Get more information here:&lt;br /&gt;
&lt;a href=&quot;http://tablesorter.com/docs/&quot; title=&quot;http://tablesorter.com/docs/&quot;&gt;http://tablesorter.com/docs/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;CrossSlide&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;CrossSlide is a jQuery plugin that implements in Javascript some common slide-show animations, traditionally only available to the web developer via Adobe Flash™ or other proprietary plugins.&lt;/p&gt;
&lt;p&gt;Why it&#039;s my favorite?&lt;br /&gt;
Quick and easy slideshow with animations. Professional Looks.&lt;/p&gt;
&lt;p&gt;Get more information here:&lt;br /&gt;
&lt;a href=&quot;http://www.gruppo4.com/~tobia/cross-slide.shtml&quot;&gt;http://www.gruppo4.com/~tobia/cross-slide.shtml&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Accordion&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;A nice and small jQuery accordion menu that has a nice fade in fade out animation when users navigate around them.&lt;/p&gt;
&lt;p&gt;Why it&#039;s my favorite?&lt;br /&gt;
Nice fade in and fade out menus. Keeps menu manageable&lt;/p&gt;
&lt;p&gt;Get more information here:&lt;br /&gt;
&lt;a href=&quot;http://www.renderrobot.com/?p=33&quot;&gt;http://www.renderrobot.com/?p=33&lt;/a&gt;&lt;br /&gt;
also see Horizontal Accordion here&lt;br /&gt;
&lt;a href=&quot;http://www.portalzine.de/index?/Horizontal_Accordion--print&quot;&gt;http://www.portalzine.de/index?/Horizontal_Accordion--print&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;stylesheet switcher&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;The stylesheet switcher allows your visitors to choose which stylesheet they would like to view your site with. It uses cookies so that when they return to the site or visit a different page they still get their chosen stylesheet.&lt;/p&gt;
&lt;p&gt;Why it&#039;s my favorite?&lt;br /&gt;
Great way to switch styles on your site.&lt;/p&gt;
&lt;p&gt;Get more information here:&lt;br /&gt;
&lt;a href=&quot;http://www.kelvinluck.com/2006/05/switch-stylesheets-with-jquery/&quot;&gt;http://www.kelvinluck.com/2006/05/switch-stylesheets-with-jquery/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Media Plugin&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;It can be used to embed virtually any media type, including Flash, Quicktime, Windows Media Player, Real Player, &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/780&quot;&gt;&lt;acronym title=&quot;Compression algorithm for audio files that reduces the data size by about a factor of ten in contrast to the uncompressed audio file. It is called a lossy compression because information and quality are lost in the process.&quot;&gt;MP3&lt;/acronym&gt;&lt;/a&gt;, Silverlight, &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2674&quot;&gt;&lt;acronym title=&quot;portable document formatA document-encoding process developed by Adobe that maintains page layout, fonts, and graphics and can include many other features such as hyperlinks. Documents in the PDF format can be viewed, navigated, and printed from any computer regardless of the fonts or software programs used to create the original.&quot;&gt;PDF&lt;/acronym&gt;&lt;/a&gt; and more, into a web page.&lt;/p&gt;
&lt;p&gt;Why it&#039;s my favorite?&lt;br /&gt;
I can embed PDF and other documents besides media like flash , video,mp3 in my sites.&lt;/p&gt;
&lt;p&gt;Get more information here:&lt;br /&gt;
&lt;a href=&quot;http://www.malsup.com/jquery/media/&quot;&gt;http://www.malsup.com/jquery/media/&lt;/a&gt;&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/nui&quot; class=&quot;og_links&quot;&gt;Novell Users International (NUI)&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/8800/my-top-5-favorite-jquery-plugins#comments</comments>
 <category domain="http://www.novell.com/communities/product/linux">Linux</category>
 <category domain="http://www.novell.com/communities/content-type/tip">Tip</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/29">Developer</category>
 <category domain="http://www.novell.com/communities/topic/developer+tools">Developer Tools</category>
 <category domain="http://www.novell.com/communities/topic/especially-linux-newbies">Especially for Linux Newbies</category>
 <category domain="http://www.novell.com/communities/topic/general">General</category>
 <category domain="http://www.novell.com/communities/topic/links">Links</category>
 <category domain="http://www.novell.com/communities/topic/linux">Linux</category>
 <category domain="http://www.novell.com/communities/topic/open-source">Open Source</category>
 <category domain="http://www.novell.com/communities/topic/tips-end-users">Tips for End Users</category>
 <category domain="http://www.novell.com/communities/topic/windows">Windows</category>
 <group domain="http://www.novell.com/communities/coolsolutions/slemag" xmlns="http://drupal.org/project/og">SUSE Linux Enterprise Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <pubDate>Thu, 20 Aug 2009 18:06:05 -0600</pubDate>
 <dc:creator>mendesdomnic</dc:creator>
 <guid isPermaLink="false">8800 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>jQuery Tablesorter: Pagination and Sorting made simple</title>
 <link>http://www.novell.com/communities/node/8797/jquery-tablesorter-pagination-and-sorting-made-simple</link>
 <description> &lt;p&gt;For those who are not familiar with jQuery here is a brief overview.&lt;/p&gt;
&lt;p&gt;jQuery is a fast and concise JavaScript Library that simplifies &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/1482&quot;&gt;&lt;acronym title=&quot;HyperText Markup LanguageThe markup language used to create pages on the World Wide Web. Because HTML uses ASCII text character combinations to code or tag various options, it can be used on a variety of platforms. HTML coding can be used to format text, create lists, insert multimedia, create forms for collecting user input, and create links to other Web locations.HTML is a language for describing page layout in electronic documents such as Web pages, help files, and e-mail messages. HTML can be used in e-mail and news posts to insert images and apply text treatments.&quot;&gt;HTML&lt;/acronym&gt;&lt;/a&gt; document traversing, event handling, animating, and Ajax interactions for rapid web development.&lt;/p&gt;
&lt;p&gt;Below is an example that shows the power of jquery.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Tablesorter&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Tablesorter is a jQuery plugin for turning a standard HTML table with THEAD and TBODY tags into a sortable table without page refreshes.&lt;/p&gt;
&lt;p&gt;Lets get started.&lt;/p&gt;
&lt;p&gt;We have a table with following Data:&lt;/p&gt;
&lt;pre&gt;Last Name 
First Name
Email
Age
Premium Amount

&lt;/pre&gt;&lt;p&gt;This is represented in a table as below.&lt;/p&gt;
&lt;table id=&quot;insured_list&quot; class=&quot;tablesorter&quot;&gt;
&lt;tr&gt;
&lt;th&gt;Last Name&lt;/th&gt;
&lt;th&gt;First Name&lt;/th&gt;
&lt;th&gt;Email&lt;/th&gt;
&lt;th&gt;Age&lt;/th&gt;
&lt;th&gt;Premium Amount&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mendes&lt;/td&gt;
&lt;td&gt;Domnic&lt;/td&gt;
&lt;td&gt;domnic@gmail.com&lt;/td&gt;
&lt;td&gt;29&lt;/td&gt;
&lt;td&gt;5500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Bharne&lt;/td&gt;
&lt;td&gt;Sagar&lt;/td&gt;
&lt;td&gt;sbharne@yahoo.com&lt;/td&gt;
&lt;td&gt;25&lt;/td&gt;
&lt;td&gt;4500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Rambo&lt;/td&gt;
&lt;td&gt;John&lt;/td&gt;
&lt;td&gt;sylvester@hotmail.com&lt;/td&gt;
&lt;td&gt;60&lt;/td&gt;
&lt;td&gt;10000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fernandes&lt;/td&gt;
&lt;td&gt;Timothy&lt;/td&gt;
&lt;td&gt;timothy@fernandes.com&lt;/td&gt;
&lt;td&gt;35&lt;/td&gt;
&lt;td&gt;6500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Mendes&lt;/td&gt;
&lt;td&gt;Danny&lt;/td&gt;
&lt;td&gt;domnic@gmail.com&lt;/td&gt;
&lt;td&gt;29&lt;/td&gt;
&lt;td&gt;5500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Karpe&lt;/td&gt;
&lt;td&gt;Sagar&lt;/td&gt;
&lt;td&gt;sbharne@yahoo.com&lt;/td&gt;
&lt;td&gt;25&lt;/td&gt;
&lt;td&gt;4500&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Stallone&lt;/td&gt;
&lt;td&gt;Sylvester&lt;/td&gt;
&lt;td&gt;sylvester@hotmail.com&lt;/td&gt;
&lt;td&gt;60&lt;/td&gt;
&lt;td&gt;10000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fernandes&lt;/td&gt;
&lt;td&gt;Domnic&lt;/td&gt;
&lt;td&gt;timothy@fernandes.com&lt;/td&gt;
&lt;td&gt;35&lt;/td&gt;
&lt;td&gt;6500&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Please note the tablesorter works on HTML tables and the columns of table need to be specified in &amp;lt;thead&amp;gt;&amp;lt;/thead&amp;gt; tags as shown above.&lt;/p&gt;
&lt;p&gt;Include the following js files in the &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; tag&lt;/p&gt;
&lt;pre&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/jquery-latest.js&quot;&amp;gt;&amp;lt;/script&amp;gt; 
&amp;lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/jquery.tablesorter.js&quot;&amp;gt;&amp;lt;/script&amp;gt; 

&lt;/pre&gt;&lt;p&gt;Now, we need to initiate the table sorting action with the following javascript code:&lt;/p&gt;
&lt;pre&gt;
&amp;lt;script defer=&quot;defer&quot;&amp;gt;
$(document).ready(function() 
    { 
        $(&quot;#insured_list&quot;).tablesorter(); 
    } 
); 
&amp;lt;/script&amp;gt;

&lt;/pre&gt;&lt;p&gt;insured_list is the id of table above&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Adding the Pagination Code&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Here is the additional html code for the paginator:&lt;/p&gt;
&lt;pre&gt;
&amp;lt;div id=&quot;pager&quot; class=&quot;pager&quot;&amp;gt;
	&amp;lt;form&amp;gt;
		&amp;lt;img src=&quot;images/first.png&quot; class=&quot;first&quot;/&amp;gt;
		&amp;lt;img src=&quot;images/prev.png&quot; class=&quot;prev&quot;/&amp;gt;
		&amp;lt;input type=&quot;text&quot; class=&quot;pagedisplay&quot;/&amp;gt;
		&amp;lt;img src=&quot;images/next.png&quot; class=&quot;next&quot;/&amp;gt;
		&amp;lt;img src=&quot;images/last.png&quot; class=&quot;last&quot;/&amp;gt;
		&amp;lt;select class=&quot;pagesize&quot;&amp;gt;
			&amp;lt;option value=&quot;&quot;&amp;gt;&amp;gt;LIMIT&amp;lt;/option&amp;gt;
			&amp;lt;option value=&quot;2&quot;&amp;gt;2 per page&amp;lt;/option&amp;gt;
			&amp;lt;option value=&quot;5&quot;&amp;gt;5 per page&amp;lt;/option&amp;gt;
			&amp;lt;option value=&quot;10&quot;&amp;gt;10 per page&amp;lt;/option&amp;gt;
			
		&amp;lt;/select&amp;gt;
	&amp;lt;/form&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/pre&gt;&lt;p&gt;Include the following js files in the &amp;lt;head&amp;gt;&amp;lt;/head&amp;gt; tag:&lt;/p&gt;
&lt;pre&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/jquery-latest.js&quot;&amp;gt;&amp;lt;/script&amp;gt; 
&amp;lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/jquery.tablesorter.js&quot;&amp;gt;&amp;lt;/script&amp;gt; 
&amp;lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/jquery.tablesorter.pager.js&quot;&amp;gt;&amp;lt;/script&amp;gt; 

&lt;/pre&gt;&lt;p&gt;Here is the revised code for the pagination and sorter to attach the tablesorter feature:&lt;/p&gt;
&lt;pre&gt;
&amp;lt;script defer=&quot;defer&quot;&amp;gt;
	$(document).ready(function() 
    { 
        $(&quot;#insured_list&quot;)
		.tablesorter({widthFixed: true, widgets: [&#039;zebra&#039;]})
		.tablesorterPager({container: $(&quot;#pager&quot;)}); 
    } 
	); 
&amp;lt;/script&amp;gt;

&lt;/pre&gt;&lt;p&gt;The following code is used for the pagination:&lt;/p&gt;
&lt;pre&gt; .tablesorterPager({container: $(&quot;#pager&quot;)}); &lt;/pre&gt;&lt;p&gt;Screen Shot of above example:&lt;/p&gt;
&lt;div class=&quot;clear-block&quot;&gt;
&lt;div class=&quot;thumbnail&quot;&gt;
&lt;a href=&quot;http://www.novell.com/communities/files/u273/tablesorter_screenshot.jpg&quot;&gt;&lt;img src=&quot;http://www.novell.com/communities/files/u273/tablesorter_screenshot_0.jpg&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href=&quot;http://www.novell.com/communities/files/u273/tablesorter_screenshot.jpg&quot;&gt;Click to view&lt;/a&gt;.&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;&lt;b&gt;Download this complete example &lt;a href=&quot;http://www.novell.com/communities/files/tablesorter example.zip&quot;&gt;here&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;For more details on this plugin and various features/options available do visit:&lt;br /&gt;
&lt;a href=&quot;http://tablesorter.com/docs/&quot;&gt;http://tablesorter.com/docs/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Download Jquery and Plugins here:&lt;br /&gt;
&lt;a href=&quot;http://tablesorter.com/docs/#Download&quot;&gt;http://tablesorter.com/docs/#Download&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Note: &lt;/b&gt;Sort multiple columns simultaneously by holding down the shift key.&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/coolsolutions&quot; class=&quot;og_links&quot;&gt;Cool Solutions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/8797/jquery-tablesorter-pagination-and-sorting-made-simple#comments</comments>
 <category domain="http://www.novell.com/communities/product/linux">Linux</category>
 <category domain="http://www.novell.com/communities/content-type/tip">Tip</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/29">Developer</category>
 <category domain="http://www.novell.com/communities/topic/developer+tools">Developer Tools</category>
 <category domain="http://www.novell.com/communities/topic/open-source">Open Source</category>
 <category domain="http://www.novell.com/communities/topic/scripting">Scripting</category>
 <category domain="http://www.novell.com/communities/topic/tips-end-users">Tips for End Users</category>
 <category domain="http://www.novell.com/communities/topic/windows">Windows</category>
 <enclosure url="http://www.novell.com/communities/files/tablesorter example.zip" length="35622" type="application/zip" />
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions/slemag" xmlns="http://drupal.org/project/og">SUSE Linux Enterprise Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <pubDate>Thu, 20 Aug 2009 17:49:38 -0600</pubDate>
 <dc:creator>mendesdomnic</dc:creator>
 <guid isPermaLink="false">8797 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>Vi Editor Tips</title>
 <link>http://www.novell.com/communities/node/8653/vi-editor-tips</link>
 <description> &lt;p&gt;Vi Editor Tips &lt;/p&gt;
&lt;p&gt;&lt;b&gt;To open multiple files on a window&lt;/b&gt;&lt;/p&gt;
&lt;ol class=&quot;spread&quot;&gt;
	&lt;b&gt;
&lt;li&gt;Horizontal split&lt;/b&gt;&lt;/p&gt;
&lt;pre&gt;vi -o file-one file-two
	&lt;/pre&gt;&lt;/li&gt;
&lt;p&gt;	&lt;b&gt;
&lt;li&gt;Vertical split&lt;/b&gt;&lt;/p&gt;
&lt;pre&gt;vi -O file-one file-two
	&lt;/pre&gt;&lt;p&gt;Switch between the panes you are using. &lt;/p&gt;
&lt;p&gt;CTRL + W + Left key to activate left windows&lt;br /&gt;
CTRL + W + Right key to activate right windows&lt;br /&gt;
CTRL + W + Up key&amp;gt; to activate to windows above current one&lt;br /&gt;
CTRL + W + Down key&amp;gt; to activate to windows down current one&lt;/p&gt;
&lt;/li&gt;
&lt;p&gt;	&lt;b&gt;
&lt;li&gt;Split Open one file at a time&lt;/b&gt;&lt;/p&gt;
&lt;pre&gt;vi file-one&lt;/pre&gt;&lt;p&gt;To open the second file, go to the command mode (Esc)&lt;/p&gt;
&lt;pre&gt;:new file-two&lt;/pre&gt;&lt;p&gt;OR&lt;/p&gt;
&lt;pre&gt;:split file-two&lt;/pre&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;b&gt;Search and Replace&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;Go in command mode and type:&lt;/p&gt;
&lt;p&gt;Replace First occurence of string&lt;/p&gt;
&lt;pre&gt;:%s/string-to-replace/replace-with-string/&lt;/pre&gt;&lt;p&gt;Replace All occurence of string&lt;/p&gt;
&lt;pre&gt;:%s/string-to-replace/replace-with-string/g&lt;/pre&gt; &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/coolsolutions&quot; class=&quot;og_links&quot;&gt;Cool Solutions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/8653/vi-editor-tips#comments</comments>
 <category domain="http://www.novell.com/communities/product/linux">Linux</category>
 <category domain="http://www.novell.com/communities/product/opensuse">openSUSE</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/24">SUSE Linux</category>
 <category domain="http://www.novell.com/communities/content-type/tip">Tip</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/29">Developer</category>
 <category domain="http://www.novell.com/communities/topic/especially-linux-newbies">Especially for Linux Newbies</category>
 <category domain="http://www.novell.com/communities/topic/linux">Linux</category>
 <category domain="http://www.novell.com/communities/topic/linux-usage">Linux Usage</category>
 <category domain="http://www.novell.com/communities/topic/tips+administrators">Tips for Administrators</category>
 <category domain="http://www.novell.com/communities/topic/tips-end-users">Tips for End Users</category>
 <category domain="http://www.novell.com/communities/topic/unix">UNIX</category>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions/slemag" xmlns="http://drupal.org/project/og">SUSE Linux Enterprise Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <pubDate>Tue, 21 Jul 2009 09:59:52 -0600</pubDate>
 <dc:creator>mendesdomnic</dc:creator>
 <guid isPermaLink="false">8653 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>Request for help:  Novell BrainShare 2010 Advisory Board</title>
 <link>http://www.novell.com/communities/node/7800/request-help-novell-brainshare-2010-advisory-board</link>
 <description> &lt;p&gt;&lt;b&gt;Novell BrainShare 2010&lt;/b&gt;&lt;br /&gt;
Planning for Continued Success&lt;/p&gt;
&lt;p&gt;&lt;b&gt;PURPOSE OF ADVISORY BOARD&lt;/b&gt;&lt;br /&gt;
With the cancelation of Novell BrainShare 2009 comes a unique opportunity to take a step back and evaluate the conference in its entirety.  The opportunities to bring BrainShare back in 2010 are endless.  With basically a clean slate, the Advisory Board can have a positive effect on the BrainShare conference going forward.  Several options exist:&lt;br /&gt;
1). Plan and execute BrainShare in 2010 based on its history and success - status quo&lt;br /&gt;
2). Plan and execute BrainShare in 2010 based on its history and success, but in a different city&lt;br /&gt;
3). Recreate the BrainShare experience - all new event!&lt;br /&gt;
Novell is seeking a group of individuals who would like to be a part of the Advisory Board.  This group will operate under NDA and on a very tight timeline - decisions must be finalized by June 19, 2009.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;ADVISORY BOARD MEMBERS&lt;/b&gt;&lt;br /&gt;
While the Advisory Board will be expected to function as a unified team, we will need members with focus and/or experience in the following areas:&lt;br /&gt;
·         Content / Technical Sessions&lt;br /&gt;
·         Keynotes&lt;br /&gt;
·         Marketing and Audience Acquisition&lt;br /&gt;
·         Budget&lt;br /&gt;
·         Technology Lab&lt;br /&gt;
·         Partners / Exhibitors / Sponsorships&lt;br /&gt;
·         Event Technology (Registration, Social Networking (Twitter, Facebook, LinkedIn, etc.), etc.)&lt;br /&gt;
·         Extracurricular Activities (Daytime and Evening Events or Activities)&lt;/p&gt;
&lt;p&gt;&lt;b&gt;EXPECTATIONS&lt;/b&gt;&lt;br /&gt;
Once formed, the Advisory Board will quickly create a plan and proposal for Novell Executives for BrainShare 2010.  As mentioned above, we have a clean slate to begin with.  All suggestions will be considered.  A private Facebook Group (or similar site) will be created so that members can share ideas, thoughts, etc. and allow us to make decisions in real-time.  Advisory Board members will be expected to join at least one or two online meetings.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;REWARDS FOR PARTICIPATION&lt;/b&gt;&lt;br /&gt;
Advisory Board members will be given free conference registration plus hotel accommodations to BrainShare 2010.  Public acknowledgement/credit will be given on &lt;a href=&quot;http://www.novell.com/brainshare&quot; title=&quot;www.novell.com/brainshare&quot;&gt;www.novell.com/brainshare&lt;/a&gt;.  &lt;/p&gt;
&lt;p&gt;&lt;b&gt;HOW TO PARTICIPATE&lt;/b&gt;&lt;br /&gt;
If you are interested in joining the BrainShare 2010 Advisory Board, please complete the Application Form found at &lt;a href=&quot;http://tinyurl.com/cl2ecx&quot; title=&quot;http://tinyurl.com/cl2ecx&quot;&gt;http://tinyurl.com/cl2ecx&lt;/a&gt; by April 30, 2009.   If you have questions feel free to contact Mike Morgan at &lt;a href=&quot;mailto:mmorgan@novell.com&quot;&gt;mmorgan@novell.com&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;- Mike Morgan - Director, Novell Corporate Events&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/node/4571/training-certification&quot; class=&quot;og_links&quot;&gt;Training &amp;amp; Certification&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/7800/request-help-novell-brainshare-2010-advisory-board#comments</comments>
 <category domain="http://www.novell.com/communities/topic/brainshare-2010">BrainShare 2010</category>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions/zenworks" xmlns="http://drupal.org/project/og">ZENworks Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions/workgroup" xmlns="http://drupal.org/project/og">Workgroup Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions/ntc" xmlns="http://drupal.org/project/og">Teaming &amp;amp; Conferencing Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions/slemag" xmlns="http://drupal.org/project/og">SUSE Linux Enterprise Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions/ism" xmlns="http://drupal.org/project/og">Identity &amp;amp; Security Management Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions/gwmag" xmlns="http://drupal.org/project/og">GroupWise Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <group domain="http://www.novell.com/communities/node/4571/training-certification" xmlns="http://drupal.org/project/og">Training &amp;amp; Certification</group>
 <pubDate>Tue, 26 May 2009 00:00:00 -0600</pubDate>
 <dc:creator>coolguys</dc:creator>
 <guid isPermaLink="false">7800 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>The Big EveNt 2009 - Aug 18 &amp; 19</title>
 <link>http://www.novell.com/communities/node/8340/big-event-2009-aug-18-19</link>
 <description> &lt;p&gt;Celebrate 5 years of a user driven event with us!  The Big EveNt is hiting the Big 5!&lt;/p&gt;
&lt;p&gt;Keynote speaker:  Dean Lythgoe, Director GroupWise and Teaming &amp;amp; Conferencing at Novell&lt;/p&gt;
&lt;p&gt;Location: Prince Conference Center, Calvin College, Grand Rapids, MI&lt;/p&gt;
&lt;p&gt;Dates: August 18 &amp;amp; 19&lt;/p&gt;
&lt;p&gt;Time: 8:00am to 5:00pm both days&lt;/p&gt;
&lt;p&gt;Cost: Free to attendees!&lt;/p&gt;
&lt;p&gt;Check out updates at our Facebook Group page.  Need the link?  Email &lt;a href=&quot;mailto:wmnug@yahoo.com&quot;&gt;wmnug@yahoo.com&lt;/a&gt; and we&#039;ll get it to you.&lt;/p&gt;
&lt;p&gt;In addition to getting face time with the vendors you missed at BrainShare, you&#039;ll be able to attend technical sessions on a wide range of topics from GroupWise to ITIL, and perhaps even a Microsoft Sharepoint session.  We&#039;re still in the planning stages, so stay tuned for more news!&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/node/2478/wmnug-west-michigan-novell-user-group&quot; class=&quot;og_links&quot;&gt;WMNUG - West Michigan Novell User Group&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/8340/big-event-2009-aug-18-19#comments</comments>
 <category domain="http://www.novell.com/communities/topic/groups">Groups</category>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <group domain="http://www.novell.com/communities/node/2478/wmnug-west-michigan-novell-user-group" xmlns="http://drupal.org/project/og">WMNUG - West Michigan Novell User Group</group>
 <pubDate>Tue, 19 May 2009 09:29:37 -0600</pubDate>
 <dc:creator>6014670</dc:creator>
 <guid isPermaLink="false">8340 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>Know your Hardware</title>
 <link>http://www.novell.com/communities/node/6806/know-your-hardware</link>
 <description> &lt;p&gt;Need to know about your system hardware  without opening your computer?&lt;/p&gt;
&lt;p&gt;To know details of the type of ram and its speed:&lt;/p&gt;
&lt;pre&gt;dmidecode --type memory&lt;/pre&gt;&lt;p&gt;Similar bios details:&lt;/p&gt;
&lt;pre&gt;dmidecode --type bios&lt;/pre&gt;&lt;p&gt;other options include:&lt;/p&gt;
&lt;pre&gt;system, baseboard, chassis, processor,  cache, connector, slot&lt;/pre&gt;&lt;p&gt;Explore further for other options if you are an expert in hardware. &lt;/p&gt;
&lt;pre&gt;dmidecode --help will Display usage information and exit&lt;/pre&gt; &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/coolsolutions/slemag&quot; class=&quot;og_links&quot;&gt;SUSE Linux Enterprise Cool Solutions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/6806/know-your-hardware#comments</comments>
 <category domain="http://www.novell.com/communities/product/linux">Linux</category>
 <category domain="http://www.novell.com/communities/product/opensuse">openSUSE</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/24">SUSE Linux</category>
 <category domain="http://www.novell.com/communities/product/suse+linux+10.0">SUSE Linux 10.0</category>
 <category domain="http://www.novell.com/communities/product/suse+linux+desktop">SUSE Linux Desktop</category>
 <category domain="http://www.novell.com/communities/taxonomy/term/79">SUSE Linux Enterprise</category>
 <category domain="http://www.novell.com/communities/product/suse+linux+enterprise+10">SUSE Linux Enterprise 10</category>
 <category domain="http://www.novell.com/communities/coolsolutions/sled">SUSE Linux Enterprise Desktop</category>
 <category domain="http://www.novell.com/communities/content-type/tip">Tip</category>
 <category domain="http://www.novell.com/communities/topic/hardware">Hardware</category>
 <category domain="http://www.novell.com/communities/topic/linux">Linux</category>
 <category domain="http://www.novell.com/communities/topic/linux-usage">Linux Usage</category>
 <category domain="http://www.novell.com/communities/topic/tips+administrators">Tips for Administrators</category>
 <category domain="http://www.novell.com/communities/topic/tips-end-users">Tips for End Users</category>
 <category domain="http://www.novell.com/communities/topic/unix">UNIX</category>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions/slemag" xmlns="http://drupal.org/project/og">SUSE Linux Enterprise Cool Solutions</group>
 <pubDate>Thu, 26 Feb 2009 08:00:00 -0700</pubDate>
 <dc:creator>mendesdomnic</dc:creator>
 <guid isPermaLink="false">6806 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>Install Linux In Windows</title>
 <link>http://www.novell.com/communities/node/6512/install-linux-windows</link>
 <description> &lt;p&gt;There are various reasons why people don’t try out Linux. The most common reason, is that they can’t bring themselves to remove the familiar Windows system and replace it with a totally new environment. While there are ways to boot into a Linux environment without uninstalling Windows, most people either don’t have the patience or the time to learn how.&lt;/p&gt;
&lt;p&gt;With Ubuntu 8.04 “Hardy Heron”, Windows users will be able to install Ubuntu onto their systems without having to worry about affecting their Windows installation. The Hardy Heron beta includes an install option for Windows users to install and uninstall Ubuntu just like your normal Windows app.&lt;/p&gt;
&lt;p&gt;No need for a dedicated &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2987&quot;&gt;&lt;acronym title=&quot;1. A logical division of a computer hard disk created in order to have different operating systems on the same hard disk or to create the appearance of having separate hard disks for file management and so forth..&quot;&gt;partition&lt;/acronym&gt;&lt;/a&gt;, you can just install Ubuntu like any other app and you can then opt to boot to Linux or Windows each time you start your computer. All you need is Ubuntu 8.04 on a cd or an .iso file that’s mounted, and 4 gigs of space on your &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/580&quot;&gt;&lt;acronym title=&quot;Primary storage device that computer uses to store data, generally not removed from the computer and can store large amounts of information; normally drive C on computer. Used for the storage of data, documents and the computer&#039;s programs and operating system.&quot;&gt;hard drive&lt;/acronym&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For those who don’t want to leave anything to chance, just create a restore point before starting the installation process.&lt;/p&gt;
&lt;p&gt;When you load the install menu, just select the “Install inside Windows” option.&lt;/p&gt;
&lt;p&gt;Choosing to install inside Windows will launch the Wubi installer where you select the language of your choice, how much space to devote to the installation, which drive you want to install to, and create a username and password for the account.&lt;/p&gt;
&lt;p&gt;After that just click on “Install” and you’re all set. Once you reboot your computer, you’ll be given a choice of which &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/631&quot;&gt;&lt;acronym title=&quot;The master control program that runs the computer. It is the first program loaded when the computer is turned on, and its main part, called the kernel, resides in memory at all times. The operating system performs basic tasks, such as recognizing input from the keyboard, sending output to the display screen, keeping track of files and directories on the disk, and controlling peripheral devices such as disk drives and printers. The operating system acts as an interface between the user and the computer, enabling the user to operate software applications and access all resources available on the computer, including the CPU, media drives, memory, printers, and storage devices.&quot;&gt;operating system&lt;/acronym&gt;&lt;/a&gt; you want to boot into.&lt;/p&gt;
&lt;p&gt;If you find that you don’t like Linux after trying it out, you can just uninstall it without worrying about messing up your Windows installation.&lt;/p&gt;
&lt;p&gt;I’ve always wanted to try Linux and with this option, I think I just might give it a spin. How about you?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.novell.com/communities/files/u273/hardyinstaller2.png&quot;&gt;&lt;img src=&quot;http://www.novell.com/communities/files/u273/hardyinstaller2_0_0.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.novell.com/communities/files/u273/hardyinstaller2.png&quot;&gt;Click to view&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.novell.com/communities/files/u273/hardyinstaller1.png&quot;&gt;&lt;img src=&quot;http://www.novell.com/communities/files/u273/hardyinstaller1_0_0.png&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.novell.com/communities/files/u273/hardyinstaller1.png&quot;&gt;Click to view&lt;/a&gt;.&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/coolsolutions&quot; class=&quot;og_links&quot;&gt;Cool Solutions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/6512/install-linux-windows#comments</comments>
 <category domain="http://www.novell.com/communities/product/linux">Linux</category>
 <category domain="http://www.novell.com/communities/topic/3rd+party+products">3rd Party Products</category>
 <category domain="http://www.novell.com/communities/topic/alternatives-windows">Alternatives to Windows</category>
 <category domain="http://www.novell.com/communities/topic/installation">Installation</category>
 <category domain="http://www.novell.com/communities/topic/linux">Linux</category>
 <category domain="http://www.novell.com/communities/topic/linux-desktop-configuration">Linux Desktop Configuration</category>
 <category domain="http://www.novell.com/communities/topic/tips+administrators">Tips for Administrators</category>
 <category domain="http://www.novell.com/communities/topic/tips-end-users">Tips for End Users</category>
 <category domain="http://www.novell.com/communities/topic/windows">Windows</category>
 <category domain="http://www.novell.com/communities/topic/windows+xp">Windows XP</category>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <pubDate>Thu, 22 Jan 2009 07:00:00 -0700</pubDate>
 <dc:creator>mendesdomnic</dc:creator>
 <guid isPermaLink="false">6512 at http://www.novell.com/communities</guid>
</item>
<item>
 <title>Novell Open Enterprise Server 2 SP1 Is Here!</title>
 <link>http://www.novell.com/communities/node/6530/novell-open-enterprise-server-2-sp1-here</link>
 <description> &lt;p&gt;If you&#039;ve been waiting for the first service pack to deploy Novell Open Enterprise Server 2, now&#039;s the time to make the move. With Novell Open Enterprise Server 2 SP1, you&#039;ll not only get &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2314&quot;&gt;&lt;acronym title=&quot;A powerful computer running software that supplies network clients with services, such as file, print, communication, or application services. Examples of servers include1. Routing servers, which connect nodes and networks of similar architectures2. Gateway servers, which connect nodes and networks of different architectures by performing protocol conversions3. Terminal servers, print servers, disk servers, and file servers, which provide an interface between compatible peripheral devices on a local area network&quot;&gt;server&lt;/acronym&gt;&lt;/a&gt; virtualization, Dynamic Storage Technology and other innovative capabilities from the initial release, you&#039;ll get the following additional features designed to increase simplicity and &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/1556&quot;&gt;&lt;acronym title=&quot;The ability of different types of computers, networks, operating systems, and applications to work together effectively, without prior communication, in order to exchange information in a useful and meaningful manner.&quot;&gt;interoperability&lt;/acronym&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;ul class=&quot;spread&quot;&gt;
&lt;li&gt; Domain Services for Windows, enabling secure cross-authentication between &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/3276&quot;&gt;&lt;acronym title=&quot;A distributed, replicated naming service that maintains information about and provides access to a list of objects that represent network resources, such as network users, servers, printers, print queues, and applications. The directory is physically stored as a set of database files on a server. If the server hosts file system volumes, these files are on volume sys:. If no volumes are present, the directory is stored on the server&#039;s local disk. eDirectory tightly integrates Novell Security Services for e-commerce (PKI, cryptography, and authentication services), allowing developers to build applications that can be accessed and managed across the entire network through explicit policies.&quot;&gt;eDirectory&lt;/acronym&gt;&lt;/a&gt; and &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2632&quot;&gt;&lt;acronym title=&quot;An advanced, hierarchical directory service that is an integral part of the Microsoft Windows 2000 architecture. It is LDAP-compliant and built on the Internet.&quot;&gt;Active Directory&lt;/acronym&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt; Support for &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2800&quot;&gt;&lt;acronym title=&quot;A protocol that lets programs make requests for files and services on remote computers on the Internet. CIFS uses the client/server programming model. A client program makes a request of a server program (usually in another computer) for access to a file or to pass a message to a program that runs in the server computer. The server takes the requested action and returns a response. CIFS is a public or open variation of the Server Message Block Protocol developed and used by Microsoft.&quot;&gt;Common Internet File System&lt;/acronym&gt;&lt;/a&gt; (&lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2791&quot;&gt;&lt;acronym title=&quot;Common Internet File SystemA protocol that lets programs make requests for files and services on remote computers on the Internet. CIFS uses the client/server programming model. A client program makes a request of a server program (usually in another computer) for access to a file or to pass a message to a program that runs in the server computer. The server takes the requested action and returns a response. CIFS is a public or open variation of the Server Message Block Protocol developed and used by Microsoft.&quot;&gt;CIFS&lt;/acronym&gt;&lt;/a&gt;) and Apple Filing Protocol (&lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/937&quot;&gt;&lt;acronym title=&quot;AppleTalk Filing ProtocolAn AppleTalk protocol that provides the rules for communication and data transmission between file servers and clients in an AppleShare network.&quot;&gt;AFP&lt;/acronym&gt;&lt;/a&gt;), delivering streamlined interoperability with Windows and Mac clients&lt;/li&gt;
&lt;li&gt; &lt;a class=&quot;glossary-term&quot; href=&quot;/communities/glossary/term/2858&quot;&gt;&lt;acronym title=&quot;Novell iFolderAn application that allows users to save files to a network storage location so they can be accessed and coordinated from multiple locations inside and outside the network. Novell iFolder provides the Data Management capability included in ZENworks.&quot;&gt;iFolder&lt;/acronym&gt;&lt;/a&gt; 3.7, supporting groups and multiple iFolders, with enhanced clients for Mac and Linux&lt;/li&gt;
&lt;li&gt; 64-bit eDirectory&lt;/li&gt;
&lt;li&gt; An integrated GUI to streamline migrations from NetWare to Linux&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;To learn more, visit &lt;a href=&quot;http://www.novell.com/oes&quot;&gt;http://www.novell.com/oes&lt;/a&gt;. You&#039;ll find information on the new product features, access to eval software, and helpful resources like Novell Open Audio podcasts, upcoming events you can attend, and much more.&lt;/p&gt;
&lt;p&gt;Novell Open Enterprise Server 2 is bringing significant cost savings and efficiencies to organizations just like yours. And with the first service pack, you have even more compelling reasons to upgrade. Download the eval and see how you can begin taking advantage of greater simplicity and interoperability today.&lt;/p&gt;
 &lt;div class=&quot;og_rss_groups&quot;&gt;&lt;ul class=&quot;links&quot;&gt;&lt;li class=&quot;first last og_links&quot;&gt;&lt;a href=&quot;/communities/coolsolutions&quot; class=&quot;og_links&quot;&gt;Cool Solutions&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/div&gt;</description>
 <comments>http://www.novell.com/communities/node/6530/novell-open-enterprise-server-2-sp1-here#comments</comments>
 <group domain="http://www.novell.com/communities/nui" xmlns="http://drupal.org/project/og">Novell Users International (NUI)</group>
 <group domain="http://www.novell.com/communities/coolsolutions/workgroup" xmlns="http://drupal.org/project/og">Workgroup Cool Solutions</group>
 <group domain="http://www.novell.com/communities/coolsolutions" xmlns="http://drupal.org/project/og">Cool Solutions</group>
 <pubDate>Tue, 16 Dec 2008 16:28:40 -0700</pubDate>
 <dc:creator>KariWoolf</dc:creator>
 <guid isPermaLink="false">6530 at http://www.novell.com/communities</guid>
</item>
</channel>
</rss>
