<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://wiki.meego.com/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://wiki.meego.com/index.php?title=Special:Contributions/Alanduane&amp;feed=atom&amp;limit=50&amp;target=Alanduane&amp;year=&amp;month=</id>
		<title>MeeGo wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://wiki.meego.com/index.php?title=Special:Contributions/Alanduane&amp;feed=atom&amp;limit=50&amp;target=Alanduane&amp;year=&amp;month="/>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Special:Contributions/Alanduane"/>
		<updated>2013-05-22T14:26:28Z</updated>
		<subtitle>From MeeGo wiki</subtitle>
		<generator>MediaWiki 1.16.2</generator>

	<entry>
		<id>http://wiki.meego.com/Quality/QA-tools/TDriver/Getting_Started</id>
		<title>Quality/QA-tools/TDriver/Getting Started</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Quality/QA-tools/TDriver/Getting_Started"/>
				<updated>2010-12-16T08:47:00Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: fix two command lines.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Testability Driver Getting Started Guide =&lt;br /&gt;
&lt;br /&gt;
This page describes the installation of the Testability Driver (TDriver) on your host machine.&lt;br /&gt;
&lt;br /&gt;
== Installing required packages from repositories ==&lt;br /&gt;
&lt;br /&gt;
We provide repositories for Fedora 13 and Ubuntu 10.04/10.10, and more will be added as soon as it's possible from OBS. For other platforms and versions you will need to compile the Qt components from source. &lt;br /&gt;
&lt;br /&gt;
First wee need to enable the Testing:Tools repository. See the [http://wiki.meego.com/Quality/QA-tools/How_to_set_up_repositories How to set up repositories for QA-tools] guide.&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu 10.04 / 10.10 === &lt;br /&gt;
&lt;br /&gt;
TDriver requires Rubygems and xml libraries:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install ruby rubygems ruby1.8-dev libxslt-dev libxml2-dev &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We are ready to install TDriver packages, so skip to [[#Installing TDriver|Installing TDriver]].&lt;br /&gt;
&lt;br /&gt;
=== Fedora 13 === &lt;br /&gt;
&lt;br /&gt;
Unfortunately Fedora 13 does not have the required Ruby 1.8.7, so we need to compile and install it first. (If you do not want to compile it yourself, you can download the packages from [https://github.com/leamas/diaspora/downloads here]). &lt;br /&gt;
&lt;br /&gt;
Compiling ruby (skip this step if you downloaded the packages)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo yum install rpmdevtools # &lt;br /&gt;
rpmdev-setuptree&lt;br /&gt;
sudo yum install yum-utils fedora-release-rawhide gcc&lt;br /&gt;
yumdownloader --enablerepo=rawhide --source ruby rubygems&lt;br /&gt;
sudo yum install $( rpm -qRp ruby-*src.rpm | grep -v rpmlib) gcc-g++&lt;br /&gt;
rpmbuild --rebuild ruby-*src.rpm # Compilation will take a few minutes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Install the ruby packges that were created:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd ~&lt;br /&gt;
sudo yum localinstall --nogpgcheck   \&lt;br /&gt;
                    rpmbuild/*/*/ruby-1.8.7.*.rpm         \&lt;br /&gt;
                    rpmbuild/*/*/ruby-libs-1.8.7.302*.rpm    \&lt;br /&gt;
                    rpmbuild/*/*/ruby-devel-1.8.7.302*.rpm   \&lt;br /&gt;
                    rpmbuild/*/*/ruby-irb-1.8.7.302*.noarch.rpm \&lt;br /&gt;
                    rpmbuild/*/*/ruby-rdoc-1.8.7.302*.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next we need rubygems:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
rpmbuild --rebuild rubygems-*src.rpm&lt;br /&gt;
sudo yum localinstall --nogpgcheck rpmbuild/*/*/rubygems-1.3.7*.noarch.rpm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Install other requirements, required to build native dependencies for ruby gems:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo yum install libxslt-devel libxml2-devel&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We are ready to install TDriver packages, so skip to [[#Installing TDriver|Installing TDriver]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to compile the Qt components. Skip to [[#Compilation|compilation]] .&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Compiling TDriver from git == &lt;br /&gt;
&lt;br /&gt;
TDriver components can be installed on most Qt and Ruby supported platforms. On other Linux distributions, search for the equivalent packages that are described in [[#Ubuntu 10.10|Ubuntu 10.10]] and [[#Fedora 14|Fedora 14]] build requirements.&lt;br /&gt;
&lt;br /&gt;
=== Fedora 14 ===&lt;br /&gt;
&lt;br /&gt;
Build requirements:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo yum install libxtst-devel libqtwebkit-devel qt4-qmake gcc-c++ libqt4-devel&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Build requirements for Ruby components:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo yum install libxslt-devel libxml2-devel&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Compilation === &lt;br /&gt;
&lt;br /&gt;
Compile and install qttas-server:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git clone http://git.gitorious.org/tdriver/agent_qt.git # Note that this our development master. See the list of available tags if you want to checkout a released version.&lt;br /&gt;
cd agent_qt &lt;br /&gt;
qmake -r CONFIG+=no_mobility &lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Visualizer:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
git clone http://git.gitorious.org/tdriver/visualizer.git&lt;br /&gt;
cd visualizer&lt;br /&gt;
qmake -r &lt;br /&gt;
make &lt;br /&gt;
sudo make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Installing TDriver == &lt;br /&gt;
&lt;br /&gt;
Install the Testabiity Driver qt plugin. This will install everything required.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo gem install testability-driver-qt-sut-plugin # This will take a few minutes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Try that it works&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
export RUBYOPT=&amp;quot;rubygems&amp;quot; # This should go to your login file e.g. .bashrc&lt;br /&gt;
ruby -e &amp;quot;require 'tdriver'&amp;quot; &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The command above prints out nothing, the ruby components are installed successfully.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Ubuntu 10.04 === &lt;br /&gt;
To install visualizer:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo apt-get install visualizer qttas-server &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fedora 13 === &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo yum install --nogpgcheck testability-driver-visualizer qttas-server&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Testing the installation == &lt;br /&gt;
&lt;br /&gt;
Everything should now be installed. We need an application to test it with, so let's get one. Let's use a classic calculator application that is used in TDriver tests.&lt;br /&gt;
&lt;br /&gt;
Let's get it from git and compile it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo yum install git qt4-qmake gcc-c++&lt;br /&gt;
git clone http://git.gitorious.org/tdriver/tests.git&lt;br /&gt;
cd tests/calculator&lt;br /&gt;
qmake # in Fedora qmake command is qmake-qt4&lt;br /&gt;
make&lt;br /&gt;
sudo make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''For ubuntu 10.04'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
  sudo apt-get install git-core qt4-qmake qt4-dev-tools build-essential&lt;br /&gt;
  git clone http://git.gitorious.org/tdriver/tests.git&lt;br /&gt;
  cd tests/calculator&lt;br /&gt;
  qmake &lt;br /&gt;
  make&lt;br /&gt;
  sudo make install&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now we are ready to start the qttas-server and the calculator&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
qttasserver &amp;amp;&lt;br /&gt;
calculator -testability &amp;amp;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You should see a simple calculator application. Next, let's start the visualizer.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
tdriver_visualizer &amp;amp; # If you compiled visualizer from source, it will be under /opt/tdriver_visualizer&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the visualizer, select File-&amp;gt;Refresh. You should see a picture of the calculator application. If you hover your mouse above the picture, the visualizer will highlight the object that is currently under the cursor. &lt;br /&gt;
&lt;br /&gt;
[[File:Visualizer.png|800px|Visualizer window (click to enlarge)]]&lt;br /&gt;
&lt;br /&gt;
Right click on an element, for example &amp;quot;1&amp;quot; button, and select &amp;quot;send tap to SUT&amp;quot;. The calculator should receive a click to the &amp;quot;1&amp;quot; button. If so, congratulations you have a working TDriver environment!&lt;br /&gt;
&lt;br /&gt;
== Running Automated Tests == &lt;br /&gt;
&lt;br /&gt;
We are ready to run an automated test. We will need [[http://cukes.info Cucumber]], so let's install it:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo gem install cucumber&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We still need to edit the tdriver parameters. Add the following line to &amp;lt;tt&amp;gt;/etc/tdriver/tdriver_parameters.xml&amp;lt;/tt&amp;gt; inside&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;parameters&amp;gt;&amp;lt;/tt&amp;gt; tag:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;parameter name=&amp;quot;default_sut&amp;quot; value=&amp;quot;sut_qt&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We can use the tests repository we got the calculator from as an example. From there, we will run one test:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# cd &amp;lt;wherever you cloned the tdriver/tests repository&amp;gt;&lt;br /&gt;
cd test/&lt;br /&gt;
cucumber features/qt_widget_tap.feature:8 # Run one scenario from one feature&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Something like this should be displayed on the console:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
~/tests/test$ cucumber features/qt_widget_tap.feature:8&lt;br /&gt;
@qt_linux @qt_windows @qt_symbian @qt_meego&lt;br /&gt;
Feature: MobyBehaviour::QT::Widget#tap&lt;br /&gt;
  As a test script writer&lt;br /&gt;
  I want to use tap method to simulate user tapping or clicking an object,&lt;br /&gt;
  so that I can test the MobyBehaviour::QT::Widget behaviour&lt;br /&gt;
&lt;br /&gt;
  Scenario: Tap a QWidget button                           # features/qt_widget_tap.feature:8&lt;br /&gt;
    Given I launch application &amp;quot;calculator&amp;quot;                # features/step_definitions/feature_common.rb:65&lt;br /&gt;
    When I execute &amp;quot;@app.Button(:name =&amp;gt; 'oneButton').tap&amp;quot; # features/step_definitions/feature_common.rb:165&lt;br /&gt;
    Then The calculator display says &amp;quot;1&amp;quot;                   # features/step_definitions/feature_common.rb:235&lt;br /&gt;
&lt;br /&gt;
1 scenario (1 passed)&lt;br /&gt;
3 steps (3 passed)&lt;br /&gt;
0m1.598s&lt;br /&gt;
~/tests/test$ &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Everything should be up and running now. You are ready for test development!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Testing Your Application === &lt;br /&gt;
&lt;br /&gt;
If your application is a Meegotouch application, the qttas plugin will be loaded automatically. If it is a standard Qt application, pass &amp;quot;-testability&amp;quot; as a command line parameter.&lt;br /&gt;
&lt;br /&gt;
=== Connecting to your MeeGo device === &lt;br /&gt;
&lt;br /&gt;
You need a working network connection to the device. For the N900, see the [[ARM/N900/Tips and Tricks/N900 USB Networking|N900 Networkig Guide]]. TDriver works over TCP/IP, so any device in the network can be tested.&lt;br /&gt;
&lt;br /&gt;
As an example, connection to the N900 we add the N900 ip address into /etc/tdriver/tdriver_parameters.xml:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;sut id=&amp;quot;sut_qt&amp;quot; template=&amp;quot;qt&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;parameter name=&amp;quot;qttas_server_ip&amp;quot; value=&amp;quot;192.168.2.15&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;!-- other parameters.... --&amp;gt;&lt;br /&gt;
&amp;lt;/sut&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On the device, make sure the package &amp;quot;qttas-server&amp;quot; is installed and &amp;quot;qttasserver&amp;quot; is running as user. If you just installed the package, you will need to restart the applications to make them load the qttas plugin. On the N900, the qttasserver should start automatically and all supported applications should be available.&lt;br /&gt;
&lt;br /&gt;
If you refresh the visualizer, you should see the application content that is running on the N900. Note - If you edit the configuration file, the visualizer must be restarted.&lt;br /&gt;
&lt;br /&gt;
== What's Next ==&lt;br /&gt;
&lt;br /&gt;
=== TODO === &lt;br /&gt;
&lt;br /&gt;
* Tutorial for test creation&lt;br /&gt;
* Making your application load the testability plug-in&lt;br /&gt;
* Making your application testable&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Links === &lt;br /&gt;
&lt;br /&gt;
* [https://projects.forum.nokia.com/Testabilitydriver/wiki/ TDriver wiki]&lt;br /&gt;
* [https://projects.forum.nokia.com/dav/Testabilitydriver/doc/api/qt_linux/ API Documentation]&lt;br /&gt;
* [http://gitorious.org/tdriver/ Gitorious project]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page_(zh_CN)</id>
		<title>Main Page (zh CN)</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page_(zh_CN)"/>
				<updated>2010-12-03T04:59:06Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: /* 开发者指南 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main_Page | English]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= 组织及管理 =&lt;br /&gt;
&lt;br /&gt;
MeeGo是一项由MeeGo Technical Steering Group（TSG 技术指导小组）引导的开源项目。 其管理模型基于精英管理理念以及开源社区的价值观念和最佳实践。MeeGo项目由Linux基金提供赞助。 &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo项目组织及管理概要（tbd）]&lt;br /&gt;
&lt;br /&gt;
任何人都可以参加两周一次的 [[Technical Steering Group meetings | TSG会议]] 以了解关于MeeGo项目的各项决策。&lt;br /&gt;
&lt;br /&gt;
== MeeGo项目职能 ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office | 社区]]&lt;br /&gt;
* [[Localization team|本地化]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office 规划方案]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality | 质量]]&lt;br /&gt;
* [[Release_Engineering|发布]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design UI设计]&lt;br /&gt;
* [[SDK | 开发套件]]&lt;br /&gt;
* [[Architecture | 体系结构]]&lt;br /&gt;
&lt;br /&gt;
= 用户 =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ | MeeGo上网本FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook 在上网本上安装MeeGo]&lt;br /&gt;
* [[Devices|支持设备]]&lt;br /&gt;
&lt;br /&gt;
= 开发者 =&lt;br /&gt;
== 开发者指南 ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide | 开发者指南]] | [[MeeGo_开发指南_1.0]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide | MeeGo移植指南]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|基于ARM的设备(N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 发布进度 ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= 社区 =&lt;br /&gt;
&lt;br /&gt;
== 参与贡献 MeeGo 项目 ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== 会议 ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== MeeGo 年会 ==&lt;br /&gt;
&lt;br /&gt;
=== 2011 春 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== 2010 秋 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== 资源 ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page"/>
				<updated>2010-12-03T04:54:25Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: Undo revision 22885 by Alanduane (Talk)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Structure and Governance =&lt;br /&gt;
&lt;br /&gt;
MeeGo is an open source project led by the MeeGo Technical Steering Group (TSG). The governance model is based on meritocracy and the best practices and values of the Open Source culture. The MeeGo project lives under the auspices of the Linux Foundation. &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo Project Structure and Governance Overview]&lt;br /&gt;
&lt;br /&gt;
Anyone can attend the bi-weekly [[Technical Steering Group meetings]] to learn more about the decisions being made in the MeeGo project.&lt;br /&gt;
&lt;br /&gt;
== MeeGo Project Functions ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office]]&lt;br /&gt;
* [[Localization team|Localization]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office Program Office]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality]]&lt;br /&gt;
* [[Release_Engineering|Release Engineering]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design User Interface Design]&lt;br /&gt;
* [[SDK]]&lt;br /&gt;
* [[Architecture]]&lt;br /&gt;
&lt;br /&gt;
= User =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook Install MeeGo on your netbook]&lt;br /&gt;
* [[Devices|Supported devices]]&lt;br /&gt;
&lt;br /&gt;
= Developer =&lt;br /&gt;
== Developer Guide ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|ARM based devices (N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Release Process ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= Community =&lt;br /&gt;
&lt;br /&gt;
== Contributing to MeeGo ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== Meetings ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== Annual MeeGo Conference ==&lt;br /&gt;
&lt;br /&gt;
=== Spring 2011 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== Fall 2010 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page_(zh_CN)</id>
		<title>Main Page (zh CN)</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page_(zh_CN)"/>
				<updated>2010-12-03T04:49:56Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Main_Page | English]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
= 组织及管理 =&lt;br /&gt;
&lt;br /&gt;
MeeGo是一项由MeeGo Technical Steering Group（TSG 技术指导小组）引导的开源项目。 其管理模型基于精英管理理念以及开源社区的价值观念和最佳实践。MeeGo项目由Linux基金提供赞助。 &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo项目组织及管理概要（tbd）]&lt;br /&gt;
&lt;br /&gt;
任何人都可以参加两周一次的 [[Technical Steering Group meetings | TSG会议]] 以了解关于MeeGo项目的各项决策。&lt;br /&gt;
&lt;br /&gt;
== MeeGo项目职能 ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office | 社区]]&lt;br /&gt;
* [[Localization team|本地化]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office 规划方案]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality | 质量]]&lt;br /&gt;
* [[Release_Engineering|发布]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design UI设计]&lt;br /&gt;
* [[SDK | 开发套件]]&lt;br /&gt;
* [[Architecture | 体系结构]]&lt;br /&gt;
&lt;br /&gt;
= 用户 =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ | MeeGo上网本FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook 在上网本上安装MeeGo]&lt;br /&gt;
* [[Devices|支持设备]]&lt;br /&gt;
&lt;br /&gt;
= 开发者 =&lt;br /&gt;
== 开发者指南 ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide | 开发者指南]] | [[MeeGo_开发指南_1.0]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|ARM based devices (N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 发布进度 ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= 社区 =&lt;br /&gt;
&lt;br /&gt;
== 参与贡献 MeeGo 项目 ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== 会议 ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== MeeGo 年会 ==&lt;br /&gt;
&lt;br /&gt;
=== 2011 春 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== 2010 秋 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== 资源 ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page"/>
				<updated>2010-12-03T04:48:22Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: add zh_CN main page link.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Structure and Governance =&lt;br /&gt;
&lt;br /&gt;
MeeGo is an open source project led by the MeeGo Technical Steering Group (TSG). The governance model is based on meritocracy and the best practices and values of the Open Source culture. The MeeGo project lives under the auspices of the Linux Foundation. &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo Project Structure and Governance Overview]&lt;br /&gt;
&lt;br /&gt;
Anyone can attend the bi-weekly [[Technical Steering Group meetings]] to learn more about the decisions being made in the MeeGo project.&lt;br /&gt;
&lt;br /&gt;
== MeeGo Project Functions ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office]]&lt;br /&gt;
* [[Localization team|Localization]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office Program Office]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality]]&lt;br /&gt;
* [[Release_Engineering|Release Engineering]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design User Interface Design]&lt;br /&gt;
* [[SDK]]&lt;br /&gt;
* [[Architecture]]&lt;br /&gt;
&lt;br /&gt;
= User =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook Install MeeGo on your netbook]&lt;br /&gt;
* [[Devices|Supported devices]]&lt;br /&gt;
&lt;br /&gt;
= Developer =&lt;br /&gt;
== Developer Guide ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|ARM based devices (N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Release Process ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= Community =&lt;br /&gt;
&lt;br /&gt;
== Contributing to MeeGo ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== Meetings ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== Annual MeeGo Conference ==&lt;br /&gt;
&lt;br /&gt;
=== Spring 2011 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== Fall 2010 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
---------&lt;br /&gt;
[[Main_Page_(zh_CN) | 中文首页]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page_(zh_CN)</id>
		<title>Main Page (zh CN)</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page_(zh_CN)"/>
				<updated>2010-12-03T04:40:27Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: /* 开发者指南 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;原始英文页面 - [[Main_Page]]&lt;br /&gt;
= 组织及管理 =&lt;br /&gt;
&lt;br /&gt;
MeeGo是一项由MeeGo Technical Steering Group（TSG 技术指导小组）引导的开源项目。 其管理模型基于精英管理理念以及开源社区的价值观念和最佳实践。MeeGo项目由Linux基金提供赞助。 &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo项目组织及管理概要（tbd）]&lt;br /&gt;
&lt;br /&gt;
任何人都可以参加两周一次的 [[Technical Steering Group meetings | TSG会议]] 以了解关于MeeGo项目的各项决策。&lt;br /&gt;
&lt;br /&gt;
== MeeGo项目职能 ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office | 社区]]&lt;br /&gt;
* [[Localization team|本地化]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office 规划方案]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality | 质量]]&lt;br /&gt;
* [[Release_Engineering|发布]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design UI设计]&lt;br /&gt;
* [[SDK | 开发套件]]&lt;br /&gt;
* [[Architecture | 体系结构]]&lt;br /&gt;
&lt;br /&gt;
= 用户 =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ | MeeGo上网本FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook 在上网本上安装MeeGo]&lt;br /&gt;
* [[Devices|支持设备]]&lt;br /&gt;
&lt;br /&gt;
= 开发者 =&lt;br /&gt;
== 开发者指南 ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide | 开发者指南]] | [[MeeGo_开发指南_1.0]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|ARM based devices (N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 发布进度 ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= 社区 =&lt;br /&gt;
&lt;br /&gt;
== 参与贡献 MeeGo 项目 ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== 会议 ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== MeeGo 年会 ==&lt;br /&gt;
&lt;br /&gt;
=== 2011 春 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== 2010 秋 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== 资源 ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page_(zh_CN)</id>
		<title>Main Page (zh CN)</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page_(zh_CN)"/>
				<updated>2010-12-03T04:39:56Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: /* 开发者指南 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;原始英文页面 - [[Main_Page]]&lt;br /&gt;
= 组织及管理 =&lt;br /&gt;
&lt;br /&gt;
MeeGo是一项由MeeGo Technical Steering Group（TSG 技术指导小组）引导的开源项目。 其管理模型基于精英管理理念以及开源社区的价值观念和最佳实践。MeeGo项目由Linux基金提供赞助。 &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo项目组织及管理概要（tbd）]&lt;br /&gt;
&lt;br /&gt;
任何人都可以参加两周一次的 [[Technical Steering Group meetings | TSG会议]] 以了解关于MeeGo项目的各项决策。&lt;br /&gt;
&lt;br /&gt;
== MeeGo项目职能 ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office | 社区]]&lt;br /&gt;
* [[Localization team|本地化]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office 规划方案]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality | 质量]]&lt;br /&gt;
* [[Release_Engineering|发布]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design UI设计]&lt;br /&gt;
* [[SDK | 开发套件]]&lt;br /&gt;
* [[Architecture | 体系结构]]&lt;br /&gt;
&lt;br /&gt;
= 用户 =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ | MeeGo上网本FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook 在上网本上安装MeeGo]&lt;br /&gt;
* [[Devices|支持设备]]&lt;br /&gt;
&lt;br /&gt;
= 开发者 =&lt;br /&gt;
== 开发者指南 ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide | 开发者指南]] [[MeeGo_开发指南_1.0]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|ARM based devices (N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 发布进度 ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= 社区 =&lt;br /&gt;
&lt;br /&gt;
== 参与贡献 MeeGo 项目 ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== 会议 ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== MeeGo 年会 ==&lt;br /&gt;
&lt;br /&gt;
=== 2011 春 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== 2010 秋 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== 资源 ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Main_Page_(zh_CN)</id>
		<title>Main Page (zh CN)</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Main_Page_(zh_CN)"/>
				<updated>2010-12-03T04:34:32Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: [trans_zh_CN] init the first page.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;原始英文页面 - [[Main_Page]]&lt;br /&gt;
= 组织及管理 =&lt;br /&gt;
&lt;br /&gt;
MeeGo是一项由MeeGo Technical Steering Group（TSG 技术指导小组）引导的开源项目。 其管理模型基于精英管理理念以及开源社区的价值观念和最佳实践。MeeGo项目由Linux基金提供赞助。 &lt;br /&gt;
&lt;br /&gt;
* [http://meego.com/about/governance MeeGo项目组织及管理概要（tbd）]&lt;br /&gt;
&lt;br /&gt;
任何人都可以参加两周一次的 [[Technical Steering Group meetings | TSG会议]] 以了解关于MeeGo项目的各项决策。&lt;br /&gt;
&lt;br /&gt;
== MeeGo项目职能 ==&lt;br /&gt;
&lt;br /&gt;
* [[Community Office | 社区]]&lt;br /&gt;
* [[Localization team|本地化]]&lt;br /&gt;
* [http://meego.com/about/governance/program-office 规划方案]&lt;br /&gt;
* [[Core_OS_Program | Core OS Program]]&lt;br /&gt;
* [[Handset_Program | Handset UX Program]]&lt;br /&gt;
* [[In-vehicle | In Vehicle Infotainment - IVI]]&lt;br /&gt;
* [[Quality | 质量]]&lt;br /&gt;
* [[Release_Engineering|发布]]&lt;br /&gt;
* [http://meego.com/about/governance/ui-design UI设计]&lt;br /&gt;
* [[SDK | 开发套件]]&lt;br /&gt;
* [[Architecture | 体系结构]]&lt;br /&gt;
&lt;br /&gt;
= 用户 =&lt;br /&gt;
&lt;br /&gt;
* [[MeeGo Netbook FAQ | MeeGo上网本FAQ]]&lt;br /&gt;
* [http://meego.com/devices/netbook/installing-meego-your-netbook 在上网本上安装MeeGo]&lt;br /&gt;
* [[Devices|支持设备]]&lt;br /&gt;
&lt;br /&gt;
= 开发者 =&lt;br /&gt;
== 开发者指南 ==&lt;br /&gt;
&lt;br /&gt;
* [[Developer Guide | 开发者指南]]&lt;br /&gt;
* [[Build_Infrastructure | Build Infrastructure]]&lt;br /&gt;
* [[MeeGo Porting Guide]]&lt;br /&gt;
* [[QML tutorials]] - Some tutorials to help get started with QML, the Qt Modelling Language.&lt;br /&gt;
&lt;br /&gt;
Other documents:&lt;br /&gt;
{| border=&amp;quot;1&amp;quot;&lt;br /&gt;
! Document&lt;br /&gt;
! Variety (Version)&lt;br /&gt;
! Architectures&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[ARM|ARM based devices (N900, N8x0, Beagleboard, MSM/QSD + QEMU)]]&lt;br /&gt;
|All&lt;br /&gt;
|ARM&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo_1.0_Netbook_VirtualBox|VirtualBox]]&lt;br /&gt;
|Netbook (1.0)&lt;br /&gt;
|Intel&lt;br /&gt;
|-&lt;br /&gt;
|Instructions for [[MeeGo SDK on Windows with VirtualBox]]&lt;br /&gt;
|All&lt;br /&gt;
|All&lt;br /&gt;
|-&lt;br /&gt;
|Tips for [[Developing With The Aava]]&lt;br /&gt;
|Handset/Aava&lt;br /&gt;
|Intel&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== 发布进度 ==&lt;br /&gt;
The MeeGo Release Process includes:&lt;br /&gt;
* [[Release_Engineering/Process|Release process and work flow]]&lt;br /&gt;
* [[Release_Engineering/Release_Timeline|MeeGo releases every 6 months]]&lt;br /&gt;
* [[Release_Engineering/Process|Nightly builds for developers and weekly releases will be available]]&lt;br /&gt;
&lt;br /&gt;
= 社区 =&lt;br /&gt;
&lt;br /&gt;
== 参与贡献 MeeGo 项目 ==&lt;br /&gt;
* Read our [[Community guidelines]]: [[Wiki contribution guidelines|Wiki]], [[Mailing list guidelines|mailing list]], [[Forum/Guidelines|forum]], and [[Community guidelines|more]].&lt;br /&gt;
* [[Community communication|Participate in our forums, mailing lists, and more]].&lt;br /&gt;
* [http://meego.com/about/contribution-guidelines Contribute to MeeGo].&lt;br /&gt;
* [[Build_Infrastructure/Community_Builder|Building applications]] for MeeGo&lt;br /&gt;
&lt;br /&gt;
See also [[Who's who]].&lt;br /&gt;
&lt;br /&gt;
== 会议 ==&lt;br /&gt;
&lt;br /&gt;
[[MeeGo-Meeting IRC Schedule]]&lt;br /&gt;
&lt;br /&gt;
The following groups have regular meetings, see their respective pages for details.&lt;br /&gt;
&lt;br /&gt;
* [[Technical Steering Group meetings]]&lt;br /&gt;
* [[http://wiki.meego.com/Community_Office/Meetings|Community Office meetings]]&lt;br /&gt;
* [[Localization team]]&lt;br /&gt;
&lt;br /&gt;
Regional Activities.&lt;br /&gt;
* [[Local MeeGo Networks]]&lt;br /&gt;
&lt;br /&gt;
== MeeGo 年会 ==&lt;br /&gt;
&lt;br /&gt;
=== 2011 春 ===&lt;br /&gt;
Planning has started for the [[MeeGo Conference Spring 2011|Spring 2011]]  - still WIP&lt;br /&gt;
&lt;br /&gt;
=== 2010 秋 ===&lt;br /&gt;
The [http://conference2010.meego.com/ MeeGo Conference 2010] was held at Aviva Stadium in Dublin, Ireland, November 15-17th, 2010. &lt;br /&gt;
* Videos, presentation materials and other information can be found on the [http://conference2010.meego.com/ MeeGo Conference 2010 page]. &lt;br /&gt;
* Links to blog posts, pictures and other event information are on the [[MeeGo_Conference_2010]] wiki page.&lt;br /&gt;
&lt;br /&gt;
== 资源 ==&lt;br /&gt;
* [[MeeGo FAQ]]&lt;br /&gt;
* [[Glossary|Glossary and Acronyms]]&lt;br /&gt;
* [[Community guidelines]]&lt;br /&gt;
* [[Special:PopularPages|Popular Wiki Pages]]&lt;br /&gt;
* [[Special:MostLinkedPages|Most Linked-to Pages]]&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/User:Alanduane</id>
		<title>User:Alanduane</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/User:Alanduane"/>
				<updated>2010-11-26T06:30:08Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: Created page with &amp;quot;Alan's&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Alan's&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	<entry>
		<id>http://wiki.meego.com/Talk:Quality/QA-tools/Autotest-guide</id>
		<title>Talk:Quality/QA-tools/Autotest-guide</title>
		<link rel="alternate" type="text/html" href="http://wiki.meego.com/Talk:Quality/QA-tools/Autotest-guide"/>
				<updated>2010-11-20T14:22:12Z</updated>
		
		<summary type="html">&lt;p&gt;Alanduane: Created page with &amp;quot;If the usb connection is unstable or breaks from time to time. One possible solution is removing the file: /etc/udev/rules.d/70-persistent-net.rules  and reboot.  -- Alan&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If the usb connection is unstable or breaks from time to time. One possible solution is removing the file: /etc/udev/rules.d/70-persistent-net.rules  and reboot.  -- Alan&lt;/div&gt;</summary>
		<author><name>Alanduane</name></author>	</entry>

	</feed>