├── CNAME ├── .gitignore ├── README.md ├── sites ├── default │ └── files │ │ ├── kg09.jpg │ │ ├── cayme.jpg │ │ ├── vanlang1.jpg │ │ ├── DSC_0450_0.JPG │ │ ├── DSC_0496_0.JPG │ │ ├── DSC_0499_0.JPG │ │ ├── DSC_0502_1_0.JPG │ │ ├── DSC_0508_1_0.JPG │ │ ├── IMG_0286_0.JPG │ │ ├── IMG_0645_0.JPG │ │ ├── fever_logo.png │ │ ├── mbm_logo_0.png │ │ ├── project │ │ ├── exo.png │ │ ├── olpc.png │ │ ├── xpud.png │ │ ├── yacy.png │ │ ├── debian.png │ │ ├── drupal.png │ │ ├── fedora.png │ │ ├── nosql.png │ │ ├── typo3.png │ │ ├── android.png │ │ ├── blackray.png │ │ ├── freifunk.png │ │ ├── lubuntu.png │ │ ├── mariadb.png │ │ ├── mozilla.png │ │ ├── statusnet.png │ │ ├── tomatocms.png │ │ ├── ubuntu_vn.png │ │ ├── joomla-logo.png │ │ ├── opendesign.png │ │ ├── sahana_eden.png │ │ ├── tiddlywiki.png │ │ ├── libregraphics.png │ │ └── Vanlanguni-logo-darkblue.png │ │ ├── thi-anh-van.jpg │ │ ├── fever_favicon.ico │ │ ├── canthohotelmekong.png │ │ ├── DavideStorti-FOSSASIA_0.JPG │ │ ├── Open Source in Asia at FOSSASIA.jpg │ │ ├── Asia Open Source Event FOSSASIA_0.JPG │ │ ├── lubuntu-fossasia-julien-lavergne_0.JPG │ │ ├── Free Open Source Summit Asia FOSSASIA_0.JPG │ │ ├── Girls in Open Source and IT FOSSASIA_0.JPG │ │ ├── Women in IT and Open Source FOSSASIA_0.JPG │ │ ├── FOSSASIA 2011 Open Source Software Conference_0.JPG │ │ ├── FOSSASIA Open Source Hong Phuc Dang Free Software Community_0.JPG │ │ └── css │ │ ├── css_c58f5556097003d47db7903140fafbe7.css │ │ └── css_594ec7a2a2aa994a8cd9f02e262a3f52.css └── all │ ├── themes │ ├── kanji │ │ ├── images │ │ │ ├── bg.jpg │ │ │ ├── rss.png │ │ │ ├── fader.png │ │ │ ├── block-bg.png │ │ │ ├── twitter-list.png │ │ │ ├── block-bg-black.png │ │ │ ├── right-block-bg.png │ │ │ └── right-block-bg-black.png │ │ └── sf │ │ │ ├── images │ │ │ └── arrows-ffffff.png │ │ │ └── js │ │ │ └── superfish.js@H │ └── fever │ │ └── images │ │ └── sidebar_header_right.png │ └── modules │ ├── views │ └── images │ │ └── status-active.gif │ ├── ctools │ └── images │ │ └── status-active.gif │ └── dhtml_menu │ └── dhtml_menu.js@H ├── .travis.yml ├── cdn-cgi ├── scripts │ └── f2bf09f8 │ │ └── cloudflare-static │ │ └── email-decode.min.js └── l │ └── email-protection.html ├── index.html@q=users%2Fadmin.html ├── index.html@q=about.html ├── index.html@q=contact.html ├── index.html@q=venue.html ├── index.html@q=wrap-fossasia-2011.html ├── index.html@q=schedule.html ├── index.html@q=rss.xml └── index.html /CNAME: -------------------------------------------------------------------------------- 1 | 2011.fossasia.org -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | FOSSASIA Summit 2011 2 | ========== 3 | 4 | https://2011.fossasia.org 5 | -------------------------------------------------------------------------------- /sites/default/files/kg09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/kg09.jpg -------------------------------------------------------------------------------- /sites/default/files/cayme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/cayme.jpg -------------------------------------------------------------------------------- /sites/default/files/vanlang1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/vanlang1.jpg -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/bg.jpg -------------------------------------------------------------------------------- /sites/default/files/DSC_0450_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/DSC_0450_0.JPG -------------------------------------------------------------------------------- /sites/default/files/DSC_0496_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/DSC_0496_0.JPG -------------------------------------------------------------------------------- /sites/default/files/DSC_0499_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/DSC_0499_0.JPG -------------------------------------------------------------------------------- /sites/default/files/DSC_0502_1_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/DSC_0502_1_0.JPG -------------------------------------------------------------------------------- /sites/default/files/DSC_0508_1_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/DSC_0508_1_0.JPG -------------------------------------------------------------------------------- /sites/default/files/IMG_0286_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/IMG_0286_0.JPG -------------------------------------------------------------------------------- /sites/default/files/IMG_0645_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/IMG_0645_0.JPG -------------------------------------------------------------------------------- /sites/default/files/fever_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/fever_logo.png -------------------------------------------------------------------------------- /sites/default/files/mbm_logo_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/mbm_logo_0.png -------------------------------------------------------------------------------- /sites/default/files/project/exo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/exo.png -------------------------------------------------------------------------------- /sites/default/files/project/olpc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/olpc.png -------------------------------------------------------------------------------- /sites/default/files/project/xpud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/xpud.png -------------------------------------------------------------------------------- /sites/default/files/project/yacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/yacy.png -------------------------------------------------------------------------------- /sites/default/files/thi-anh-van.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/thi-anh-van.jpg -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/rss.png -------------------------------------------------------------------------------- /sites/default/files/fever_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/fever_favicon.ico -------------------------------------------------------------------------------- /sites/default/files/project/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/debian.png -------------------------------------------------------------------------------- /sites/default/files/project/drupal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/drupal.png -------------------------------------------------------------------------------- /sites/default/files/project/fedora.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/fedora.png -------------------------------------------------------------------------------- /sites/default/files/project/nosql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/nosql.png -------------------------------------------------------------------------------- /sites/default/files/project/typo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/typo3.png -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/fader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/fader.png -------------------------------------------------------------------------------- /sites/default/files/canthohotelmekong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/canthohotelmekong.png -------------------------------------------------------------------------------- /sites/default/files/project/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/android.png -------------------------------------------------------------------------------- /sites/default/files/project/blackray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/blackray.png -------------------------------------------------------------------------------- /sites/default/files/project/freifunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/freifunk.png -------------------------------------------------------------------------------- /sites/default/files/project/lubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/lubuntu.png -------------------------------------------------------------------------------- /sites/default/files/project/mariadb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/mariadb.png -------------------------------------------------------------------------------- /sites/default/files/project/mozilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/mozilla.png -------------------------------------------------------------------------------- /sites/default/files/project/statusnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/statusnet.png -------------------------------------------------------------------------------- /sites/default/files/project/tomatocms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/tomatocms.png -------------------------------------------------------------------------------- /sites/default/files/project/ubuntu_vn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/ubuntu_vn.png -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/block-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/block-bg.png -------------------------------------------------------------------------------- /sites/default/files/project/joomla-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/joomla-logo.png -------------------------------------------------------------------------------- /sites/default/files/project/opendesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/opendesign.png -------------------------------------------------------------------------------- /sites/default/files/project/sahana_eden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/sahana_eden.png -------------------------------------------------------------------------------- /sites/default/files/project/tiddlywiki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/tiddlywiki.png -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/twitter-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/twitter-list.png -------------------------------------------------------------------------------- /sites/default/files/project/libregraphics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/libregraphics.png -------------------------------------------------------------------------------- /sites/all/modules/views/images/status-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/modules/views/images/status-active.gif -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/block-bg-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/block-bg-black.png -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/right-block-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/right-block-bg.png -------------------------------------------------------------------------------- /sites/default/files/DavideStorti-FOSSASIA_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/DavideStorti-FOSSASIA_0.JPG -------------------------------------------------------------------------------- /sites/all/modules/ctools/images/status-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/modules/ctools/images/status-active.gif -------------------------------------------------------------------------------- /sites/all/themes/kanji/sf/images/arrows-ffffff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/sf/images/arrows-ffffff.png -------------------------------------------------------------------------------- /sites/all/themes/fever/images/sidebar_header_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/fever/images/sidebar_header_right.png -------------------------------------------------------------------------------- /sites/all/themes/kanji/images/right-block-bg-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/all/themes/kanji/images/right-block-bg-black.png -------------------------------------------------------------------------------- /sites/default/files/Open Source in Asia at FOSSASIA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/Open Source in Asia at FOSSASIA.jpg -------------------------------------------------------------------------------- /sites/default/files/project/Vanlanguni-logo-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/project/Vanlanguni-logo-darkblue.png -------------------------------------------------------------------------------- /sites/default/files/Asia Open Source Event FOSSASIA_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/Asia Open Source Event FOSSASIA_0.JPG -------------------------------------------------------------------------------- /sites/default/files/lubuntu-fossasia-julien-lavergne_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/lubuntu-fossasia-julien-lavergne_0.JPG -------------------------------------------------------------------------------- /sites/default/files/Free Open Source Summit Asia FOSSASIA_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/Free Open Source Summit Asia FOSSASIA_0.JPG -------------------------------------------------------------------------------- /sites/default/files/Girls in Open Source and IT FOSSASIA_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/Girls in Open Source and IT FOSSASIA_0.JPG -------------------------------------------------------------------------------- /sites/default/files/Women in IT and Open Source FOSSASIA_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/Women in IT and Open Source FOSSASIA_0.JPG -------------------------------------------------------------------------------- /sites/default/files/FOSSASIA 2011 Open Source Software Conference_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/FOSSASIA 2011 Open Source Software Conference_0.JPG -------------------------------------------------------------------------------- /sites/default/files/FOSSASIA Open Source Hong Phuc Dang Free Software Community_0.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/2011.fossasia.org/gh-pages/sites/default/files/FOSSASIA Open Source Hong Phuc Dang Free Software Community_0.JPG -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | 3 | before_install: 4 | - gem install github-pages --no-rdoc --no-ri 5 | 6 | rvm: 7 | - 2.1 8 | script: jekyll build 9 | 10 | branches: 11 | only: 12 | - gh-pages 13 | 14 | env: 15 | global: 16 | - NOKOGIRI_USE_SYSTEM_LIBRARIES=true 17 | -------------------------------------------------------------------------------- /sites/default/files/css/css_c58f5556097003d47db7903140fafbe7.css: -------------------------------------------------------------------------------- 1 | 2 | body,input,textarea,select{color:#333;background:none;}body{width:900px;}.sidebar,#header_top,#topMenu,#searchBox,#header-region,#menuLeft,#primaryMenu,#menuRight,#breadcrumb,#preface_top,#footer_bottom{display:none;} 3 | -------------------------------------------------------------------------------- /cdn-cgi/scripts/f2bf09f8/cloudflare-static/email-decode.min.js: -------------------------------------------------------------------------------- 1 | !function(){"use strict";function e(e){try{if("undefined"==typeof console)return;"error"in console?console.error(e):console.log(e)}catch(e){}}function t(e){return i.innerHTML='',i.childNodes[0].getAttribute("href")||""}function r(e,t){var r=e.substr(t,2);return parseInt(r,16)}function n(n,c){for(var o="",a=r(n,c),i=c+2;i-1&&(o.href="mailto:"+n(o.href,a+c.length))}catch(i){e(i)}}(),function(){for(var t=document.querySelectorAll(o),r=0;r 2 | 3 | 4 | 5 | 6 | 7 | Email Protection | Cloudflare 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 |
28 |
29 |

Email Protection

30 |

You are unable to access this email address fossasia.org

31 |
32 | 33 |
34 |
35 |
36 |

The website from which you got to this page is protected by Cloudflare. Email addresses on that page have been hidden in order to keep them from being accessed by malicious bots. You must enable Javascript in your browser in order to decode the e-mail address.

37 |

If you have a website and are interested in protecting it in a similar way, you can sign up for Cloudflare.

