Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r3157 -
      trunk/src/target/OM-2007.2/applications/openmoko-firststart2
      ([EMAIL PROTECTED])
   2. r3158 - in
      trunk/src/target/OM-2007.2/applications/openmoko-firststart2:
      data src ([EMAIL PROTECTED])
--- Begin Message ---
Author: mickey
Date: 2007-10-14 13:59:48 +0200 (Sun, 14 Oct 2007)
New Revision: 3157

Modified:
   
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-extract.in
   
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-merge.in
   
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-update.in
Log:
openmoko-firststart2: bump intltool scripts


Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-extract.in
===================================================================
--- 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-extract.in
    2007-10-13 14:30:09 UTC (rev 3156)
+++ 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-extract.in
    2007-10-14 11:59:48 UTC (rev 3157)
@@ -32,7 +32,7 @@
 ## Release information
 my $PROGRAM      = "intltool-extract";
 my $PACKAGE      = "intltool";
-my $VERSION      = "0.35.4";
+my $VERSION      = "0.36.1";
 
 ## Loaded modules
 use strict; 
@@ -237,9 +237,9 @@
 
     s/'/'/g; # '
     s/"/"/g; # "
-    s/&/&/g;
     s/&lt;/</g;
     s/&gt;/>/g;
+    s/&amp;/&/g;
 
     return $_;
 }