38 |
39 | 40 | 52 |
53 |
54 | 55 | 65 | 66 | 67 |
68 |
69 | 70 | 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /sites/all/themes/kanji/sf/js/superfish.js@H: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * Superfish v1.4.8 - jQuery menu widget 4 | * Copyright (c) 2008 Joel Birch 5 | * 6 | * Dual licensed under the MIT and GPL licenses: 7 | * http://www.opensource.org/licenses/mit-license.php 8 | * http://www.gnu.org/licenses/gpl.html 9 | * 10 | * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt 11 | */ 12 | 13 | ;(function($){ 14 | $.fn.superfish = function(op){ 15 | 16 | var sf = $.fn.superfish, 17 | c = sf.c, 18 | $arrow = $([''].join('')), 19 | over = function(){ 20 | var $$ = $(this), menu = getMenu($$); 21 | clearTimeout(menu.sfTimer); 22 | $$.showSuperfishUl().siblings().hideSuperfishUl(); 23 | }, 24 | out = function(){ 25 | var $$ = $(this), menu = getMenu($$), o = sf.op; 26 | clearTimeout(menu.sfTimer); 27 | menu.sfTimer=setTimeout(function(){ 28 | o.retainPath=($.inArray($$[0],o.$path)>-1); 29 | $$.hideSuperfishUl(); 30 | if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);} 31 | },o.delay); 32 | }, 33 | getMenu = function($menu){ 34 | var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0]; 35 | sf.op = sf.o[menu.serial]; 36 | return menu; 37 | }, 38 | addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); }; 39 | 40 | return this.each(function() { 41 | var s = this.serial = sf.o.length; 42 | var o = $.extend({},sf.defaults,op); 43 | o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){ 44 | $(this).addClass([o.hoverClass,c.bcClass].join(' ')) 45 | .filter('li:has(ul)').removeClass(o.pathClass); 46 | }); 47 | sf.o[s] = sf.op = o; 48 | 49 | $('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() { 50 | if (o.autoArrows) addArrow( $('>a:first-child',this) ); 51 | }) 52 | .not('.'+c.bcClass) 53 | .hideSuperfishUl(); 54 | 55 | var $a = $('a',this); 56 | $a.each(function(i){ 57 | var $li = $a.eq(i).parents('li'); 58 | $a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);}); 59 | }); 60 | o.onInit.call(this); 61 | 62 | }).each(function() { 63 | var menuClasses = [c.menuClass]; 64 | if (sf.op.dropShadows && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass); 65 | $(this).addClass(menuClasses.join(' ')); 66 | }); 67 | }; 68 | 69 | var sf = $.fn.superfish; 70 | sf.o = []; 71 | sf.op = {}; 72 | sf.IE7fix = function(){ 73 | var o = sf.op; 74 | if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined) 75 | this.toggleClass(sf.c.shadowClass+'-off'); 76 | }; 77 | sf.c = { 78 | bcClass : 'sf-breadcrumb', 79 | menuClass : 'sf-js-enabled', 80 | anchorClass : 'sf-with-ul', 81 | arrowClass : 'sf-sub-indicator', 82 | shadowClass : 'sf-shadow' 83 | }; 84 | sf.defaults = { 85 | hoverClass : 'sfHover', 86 | pathClass : 'overideThisToUse', 87 | pathLevels : 1, 88 | delay : 800, 89 | animation : {opacity:'show'}, 90 | speed : 'normal', 91 | autoArrows : true, 92 | dropShadows : true, 93 | disableHI : false, // true disables hoverIntent detection 94 | onInit : function(){}, // callback functions 95 | onBeforeShow: function(){}, 96 | onShow : function(){}, 97 | onHide : function(){} 98 | }; 99 | $.fn.extend({ 100 | hideSuperfishUl : function(){ 101 | var o = sf.op, 102 | not = (o.retainPath===true) ? o.$path : ''; 103 | o.retainPath = false; 104 | var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass) 105 | .find('>ul').hide().css('visibility','hidden'); 106 | o.onHide.call($ul); 107 | return this; 108 | }, 109 | showSuperfishUl : function(){ 110 | var o = sf.op, 111 | sh = sf.c.shadowClass+'-off', 112 | $ul = this.addClass(o.hoverClass) 113 | .find('>ul:hidden').css('visibility','visible'); 114 | sf.IE7fix.call($ul); 115 | o.onBeforeShow.call($ul); 116 | $ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); }); 117 | return this; 118 | } 119 | }); 120 | 121 | })(jQuery); 122 | -------------------------------------------------------------------------------- /sites/all/modules/dhtml_menu/dhtml_menu.js@H: -------------------------------------------------------------------------------- 1 | // $Id: dhtml_menu.js,v 1.18.2.10 2009/01/12 10:13:30 arancaytar Exp $ 2 | 3 | /** 4 | * @file dhtml_menu.js 5 | * The Javascript code for DHTML Menu 6 | */ 7 | 8 | Drupal.dhtmlMenu = {}; 9 | 10 | /** 11 | * Initialize the module's JS functions 12 | */ 13 | Drupal.behaviors.dhtmlMenu = function() { 14 | // Do not run this function more than once. 15 | if (Drupal.dhtmlMenu.init) { 16 | return; 17 | } 18 | else { 19 | Drupal.dhtmlMenu.init = true; 20 | } 21 | 22 | // Get the settings. 23 | var effects = Drupal.settings.dhtmlMenu; 24 | 25 | $('.collapsed').removeClass('expanded'); 26 | 27 | // Get cookie 28 | if (!effects.siblings) { 29 | var cookie = Drupal.dhtmlMenu.cookieGet(); 30 | for (var i in cookie) { 31 | // If the cookie was not applied to the HTML code yet, do so now. 32 | var li = $('#dhtml_menu-' + cookie[i]).parents('li:first'); 33 | if ($(li).hasClass('collapsed')) { 34 | Drupal.dhtmlMenu.toggleMenu(li); 35 | } 36 | } 37 | } 38 | 39 | /* Add jQuery effects and listeners to all menu items. 40 | * The ~ (sibling) selector is unidirectional and selects 41 | * only the latter element, so we must use siblings() to get 42 | * back to the link element. 43 | */ 44 | $('ul.menu li.dhtml-menu:not(.leaf,.no-dhtml)').each(function() { 45 | var li = this; 46 | if (effects.clone) { 47 | var ul = $(li).find('ul:first'); 48 | if (ul.length) { 49 | $(li).find('a:first').clone().prependTo(ul).wrap('
  • '); 50 | } 51 | } 52 | 53 | if (effects.doubleclick) { 54 | $(li).find('a:first').dblclick(function(e) { 55 | window.location = this.href; 56 | }); 57 | } 58 | 59 | $(li).find('a:first').click(function(e) { 60 | Drupal.dhtmlMenu.toggleMenu($(li)); 61 | return false; 62 | }); 63 | }); 64 | } 65 | 66 | /** 67 | * Toggles the menu's state between open and closed. 68 | * 69 | * @param li 70 | * Object. The
  • element that will be expanded or collapsed. 71 | */ 72 | Drupal.dhtmlMenu.toggleMenu = function(li) { 73 | var effects = Drupal.settings.dhtmlMenu; 74 | 75 | // If the menu is expanded, collapse it. 76 | if($(li).hasClass('expanded')) { 77 | if (effects.slide) { 78 | $(li).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000'); 79 | } 80 | else $(li).find('ul:first').css('display', 'none'); 81 | 82 | // If children are closed automatically, find and close them now. 83 | if (effects.children) { 84 | if (effects.slide) { 85 | $(li).find('li.expanded').find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000'); 86 | } 87 | else $(li).find('li.expanded').find('ul:first').css('display', 'none'); 88 | 89 | $(li).find('li.expanded').removeClass('expanded').addClass('collapsed') 90 | } 91 | 92 | $(li).removeClass('expanded').addClass('collapsed'); 93 | } 94 | 95 | // Otherwise, expand it. 96 | else { 97 | if (effects.slide) { 98 | $(li).find('ul:first').animate({height: 'show', opacity: 'show'}, '1000'); 99 | } 100 | else $(li).find('ul:first').css('display', 'block'); 101 | $(li).removeClass('collapsed').addClass('expanded'); 102 | 103 | // If the siblings effect is on, close all sibling menus. 104 | if (effects.siblings) { 105 | var id = $(li).find('a:first').attr('id'); 106 | 107 | // Siblings are all open menus that are neither parents nor children of this menu. 108 | $(li).find('li').addClass('own-children-temp'); 109 | 110 | // If the relativity option is on, select only the siblings that have the same parent 111 | if (effects.relativity) { 112 | var siblings = $(li).parent().find('li.expanded').not('.own-children-temp').not(':has(#' + id + ')'); 113 | } 114 | // Otherwise, select all menus of the same level 115 | else { 116 | var siblings = $('ul.menu li.expanded').not('.own-children-temp').not(':has(#' + id + ')'); 117 | } 118 | 119 | // If children should not get closed automatically... 120 | if (!effects.children) { 121 | // Remove items that are currently hidden from view (do not close these). 122 | $('li.collapsed li.expanded').addClass('sibling-children-temp'); 123 | // Only close the top-most open sibling, not its children. 124 | $(siblings).find('li.expanded').addClass('sibling-children-temp'); 125 | siblings = $(siblings).not('.sibling-children-temp'); 126 | } 127 | 128 | $('.own-children-temp, .sibling-children-temp').removeClass('own-children-temp').removeClass('sibling-children-temp'); 129 | 130 | if (effects.slide) { 131 | $(siblings).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000'); 132 | } 133 | else $(siblings).find('ul:first').css('display', 'none'); 134 | 135 | $(siblings).removeClass('expanded').addClass('collapsed'); 136 | } 137 | } 138 | 139 | // Save the current state of the menus in the cookie. 140 | Drupal.dhtmlMenu.cookieSet(); 141 | } 142 | 143 | /** 144 | * Reads the dhtml_menu cookie. 145 | */ 146 | Drupal.dhtmlMenu.cookieGet = function() { 147 | var c = /dhtml_menu=(.*?)(;|$)/.exec(document.cookie); 148 | if (c) { 149 | return c[1]; 150 | } 151 | else return ''; 152 | } 153 | 154 | /** 155 | * Saves the dhtml_menu cooki. 156 | */ 157 | Drupal.dhtmlMenu.cookieSet = function() { 158 | var expanded = new Array(); 159 | $('li.expanded').each(function() { 160 | expanded.push($(this).find('a:first').attr('id').substr(5)); 161 | }); 162 | document.cookie = 'dhtml_menu=' + expanded.join(',') + ';path=/'; 163 | } 164 | 165 | -------------------------------------------------------------------------------- /index.html@q=users%2Fadmin.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | admin | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 9 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 40 |
    41 |
    42 |
    43 | 44 |
    45 |
    52 | 53 |
    54 | 56 |
    57 |

    admin

    58 |
    59 |
    60 |

    History

    61 |
    62 |
    Member for
    63 |
    2 years 41 weeks
    64 |
    65 |
    66 |
    67 |
    68 |
    69 |

    Face Book

    70 |
    71 |
    72 |
    73 |
    74 |
    75 | 113 |
    114 |
    115 |
    116 | 120 | 121 | -------------------------------------------------------------------------------- /index.html@q=about.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | About | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 9 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 40 |
    41 |
    42 |
    43 | 44 |
    45 |
    52 | 53 |
    54 | 56 |
    57 |

    About

    58 |
    59 |
    60 |
    61 |

    FOSSASIA Conference

    FOSSASIA is one of the top Free and Open Source Software (FOSS) events for developers, enterprises, governments and general users in Asia. The event brings together FOSS projects from Asia and around the world. More than 100 volunteers support participants at the conference. More than half of all participants are women.

     

    Contact

    FOSSASIA Organization Team

    Hong Phuc Dang
    FOSSASIA Organizer
    [email protected]

    62 | 64 |
    65 |
    66 |
    67 |

    Face Book

    68 |
    69 |
    70 |
    71 |
    72 |
    73 | 111 |
    112 |
    113 |
    114 | 118 | 119 | -------------------------------------------------------------------------------- /index.html@q=contact.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | Contact | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 9 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 40 |
    41 |
    42 |
    43 | 44 |
    45 |
    52 | 53 |
    54 | 56 |
    57 |

    Contact

    58 |
    59 | 60 |
    61 |
    62 |

    The best way to contact the FOSSASIA organization team is through our mailing list:

    http://groups.google.com/group/fossasia

    You can join the community on social networks:

    Google+: https://plus.google.com/u/0/108920596016838318216

    Facebook: https://www.facebook.com/fossasia

    For group discussions we are using IRC:

    irc.freenode.net#fossasia

     

    If you need to get in touch with the FOSSASIA committee, please contact:

    Hong Phuc Dang
    FOSSASIA Organizer
    [email protected]

    63 | 64 |
    65 |
    66 |
    67 |

    Face Book

    68 |
    69 |
    70 |
    71 |
    72 |
    73 | 111 |
    112 |
    113 |
    114 | 118 | 119 | -------------------------------------------------------------------------------- /index.html@q=venue.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | Venue | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 9 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 40 |
    41 |
    42 |
    43 | 44 |
    45 |
    52 | 53 |
    54 | 56 |
    57 |

    Venue

    58 |
    59 |
    60 |
    61 |
    View Larger Map 62 |

    Van Lang University Campus 2,

    233A Phan Van Tri Street

    Binh Thanh District

    Ho Chi Minh City (Saigon)

    Vietnam

    www.vanlanguni.edu.vn

     

     

    63 | 65 |
    66 |
    67 |
    68 |

    Face Book

    69 |
    70 |
    71 |
    72 |
    73 |
    74 | 112 |
    113 |
    114 |
    115 | 119 | 120 | -------------------------------------------------------------------------------- /index.html@q=wrap-fossasia-2011.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | Wrap up FOSSASIA 2011 | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 9 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 40 |
    41 |
    42 |
    43 | 44 |
    45 |
    52 | 53 |
    54 | 56 |
    57 |

    Wrap up FOSSASIA 2011

    58 |
    59 |
    60 |
    61 |

    FOSSASIA 2011 was held at Van Lang University in Ho Chi Minh City (Saigon), Vietnam from November 11 to 12, 2011. The event attracted 798 participants in 2 days including students, developers, business professionals and government officials. The majority of the attendees (2/3) were from universities, the remainder from companies.  Ninety percent of the participants were local (from Vietnam)  with the remainder from other countries. We had 36 volunteers from Ho Chi Minh University of Technology (BKK), University of Social Sciences and Humanities, Vietnam Lubuntu group and many individual contributors, who helped us in many ways including registration, guidance, emcees, photography and video.

    There were a total of 24 speakers, 60% were local speakers and 40% of them were from other countries, including USA, France, Denmark, Cambodia, Germany, Singapore etc. There were 26 talks over the two days.

    FOSSASIA Open Source Software and Technology Conference in Asia

    Highlights of the Event 

    The talks covered several topics categorized into four main tracks including: Mobile solutions, Web technologies, Operating Systems/applications and Women in IT. The first day started with a general session in the morning and was followed by 4 tracks in the afternoon. The second day had several tracks starting in the morning.

    Talks, Keynotes and Projects

    The first day of the event started with talks in the main hall. In his keynote Dung Nguyen, the president of Van Lang University, gave an introduction here to the current Open Source education across universities in Vietnam and expressed his great interest on promoting more Free and Open Source Software inside the University's technology department.

    Davide Storti UNESCO at FOSSASIA

    It was exciting to learn about UNESCO and the Free Software Community in the talk of Davide Storti - member UNESCO Open Suite Team. Our annual speaker Chantra Be from Cambodia again brought us a excellent insight to Open Technology in Cambodia.Creative Mobile Technologies from Vietnam were presented by Ian Morrison, the founder of GKIM Vietnam. Students had the chance to get a better understanding how open source is used in everyday businesses.

    Focusing on education in schools Nancie Severs introduced her beautiful work with the One Laptop Per Child Project in north of Vietnam. Many Linux related talks dealt with questions about web installations and Content Management Systems like Drupal. Anh Tuan Truong (Vietnam)  introduced new features in Fedora Linux after the release of version 15.

    On the second day students had the chance to learn in depth about Open Source software projects in workshops and panels. One of the most exciting get together happened at "Women in IT". The meet up attracted around 50 young girls who showed great interest and passion about open education and the global contribution of girls in Asia to FOSS projects.

    FOSSASIA Open Source Event in Asia

    After the Event

    A number of get together and hacker meetings took place after FOSSASIA.

    Debian Hack during Mekong Tour

    We had a wonderful weekend in the Mekong with Jonas Smedegaard, a Debian Developer from Denmark. Jonas got met with a few local developers and conducted a Debian session where he showed people how to set up debian server and to develop an automatic SMS service on a cheap mobile device.

    Open Technology in Asia, FOSSASIA with UNESCO and Debian Participants

    Student Code Programs After FOSSASIA 2011

    Another big goal of us after the event was to "ignite" student study groups to join existing open source projects or start coding on their own ideas.

    Free Software Summit FOSSASIA

    Apart from programs and meet ups with university students in the region after FOSSASIA, the FOSSASIA team was hapy to support students and mentors through the Google Summer of Code program. Google Summer of Code offers students stipends to write code for open source projects. Since 2011 FOSSASIA is a mentor organization at Google Summer of Code. FOSSASIA functions as an umbrella organization for a number of projects in the region and supports new coding ideas of students independently from a big Open Source project.

    Women in IT, Open Source, Free Software at FOSSASIA

    62 | 63 |
    64 |
    65 |
    66 |

    Face Book

    67 |
    68 |
    69 |
    70 |
    71 |
    72 | 110 |
    111 |
    112 |
    113 | 117 | 118 | -------------------------------------------------------------------------------- /index.html@q=schedule.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | Schedule | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 9 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 40 |
    41 |
    42 |
    43 | 44 |
    45 |
    52 | 53 |
    54 | 56 |
    57 |

    Schedule

    58 |
    59 |
    60 |
    61 |

    The main topics of FOSSASIA 2011 are all related to Free and Open Source Software with a track for Mobile Solutions, Web Technologies, Operating Systems and Applications, and Women in IT.

    Linux Conference in Asia, FOSSASIA Summit

    Day
    Time
    Event
    Location
    Thursday, Nov. 10
    20.00
    Pre-Meeting

    The Spotted Cow Bar111 Bui Vien, dist 1. HCMC (opposite to Happy Inn, closed to Pham Ngu Lao & De Tham / Google Maps)

    Friday, Nov. 11
    9.00-17.00
    Info Day (15-20 min presentations about projects and set up of info tables)
    Van Lang University, Campus 2 (Theatre Hall)

    Evening
    Hack Sessions
    City Cafe to be decided
    Saturday, Nov.12
    9.00-17.30
    Community Day (keynotes, talks, workshops)
    Van Lang University, Campus 2 (Theatre Hall and Seminar Rooms)

    Evening
    Social Meet Up
    Location in the city to be announced
    Sunday, Nov. 13
    9.00-15.30
    Mekong Excursion organized by tour companyMekong Delta

    Women in Open Source and IT FOSSASIA

    FOSSASIA 2011 Tracks

    Four sessions in parallel for FOSSASIA 2011.

    a) Mobile solutions

    * Android, MeeGo, Chrome OS, Symbian, Bada, OpenWrt and embedded Debian
    * Frameworks and SDK including Phonegap
    * Lightning talks with app presentations

    c) Web Technologies

    * Frameworks
    * CMS
    * HTML5
    * Ruby on Rails, Python, PHP 

    d) Operating Systems and Applications

    * new interface design and lightweight trends with KDE, GNOME, LXDE and XFCE
    * Package design and development

    b) Women in IT

    While most Open Source and Free Software projects are based in Western countries there is an increasing number of projects from Asia. Women are also becoming a stronger force in the IT community. The FOSSASIA team strongly encourages the participation of young women and achieved this goal with an astounding participation of women in 2009 and 2010 – more than half of all attendees were women. How can we make this trend sustainable and support the flow of women into the technology companies?

    Open Source Conference in Asia, FOSSASIA Workshop

    TrackTopics
    Track 1: Mobile Solutions
    • Mobile Devices , platform for Mobile devices (Android, Chrome OS, Maemo, Symbian, Moblin, Bada) and software solution for Tablets / Smartbook s
    • HTML5 and the Web Technologies for mobile phones
    • Frameworks and Phonegap
    Track 2: Web Technologies
    • Frameworks
    • CMS
    • HTML5
    • Ruby on Rails, Python, PHP 
    Track 3: Operating Systems and Applications
    • new interface design and lightweight trends with KDE, GNOME, LXDE and XFCE
    • Package design and development
    Track 4: Fostering the Asian community and Women in IT
    • including international Womens Panel

    Asia Free Software Conference FOSSASIA

    Free Open Source Software Asia, FOSSASIA

    Schedule Friday 11. November 2011

    Time

    Topic and Project

    Speaker

    Title/Organization

    08:30

    Welcome – Hong Phuc Dang & Lilly Nguyen

    8:35 – 8:45

    IT in University Education

    Dung

    Nguyen

    Van Lang University, President

    8:45 – 8:55

    New Open Technologies and Opportunities for Developers

    Mario

    Behling

    MBM, Managing Director, Germany

    8:55 – 9:10

    Open Source in Vietnam

    Phuc

    V. Nguyen

    Asia Institute of Management and Technology

    9:10 – 9:30

    Open Cambodia

    Chantra

    Be

    Social Software Specialist, Cambodia

    9:30 – 9.50

    Undercover UXO, a Land Mine Risk Education Game for Children

    Nancie

    Severs

    One Laptop per Child, USA

    9:50 – 10:10

    Lubuntu – Faster computing with less powerful hardware

    Julien

    Lavergne

    Head Developer lubuntu, France

    10:10 – 10:30

    Debian Blends: Make your own 'blended' Linux distribution

    Jonas

    Smedegaard

    Debian Developer, Denmark

    10:30 – 10:50

    Linux as a Real-Time Operating System

    Hong

    Tran Duc

    Linux Developer, Vietnam

    10:50 – 11:10

    Achievements of applying the open source software  at Van Lang Uni

    Vinh

    Nguyen

    Van Lang University, IT Department

    11:10 – 11:30

    Open Source and Microsoft

    Justin

    Lee

    Software Development Consultant (freelance)

    11:30 – 11:50

    UNESCO and the Free Software Community

    Davide

    Storti

    UNESCO, Open Suite Team France

    12.00-13.30

    Lunch Break

    13:30 – 14:00

    LibreOffice on Smartphones

    Hưng

    Nguyễn Vũ

    Libre Office Project, Vietnam

    14:00 – 14:20

    Strategy to make money on free mobile apps

    Binh

    Tran

    App developer, Vietnam

    14:20 – 14:40

    Phonegap, App development with web technologies

    Liem

    Vo

    App developer, Tech Propulsion Lab, Vietnam

    14:40 – 15:00

    Creative Mobile Technologies from Vietnam

    Ian

    Morrison

    GKIM Vietnam, Founder

    15:00 – 15:20

    Android Development for postal companies

    Thong

    Tran

    App developer, MBM, Vietnam

    15:20 – 15:30

    Using Mobile Technologies in DHIS Project

    Long

    Ngo Thanh

    App developer, Vietnam

    15:30 – 15:40

    Mozilla Mobile Technologies

    Hung

    Nguyen

    Mozilla Contributor, Vietnam

    15:40 – 16:00

    Giới thiệu ngắn về TeX

    Anh

    Huynh

    Developer, Saigonlug member

    16:00 – 16:20

    LaTeX và Đại số máy tính (LaTeX and Computer Algebra System)

    Son

    Nguyen

    Professor and Book Publisher, Vietnam

    16:20 – 16:40

    Hong Phuc Dang & Lilly Nguyen, End Notes and Outlook for Workshops on Saturday

    Open Source Workshops in Asia at FOSSASIA Summit

    Asia Open Source Event FOSSASIA

    Schedule, Saturday Nov. 12

          

    Time

    Main hall

    Room C408

    Room C409

    Room C508

    Room C509

    8:30 – 9:00

    Hong Phuc Dang & Lilly Nguyen, Saturday Workshops Overview

        

    9:00 – 12:00

     

    Women in IT Meet up

    Drupal – Web Development

    Lubuntu for Development

    Agile Software Development with TestLink and 

    Redmine

     

    Hong Phuc Dang

    Sven Berg Ryen

    Julien Lavergne

    Nguyen Vu Hung

     

    Open Source Enthusiast, Vietnam

    Drupal Developer, Norway

    Lubuntu Developer, France

    Libre Office Project Vietnam

    12.00 – 13:00

    Lunch Break

    13:00 – 16:00

      

    Yii – Web Development

    Shape Debian for your custom needs

    Android Development with  Phonegap

     

    Le Kien Truc

    Jonas Smedegaard

    Tran Quang Thong

     

    Ubuntu Vietnam

    Debian Developer, Denmark

    MBM Mobile  Developer

    16:00 – 16:15

    Hong Phuc Dang & Lilly Nguyen, Closing Notes

        

    Julien Lavergne Lubuntu at FOSSASIA

     

    FOSSBridge Open Source in Asia

    62 | 64 |
    65 |
    66 |
    67 |

    Face Book

    68 |
    69 |
    70 |
    71 |
    72 |
    73 | 111 |
    112 |
    113 |
    114 | 118 | 119 | -------------------------------------------------------------------------------- /index.html@q=rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 5 | https://2011.fossasia.org 6 | 7 | en 8 | 9 | Wrap up FOSSASIA 2011 10 | https://2011.fossasia.org/?q=wrap-fossasia-2011 11 | <p><img src="/sites/default/files/FOSSASIA%20Open%20Source%20Hong%20Phuc%20Dang%20Free%20Software%20Community_0.JPG" alt="" width="700" height="417"></p><p>FOSSASIA 2011 was held at <a href="http://www.vanlanguni.edu.vn/">Van Lang University</a> in Ho Chi Minh City (Saigon), Vietnam from November 11 to 12, 2011. The event attracted 798 participants in 2 days including students, developers, business professionals and government officials. The majority of the attendees (2/3) were from universities, the remainder from companies. &nbsp;Ninety percent of the participants were local (from Vietnam) &nbsp;with the remainder from other countries. We had 36 volunteers from <a href="http://www.hcmut.edu.vn/">Ho Chi Minh University of Technology</a> (BKK), University of Social Sciences and Humanities, Vietnam <a href="http://lubuntu.net">Lubuntu</a> group and many individual contributors, who helped us in many ways including registration, guidance, emcees, photography and video.</p> <p>There were a total of 24 speakers, 60% were local speakers and 40% of them were from other countries, including USA, France, Denmark, Cambodia, Germany, Singapore etc. There were 26 talks over the two days.</p><p><img src="/sites/default/files/FOSSASIA%202011%20Open%20Source%20Software%20Conference_0.JPG" alt="FOSSASIA Open Source Software and Technology Conference in Asia" width="700" height="408"></p> <h2>Highlights of the Event&nbsp;</h2> <p>The talks covered several topics categorized into four main tracks including: Mobile solutions, Web technologies, Operating Systems/applications and Women in IT. The first day started with a general session in the morning and was followed by 4 tracks in the afternoon. The second day had several tracks starting in the morning.</p> <h3>Talks, Keynotes and Projects</h3> <p>The first day of the event started with talks in the main hall. In his keynote Dung Nguyen, the president of Van Lang University, gave an introduction here to the current Open Source education across universities in Vietnam and expressed his great interest on promoting more Free and Open Source Software inside the University's technology department.</p><p><img src="/sites/default/files/DavideStorti-FOSSASIA_0.JPG" alt="Davide Storti UNESCO at FOSSASIA" width="700" height="545"></p> <p>It was exciting to learn about <a href="http://www.unesco.org/new/en/communication-and-information/">UNESCO</a> and the Free Software Community in the talk of Davide Storti - member UNESCO Open Suite Team. Our annual speaker <a href="https://twitter.com/chantra">Chantra Be</a> from Cambodia again brought us a excellent insight to Open Technology in Cambodia.Creative Mobile Technologies from Vietnam were presented by <a href="http://gkxim.vn/about-us/">Ian Morrison</a>, the founder of GKIM Vietnam. Students had the chance to get a better understanding how open source is used in everyday businesses.</p> <p>Focusing on education in schools Nancie Severs introduced her beautiful work with the <a href="http://olpc.vn">One Laptop Per Child Project</a> in north of Vietnam. Many Linux related talks dealt with questions about web installations and Content Management Systems like <a href="http://drupal.org">Drupal</a>. <a href="http://blog.iwayvietnam.com/tuanta/">Anh Tuan Truong</a> (Vietnam)&nbsp; introduced new features in <a href="http://fedoraproject.org">Fedora</a> Linux after the release of version 15.</p> <p>On the second day students had the chance to learn in depth about Open Source software projects in workshops and panels. One of the most exciting get together happened at "Women in IT". The meet up attracted around 50 young girls who showed great interest and passion about open education and the global contribution of girls in Asia to FOSS projects.</p><p><img src="/sites/default/files/Open%20Source%20in%20Asia%20at%20FOSSASIA.jpg" alt="FOSSASIA Open Source Event in Asia" width="700" height="475"></p> <h2>After the Event</h2> <p>A number of get together and hacker meetings took place after FOSSASIA.</p> <h3>Debian Hack during Mekong Tour</h3> <p>We had a wonderful weekend in the Mekong with <a href="http://dr.jones.dk/">Jonas Smedegaard</a>, a <a href="http://debian.org">Debian</a> Developer from Denmark. Jonas got met with a few local developers and conducted a Debian session where he showed people how to set up debian server and to develop an automatic SMS service on a cheap mobile device.</p><p><img src="/sites/default/files/DSC_0450_0.JPG" alt="Open Technology in Asia, FOSSASIA with UNESCO and Debian Participants" width="700" height="472"></p> <h3>Student Code Programs After FOSSASIA 2011</h3> <p>Another big goal of us after the event was to "ignite" student study groups to join existing open source projects or start coding on their own ideas.</p><p><img src="/sites/default/files/IMG_0645_0.JPG" alt="Free Software Summit FOSSASIA" width="700" height="749"></p> <p>Apart from programs and meet ups with university students in the region after FOSSASIA, the FOSSASIA team was hapy to support students and mentors through the Google Summer of Code program. <a href="http://google-melange.com">Google Summer of Code</a> offers students stipends to write code for open source projects. Since 2011 FOSSASIA is a mentor organization at Google Summer of Code. FOSSASIA functions as an umbrella organization for a number of projects in the region and supports new coding ideas of students independently from a big Open Source project.</p><p><img src="/sites/default/files/Women%20in%20IT%20and%20Open%20Source%20FOSSASIA_0.JPG" alt="Women in IT, Open Source, Free Software at FOSSASIA" width="700" height="464"></p><p><p><a href="https://2011.fossasia.org/?q=wrap-fossasia-2011" target="_blank">read more</a></p> 12 | Sun, 25 Dec 2011 15:23:41 +0000 13 | Mario Behling 14 | 281 at https://2011.fossasia.org 15 | 16 | 17 | Schedule 18 | https://2011.fossasia.org/?q=schedule 19 | <p>The main topics of FOSSASIA 2011 are all related to Free and Open Source Software with a track for&nbsp;Mobile Solutions, Web Technologies,&nbsp;Operating Systems and Applications, and&nbsp;Women in IT.</p><p><img src="/sites/default/files/DSC_0508_1_0.JPG" alt="Linux Conference in Asia, FOSSASIA Summit" height="470" width="700"></p> <table width="100%" border="0" cellpadding="4" cellspacing="0"><tbody><tr valign="top"><td bgcolor="#ffffcc"><strong>Day</strong><br></td><td bgcolor="#ffffcc"><strong>Time</strong><br></td><td bgcolor="#ffffcc"><strong>Event</strong><br></td><td bgcolor="#ffffcc"><strong>Location</strong></td></tr><tr valign="top"><td>Thursday, Nov. 10<br></td><td>20.00<br></td><td>Pre-Meeting<br></td><td><p>The Spotted Cow Bar111 Bui Vien, dist 1. HCMC (opposite to Happy Inn, closed to Pham Ngu Lao &amp; De Tham /&nbsp;<a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=111+Bui+Vien,+Ho+Chi+Minh+City,+Vietnam&amp;sll=37.0625,-95.677068&amp;sspn=27.284961,56.513672&amp;ie=UTF8&amp;hq=&amp;hnear=111+Bui+Vien,+ph%C6%B0%E1%BB%9Dng+Ph%E1%BA%A1m+Ng%C5%A9+L%C3%A3o,+District+1,+Ho+Chi+Minh+City,+Vietnam&amp;ll=10.765331,106.686237&amp;spn=0.008242,0.021973&amp;z=16">Google Maps</a>)</p></td></tr><tr valign="top"><td bgcolor="#ccccff">Friday, Nov. 11<br></td><td bgcolor="#ccccff">9.00-17.00<br></td><td bgcolor="#ccccff">Info Day (15-20 min presentations about projects and set up of info tables)<br></td><td bgcolor="#ccccff">Van Lang University, Campus 2 (Theatre Hall)<br></td></tr><tr><td bgcolor="#ccccff"><br></td><td bgcolor="#ccccff">Evening<br></td><td bgcolor="#ccccff">Hack Sessions<br></td><td bgcolor="#ccccff">City Cafe to be decided<br></td></tr><tr valign="top"><td>Saturday, Nov.12<br></td><td>9.00-17.30<br></td><td>Community Day (keynotes, talks, workshops)<br></td><td>Van Lang University, Campus 2 (Theatre Hall and Seminar Rooms)<br></td></tr><tr><td><br></td><td>Evening<br></td><td>Social Meet Up<br></td><td>Location in the city to be announced<br></td></tr><tr valign="top"><td bgcolor="#ccccff">Sunday, Nov. 13<br></td><td bgcolor="#ccccff">9.00-15.30<br></td><td bgcolor="#ccccff">Mekong Excursion organized by tour company</td><td bgcolor="#ccccff">Mekong Delta</td></tr></tbody></table><p><img src="/sites/default/files/Girls%20in%20Open%20Source%20and%20IT%20FOSSASIA_0.JPG" alt="Women in Open Source and IT FOSSASIA" height="954" width="700"></p><p><strong>FOSSASIA 2011 Tracks</strong></p><p>Four sessions in parallel for FOSSASIA 2011.</p><p>a) Mobile solutions</p><p>* Android, MeeGo, Chrome OS, Symbian, Bada, OpenWrt and embedded Debian<br>* Frameworks and SDK including Phonegap<br>* Lightning talks with app presentations</p><p>c) Web Technologies</p><p>* Frameworks<br>* CMS<br>* HTML5<br>* Ruby on Rails, Python, PHP&nbsp;</p><p>d) Operating Systems and Applications</p><p>* new interface design and lightweight trends with KDE, GNOME, LXDE and XFCE<br>* Package design and development</p><p>b) Women in IT</p><p>While most Open Source and Free Software projects are based in Western countries there is an increasing number of projects from Asia. Women are also becoming a stronger force in the IT community. The FOSSASIA team strongly encourages the participation of young women and achieved this goal with an astounding participation of women in 2009 and 2010 – more than half of all attendees were women. How can we make this trend sustainable and support the flow of women into the technology companies?</p><p><img src="/sites/default/files/DSC_0502_1_0.JPG" alt="Open Source Conference in Asia, FOSSASIA Workshop" height="403" width="700"></p> <table width="100%" border="0" cellpadding="4" cellspacing="0"><tbody><tr valign="top"><td bgcolor="#ffffcc"><strong>Track</strong></td><td bgcolor="#ffffcc"><strong>Topics</strong></td></tr><tr valign="top"><td>Track 1: Mobile Solutions</td><td><ul><li>Mobile Devices , platform for Mobile devices (Android, Chrome OS, Maemo, Symbian, Moblin, Bada) and software solution for Tablets / Smartbook s</li><li>HTML5 and the Web Technologies for mobile phones</li><li>Frameworks and Phonegap</li></ul></td></tr><tr valign="top"><td bgcolor="#ccccff">Track 2: Web Technologies</td><td bgcolor="#ccccff"><ul><li>Frameworks</li><li>CMS</li><li>HTML5</li><li>Ruby on Rails, Python, PHP&nbsp;</li></ul></td></tr><tr valign="top"><td>Track 3:&nbsp;Operating Systems and Applications<br></td><td><ul><li>new interface design and lightweight trends with KDE, GNOME, LXDE and XFCE</li><li>Package design and development</li></ul></td></tr><tr valign="top"><td bgcolor="#ccccff">Track 4:&nbsp;Fostering the Asian community and Women in IT<br></td><td bgcolor="#ccccff"><ul><li>including international Womens Panel</li></ul></td></tr></tbody></table><p><img src="/sites/default/files/IMG_0286_0.JPG" alt="Asia Free Software Conference FOSSASIA" height="470" width="700"></p><p><img src="/sites/default/files/Free%20Open%20Source%20Summit%20Asia%20FOSSASIA_0.JPG" alt="Free Open Source Software Asia, FOSSASIA" height="397" width="700"></p><table width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td colspan="5"><p><strong>Schedule Friday 11. November 2011</strong></p></td></tr><tr><td><p>Time</p></td><td><p>Topic and Project</p></td><td colspan="2"><p>Speaker</p></td><td><p>Title/Organization</p></td></tr><tr><td><p>08:30</p></td><td colspan="4"><p>Welcome – Hong Phuc Dang &amp; Lilly Nguyen</p></td></tr><tr><td><p>8:35 – 8:45</p></td><td><p>IT in University Education</p></td><td><p>Dung</p></td><td><p>Nguyen</p></td><td><p>Van Lang University, President</p></td></tr><tr><td><p>8:45 – 8:55</p></td><td><p>New Open Technologies and Opportunities for Developers</p></td><td><p>Mario</p></td><td><p>Behling</p></td><td><p>MBM, Managing Director, Germany</p></td></tr><tr><td><p>8:55 – 9:10</p></td><td><p>Open Source in Vietnam</p></td><td><p>Phuc</p></td><td><p>V. Nguyen</p></td><td><p>Asia Institute of Management and Technology</p></td></tr><tr><td><p>9:10 – 9:30</p></td><td><p>Open Cambodia</p></td><td><p>Chantra</p></td><td><p>Be</p></td><td><p>Social Software Specialist, Cambodia</p></td></tr><tr><td><p>9:30 – 9.50</p></td><td><p>Undercover UXO, a Land Mine Risk Education Game for Children</p></td><td><p>Nancie</p></td><td><p>Severs</p></td><td><p>One Laptop per Child, USA</p></td></tr><tr><td><p>9:50 – 10:10</p></td><td><p>Lubuntu – Faster computing with less powerful hardware</p></td><td><p>Julien</p></td><td><p>Lavergne</p></td><td><p>Head Developer lubuntu, France</p></td></tr><tr><td><p>10:10 – 10:30</p></td><td><p>Debian Blends: Make your own 'blended' Linux distribution</p></td><td><p>Jonas</p></td><td><p>Smedegaard</p></td><td><p>Debian Developer, Denmark</p></td></tr><tr><td><p>10:30 – 10:50</p></td><td><p>Linux as a Real-Time Operating System</p></td><td><p>Hong</p></td><td><p>Tran Duc</p></td><td><p>Linux Developer, Vietnam</p></td></tr><tr><td><p>10:50 – 11:10</p></td><td><p>Achievements of applying the open source software &nbsp;at Van Lang Uni</p></td><td><p>Vinh</p></td><td><p>Nguyen</p></td><td><p>Van Lang University, IT Department</p></td></tr><tr><td><p>11:10 – 11:30</p></td><td><p>Open Source and Microsoft</p></td><td><p>Justin</p></td><td><p>Lee</p></td><td><p>Software Development Consultant (freelance)</p></td></tr><tr><td><p>11:30 – 11:50</p></td><td><p>UNESCO and the Free Software Community</p></td><td><p>Davide</p></td><td><p>Storti</p></td><td><p>UNESCO, Open Suite Team France</p></td></tr><tr><td><p>12.00-13.30</p></td><td colspan="4"><p>Lunch Break</p></td></tr><tr><td><p>13:30 – 14:00</p></td><td><p>LibreOffice on Smartphones</p></td><td><p>Hưng</p></td><td><p>Nguyễn Vũ</p></td><td><p>Libre Office Project, Vietnam</p></td></tr><tr><td><p>14:00 – 14:20</p></td><td><p>Strategy to make money on free mobile apps</p></td><td><p>Binh</p></td><td><p>Tran</p></td><td><p>App developer, Vietnam</p></td></tr><tr><td><p>14:20 – 14:40</p></td><td><p>Phonegap, App development with web technologies</p></td><td><p>Liem</p></td><td><p>Vo</p></td><td><p>App developer, Tech Propulsion Lab, Vietnam</p></td></tr><tr><td><p>14:40 – 15:00</p></td><td><p>Creative Mobile Technologies from Vietnam</p></td><td><p>Ian</p></td><td><p>Morrison</p></td><td><p>GKIM Vietnam, Founder</p></td></tr><tr><td><p>15:00 – 15:20</p></td><td><p>Android Development for postal companies</p></td><td><p>Thong</p></td><td><p>Tran</p></td><td><p>App developer, MBM, Vietnam</p></td></tr><tr><td><p>15:20 – 15:30</p></td><td><p>Using Mobile Technologies in DHIS Project</p></td><td><p>Long</p></td><td><p>Ngo Thanh</p></td><td><p>App developer, Vietnam</p></td></tr><tr><td><p>15:30 – 15:40</p></td><td><p>Mozilla Mobile Technologies</p></td><td><p>Hung</p></td><td><p>Nguyen</p></td><td><p>Mozilla Contributor, Vietnam</p></td></tr><tr><td><p>15:40 – 16:00</p></td><td><p>Giới thiệu ngắn về TeX</p></td><td><p>Anh</p></td><td><p>Huynh</p></td><td><p>Developer, Saigonlug member</p></td></tr><tr><td><p>16:00 – 16:20</p></td><td><p>LaTeX và Đại số máy tính (LaTeX and Computer Algebra System)</p></td><td><p>Son</p></td><td><p>Nguyen</p></td><td><p>Professor and Book Publisher, Vietnam</p></td></tr><tr><td><p>16:20 – 16:40</p></td><td colspan="4"><p>Hong Phuc Dang &amp; Lilly Nguyen, End Notes and Outlook for Workshops on Saturday</p></td></tr></tbody></table><p><img src="/sites/default/files/DSC_0499_0.JPG" alt="Open Source Workshops in Asia at FOSSASIA Summit" height="409" width="700"></p><p><img src="/sites/default/files/Asia%20Open%20Source%20Event%20FOSSASIA_0.JPG" alt="Asia Open Source Event FOSSASIA" height="480" width="700"></p><table width="100%" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td colspan="6"><p><strong>Schedule, Saturday Nov. 12</strong></p></td></tr><tr><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td><p>Time</p></td><td><p>Main hall</p></td><td><p>Room C408</p></td><td><p>Room C409</p></td><td><p>Room C508</p></td><td><p>Room C509</p></td></tr><tr><td><p>8:30 – 9:00</p></td><td><p>Hong Phuc Dang &amp; Lilly Nguyen, Saturday Workshops Overview</p></td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr><tr><td rowspan="3"><p>9:00 – 12:00</p></td><td>&nbsp;</td><td><p>Women in IT Meet up</p></td><td><p>Drupal – Web Development</p></td><td><p>Lubuntu for Development</p></td><td><p>Agile Software Development with TestLink&nbsp;and&nbsp;</p><p>Redmine</p></td></tr><tr><td>&nbsp;</td><td><p>Hong Phuc Dang</p></td><td><p>Sven Berg Ryen</p></td><td><p>Julien Lavergne</p></td><td><p>Nguyen Vu Hung</p></td></tr><tr><td>&nbsp;</td><td><p>Open Source Enthusiast, Vietnam</p></td><td><p>Drupal Developer, Norway</p></td><td><p>Lubuntu Developer, France</p></td><td><p>Libre Office Project Vietnam</p></td></tr><tr><td><p>12.00 – 13:00</p></td><td colspan="5"><p>Lunch Break</p></td></tr><tr><td rowspan="3"><p>13:00 – 16:00</p></td><td rowspan="3">&nbsp;</td><td>&nbsp;</td><td><p>Yii – Web Development</p></td><td><p>Shape Debian for your custom needs</p></td><td><p>Android Development with &nbsp;Phonegap</p></td></tr><tr><td>&nbsp;</td><td><p>Le Kien Truc</p></td><td><p>Jonas Smedegaard</p></td><td><p>Tran Quang Thong</p></td></tr><tr><td>&nbsp;</td><td><p>Ubuntu Vietnam</p></td><td><p>Debian Developer, Denmark</p></td><td><p>MBM Mobile &nbsp;Developer</p></td></tr><tr><td><p>16:00 – 16:15</p></td><td><p>Hong Phuc Dang &amp; Lilly Nguyen, Closing Notes</p></td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td></tr></tbody></table><p><img style="display: block; margin-left: auto; margin-right: auto;" src="/sites/default/files/lubuntu-fossasia-julien-lavergne_0.JPG" alt="Julien Lavergne Lubuntu at FOSSASIA" height="833" width="650"></p><p>&nbsp;</p><p><img src="/sites/default/files/DSC_0496_0.JPG" alt="FOSSBridge Open Source in Asia" height="470" width="700"></p> 20 | Sat, 15 Oct 2011 12:42:27 +0000 21 | Mario Behling 22 | 231 at https://2011.fossasia.org 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> | Open Source in Asia<br/>Ho Chi Minh City<br/>11-13 Nov. 2011<br /> 10 | 11 | 12 | 13 | 14 | 19 | 22 | 23 | 24 | 41 |
    42 |
    43 |
    44 | 45 |
    46 |
    53 | 54 |
    55 |
    56 |
    57 |

    Wrap up FOSSASIA 2011

    58 |
    59 |
    60 |
    61 |

    FOSSASIA 2011 was held at Van Lang University in Ho Chi Minh City (Saigon), Vietnam from November 11 to 12, 2011. The event attracted 798 participants in 2 days including students, developers, business professionals and government officials. The majority of the attendees (2/3) were from universities, the remainder from companies.  Ninety percent of the participants were local (from Vietnam)  with the remainder from other countries. We had 36 volunteers from Ho Chi Minh University of Technology (BKK), University of Social Sciences and Humanities, Vietnam Lubuntu group and many individual contributors, who helped us in many ways including registration, guidance, emcees, photography and video.

    There were a total of 24 speakers, 60% were local speakers and 40% of them were from other countries, including USA, France, Denmark, Cambodia, Germany, Singapore etc. There were 26 talks over the two days.

    FOSSASIA Open Source Software and Technology Conference in Asia

    Highlights of the Event 

    The talks covered several topics categorized into four main tracks including: Mobile solutions, Web technologies, Operating Systems/applications and Women in IT. The first day started with a general session in the morning and was followed by 4 tracks in the afternoon. The second day had several tracks starting in the morning.

    Talks, Keynotes and Projects

    The first day of the event started with talks in the main hall. In his keynote Dung Nguyen, the president of Van Lang University, gave an introduction here to the current Open Source education across universities in Vietnam and expressed his great interest on promoting more Free and Open Source Software inside the University's technology department.

    Davide Storti UNESCO at FOSSASIA

    It was exciting to learn about UNESCO and the Free Software Community in the talk of Davide Storti - member UNESCO Open Suite Team. Our annual speaker Chantra Be from Cambodia again brought us a excellent insight to Open Technology in Cambodia.Creative Mobile Technologies from Vietnam were presented by Ian Morrison, the founder of GKIM Vietnam. Students had the chance to get a better understanding how open source is used in everyday businesses.

    Focusing on education in schools Nancie Severs introduced her beautiful work with the One Laptop Per Child Project in north of Vietnam. Many Linux related talks dealt with questions about web installations and Content Management Systems like Drupal. Anh Tuan Truong (Vietnam)  introduced new features in Fedora Linux after the release of version 15.

    On the second day students had the chance to learn in depth about Open Source software projects in workshops and panels. One of the most exciting get together happened at "Women in IT". The meet up attracted around 50 young girls who showed great interest and passion about open education and the global contribution of girls in Asia to FOSS projects.

    FOSSASIA Open Source Event in Asia

    After the Event

    A number of get together and hacker meetings took place after FOSSASIA.

    Debian Hack during Mekong Tour

    We had a wonderful weekend in the Mekong with Jonas Smedegaard, a Debian Developer from Denmark. Jonas got met with a few local developers and conducted a Debian session where he showed people how to set up debian server and to develop an automatic SMS service on a cheap mobile device.

    Open Technology in Asia, FOSSASIA with UNESCO and Debian Participants

    Student Code Programs After FOSSASIA 2011

    Another big goal of us after the event was to "ignite" student study groups to join existing open source projects or start coding on their own ideas.

    Free Software Summit FOSSASIA

    Apart from programs and meet ups with university students in the region after FOSSASIA, the FOSSASIA team was hapy to support students and mentors through the Google Summer of Code program. Google Summer of Code offers students stipends to write code for open source projects. Since 2011 FOSSASIA is a mentor organization at Google Summer of Code. FOSSASIA functions as an umbrella organization for a number of projects in the region and supports new coding ideas of students independently from a big Open Source project.

    Women in IT, Open Source, Free Software at FOSSASIA

    62 | 64 |
    65 |

    Schedule

    66 |
    67 |
    68 |
    69 |

    The main topics of FOSSASIA 2011 are all related to Free and Open Source Software with a track for Mobile Solutions, Web Technologies, Operating Systems and Applications, and Women in IT.

    Linux Conference in Asia, FOSSASIA Summit

    Day
    Time
    Event
    Location
    Thursday, Nov. 10
    20.00
    Pre-Meeting

    The Spotted Cow Bar111 Bui Vien, dist 1. HCMC (opposite to Happy Inn, closed to Pham Ngu Lao & De Tham / Google Maps)

    Friday, Nov. 11
    9.00-17.00
    Info Day (15-20 min presentations about projects and set up of info tables)
    Van Lang University, Campus 2 (Theatre Hall)

    Evening
    Hack Sessions
    City Cafe to be decided
    Saturday, Nov.12
    9.00-17.30
    Community Day (keynotes, talks, workshops)
    Van Lang University, Campus 2 (Theatre Hall and Seminar Rooms)

    Evening
    Social Meet Up
    Location in the city to be announced
    Sunday, Nov. 13
    9.00-15.30
    Mekong Excursion organized by tour companyMekong Delta

    Women in Open Source and IT FOSSASIA

    FOSSASIA 2011 Tracks

    Four sessions in parallel for FOSSASIA 2011.

    a) Mobile solutions

    * Android, MeeGo, Chrome OS, Symbian, Bada, OpenWrt and embedded Debian
    * Frameworks and SDK including Phonegap
    * Lightning talks with app presentations

    c) Web Technologies

    * Frameworks
    * CMS
    * HTML5
    * Ruby on Rails, Python, PHP 

    d) Operating Systems and Applications

    * new interface design and lightweight trends with KDE, GNOME, LXDE and XFCE
    * Package design and development

    b) Women in IT

    While most Open Source and Free Software projects are based in Western countries there is an increasing number of projects from Asia. Women are also becoming a stronger force in the IT community. The FOSSASIA team strongly encourages the participation of young women and achieved this goal with an astounding participation of women in 2009 and 2010 – more than half of all attendees were women. How can we make this trend sustainable and support the flow of women into the technology companies?

    Open Source Conference in Asia, FOSSASIA Workshop

    TrackTopics
    Track 1: Mobile Solutions
    • Mobile Devices , platform for Mobile devices (Android, Chrome OS, Maemo, Symbian, Moblin, Bada) and software solution for Tablets / Smartbook s
    • HTML5 and the Web Technologies for mobile phones
    • Frameworks and Phonegap
    Track 2: Web Technologies
    • Frameworks
    • CMS
    • HTML5
    • Ruby on Rails, Python, PHP 
    Track 3: Operating Systems and Applications
    • new interface design and lightweight trends with KDE, GNOME, LXDE and XFCE
    • Package design and development
    Track 4: Fostering the Asian community and Women in IT
    • including international Womens Panel

    Asia Free Software Conference FOSSASIA

    Free Open Source Software Asia, FOSSASIA

    Schedule Friday 11. November 2011

    Time

    Topic and Project

    Speaker

    Title/Organization

    08:30

    Welcome – Hong Phuc Dang & Lilly Nguyen

    8:35 – 8:45

    IT in University Education

    Dung

    Nguyen

    Van Lang University, President

    8:45 – 8:55

    New Open Technologies and Opportunities for Developers

    Mario

    Behling

    MBM, Managing Director, Germany

    8:55 – 9:10

    Open Source in Vietnam

    Phuc

    V. Nguyen

    Asia Institute of Management and Technology

    9:10 – 9:30

    Open Cambodia

    Chantra

    Be

    Social Software Specialist, Cambodia

    9:30 – 9.50

    Undercover UXO, a Land Mine Risk Education Game for Children

    Nancie

    Severs

    One Laptop per Child, USA

    9:50 – 10:10

    Lubuntu – Faster computing with less powerful hardware

    Julien

    Lavergne

    Head Developer lubuntu, France

    10:10 – 10:30

    Debian Blends: Make your own 'blended' Linux distribution

    Jonas

    Smedegaard

    Debian Developer, Denmark

    10:30 – 10:50

    Linux as a Real-Time Operating System

    Hong

    Tran Duc

    Linux Developer, Vietnam

    10:50 – 11:10

    Achievements of applying the open source software  at Van Lang Uni

    Vinh

    Nguyen

    Van Lang University, IT Department

    11:10 – 11:30

    Open Source and Microsoft

    Justin

    Lee

    Software Development Consultant (freelance)

    11:30 – 11:50

    UNESCO and the Free Software Community

    Davide

    Storti

    UNESCO, Open Suite Team France

    12.00-13.30

    Lunch Break

    13:30 – 14:00

    LibreOffice on Smartphones

    Hưng

    Nguyễn Vũ

    Libre Office Project, Vietnam

    14:00 – 14:20

    Strategy to make money on free mobile apps

    Binh

    Tran

    App developer, Vietnam

    14:20 – 14:40

    Phonegap, App development with web technologies

    Liem

    Vo

    App developer, Tech Propulsion Lab, Vietnam

    14:40 – 15:00

    Creative Mobile Technologies from Vietnam

    Ian

    Morrison

    GKIM Vietnam, Founder

    15:00 – 15:20

    Android Development for postal companies

    Thong

    Tran

    App developer, MBM, Vietnam

    15:20 – 15:30

    Using Mobile Technologies in DHIS Project

    Long

    Ngo Thanh

    App developer, Vietnam

    15:30 – 15:40

    Mozilla Mobile Technologies

    Hung

    Nguyen

    Mozilla Contributor, Vietnam

    15:40 – 16:00

    Giới thiệu ngắn về TeX

    Anh

    Huynh

    Developer, Saigonlug member

    16:00 – 16:20

    LaTeX và Đại số máy tính (LaTeX and Computer Algebra System)

    Son

    Nguyen

    Professor and Book Publisher, Vietnam

    16:20 – 16:40

    Hong Phuc Dang & Lilly Nguyen, End Notes and Outlook for Workshops on Saturday

    Open Source Workshops in Asia at FOSSASIA Summit

    Asia Open Source Event FOSSASIA

    Schedule, Saturday Nov. 12

          

    Time

    Main hall

    Room C408

    Room C409

    Room C508

    Room C509

    8:30 – 9:00

    Hong Phuc Dang & Lilly Nguyen, Saturday Workshops Overview

        

    9:00 – 12:00

     

    Women in IT Meet up

    Drupal – Web Development

    Lubuntu for Development

    Agile Software Development with TestLink and 

    Redmine

     

    Hong Phuc Dang

    Sven Berg Ryen

    Julien Lavergne

    Nguyen Vu Hung

     

    Open Source Enthusiast, Vietnam

    Drupal Developer, Norway

    Lubuntu Developer, France

    Libre Office Project Vietnam

    12.00 – 13:00

    Lunch Break

    13:00 – 16:00

      

    Yii – Web Development

    Shape Debian for your custom needs

    Android Development with  Phonegap

     

    Le Kien Truc

    Jonas Smedegaard

    Tran Quang Thong

     

    Ubuntu Vietnam

    Debian Developer, Denmark

    MBM Mobile  Developer

    16:00 – 16:15

    Hong Phuc Dang & Lilly Nguyen, Closing Notes

        

    Julien Lavergne Lubuntu at FOSSASIA

     

    FOSSBridge Open Source in Asia

    70 | 72 |
    Syndicate content
    73 |
    74 |
    75 |

    Face Book

    76 |
    77 |
    78 |
    79 |
    80 |
    81 | 119 |
    120 |
    121 |
    122 | 155 | 156 | -------------------------------------------------------------------------------- /sites/default/files/css/css_594ec7a2a2aa994a8cd9f02e262a3f52.css: -------------------------------------------------------------------------------- 1 | 2 | .node-unpublished{background-color:#fff4f4;}.preview .node{background-color:#ffffea;}#node-admin-filter ul{list-style-type:none;padding:0;margin:0;width:100%;}#node-admin-buttons{float:left;margin-left:0.5em;clear:right;}td.revision-current{background:#ffc;}.node-form .form-text{display:block;width:95%;}.node-form .container-inline .form-text{display:inline;width:auto;}.node-form .standard{clear:both;}.node-form textarea{display:block;width:95%;}.node-form .attachments fieldset{float:none;display:block;}.terms-inline{display:inline;} 3 | 4 | 5 | fieldset{margin-bottom:1em;padding:.5em;}form{margin:0;padding:0;}hr{height:1px;border:1px solid gray;}img{border:0;}table{border-collapse:collapse;}th{text-align:left;padding-right:1em;border-bottom:3px solid #ccc;}.clear-block:after{content:".";display:block;height:0;clear:both;visibility:hidden;}.clear-block{display:inline-block;}/*_\*/ 6 | * html .clear-block{height:1%;}.clear-block{display:block;}/* End hide from IE-mac */ 7 | 8 | 9 | 10 | body.drag{cursor:move;}th.active img{display:inline;}tr.even,tr.odd{background-color:#eee;border-bottom:1px solid #ccc;padding:0.1em 0.6em;}tr.drag{background-color:#fffff0;}tr.drag-previous{background-color:#ffd;}td.active{background-color:#ddd;}td.checkbox,th.checkbox{text-align:center;}tbody{border-top:1px solid #ccc;}tbody th{border-bottom:1px solid #ccc;}thead th{text-align:left;padding-right:1em;border-bottom:3px solid #ccc;}.breadcrumb{padding-bottom:.5em}div.indentation{width:20px;height:1.7em;margin:-0.4em 0.2em -0.4em -0.4em;padding:0.42em 0 0.42em 0.6em;float:left;}div.tree-child{background:url(https://2011.fossasia.org/misc/tree.png) no-repeat 11px center;}div.tree-child-last{background:url(https://2011.fossasia.org/misc/tree-bottom.png) no-repeat 11px center;}div.tree-child-horizontal{background:url(https://2011.fossasia.org/misc/tree.png) no-repeat -11px center;}.error{color:#e55;}div.error{border:1px solid #d77;}div.error,tr.error{background:#fcc;color:#200;padding:2px;}.warning{color:#e09010;}div.warning{border:1px solid #f0c020;}div.warning,tr.warning{background:#ffd;color:#220;padding:2px;}.ok{color:#008000;}div.ok{border:1px solid #00aa00;}div.ok,tr.ok{background:#dfd;color:#020;padding:2px;}.item-list .icon{color:#555;float:right;padding-left:0.25em;clear:right;}.item-list .title{font-weight:bold;}.item-list ul{margin:0 0 0.75em 0;padding:0;}.item-list ul li{margin:0 0 0.25em 1.5em;padding:0;list-style:disc;}ol.task-list li.active{font-weight:bold;}.form-item{margin-top:1em;margin-bottom:1em;}tr.odd .form-item,tr.even .form-item{margin-top:0;margin-bottom:0;white-space:nowrap;}tr.merge-down,tr.merge-down td,tr.merge-down th{border-bottom-width:0 !important;}tr.merge-up,tr.merge-up td,tr.merge-up th{border-top-width:0 !important;}.form-item input.error,.form-item textarea.error,.form-item select.error{border:2px solid red;}.form-item .description{font-size:0.85em;}.form-item label{display:block;font-weight:bold;}.form-item label.option{display:inline;font-weight:normal;}.form-checkboxes,.form-radios{margin:1em 0;}.form-checkboxes .form-item,.form-radios .form-item{margin-top:0.4em;margin-bottom:0.4em;}.marker,.form-required{color:#f00;}.more-link{text-align:right;}.more-help-link{font-size:0.85em;text-align:right;}.nowrap{white-space:nowrap;}.item-list .pager{clear:both;text-align:center;}.item-list .pager li{background-image:none;display:inline;list-style-type:none;padding:0.5em;}.pager-current{font-weight:bold;}.tips{margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;font-size:0.9em;}dl.multiselect dd.b,dl.multiselect dd.b .form-item,dl.multiselect dd.b select{font-family:inherit;font-size:inherit;width:14em;}dl.multiselect dd.a,dl.multiselect dd.a .form-item{width:10em;}dl.multiselect dt,dl.multiselect dd{float:left;line-height:1.75em;padding:0;margin:0 1em 0 0;}dl.multiselect .form-item{height:1.75em;margin:0;}.container-inline div,.container-inline label{display:inline;}ul.primary{border-collapse:collapse;padding:0 0 0 1em;white-space:nowrap;list-style:none;margin:5px;height:auto;line-height:normal;border-bottom:1px solid #bbb;}ul.primary li{display:inline;}ul.primary li a{background-color:#ddd;border-color:#bbb;border-width:1px;border-style:solid solid none solid;height:auto;margin-right:0.5em;padding:0 1em;text-decoration:none;}ul.primary li.active a{background-color:#fff;border:1px solid #bbb;border-bottom:#fff 1px solid;}ul.primary li a:hover{background-color:#eee;border-color:#ccc;border-bottom-color:#eee;}ul.secondary{border-bottom:1px solid #bbb;padding:0.5em 1em;margin:5px;}ul.secondary li{display:inline;padding:0 1em;border-right:1px solid #ccc;}ul.secondary a{padding:0;text-decoration:none;}ul.secondary a.active{border-bottom:4px solid #999;}#autocomplete{position:absolute;border:1px solid;overflow:hidden;z-index:100;}#autocomplete ul{margin:0;padding:0;list-style:none;}#autocomplete li{background:#fff;color:#000;white-space:pre;cursor:default;}#autocomplete li.selected{background:#0072b9;color:#fff;}html.js input.form-autocomplete{background-image:url(https://2011.fossasia.org/misc/throbber.gif);background-repeat:no-repeat;background-position:100% 2px;}html.js input.throbbing{background-position:100% -18px;}html.js fieldset.collapsed{border-bottom-width:0;border-left-width:0;border-right-width:0;margin-bottom:0;height:1em;}html.js fieldset.collapsed *{display:none;}html.js fieldset.collapsed legend{display:block;}html.js fieldset.collapsible legend a{padding-left:15px;background:url(https://2011.fossasia.org/misc/menu-expanded.png) 5px 75% no-repeat;}html.js fieldset.collapsed legend a{background-image:url(https://2011.fossasia.org/misc/menu-collapsed.png);background-position:5px 50%;}* html.js fieldset.collapsed legend,* html.js fieldset.collapsed legend *,* html.js fieldset.collapsed table *{display:inline;}html.js fieldset.collapsible{position:relative;}html.js fieldset.collapsible legend a{display:block;}html.js fieldset.collapsible .fieldset-wrapper{overflow:auto;}.resizable-textarea{width:95%;}.resizable-textarea .grippie{height:9px;overflow:hidden;background:#eee url(https://2011.fossasia.org/misc/grippie.png) no-repeat center 2px;border:1px solid #ddd;border-top-width:0;cursor:s-resize;}html.js .resizable-textarea textarea{margin-bottom:0;width:100%;display:block;}.draggable a.tabledrag-handle{cursor:move;float:left;height:1.7em;margin:-0.4em 0 -0.4em -0.5em;padding:0.42em 1.5em 0.42em 0.5em;text-decoration:none;}a.tabledrag-handle:hover{text-decoration:none;}a.tabledrag-handle .handle{margin-top:4px;height:13px;width:13px;background:url(https://2011.fossasia.org/misc/draggable.png) no-repeat 0 0;}a.tabledrag-handle-hover .handle{background-position:0 -20px;}.joined + .grippie{height:5px;background-position:center 1px;margin-bottom:-2px;}.teaser-checkbox{padding-top:1px;}div.teaser-button-wrapper{float:right;padding-right:5%;margin:0;}.teaser-checkbox div.form-item{float:right;margin:0 5% 0 0;padding:0;}textarea.teaser{display:none;}html.js .no-js{display:none;}.progress{font-weight:bold;}.progress .bar{background:#fff url(https://2011.fossasia.org/misc/progress.gif);border:1px solid #00375a;height:1.5em;margin:0 0.2em;}.progress .filled{background:#0072b9;height:1em;border-bottom:0.5em solid #004a73;width:0%;}.progress .percentage{float:right;}.progress-disabled{float:left;}.ahah-progress{float:left;}.ahah-progress .throbber{width:15px;height:15px;margin:2px;background:transparent url(https://2011.fossasia.org/misc/throbber.gif) no-repeat 0px -18px;float:left;}tr .ahah-progress .throbber{margin:0 2px;}.ahah-progress-bar{width:16em;}#first-time strong{display:block;padding:1.5em 0 .5em;}tr.selected td{background:#ffc;}table.sticky-header{margin-top:0;background:#fff;}#clean-url.install{display:none;}html.js .js-hide{display:none;}#system-modules div.incompatible{font-weight:bold;}#system-themes-form div.incompatible{font-weight:bold;}span.password-strength{visibility:hidden;}input.password-field{margin-right:10px;}div.password-description{padding:0 2px;margin:4px 0 0 0;font-size:0.85em;max-width:500px;}div.password-description ul{margin-bottom:0;}.password-parent{margin:0 0 0 0;}input.password-confirm{margin-right:10px;}.confirm-parent{margin:5px 0 0 0;}span.password-confirm{visibility:hidden;}span.password-confirm span{font-weight:normal;} 11 | 12 | ul.menu{list-style:none;border:none;text-align:left;}ul.menu li{margin:0 0 0 0.5em;}li.expanded{list-style-type:circle;list-style-image:url(https://2011.fossasia.org/misc/menu-expanded.png);padding:0.2em 0.5em 0 0;margin:0;}li.collapsed{list-style-type:disc;list-style-image:url(https://2011.fossasia.org/misc/menu-collapsed.png);padding:0.2em 0.5em 0 0;margin:0;}li.leaf{list-style-type:square;list-style-image:url(https://2011.fossasia.org/misc/menu-leaf.png);padding:0.2em 0.5em 0 0;margin:0;}li a.active{color:#000;}td.menu-disabled{background:#ccc;}ul.links{margin:0;padding:0;}ul.links.inline{display:inline;}ul.links li{display:inline;list-style-type:none;padding:0 0.5em;}.block ul{margin:0;padding:0 0 0.25em 1em;} 13 | 14 | #permissions td.module{font-weight:bold;}#permissions td.permission{padding-left:1.5em;}#access-rules .access-type,#access-rules .rule-type{margin-right:1em;float:left;}#access-rules .access-type .form-item,#access-rules .rule-type .form-item{margin-top:0;}#access-rules .mask{clear:both;}#user-login-form{text-align:center;}#user-admin-filter ul{list-style-type:none;padding:0;margin:0;width:100%;}#user-admin-buttons{float:left;margin-left:0.5em;clear:right;}#user-admin-settings fieldset .description{font-size:0.85em;padding-bottom:.5em;}.profile{clear:both;margin:1em 0;}.profile .picture{float:right;margin:0 1em 1em 0;}.profile h3{border-bottom:1px solid #ccc;}.profile dl{margin:0 0 1.5em 0;}.profile dt{margin:0 0 0.2em 0;font-weight:bold;}.profile dd{margin:0 0 1em 0;} 15 | 16 | 17 | 18 | .field .field-label,.field .field-label-inline,.field .field-label-inline-first{font-weight:bold;}.field .field-label-inline,.field .field-label-inline-first{display:inline;}.field .field-label-inline{visibility:hidden;}.node-form .content-multiple-table td.content-multiple-drag{width:30px;padding-right:0;}.node-form .content-multiple-table td.content-multiple-drag a.tabledrag-handle{padding-right:.5em;}.node-form .content-add-more .form-submit{margin:0;}.node-form .number{display:inline;width:auto;}.node-form .text{width:auto;}.form-item #autocomplete .reference-autocomplete{white-space:normal;}.form-item #autocomplete .reference-autocomplete label{display:inline;font-weight:normal;}#content-field-overview-form .advanced-help-link,#content-display-overview-form .advanced-help-link{margin:4px 4px 0 0;}#content-field-overview-form .label-group,#content-display-overview-form .label-group,#content-copy-export-form .label-group{font-weight:bold;}table#content-field-overview .label-add-new-field,table#content-field-overview .label-add-existing-field,table#content-field-overview .label-add-new-group{float:left;}table#content-field-overview tr.content-add-new .tabledrag-changed{display:none;}table#content-field-overview tr.content-add-new .description{margin-bottom:0;}table#content-field-overview .content-new{font-weight:bold;padding-bottom:.5em;}.advanced-help-topic h3,.advanced-help-topic h4,.advanced-help-topic h5,.advanced-help-topic h6{margin:1em 0 .5em 0;}.advanced-help-topic dd{margin-bottom:.5em;}.advanced-help-topic span.code{background-color:#EDF1F3;font-family:"Bitstream Vera Sans Mono",Monaco,"Lucida Console",monospace;font-size:0.9em;padding:1px;}.advanced-help-topic .content-border{border:1px solid #AAA} 19 | .ctools-locked{color:red;border:1px solid red;padding:1em;}.ctools-owns-lock{background:#FFFFDD none repeat scroll 0 0;border:1px solid #F0C020;padding:1em;}a.ctools-ajaxing,input.ctools-ajaxing,button.ctools-ajaxing,select.ctools-ajaxing{padding-right:18px !important;background:url(../../../all/modules/ctools/images/status-active.gif) right center no-repeat;}div.ctools-ajaxing{float:left;width:18px;background:url(../../../all/modules/ctools/images/status-active.gif) center center no-repeat;} 20 | .fake-leaf{font-size:8pt;font-style:italic;}li.start-collapsed ul{display:none;} 21 | .views-exposed-form .views-exposed-widget{float:left;padding:.5em 1em 0 0;}.views-exposed-form .views-exposed-widget .form-submit{margin-top:1.6em;}.views-exposed-form .form-item,.views-exposed-form .form-submit{margin-top:0;margin-bottom:0;}.views-exposed-form label{font-weight:bold;}.views-exposed-widgets{margin-bottom:.5em;}html.js a.views-throbbing,html.js span.views-throbbing{background:url(../../../all/modules/views/images/status-active.gif) no-repeat right center;padding-right:18px;}div.view div.views-admin-links{font-size:xx-small;margin-right:1em;margin-top:1em;}.block div.view div.views-admin-links{margin-top:0;}div.view div.views-admin-links ul{margin:0;padding:0;}div.view div.views-admin-links li{margin:0;padding:0 0 2px 0;z-index:201;}div.view div.views-admin-links li a{padding:0;margin:0;color:#ccc;}div.view div.views-admin-links li a:before{content:"[";}div.view div.views-admin-links li a:after{content:"]";}div.view div.views-admin-links-hover a,div.view div.views-admin-links:hover a{color:#000;}div.view div.views-admin-links-hover,div.view div.views-admin-links:hover{background:transparent;}div.view div.views-hide{display:none;}div.view div.views-hide-hover,div.view:hover div.views-hide{display:block;position:absolute;z-index:200;}div.view:hover div.views-hide{margin-top:-1.5em;}.views-view-grid tbody{border-top:none;} 22 | .print-content{font-family:Tahoma;font-size:11px;line-height:1.5;}.print-content a{text-decoration:none;}.print-breadcrumb{display:none;height:0px;}.print-content th,.print-content td{padding:0.5em;}.schedule-table tr th,.schedule-table-friday tr th{height:60px;text-align:center;}.schedule-table tr,.schedule-table-friday tr{border-left:1px solid #CCCCCC;}#logo-title{width:500px;}#site-slogan{font-size:1.9em;margin:32px 0px 0px 0px;font-weight:normal;}#logo-image{padding-top:30px;}#header-blocks{padding-top:0px;}.speaker-list .item-list ul{padding:0px;margin:0px;list-style:none;}.speaker-list .item-list ul li{float:left;display:block;margin:5px 10px;padding:7px 2px 2px 2px;border:1px solid #BBBBBB;background-color:#FFFFFF;width:130px;height:205px;}.speaker-list .item-list ul li:hover{border:1px solid #FFFFFF;background-color:#BE7300;}.speaker-list .item-list ul li:hover a{color:#FFFFFF;}.speaker-list .item-list ul li .views-field-title{text-align:center;font-weight:bold;}.speaker-list .item-list ul li .field-content{text-align:center;display:block;}.speaker-list .item-list ul li img{border:1px solid #BBBBBB;background:none;padding:0px;}.speaker-list .item-list ul li:hover img{border:1px solid #FFFFFF;}.block-speaker-list .item-list ul{padding:0px;margin:0px;list-style:none;}.block-speaker-list .item-list ul li{float:left;display:block;margin:5px 12px;padding:0px 0px 0px 0px;border:none;background:none;width:102px;}.block-speaker-list .item-list ul li img{border:1px solid #BBBBBB;background-color:#FFFFFF;padding:4px;float:left;margin:0px 5px;}.block-speaker-list .item-list ul li:hover img{border:1px solid #FFFFFF;background-color:#BE7300;}.block-speaker-list .item-list ul li:hover a{text-decoration:underline;}.block-speaker-list .item-list ul li .field-content{text-align:center;display:block;font-size:0.95em;}.block-speaker-list .more-link{float:none;clear:both;}.block-views .views-field-field-sponsor-logo-fid{text-align:center;}.view-sponsor-list .views-row{margin:10px 0px 0px 0px;}.project-list ul{padding:0px;margin:0px;}.project-list ul li{background:none;border:none;display:block;float:left;padding:5px;overflow:hidden;padding:2px 0px 3px 0px;text-align:center;width:110px;}.project-list ul li img{vertical-align:middle;padding:2px;border:2px solid #F2F2F2;}.project-list ul li a:hover img{border:2px solid #BE7300;}.clearfix{float:none;clear:both;}img.imagefield-field_speaker_avatar,img.imagecache-speaker_avatar{border:1px solid #BBBBBB;padding:4px;background-color:#FFFFFF;}#content-bottom #content-bottom-five .region-count-2{margin-top:10px;}#closure .block{float:left;}#content-top-block .block{background-color:#F2F2F2;border-color:#222222 #FFFFFF #FFFFFF;border-right:1px solid #FFFFFF;border-style:none solid solid;border-width:medium 1px 1px;margin-bottom:10px;}#content-top-block .block-inner{border-color:#999999 #C4C4C4 #222222;border-left:1px solid #C4C4C4;border-right:1px solid #C4C4C4;border-style:solid solid none;border-width:1px 1px medium;padding:30px 10px 10px;position:relative;}#content-top-block h2.title{background:url(../../../all/themes/fever/images/sidebar_header_right.png) no-repeat scroll right top transparent;display:inline-block;height:20px;left:-2px;padding:5px 20px 5px 10px;position:absolute;top:-1px;}.view-user-coming table tr:hover,.view-user-coming-2011 table tr:hover{background-color:#DDDDDD;}.view-user-coming table thead tr,.view-user-coming-2011 table thead tr{background-color:#DDDDDD;}#designed-by{color:#EDEDED;}#designed-by a{color:#BE7300;}.view-user-coming .views-field-value,.view-user-coming .views-field-value-3,.view-user-coming-2011 .views-field-value,.view-user-coming .views-field-value-3{width:150px;}table.schedule-table tr td{padding:0px;}table.schedule-table tr td .time-block{display:block;margin-bottom:-1px;margin-right:-1px;padding:0px;height:90px;border-right:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC;}table.schedule-table tr td .time-block a,table.schedule-table-friday a,table.schedule-table-minidebconf a{display:block;font-weight:bold;}.time-block-content{display:block;padding:5px 10px;}table.schedule-table tr td .time-block:hover{}table.schedule-table tr td .time-block .view-schedule-detail,table.schedule-table-friday .view-schedule-detail{float:right;}.schedule-table tr th{padding:0px;}.schedule-table tr th .tb-title{border-right:1px solid #CCCCCC;margin:0px -1px 0px 0px;height:60px;display:block;}div.hide{visibility:hidden;height:0px;display:absolute;margin:0px;padding:0px;}div.relax{text-align:center;font-weight:bold;}table.schedule-table-friday tr td{border-right:1px solid #CCCCCC;border-bottom:1px solid #CCCCCC;}table.schedule-table tr td .time-block .view-schedule-detail a,table.schedule-table-friday .view-schedule-detail a,table.schedule-table-minidebconf .view-schedule-detail a,table.schedule-table tr td .time-block .view-schedule-detail a:link,table.schedule-table-friday .view-schedule-detail a:link,table.schedule-table-minidebconf .view-schedule-detail a:link,table.schedule-table tr td .time-block .view-schedule-detail a:visited,table.schedule-table-friday .view-schedule-detail a:visited,table.schedule-table-minidebconf .view-schedule-detail a:visited{color:#222222;font-style:italic;font-weight:normal;}table.schedule-table tr td .time-block .view-schedule-detail a:hover,table.schedule-table-friday .view-schedule-detail a:hover,table.schedule-table-minidebconf .view-schedule-detail a:hover{color:#BE7300;}table.schedule-table-friday tr th{border-right:1px solid #CCCCCC;}.noderelationships-backref-view{margin:0px;}.noderelationships-backref-view dt{display:none;}.noderelationships-backref-view dd{padding:0px;margin:0px;}.sidebar-left #sidebar-left,.two-sidebars #sidebar-left,.two-sidebars #content{float:none;display:block;width:100%;}.schedule-table-minidebconf tr td{padding:5px;margin:0px;border-bottom:1px solid #CCCCCC;}.schedule-table-minidebconf .view-schedule-detail .views-row{display:inline-block;padding:0px 0px 0px 10px;}.view-field-topic-speaker-ref table{width:100%;}.view-field-topic-speaker-ref table tr td{text-align:center;}.view-topic-views h3,.view-topic-views-2011 h3{font-size:11px;font-weight:bold;margin:10px 0px 0px 0px;}.view-topic-views h3 a,.view-topic-views-2011 h3 a{color:#BE7300;}.view-topic-views .views-row,.view-topic-views-2011 .views-row{display:inline-block;padding:3px 0px 0px 10px;}.view-topic-views .views-row a,.view-topic-views-2011 .views-row a{color:#222222;font-style:italic;}.view-topic-views .views-row a:hover,.view-topic-views-2011 .views-row a:hover{color:#BE7300;}a.block-link{display:block;}.print-syslink{text-align:right;display:block;margin:5px 15px;}.profile .picture{margin:30px 0 0 0;}#block-block-11 div.content{padding:0;}#block-block-16 div.content{padding:5px;}#block-views-sponsor_list-block_9 div.content{padding:5px;} 23 | 24 | body{background:url(../../../all/themes/kanji/images/bg.jpg) top center repeat;background-attachment:fixed;color:#333;font-family:Arial,Verdana,Helvetica,sans-serif;font-size:12px;margin:0;padding:0;}img,a{outline:none;}a.active{font-weight:bold;}.node a{color:#1A96D4;}a{color:#333;}a:hover{text-decoration:none;}h1,h2,h3,h4,h5,h6{color:#333;}.node h1 a,.node h2 a,.node h3 a,.node h4 a,.node h5 a,.node h6 a{color:#333;text-decoration:none;}h2.title{margin:0;}input,fieldset,textarea{border:1px solid #1A96D4;}.form-text{padding:3px;}.form-submit{background:#1A96D4;color:#fff;padding:2px;}.node_read_more{font-weight:bold;}.item-list ul li,li.leaf,ul.menu li,li{list-style-image:none;list-style:disc;}blockquote{background:#F0F0F0;border-left:4px solid #1A96D4;color:#333;margin:25px 0 25px 20px;padding:5px 10px;}#top{margin:10px auto 0;padding:0;width:960px;}#header{margin:15px auto 0;padding:0;width:980px;}#searchBox{float:right;height:35px;margin:16px 0 0;padding:0;}#search{background:#333;height:34px;margin:10px;padding:5px 3px 0;}#searchBox .form-submit{margin:0 4px 0 2px;}#searchBox .form-text{border:none;margin:3px 0 0 3px;padding:3px;width:153px;}#searchBox label{display:none;}#siteName,#siteInfo{float:left;margin:0 0 5px 0;padding:0;}#siteInfo{margin-top:10px;}#siteName img#logo{float:left;margin:5px 15px 0 0;}#siteName h1{clear:both;float:left;font-size:30px;margin:10px 0 0 0;padding:0;}#siteName h1 a{color:#333;text-decoration:none;}#siteName{margin-left:10px;min-height:100px;}#siteName #siteSlogan{clear:left;float:left;font-weight:bold;margin:0;padding:0;}#siteSlogan{font-style:italic;}#content_bottom{margin:10px 0;padding:0;}#primaryMenu{clear:none;float:left;margin:0 0 10px;padding:0;width:942px;}#menuLeft{background:url(../../../all/themes/kanji/images/block-bg.png) bottom left no-repeat;float:left;height:59px;margin:0 0 0 -24px;padding:0;width:24px;}#menuRight{background:url(../../../all/themes/kanji/images/right-block-bg.png) bottom right no-repeat;clear:right;float:right;height:59px;margin:0 -24px 0 0;padding:0;width:24px;}#primaryMenu ul.sf-menu{background:#1A96D4;clear:none;float:none;height:44px;font-size:14px;margin:0;padding:0;width:100%;}#primaryMenu ul.sf-menu li{border-right:1px #ccc solid;color:#fff;display:block;float:left;font-weight:bold;list-style:none;list-style-image:none;margin:0;padding:0;position:relative;overflow:visible;width:auto;z-index:100;}#primaryMenu ul.menu li.expanded,#primaryMenu ul.menu li.expanded a{background-image:none;list-style-image:none !important;list-style:none !important;}#primaryMenu ul.sf-menu li a{color:#fff;display:block;text-decoration:none;margin:0;padding:14px;outline:none;}#primaryMenu ul li.active{background:#333;}#primaryMenu ul.sf-menu li a:hover,#primaryMenu ul.sf-menu li:hover,#primaryMenu ul.sf-menu li a.active,#primaryMenu ul.sf-menu li.active-trail{background:#333;}#primaryMenu ul.sf-menu li ul{border:1px solid #fff;left:-9999em;margin:0 0 0 -1px;padding:0;position:absolute;width:auto;}#primaryMenu ul.sf-menu li:hover ul,#primaryMenu ul.sf-menu li.hover ul{display:block;left:auto;}#primaryMenu ul.sf-menu li ul li{background:#333;clear:both;border-left:none;border-right:none;border-bottom:1px #ccc solid;float:left;height:auto;margin:0;padding:0;width:200px;}#primaryMenu ul.sf-menu li ul li a,#primaryMenu ul.sf-menu li ul li a:link,#primaryMenu ul.sf-menu li ul li a:visited{padding:12px;width:auto;}#primaryMenu ul.sf-menu li ul li.last a{border-bottom:none;}#primaryMenu ul.sf-menu li ul li a:hover,#primaryMenu ul.sf-menu li ul li a.active{background:#1A96D4;}#primaryMenu ul.sf-menu li ul li ul.menu{left:-9999em;margin:-1px 0 0 0;padding:0;position:absolute;width:auto;}#primaryMenu ul.sf-menu li ul li:hover ul.menu,#primaryMenu ul.sf-menu li ul li.hover ul.menu{display:block;left:200px;top:0;}#primaryMenu ul.sf-menu ul.menu ul.menu ul.menu{display:none;}#primaryMenu ul.sf-menu ul.menu ul.menu li:hover ul.menu,#primaryMenu ul.sf-menu ul.menu ul.menu li.hover ul.menu{display:block;left:200px;top:0;}#primaryMenu ul.sf-menu li.last,#primaryMenu ul.sf-menu li li.last,#primaryMenu li.last{border-bottom:none;}#primaryMenu ul.sf-menu ul.menu ul.menu li ul.menu li.last{border-bottom:none;}#primaryMenu ul.sf-menu ul.menu ul.menu li ul.menu li.last a{border-bottom:none;display:block;}#primaryMenu ul.sf-js-enabled li.expanded{list-style-image:none;list-style:none;}#topMenu{margin:5px 0;padding:0;text-align:right;}#topMenu li{border-right:1px solid #333;margin:0 5px 0 0;padding:0 5px 0 0;}#topMenu li.last{border-right:none;}#topMenu li a{text-decoration:none;}#topMenu li a:hover{text-decoration:underline;}#content .content{margin:5px 0;padding:0;}#content .item-list{margin:10px 0 0;}.date{background:#333;clear:none;color:#fff;float:left;font-weight:bold;line-height:12px;margin:5px 3px 0 0;padding:3px;text-align:center;width:30px;}.terms,.node-links{clear:both;}.pagedate{float:right;}.submitted{font-style:italic;font-size:11px;}#mission{background:none repeat scroll 0 0 #333333;color:#FFFFFF;font-weight:bold;margin:0 0 5px 0;padding:5px;}#mission a{color:#fff;}#container{margin:0 auto;padding:0;width:960px;}#inner{float:left;margin:0 0 5px;padding:0;}#headerWrapper{background:url(../../../all/themes/kanji/images/fader.png) transparent left top no-repeat;color:#333333;float:left;margin:0 auto;min-height:130px;padding:0 15px;width:950px;}#content_top{clear:both;margin:0;padding:0;width:100%;}#preface_top{clear:both;float:left;*float:none;margin:0;padding:0;width:100%;}#headerTop{clear:both;margin:0 11px;padding:0;width:960px;}#contentWrapper{background:#fff;border-bottom:5px solid #1A96D4;float:left;margin:0;padding:0 9px 9px;}#content .picture{float:right;}#center{float:left;margin:12px 0 0 0;min-height:300px;padding:0 10px;width:922px;}.node{border-bottom:1px dashed #333;margin:0 0 10px;padding:0 0 10px;}.one-sidebar #center{width:700px;}.two-sidebars #center{width:482px;}#content{clear:both;margin:0;padding:0;width:100%;}#postscript_bottom{clear:both;margin:0;padding:0;}#header-region{float:left;margin:0;padding:0 0 0 10px;width:100%;}.node-links{margin:5px 0;text-align:right;}.block h2 span.edit{font-size:13px;text-align:right;}.block h2 span.edit a{display:none;}.block h2:hover span.edit a{color:#fff;display:block;float:right;padding:5px;text-decoration:none;}#sidebar_last .block h2:hover span.edit a{float:left;}#breadcrumb{background:#F0F0F0;border:1px dashed #333;color:#333;font-weight:bold;margin:0 0 5px 0;padding:5px;}#breadcrumb a{color:#333;text-decoration:none;}#breadcrumb .breadcrumb{margin:0;padding:0;}#sidebar_first{float:left;}#sidebar_last{float:right;}.sidebar{margin:0;*margin-top:12px;padding:0;width:220px;}.sidebar h2{color:#fff;font-size:15px;}#sidebar_first h2{background:url(../../../all/themes/kanji/images/block-bg.png) bottom left no-repeat;margin-left:-24px;padding:9px 0 24px 26px;}#sidebar_last h2{background:url(../../../all/themes/kanji/images/right-block-bg.png) bottom right no-repeat;clear:both;margin-right:-24px;padding:9px 27px 24px 20px;text-align:right;*width:197px;}.sidebar .block .content{background-color:#F0F0F0;margin:0;padding:10px;}.sidebar .block .with-subject{border:none;margin-top:-27px;*margin-top:-34px;}.sidebar .block{margin:0 0 10px;}#sidebar_first .even h2{background:url(../../../all/themes/kanji/images/block-bg-black.png) bottom left no-repeat;}#sidebar_last .odd h2{background:url(../../../all/themes/kanji/images/right-block-bg-black.png) bottom right no-repeat;}div.messages,div.help,div.webform-confirmation{border-style:solid;border-width:4px;font-weight:bold;margin:0 0 5px 0;overflow:hidden;padding:5px;}div.messages ul,div.webform-confirmation ul{padding-bottom:0;}#content div.messages p,#content div.help p,div.webform-confirmation p{padding-bottom:0;}div.status{background-color:#F0F0F0;border-color:#3E642F;color:#3E642F;}div.warning{background:#FFFFDD;border-color:#745500;color:#993300;margin-bottom:10px;}div.error{background-color:#eee;border-color:#CC0000;color:#970F00;}div.error ul li{color:#970F00;}.help{background-color:#E4EEF8;border-color:#57718A;color:#292929;}div.messages ul,div.content-help .help ul{list-style-position:inside;}div.messages a:link,div.messages a:visited,.help a:link,.help a:visited,.help .more-help-link a:link,.help .more-help-link a:visited{color:#333;text-decoration:underline;}div.messages a:hover,div.messages a:active,.help a:hover,.help a:active,.help .more-help-link a:hover,.help .more-help-link a:active,div.messages em{color:#333;text-decoration:none;}ul.pager{margin:20px 0;padding:0;}ul.pager li{margin:0 0 10px 0;padding:0;}.item-list .pager li{padding:0;}ul.pager li a{background:#1A96D4;color:#fff;font-weight:bold;padding:5px;text-decoration:none;}ul.pager li.pager-current,ul.pager li a:hover{background:#333;color:#fff;font-weight:bold;padding:5px;text-decoration:none;}#footer{clear:both;margin:0 auto 10px;padding:0;width:960px;}#footer .footer-text{color:#fff;margin:0 0 10px;padding:0;text-align:center;}#footer .footer-text a{color:#fff;}.blockregion .block{margin:0 10px 0 0;min-width:200px;float:left;width:auto;}.blockregion .block h2{background:#1A96D4;color:#fff;margin:0;padding:5px;}.blockregion .block .content{background:#F0F0F0;margin:0 0 10px;min-height:170px;min-width:200px;padding:5px;}.block-region{border:2px dashed #333;background:#ccc;color:#333;font-weight:bold;}.blockregion h2{font-size:15px;}#comments{margin:10px 0;padding:0;}#comments h3{margin:2px 0 0 0;padding:0;}#comments .comment-count{background:#333;}#comments .comment-count h2{margin:0 0 10px;color:#fff;padding:5px;}.comment .permalink{background:#333;clear:left;float:left;padding:3px;}.comment .permalink a{color:#fff;font-weight:bold;text-decoration:none;}.comment .links{float:right;}.comment .links a{color:#1A96D4;font-weight:bold;text-decoration:none;}.comment{background:#F0F0F0;border:1px dashed #ccc;margin:0 0 10px 0;padding:5px 10px 10px;}.new{color:#f00;}#container .view-tweets ul{padding:0 0 0.25em 0;}#container .view-tweets ul li{background:url(../../../all/themes/kanji/images/twitter-list.png) top left no-repeat !important;list-style:none;margin-left:0;padding-left:30px;}a.feed-icon img{margin-bottom:5px;}#forum table{width:100%;} 25 | 26 | 27 | 28 | 29 | #superfish .menu,#superfish .menu *{margin:0;padding:0;list-style:none;}#superfish .menu{line-height:1.0;}#superfish .menu ul{position:absolute;top:-999em;width:15em;}#superfish .menu ul li{width:100%;}#superfish .menu li:hover{visibility:inherit;}#superfish .menu li{float:left;position:relative;}#superfish .menu a{display:block;position:relative;}#superfish .menu li:hover ul,#superfish .menu li.sfHover ul{left:0;top:26px;z-index:99;}#superfish ul.menu li:hover li ul,#superfish ul.menu li.sfHover li ul{top:-999em;}#superfish ul.menu li li:hover ul,#superfish ul.menu li li.sfHover ul{left:15em;top:0;}#superfish ul.menu li li:hover li ul,#superfish ul.menu li li.sfHover li ul{top:-999em;}#superfish ul.menu li li li:hover ul,#superfish ul.menu li li li.sfHover ul{left:15em;top:0;}#superfish .menu a.sf-with-ul{padding-right:2.25em;min-width:1px;}.sf-sub-indicator{position:absolute;display:block;right:.75em;top:.75em;width:10px;height:10px;text-indent:-999em;overflow:hidden;background:url(../../../all/themes/kanji/sf/images/arrows-ffffff.png) no-repeat -10px -100px;}a > .sf-sub-indicator{top:.6em;background-position:0 -100px;}a:focus > .sf-sub-indicator,a:hover > .sf-sub-indicator,a:active > .sf-sub-indicator,li:hover > a > .sf-sub-indicator,li.sfHover > a > .sf-sub-indicator{background-position:-10px -100px;}#superfish .menu ul .sf-sub-indicator{background-position:-10px 0;}#superfish .menu ul a > .sf-sub-indicator{background-position:0 0;}#superfish .menu ul a:focus > .sf-sub-indicator,#superfish .menu ul a:hover > .sf-sub-indicator,#superfish .menu ul a:active > .sf-sub-indicator,#superfish .menu ul li:hover > a > .sf-sub-indicator,#superfish .menu ul li.sfHover > a > .sf-sub-indicator{background-position:-10px 0;} 30 | 31 | #superfish{background:#2C788F;width:100%;height:26px;}#superfish h2{height:0;overflow:hidden;position:absolute;}#superfish .menu{float:left;margin:0;}#superfish .menu a{padding:6px 12px 8px;text-decoration:none;}#superfish .menu a,#superfish .menu a:visited{color:#FFF;}#superfish .menu li{background:#2C788F;}#superfish .menu li li{background:#2C788F;}#superfish .menu li li li{background:#2C788F;}#superfish .menu li:hover,#superfish .menu li.sfHover,#superfish .menu a:focus,#superfish .menu a:hover,#superfish .menu a:active,#superfish .menu a.active{background:#14424F;outline:0;} 32 | --------------------------------------------------------------------------------