@@ -261,8 +261,11 @@
 
 sub type_ini {
     ### For generic translatable desktop files ###
-    while ($input =~ /^_.*=(.*)$/mg) {
-        $messages{$1} = [];
+    while ($input =~ /^(#(.+)\n)?^_.*=(.*)$/mg) {
+        if (defined($2))  {
+            $comments{$3} = $2;
+        }
+        $messages{$3} = [];
     }
 }
 

Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-merge.in
===================================================================
--- 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-merge.in  
    2007-10-13 14:30:09 UTC (rev 3156)
+++ 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-merge.in  
    2007-10-14 11:59:48 UTC (rev 3157)
@@ -35,7 +35,7 @@
 ## Release information
 my $PROGRAM = "intltool-merge";
 my $PACKAGE = "intltool";
-my $VERSION = "0.35.4";
+my $VERSION = "0.36.1";
 
 ## Loaded modules
 use strict; 
@@ -93,9 +93,24 @@
 
 my %po_files_by_lang = ();
 my %translations = ();
-my $iconv = $ENV{"ICONV"} || $ENV{"INTLTOOL_ICONV"} || "@INTLTOOL_ICONV@";
+my $iconv = $ENV{"ICONV"} || "iconv";
 my $devnull = ($^O eq 'MSWin32' ? 'NUL:' : '/dev/null');
 
+sub isProgramInPath
+{
+    my ($file) = @_;
+    # If either a file exists, or when run it returns 0 exit status
+    return 1 if ((-x $file) or (system("$file --version >$devnull") == 0));
+    return 0;
+}
+
+if (! isProgramInPath ("$iconv"))
+{
+       print STDERR " *** iconv is not found on this system!\n".
+                    " *** Without it, intltool-merge can not convert 
encodings.\n";
+       exit;
+}
+
 # Use this instead of \w for XML files to handle more possible characters.
 my $w = "[-A-Za-z0-9._:]";
 
@@ -494,16 +509,15 @@
     return $string;
 }
 
-## NOTE: deal with < - &lt; but not > - &gt;  because it seems its ok to have 
-## > in the entity. For further info please look at #84738.
 sub entity_decode
 {
     local ($_) = @_;
 
     s/&apos;/'/g; # '
     s/&quot;/"/g; # "
+    s/&lt;/</g;
+    s/&gt;/>/g;
     s/&amp;/&/g;
-    s/&lt;/</g;
 
     return $_;
 }
@@ -1017,8 +1031,8 @@
 
     if ($MULTIPLE_OUTPUT) {
         for my $lang (sort keys %po_files_by_lang) {
-           if ( ! -e $lang ) {
-               mkdir $lang or die "Cannot create subdirectory $lang: $!\n";
+           if ( ! -d $lang ) {
+               mkdir $lang or -d $lang or die "Cannot create subdirectory 
$lang: $!\n";
             }
             open OUTPUT, ">$lang/$OUTFILE" or die "Cannot open $lang/$OUTFILE: 
$!\n";
             binmode (OUTPUT) if $^O eq 'MSWin32';
@@ -1386,8 +1400,8 @@
     }
 
     for my $lang (sort keys %po_files_by_lang) {
-        if ( ! -e $lang ) {
-            mkdir $lang or die "Cannot create subdirectory $lang: $!\n";
+        if ( ! -d $lang ) {
+            mkdir $lang or -d $lang or die "Cannot create subdirectory $lang: 
$!\n";
         }
         open INPUT, "<${FILE}" or die;
         open OUTPUT, ">$lang/$OUTFILE" or die "Cannot open $lang/$OUTFILE: 
$!\n";

Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-update.in
===================================================================
--- 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-update.in 
    2007-10-13 14:30:09 UTC (rev 3156)
+++ 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/intltool-update.in 
    2007-10-14 11:59:48 UTC (rev 3157)
@@ -30,7 +30,7 @@
 
 ## Release information
 my $PROGRAM = "intltool-update";
-my $VERSION = "0.35.4";
+my $VERSION = "0.36.1";
 my $PACKAGE = "intltool";
 
 ## Loaded modules
@@ -71,7 +71,8 @@
 "sheet(?:\\.in)+|".    # ?
 "schemas(?:\\.in)+|".  # GConf specific
 "pong(?:\\.in)+|".     # DEPRECATED: PONG is not used [by GNOME] any longer.
-"kbd(?:\\.in)+";       # GOK specific. 
+"kbd(?:\\.in)+|".      # GOK specific. 
+"policy(?:\\.in)+";    # PolicyKit files
 
 my $ini_support =
 "icon(?:\\.in)+|".     # http://www.freedesktop.org/Standards/icon-theme-spec
@@ -328,8 +329,13 @@
        push @buf_i18n_ini,          "$File::Find::name" if /\.($ini_support)$/;
        push @buf_i18n_xml_unmarked, "$File::Find::name" if 
/\.(schemas(\.in)+)$/;
        }, "..";
+    find sub { 
+       push @buf_i18n_plain,        "$File::Find::name" if 
/\.($buildin_gettext_support)$/;
+       push @buf_i18n_xml,          "$File::Find::name" if /\.($xml_support)$/;
+       push @buf_i18n_ini,          "$File::Find::name" if /\.($ini_support)$/;
+       push @buf_i18n_xml_unmarked, "$File::Find::name" if 
/\.(schemas(\.in)+)$/;
+       }, "$SRCDIR/..";
 
-
     open POTFILES, $POTFILES_in or die "$PROGRAM:  there's no POTFILES.in!\n";
     @buf_potfiles = grep !/^(#|\s*$)/, <POTFILES>;
     close POTFILES;
@@ -344,7 +350,7 @@
     ## comparing with POTFILES.in
     foreach my $ignore ("POTFILES.skip", "POTFILES.ignore")
     {
-       (-s $ignore) or next;
+       (-s "$SRCDIR/$ignore") or next;
 
        if ("$ignore" eq "POTFILES.ignore")
        {
@@ -489,11 +495,15 @@
     my %in2;
     foreach (@buf_potfiles_sorted) 
     {
+        s#^$SRCDIR/../##;
+        s#^$SRCDIR/##;
        $in2{$_} = 1;
     }
 
     foreach (@buf_potfiles_ignore_sorted) 
     {
+        s#^$SRCDIR/../##;
+        s#^$SRCDIR/##;
        $in2{$_} = 1;
     }
 
@@ -501,9 +511,16 @@
 
     foreach (@buf_allfiles_sorted)
     {
-       if (!exists($in2{$_}))
+        my $dummy = $_;
+        my $srcdir = $SRCDIR;
+
+        $srcdir =~ s#^../##;
+        $dummy =~ s#^$srcdir/../##;
+        $dummy =~ s#^$srcdir/##;
+        $dummy =~ s#_build/##;
+       if (!exists($in2{$dummy}))
        {
-           push @result, $_
+           push @result, $dummy
        }
     }
 
@@ -563,16 +580,33 @@
     exit 1;
 }
 
+sub isProgramInPath
+{
+    my ($file) = @_;
+    # If either a file exists, or when run it returns 0 exit status
+    return 1 if ((-x $file) or (system("$file --version >$devnull") == 0));
+    return 0;
+}
+
+sub isGNUGettextTool
+{
+    my ($file) = @_;
+    # Check that we are using GNU gettext tools
+    if (isProgramInPath ($file))
+    {
+        my $version = `$file --version`;
+        return 1 if ($version =~ m/.*\(GNU .*\).*/);
+    }
+    return 0;
+}
+
 sub GenerateHeaders
 {
-    my $EXTRACT = "@INTLTOOL_EXTRACT@";
-    chomp $EXTRACT;
+    my $EXTRACT = $ENV{"INTLTOOL_EXTRACT"} || "/usr/bin/intltool-extract";
 
-    $EXTRACT = $ENV{"INTLTOOL_EXTRACT"} if $ENV{"INTLTOOL_EXTRACT"};
-
     ## Generate the .h header files, so we can allow glade and
     ## xml translation support
-    if (! -x "$EXTRACT")
+    if (! isProgramInPath ("$EXTRACT"))
     {
        print STDERR "\n *** The intltool-extract script wasn't found!"
             ."\n *** Without it, intltool-update can not generate files.\n";
@@ -619,13 +653,13 @@
 #
 sub GeneratePOTemplate
 {
-    my $XGETTEXT = $ENV{"XGETTEXT"} || "@INTLTOOL_XGETTEXT@";
+    my $XGETTEXT = $ENV{"XGETTEXT"} || "xgettext";
     my $XGETTEXT_ARGS = $ENV{"XGETTEXT_ARGS"} || '';
     chomp $XGETTEXT;
 
-    if (! -x $XGETTEXT)
+    if (! isGNUGettextTool ("$XGETTEXT"))
     {
-       print STDERR " *** xgettext is not found on this system!\n".
+       print STDERR " *** GNU xgettext is not found on this system!\n".
                     " *** Without it, intltool-update can not extract 
strings.\n";
        exit;
     }
@@ -721,7 +755,23 @@
     unlink "$MODULE.pot";
     my @xgettext_argument=("$XGETTEXT",
                           "--add-comments",
-                          "--directory\=\.",
+                          "--directory\=.",
+                           "--default-domain\=$MODULE",
+                           "--flag\=g_strdup_printf:1:c-format",
+                           "--flag\=g_string_printf:2:c-format",
+                           "--flag\=g_string_append_printf:2:c-format",
+                           "--flag\=g_error_new:3:c-format",
+                           "--flag\=g_set_error:4:c-format",
+                           "--flag\=g_markup_printf_escaped:1:c-format",
+                           "--flag\=g_log:3:c-format",
+                           "--flag\=g_print:1:c-format",
+                           "--flag\=g_printerr:1:c-format",
+                           "--flag\=g_printf:1:c-format",
+                           "--flag\=g_fprintf:2:c-format",
+                           "--flag\=g_sprintf:2:c-format",
+                           "--flag\=g_snprintf:3:c-format",
+                           "--flag\=g_scanner_error:2:c-format",
+                           "--flag\=g_scanner_warn:2:c-format",
                           "--output\=$MODULE\.pot",
                           "--files-from\=\.\/POTFILES\.in\.temp");
     my $XGETTEXT_KEYWORDS = &FindPOTKeywords;
@@ -788,9 +838,16 @@
 {
     -f "$MODULE.pot" or die "$PROGRAM: $MODULE.pot does not exist.\n";
 
-    my $MSGMERGE = $ENV{"MSGMERGE"} || "@INTLTOOL_MSGMERGE@";
+    my $MSGMERGE = $ENV{"MSGMERGE"} || "msgmerge";
     my ($lang, $outfile) = @_;
 
+    if (! isGNUGettextTool ("$MSGMERGE"))
+    {
+       print STDERR " *** GNU msgmerge is not found on this system!\n".
+                    " *** Without it, intltool-update can not extract 
strings.\n";
+       exit;
+    }
+
     print "Merging $SRCDIR/$lang.po with $MODULE.pot..." if $VERBOSE;
 
     my $infile = "$SRCDIR/$lang.po";
@@ -831,8 +888,15 @@
 sub Console_Write_TranslationStatus
 {
     my ($lang, $output_file) = @_;
-    my $MSGFMT = $ENV{"MSGFMT"} || "@INTLTOOL_MSGFMT@";
+    my $MSGFMT = $ENV{"MSGFMT"} || "msgfmt";
 
+    if (! isGNUGettextTool ("$MSGFMT"))
+    {
+       print STDERR " *** GNU msgfmt is not found on this system!\n".
+                    " *** Without it, intltool-update can not extract 
strings.\n";
+       exit;
+    }
+
     $output_file = "$SRCDIR/$lang.po" if ($output_file eq "");
 
     system ("$MSGFMT", "-o", "$devnull", "--verbose", $output_file);
@@ -840,21 +904,28 @@
 
 sub Console_Write_CoverageReport
 {
-    my $MSGFMT = $ENV{"MSGFMT"} || "@INTLTOOL_MSGFMT@";
+    my $MSGFMT = $ENV{"MSGFMT"} || "msgfmt";
 
+    if (! isGNUGettextTool ("$MSGFMT"))
+    {
+       print STDERR " *** GNU msgfmt is not found on this system!\n".
+                    " *** Without it, intltool-update can not extract 
strings.\n";
+       exit;
+    }
+
     &GatherPOFiles;
 
     foreach my $lang (@languages) 
     {
-       print "$lang: ";
+       print STDERR "$lang: ";
        &POFile_Update ($lang, "");
     }
 
-    print "\n\n * Current translation support in $MODULE \n\n";
+    print STDERR "\n\n * Current translation support in $MODULE \n\n";
 
     foreach my $lang (@languages)
     {
-       print "$lang: ";
+       print STDERR "$lang: ";
        system ("$MSGFMT", "-o", "$devnull", "--verbose", "$SRCDIR/$lang.po");
     }
 }
@@ -928,13 +999,13 @@
 
            $conf_in || die "Cannot find top_builddir in Makevars.";
        }
-       elsif (-f "../configure.ac") 
+       elsif (-f "$SRCDIR/../configure.ac") 
        {
-           $conf_in = "../configure.ac";
+           $conf_in = "$SRCDIR/../configure.ac";
        } 
-       elsif (-f "../configure.in") 
+       elsif (-f "$SRCDIR/../configure.in") 
        {
-           $conf_in = "../configure.in";
+           $conf_in = "$SRCDIR/../configure.in";
        } 
        else 
        {




--- End Message ---
--- Begin Message ---
Author: mickey
Date: 2007-10-14 14:00:02 +0200 (Sun, 14 Oct 2007)
New Revision: 3158

Modified:
   trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/Makefile.in
   trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/ui.glade
   trunk/src/target/OM-2007.2/applications/openmoko-firststart2/src/main.c
Log:
openmoko-firststart2: add page for security settings


Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/Makefile.in
===================================================================
--- 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/Makefile.in   
    2007-10-14 11:59:48 UTC (rev 3157)
+++ 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/Makefile.in   
    2007-10-14 12:00:02 UTC (rev 3158)
@@ -1,8 +1,8 @@
-# Makefile.in generated by automake 1.7.9 from Makefile.am.
+# Makefile.in generated by automake 1.10 from Makefile.am.
 # @configure_input@
 
-# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-# Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+# 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
@@ -14,16 +14,11 @@
 
 @SET_MAKE@
 
-srcdir = @srcdir@
-top_srcdir = @top_srcdir@
 VPATH = @srcdir@
 pkgdatadir = $(datadir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
-top_builddir = ..
-
 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-INSTALL = @INSTALL@
 install_sh_DATA = $(install_sh) -c -m 644
 install_sh_PROGRAM = $(install_sh) -c
 install_sh_SCRIPT = $(install_sh) -c
@@ -35,11 +30,31 @@
 NORMAL_UNINSTALL = :
 PRE_UNINSTALL = :
 POST_UNINSTALL = :
+build_triplet = @build@
 host_triplet = @host@
+subdir = data
+DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
+ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
+am__aclocal_m4_deps = $(top_srcdir)/configure.ac
+am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
+       $(ACLOCAL_M4)
+mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
+CONFIG_HEADER = $(top_builddir)/config.h
+CONFIG_CLEAN_FILES =
+SOURCES =
+DIST_SOURCES =
+am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
+am__vpath_adj = case $$p in \
+    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
+    *) f=$$p;; \
+  esac;
+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
+am__installdirs = "$(DESTDIR)$(resourcedir)"
+resourceDATA_INSTALL = $(INSTALL_DATA)
+DATA = $(resource_DATA)
+DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 ACLOCAL = @ACLOCAL@
 ALL_LINGUAS = @ALL_LINGUAS@
-AMDEP_FALSE = @AMDEP_FALSE@
-AMDEP_TRUE = @AMDEP_TRUE@
 AMTAR = @AMTAR@
 AR = @AR@
 AUTOCONF = @AUTOCONF@
@@ -73,6 +88,7 @@
 GMOFILES = @GMOFILES@
 GMSGFMT = @GMSGFMT@
 GREP = @GREP@
+INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 INSTALL_PROGRAM = @INSTALL_PROGRAM@
 INSTALL_SCRIPT = @INSTALL_SCRIPT@
@@ -83,14 +99,12 @@
 INTLTOOL_DESKTOP_RULE = @INTLTOOL_DESKTOP_RULE@
 INTLTOOL_DIRECTORY_RULE = @INTLTOOL_DIRECTORY_RULE@
 INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
-INTLTOOL_ICONV = @INTLTOOL_ICONV@
 INTLTOOL_KBD_RULE = @INTLTOOL_KBD_RULE@
 INTLTOOL_KEYS_RULE = @INTLTOOL_KEYS_RULE@
 INTLTOOL_MERGE = @INTLTOOL_MERGE@
-INTLTOOL_MSGFMT = @INTLTOOL_MSGFMT@
-INTLTOOL_MSGMERGE = @INTLTOOL_MSGMERGE@
 INTLTOOL_OAF_RULE = @INTLTOOL_OAF_RULE@
 INTLTOOL_PERL = @INTLTOOL_PERL@
+INTLTOOL_POLICY_RULE = @INTLTOOL_POLICY_RULE@
 INTLTOOL_PONG_RULE = @INTLTOOL_PONG_RULE@
 INTLTOOL_PROP_RULE = @INTLTOOL_PROP_RULE@
 INTLTOOL_SCHEMAS_RULE = @INTLTOOL_SCHEMAS_RULE@
@@ -102,7 +116,6 @@
 INTLTOOL_UI_RULE = @INTLTOOL_UI_RULE@
 INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
 INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@
-INTLTOOL_XGETTEXT = @INTLTOOL_XGETTEXT@
 INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@
 INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@
 LDFLAGS = @LDFLAGS@
@@ -112,9 +125,8 @@
 LN_S = @LN_S@
 LTLIBOBJS = @LTLIBOBJS@
 MAINT = @MAINT@
-MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
-MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
 MAKEINFO = @MAKEINFO@
+MKDIR_P = @MKDIR_P@
 MKINSTALLDIRS = @MKINSTALLDIRS@
 MOKOUI_CFLAGS = @MOKOUI_CFLAGS@
 MOKOUI_LIBS = @MOKOUI_LIBS@
@@ -140,22 +152,25 @@
 USE_NLS = @USE_NLS@
 VERSION = @VERSION@
 XGETTEXT = @XGETTEXT@
+abs_builddir = @abs_builddir@
+abs_srcdir = @abs_srcdir@
+abs_top_builddir = @abs_top_builddir@
+abs_top_srcdir = @abs_top_srcdir@
 ac_ct_CC = @ac_ct_CC@
 ac_ct_CXX = @ac_ct_CXX@
 ac_ct_F77 = @ac_ct_F77@
-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
 am__include = @am__include@
 am__leading_dot = @am__leading_dot@
 am__quote = @am__quote@
+am__tar = @am__tar@
+am__untar = @am__untar@
 bindir = @bindir@
 build = @build@
 build_alias = @build_alias@
 build_cpu = @build_cpu@
 build_os = @build_os@
 build_vendor = @build_vendor@
+builddir = @builddir@
 datadir = @datadir@
 datarootdir = @datarootdir@
 docdir = @docdir@
@@ -175,6 +190,7 @@
 localedir = @localedir@
 localstatedir = @localstatedir@
 mandir = @mandir@
+mkdir_p = @mkdir_p@
 oldincludedir = @oldincludedir@
 pdfdir = @pdfdir@
 prefix = @prefix@
@@ -182,58 +198,70 @@
 psdir = @psdir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
+srcdir = @srcdir@
 sysconfdir = @sysconfdir@
 target_alias = @target_alias@
+top_builddir = @top_builddir@
+top_srcdir = @top_srcdir@
 resourcedir = $(pkgdatadir)
 resource_DATA = \
   ui.glade
 
-
 EXTRA_DIST = $(resource_DATA)
-subdir = data
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-DIST_SOURCES =
-DATA = $(resource_DATA)
-
-DIST_COMMON = $(srcdir)/Makefile.in Makefile.am
 all: all-am
 
 .SUFFIXES:
-$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am  
$(top_srcdir)/configure.ac $(ACLOCAL_M4)
+$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am  
$(am__configure_deps)
+       @for dep in $?; do \
+         case '$(am__configure_deps)' in \
+           *$$dep*) \
+             cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \
+               && exit 0; \
+             exit 1;; \
+         esac; \
+       done; \
+       echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  data/Makefile'; \
        cd $(top_srcdir) && \
          $(AUTOMAKE) --gnu  data/Makefile
-Makefile: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.in  
$(top_builddir)/config.status
-       cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
$(am__depfiles_maybe)
+.PRECIOUS: Makefile
+Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
+       @case '$?' in \
+         *config.status*) \
+           cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
+         *) \
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
$(am__depfiles_maybe)'; \
+           cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ 
$(am__depfiles_maybe);; \
+       esac;
 
+$(top_builddir)/config.status: $(top_srcdir)/configure 
$(CONFIG_STATUS_DEPENDENCIES)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
+$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
+       cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
+
 mostlyclean-libtool:
        -rm -f *.lo
 
 clean-libtool:
        -rm -rf .libs _libs
-
-distclean-libtool:
-       -rm -f libtool
-uninstall-info-am:
-resourceDATA_INSTALL = $(INSTALL_DATA)
 install-resourceDATA: $(resource_DATA)
        @$(NORMAL_INSTALL)
-       $(mkinstalldirs) $(DESTDIR)$(resourcedir)
+       test -z "$(resourcedir)" || $(MKDIR_P) "$(DESTDIR)$(resourcedir)"
        @list='$(resource_DATA)'; for p in $$list; do \
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-         f="`echo $$p | sed -e 's|^.*/||'`"; \
-         echo " $(resourceDATA_INSTALL) $$d$$p $(DESTDIR)$(resourcedir)/$$f"; \
-         $(resourceDATA_INSTALL) $$d$$p $(DESTDIR)$(resourcedir)/$$f; \
+         f=$(am__strip_dir) \
+         echo " $(resourceDATA_INSTALL) '$$d$$p' 
'$(DESTDIR)$(resourcedir)/$$f'"; \
+         $(resourceDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(resourcedir)/$$f"; \
        done
 
 uninstall-resourceDATA:
        @$(NORMAL_UNINSTALL)
        @list='$(resource_DATA)'; for p in $$list; do \
-         f="`echo $$p | sed -e 's|^.*/||'`"; \
-         echo " rm -f $(DESTDIR)$(resourcedir)/$$f"; \
-         rm -f $(DESTDIR)$(resourcedir)/$$f; \
+         f=$(am__strip_dir) \
+         echo " rm -f '$(DESTDIR)$(resourcedir)/$$f'"; \
+         rm -f "$(DESTDIR)$(resourcedir)/$$f"; \
        done
 tags: TAGS
 TAGS:
@@ -241,28 +269,23 @@
 ctags: CTAGS
 CTAGS:
 
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 
-top_distdir = ..
-distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
-
 distdir: $(DISTFILES)
-       @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
-       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
-       list='$(DISTFILES)'; for file in $$list; do \
-         case $$file in \
-           $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
-           $(top_srcdir)/*) file=`echo "$$file" | sed 
"s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
-         esac; \
+       @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
+       list='$(DISTFILES)'; \
+         dist_files=`for file in $$list; do echo $$file; done | \
+         sed -e "s|^$$srcdirstrip/||;t" \
+             -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
+       case $$dist_files in \
+         */*) $(MKDIR_P) `echo "$$dist_files" | \
+                          sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
+                          sort -u` ;; \
+       esac; \
+       for file in $$dist_files; do \
          if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
-         dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
-         if test "$$dir" != "$$file" && test "$$dir" != "."; then \
-           dir="/$$dir"; \
-           $(mkinstalldirs) "$(distdir)$$dir"; \
-         else \
-           dir=''; \
-         fi; \
          if test -d $$d/$$file; then \
+           dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
            if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
              cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
            fi; \
@@ -276,9 +299,10 @@
 check-am: all-am
 check: check-am
 all-am: Makefile $(DATA)
-
 installdirs:
-       $(mkinstalldirs) $(DESTDIR)$(resourcedir)
+       for dir in "$(DESTDIR)$(resourcedir)"; do \
+         test -z "$$dir" || $(MKDIR_P) "$$dir"; \
+       done
 install: install-am
 install-exec: install-exec-am
 install-data: install-data-am
@@ -298,7 +322,7 @@
 clean-generic:
 
 distclean-generic:
-       -rm -f $(CONFIG_CLEAN_FILES)
+       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
 
 maintainer-clean-generic:
        @echo "This command is intended for maintainers to use"
@@ -309,24 +333,34 @@
 
 distclean: distclean-am
        -rm -f Makefile
-distclean-am: clean-am distclean-generic distclean-libtool
+distclean-am: clean-am distclean-generic
 
 dvi: dvi-am
 
 dvi-am:
 
+html: html-am
+
 info: info-am
 
 info-am:
 
 install-data-am: install-resourceDATA
 
+install-dvi: install-dvi-am
+
 install-exec-am:
 
+install-html: install-html-am
+
 install-info: install-info-am
 
 install-man:
 
+install-pdf: install-pdf-am
+
+install-ps: install-ps-am
+
 installcheck-am:
 
 maintainer-clean: maintainer-clean-am
@@ -345,17 +379,21 @@
 
 ps-am:
 
-uninstall-am: uninstall-info-am uninstall-resourceDATA
+uninstall-am: uninstall-resourceDATA
 
+.MAKE: install-am install-strip
+
 .PHONY: all all-am check check-am clean clean-generic clean-libtool \
        distclean distclean-generic distclean-libtool distdir dvi \
-       dvi-am info info-am install install-am install-data \
-       install-data-am install-exec install-exec-am install-info \
-       install-info-am install-man install-resourceDATA install-strip \
-       installcheck installcheck-am installdirs maintainer-clean \
-       maintainer-clean-generic mostlyclean mostlyclean-generic \
-       mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \
-       uninstall-info-am uninstall-resourceDATA
+       dvi-am html html-am info info-am install install-am \
+       install-data install-data-am install-dvi install-dvi-am \
+       install-exec install-exec-am install-html install-html-am \
+       install-info install-info-am install-man install-pdf \
+       install-pdf-am install-ps install-ps-am install-resourceDATA \
+       install-strip installcheck installcheck-am installdirs \
+       maintainer-clean maintainer-clean-generic mostlyclean \
+       mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
+       uninstall uninstall-am uninstall-resourceDATA
 
 # Tell versions [3.59,3.63) of GNU make to not export all variables.
 # Otherwise a system limit (for SysV at least) may be exceeded.

Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/ui.glade
===================================================================
--- trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/ui.glade  
2007-10-14 11:59:48 UTC (rev 3157)
+++ trunk/src/target/OM-2007.2/applications/openmoko-firststart2/data/ui.glade  
2007-10-14 12:00:02 UTC (rev 3158)
@@ -1,177 +1,206 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!DOCTYPE glade-interface SYSTEM "glade-2.0.dtd">
-<!--Generated with glade3 3.2.0 on Fri Aug 31 15:53:07 2007 by [EMAIL 
PROTECTED]>
+<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
+<!DOCTYPE glade-interface SYSTEM "http://gazpacho.sicem.biz/gazpacho-0.1.dtd";>
 <glade-interface>
-  <widget class="GtkWindow" id="window1">
-    <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-    <child>
-      <widget class="GtkVBox" id="page1">
-        <property name="visible">True</property>
-        <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
+    <widget class="GtkWindow" id="window1">
         <child>
-          <placeholder/>
+            <widget class="GtkVBox" id="page1">
+                <property name="visible">True</property>
+                <child>
+                    <placeholder/>
+                    <packing/>
+                </child>
+                <child>
+                    <widget class="GtkTextView" id="textview2">
+                        <property name="accepts_tab">False</property>
+                        <property name="cursor_visible">False</property>
+                        <property name="editable">False</property>
+                        <property name="text" context="yes" 
translatable="yes">We have already calibrated the display for you. If you want 
to launch recalibration, please click the AUX button now.</property>
+                        <property name="visible">True</property>
+                        <property name="wrap_mode">word</property>
+                    </widget>
+                    <packing>
+                        <property name="position">1</property>
+                    </packing>
+                </child>
+                <child>
+                    <placeholder/>
+                    <packing>
+                        <property name="position">2</property>
+                    </packing>
+                </child>
+            </widget>
         </child>
+    </widget>
+    <widget class="GtkWindow" id="window2">
         <child>
-          <widget class="GtkTextView" id="textview2">
-            <property name="visible">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-            <property name="editable">False</property>
-            <property name="wrap_mode">GTK_WRAP_WORD</property>
-            <property name="cursor_visible">False</property>
-            <property name="accepts_tab">False</property>
-            <property name="text" translatable="yes">We have already 
calibrated the display for you. If you want to launch recalibration, please 
click the AUX button now.</property>
-          </widget>
-          <packing>
-            <property name="position">1</property>
-          </packing>
+            <widget class="GtkVBox" id="page2">
+                <property name="visible">True</property>
+                <child>
+                    <widget class="GtkCalendar" id="calendar">
+                        <property name="day">30</property>
+                        <property name="month">7</property>
+                        <property name="visible">True</property>
+                    </widget>
+                </child>
+                <child>
+                    <widget class="GtkHBox" id="hbox1">
+                        <property name="visible">True</property>
+                        <child>
+                            <widget class="GtkSpinButton" id="hour">
+                                <property name="adjustment">1 0 23 1 10 
10</property>
+                                <property name="can_focus">False</property>
+                                <property name="visible">True</property>
+                            </widget>
+                        </child>
+                        <child>
+                            <widget class="GtkLabel" id="label2">
+                                <property name="label" context="yes" 
translatable="yes">:</property>
+                                <property name="visible">True</property>
+                            </widget>
+                            <packing>
+                                <property name="expand">False</property>
+                                <property name="padding">4</property>
+                                <property name="position">1</property>
+                            </packing>
+                        </child>
+                        <child>
+                            <widget class="GtkSpinButton" id="minute">
+                                <property name="adjustment">0 0 59 1 10 
10</property>
+                                <property name="can_focus">False</property>
+                                <property name="visible">True</property>
+                            </widget>
+                            <packing>
+                                <property name="position">2</property>
+                            </packing>
+                        </child>
+                        <child>
+                            <widget class="GtkSpinButton" id="second">
+                                <property name="adjustment">0 0 59 1 10 
10</property>
+                                <property name="can_focus">False</property>
+                                <property name="visible">True</property>
+                            </widget>
+                            <packing>
+                                <property name="position">3</property>
+                            </packing>
+                        </child>
+                    </widget>
+                    <packing>
+                        <property name="position">1</property>
+                    </packing>
+                </child>
+                <child>
+                    <widget class="GtkComboBox" id="timezone">
+                        <property name="visible">True</property>
+                    </widget>
+                    <packing>
+                        <property name="position">2</property>
+                    </packing>
+                </child>
+            </widget>
         </child>
+    </widget>
+    <widget class="GtkWindow" id="window3">
         <child>
-          <placeholder/>
+            <widget class="GtkVBox" id="page3">
+                <property name="homogeneous">True</property>
+                <property name="visible">True</property>
+                <child>
+                    <widget class="GtkCheckButton" id="clicksound">
+                        <property name="label" context="yes" 
translatable="yes">Play click sound on tap</property>
+                        <property name="visible">True</property>
+                    </widget>
+                </child>
+                <child>
+                    <widget class="GtkCheckButton" id="welcomesound">
+                        <property name="label" context="yes" 
translatable="yes">Play welcome sound</property>
+                        <property name="visible">True</property>
+                    </widget>
+                    <packing>
+                        <property name="position">1</property>
+                    </packing>
+                </child>
+                <child>
+                    <placeholder/>
+                    <packing>
+                        <property name="position">2</property>
+                    </packing>
+                </child>
+            </widget>
         </child>
-      </widget>
-    </child>
-  </widget>
-  <widget class="GtkWindow" id="window2">
-    <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-    <child>
-      <widget class="GtkVBox" id="page2">
-        <property name="visible">True</property>
-        <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
+    </widget>
+    <widget class="GtkWindow" id="window4">
         <child>
-          <widget class="GtkCalendar" id="calendar">
-            <property name="visible">True</property>
-            <property name="can_focus">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-            <property name="year">2007</property>
-            <property name="month">7</property>
-            <property name="day">30</property>
-          </widget>
+            <widget class="GtkVBox" id="page4">
+                <property name="homogeneous">True</property>
+                <property name="visible">True</property>
+                <child>
+                    <placeholder/>
+                    <packing/>
+                </child>
+                <child>
+                    <widget class="GtkTextView" id="textview1">
+                        <property name="accepts_tab">False</property>
+                        <property name="cursor_visible">False</property>
+                        <property name="editable">False</property>
+                        <property name="text" context="yes" 
translatable="yes">You have completed the first-usage wizard. If you ever want 
to run it again, please do so from the today application.</property>
+                        <property name="visible">True</property>
+                        <property name="wrap_mode">word</property>
+                    </widget>
+                    <packing>
+                        <property name="position">1</property>
+                    </packing>
+                </child>
+                <child>
+                    <placeholder/>
+                    <packing>
+                        <property name="position">2</property>
+                    </packing>
+                </child>
+            </widget>
         </child>
+    </widget>
+    <widget class="GtkWindow" id="window5">
         <child>
-          <widget class="GtkHBox" id="hbox1">
-            <property name="visible">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-            <child>
-              <widget class="GtkSpinButton" id="hour">
+            <widget class="GtkVBox" id="page5">
+                <property name="homogeneous">True</property>
                 <property name="visible">True</property>
-                <property name="can_focus">False</property>
-                <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-                <property name="adjustment">1 0 23 1 10 10</property>
-              </widget>
-            </child>
-            <child>
-              <widget class="GtkLabel" id="label2">
-                <property name="visible">True</property>
-                <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-                <property name="label" translatable="yes">:</property>
-              </widget>
-              <packing>
-                <property name="expand">False</property>
-                <property name="padding">4</property>
-                <property name="position">1</property>
-              </packing>
-            </child>
-            <child>
-              <widget class="GtkSpinButton" id="minute">
-                <property name="visible">True</property>
-                <property name="can_focus">False</property>
-                <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-                <property name="adjustment">0 0 59 1 10 10</property>
-              </widget>
-              <packing>
-                <property name="position">2</property>
-              </packing>
-            </child>
-            <child>
-              <widget class="GtkSpinButton" id="second">
-                <property name="visible">True</property>
-                <property name="can_focus">False</property>
-                <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-                <property name="adjustment">0 0 59 1 10 10</property>
-              </widget>
-              <packing>
-                <property name="position">3</property>
-              </packing>
-            </child>
-          </widget>
-          <packing>
-            <property name="position">1</property>
-          </packing>
+                <child>
+                    <widget class="GtkLabel" id="label1">
+                        <property name="label" context="yes" 
translatable="yes">Please enter a password for the 'root' user. You can leave 
this field blank, if you don't want a password for the 'root' user.</property>
+                        <property name="visible">True</property>
+                        <property name="wrap">True</property>
+                        <property name="xalign">0.0</property>
+                    </widget>
+                </child>
+                <child>
+                    <widget class="GtkEntry" id="entry1">
+                        <property name="visibility">False</property>
+                        <property name="visible">True</property>
+                    </widget>
+                    <packing>
+                        <property name="position">1</property>
+                    </packing>
+                </child>
+                <child>
+                    <widget class="GtkLabel" id="label3">
+                        <property name="label" context="yes" 
translatable="yes">Please repeat the password here:</property>
+                        <property name="visible">True</property>
+                        <property name="xalign">0.0</property>
+                    </widget>
+                    <packing>
+                        <property name="position">2</property>
+                    </packing>
+                </child>
+                <child>
+                    <widget class="GtkEntry" id="entry2">
+                        <property name="is_focus">True</property>
+                        <property name="visibility">False</property>
+                    </widget>
+                    <packing>
+                        <property name="position">3</property>
+                    </packing>
+                </child>
+            </widget>
         </child>
-        <child>
-          <widget class="GtkComboBox" id="timezone">
-            <property name="visible">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-          </widget>
-          <packing>
-            <property name="position">2</property>
-          </packing>
-        </child>
-      </widget>
-    </child>
-  </widget>
-  <widget class="GtkWindow" id="window3">
-    <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-    <child>
-      <widget class="GtkVBox" id="page3">
-        <property name="visible">True</property>
-        <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-        <property name="homogeneous">True</property>
-        <child>
-          <widget class="GtkCheckButton" id="clicksound">
-            <property name="visible">True</property>
-            <property name="can_focus">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-            <property name="label" translatable="yes">Play click sound on 
tap</property>
-            <property name="draw_indicator">True</property>
-          </widget>
-        </child>
-        <child>
-          <widget class="GtkCheckButton" id="welcomesound">
-            <property name="visible">True</property>
-            <property name="can_focus">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-            <property name="label" translatable="yes">Play welcome 
sound</property>
-            <property name="draw_indicator">True</property>
-          </widget>
-          <packing>
-            <property name="position">1</property>
-          </packing>
-        </child>
-        <child>
-          <placeholder/>
-        </child>
-      </widget>
-    </child>
-  </widget>
-  <widget class="GtkWindow" id="window4">
-    <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-    <child>
-      <widget class="GtkVBox" id="page4">
-        <property name="visible">True</property>
-        <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-        <property name="homogeneous">True</property>
-        <child>
-          <placeholder/>
-        </child>
-        <child>
-          <widget class="GtkTextView" id="textview1">
-            <property name="visible">True</property>
-            <property name="events">GDK_POINTER_MOTION_MASK | 
GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | 
GDK_BUTTON_RELEASE_MASK</property>
-            <property name="editable">False</property>
-            <property name="wrap_mode">GTK_WRAP_WORD</property>
-            <property name="cursor_visible">False</property>
-            <property name="accepts_tab">False</property>
-            <property name="text" translatable="yes">You have completed the 
first-usage wizard. If you ever want to run it again, please do so from the 
today application.</property>
-          </widget>
-          <packing>
-            <property name="position">1</property>
-          </packing>
-        </child>
-        <child>
-          <placeholder/>
-        </child>
-      </widget>
-    </child>
-  </widget>
+    </widget>
 </glade-interface>

Modified: 
trunk/src/target/OM-2007.2/applications/openmoko-firststart2/src/main.c
===================================================================
--- trunk/src/target/OM-2007.2/applications/openmoko-firststart2/src/main.c     
2007-10-14 11:59:48 UTC (rev 3157)
+++ trunk/src/target/OM-2007.2/applications/openmoko-firststart2/src/main.c     
2007-10-14 12:00:02 UTC (rev 3158)
@@ -42,6 +42,9 @@
     GladeXML* ui4 = glade_xml_new( PKGDATADIR "/ui.glade", "page4", NULL );
     GtkWidget* page4 = glade_xml_get_widget( ui4, "page4" );
 
+    GladeXML* ui5 = glade_xml_new( PKGDATADIR "/ui.glade", "page5", NULL );
+    GtkWidget* page5 = glade_xml_get_widget( ui5, "page5" );
+
     gtk_assistant_append_page( GTK_ASSISTANT(assistant), page1 );
     gtk_assistant_set_page_type( GTK_ASSISTANT(assistant), page1, 
GTK_ASSISTANT_PAGE_CONTENT );
     gtk_assistant_set_page_title( GTK_ASSISTANT(assistant), page1, "Welcome to 
OpenMoko" );
@@ -57,6 +60,11 @@
     gtk_assistant_set_page_title( GTK_ASSISTANT(assistant), page3, "Sound 
Settings" );
     gtk_assistant_set_page_complete( GTK_ASSISTANT(assistant), page3, TRUE );
 
+    gtk_assistant_append_page( GTK_ASSISTANT(assistant), page5 );
+    gtk_assistant_set_page_type( GTK_ASSISTANT(assistant), page5, 
GTK_ASSISTANT_PAGE_CONTENT );
+    gtk_assistant_set_page_title( GTK_ASSISTANT(assistant), page5, "Security 
Settings" );
+    gtk_assistant_set_page_complete( GTK_ASSISTANT(assistant), page5, TRUE );
+
     gtk_assistant_append_page( GTK_ASSISTANT(assistant), page4 );
     gtk_assistant_set_page_type( GTK_ASSISTANT(assistant), page4, 
GTK_ASSISTANT_PAGE_SUMMARY );
     gtk_assistant_set_page_title( GTK_ASSISTANT(assistant), page4, 
"Congratulations, you're done!" );




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to