# HG changeset patch # User John Kern # Date 1283525956 25200 # Node ID b56d7e26863459496ede3218f40427f7afbd4544 # Parent edc0144719a1e7a957a1156ec92dde36133332a6 remove obsolete projects diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/AtAGlance.cpp --- a/BuildLogViewer/AtAGlance.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,150 +0,0 @@ -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#include -#include - -#include - -using namespace std; - -#include "AtAGlance.h" - -AtAGlance::AtAGlance(QString filename, QWidget *parent) - : QWidget(parent), ui(new Ui::BuildResultsForm) -{ - ui->setupUi(this); - setAttribute(Qt::WA_DeleteOnClose); - - QFile file(filename); - QFileInfo fi(file); - this->setWindowTitle("Status " + fi.baseName()); - - m_buildStatus = new BuildStatus(); - m_buildStatus->setTime(fi.lastModified()); - - if (!file.open(QIODevice::ReadOnly)) { - QMessageBox::warning(this, tr("Build Log Viewer"), tr("Cannot open log.")); - return ; - } - m_log = new QDomDocument("Build Log"); - if (!m_log->setContent(&file)) { - QMessageBox::warning(this, tr("Build Log Viewer"), tr("Cannot set content.")); - file.close(); - return ; - } - file.close(); -} - -AtAGlance::~AtAGlance() -{ - delete m_log; - delete m_buildStatus; -} - -// Walk Dom tree. -void AtAGlance::traveAndPopulate() -{ - this->traveAndPopulate(m_log->documentElement()); -} - -void AtAGlance::traveAndPopulate(QDomElement e) -{ - QString name = e.tagName(); - - if (e.isNull()) - { - return; - } - - // if this is an info tags, look for - // System Definition file sf/app/organizer/package_definition.xml - if (name.compare("info",Qt::CaseInsensitive)== 0 ) - { - // example - // System Definition file sf/app/organizer/package_definition.xml - QRegExp re("System*package_definition.xml"); - re.setPatternSyntax(QRegExp::Wildcard); - - if (re.exactMatch( e.text() ) ) - { - QRegExp reToken("*package_definition.xml"); - // Which regex syntax should be used? Wildcard is ... - reToken.setPatternSyntax(QRegExp::Wildcard); - - QStringList tokens = e.text().split(" "); - QStringList::const_iterator constIterator; - for (constIterator = tokens.constBegin(); - constIterator != tokens.constEnd(); - ++constIterator) - { - if (reToken.exactMatch(*constIterator)) - { - m_buildStatus->setName((*constIterator).toLocal8Bit().constData()); - } - } - } - } - - // if this is a status tag and the exit attribute is failed, the build failed. - if (name.compare("status",Qt::CaseInsensitive)== 0 ) - { - QString rc = e.attribute("exit"); - if (!rc.isEmpty() && (rc.compare("failed", Qt::CaseInsensitive) == 0)) - { - m_buildStatus->setStatus(false); - } - } - - // unforunately, the build log isn't valid xml. The recipe tag often contains - // trace output from a shell program in addition to the status tag. Sigh. - // So this condition looks for the status tag in the body for the recipe tag. - // here is what the status tag should look like: - // - if (name.compare("recipe",Qt::CaseInsensitive)== 0 ) - { - QRegExp re("*status exit*fail*"); - re.setPatternSyntax(QRegExp::Wildcard); - if (re.exactMatch(e.text())) - { - m_buildStatus->setStatus(false); - } - } - - QString text_debug; - QDomElement e1 = e.firstChild().toElement(); - name = e1.tagName(); - text_debug = e1.text(); - while(!e1.isNull()) - { - this->traveAndPopulate(e1); - e1 = e1.nextSibling().toElement(); - name = e1.tagName(); - text_debug = e1.text(); - } -} - -void AtAGlance::decideOnLayout() -{ - // QHBoxLayout *hLayout = new QHBoxLayout(this); - // QGroupBox *groupBox = new QGroupBox( "Synopsis of Build" ); - QGridLayout *layout = new QGridLayout(this); - - layout->addWidget(new QLabel("What: "), 1, 1); - layout->addWidget(new QLabel(*m_buildStatus->name()),1,2); - layout->addWidget(new QLabel("When: "), 2, 1); - layout->addWidget(new QLabel(m_buildStatus->time()) ,2,2); - layout->addWidget(new QLabel("Status: "), 3, 1); - layout->addWidget(new QLabel(*m_buildStatus->status()),3,2); - - // hLayout->addWidget(layout); -} diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/AtAGlance.h --- a/BuildLogViewer/AtAGlance.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,34 +0,0 @@ -#ifndef ATAGLANCE_H -#define ATAGLANCE_H - -#include -#include - -#include "BuildStatus.h" -#include "ui_BuildResults.h" - -/* - * This class presents the status for a given build. It gets the - * appropriate data from the model. - */ - -class AtAGlance : public QWidget -{ - Q_OBJECT - -public: - AtAGlance(QString filename, QWidget *parent = 0 ); - ~AtAGlance(); - - void traveAndPopulate(); - void decideOnLayout(); -private: - void traveAndPopulate(QDomElement e); - -private: - Ui::BuildResultsForm *ui; - QDomDocument *m_log; - BuildStatus *m_buildStatus; -}; - -#endif // ATAGLANCE_H diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/BuildLogViewer.pro --- a/BuildLogViewer/BuildLogViewer.pro Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -###################################################################### -# Automatically generated by qmake (2.01a) Tue Sep 8 16:19:23 2009 -###################################################################### - -TEMPLATE = app -QT += xml -TARGET = BuildLogViewer -DEPENDPATH += . -INCLUDEPATH += . - -# Input -HEADERS += AtAGlance.h \ - BuildStatus.h \ - Document.h \ - DomItem.h \ - DomModel.h \ - mainwindow.h -FORMS += BuildResults.ui mainwindow.ui -SOURCES += AtAGlance.cpp \ - BuildStatus.cpp \ - Document.cpp \ - DomItem.cpp \ - DomModel.cpp \ - main.cpp \ - mainwindow.cpp diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/BuildLogViewer.pro.user --- a/BuildLogViewer/BuildLogViewer.pro.user Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,401 +0,0 @@ - - - - RunConfiguration0-CommandLineArguments - - - - RunConfiguration0-ProFile - BuildLogViewer.pro - - - RunConfiguration0-RunConfiguration.name - BuildLogViewer - - - RunConfiguration0-UseDyldImageSuffix - false - - - RunConfiguration0-UseTerminal - false - - - RunConfiguration0-UserEnvironmentChanges - - - - RunConfiguration0-UserSetName - false - - - RunConfiguration0-type - Qt4ProjectManager.Qt4RunConfiguration - - - activeRunConfiguration - 0 - - - activebuildconfiguration - Debug - - - buildConfiguration-Debug - - Debug - 0 - - - false - - - - buildConfiguration-Release - - Release - 0 - - - - - buildconfiguration-Debug-buildstep0 - - Debug - - /M=RVCT22_ASMOPT - ALLUSERSPROFILE=C:\Documents and Settings\All Users - APPDATA=C:\Documents and Settings\johnk\Application Data - ARMLMD_LICENSE_FILE=C:\Symbian\ARM\Licenses\license40.bat - ARMROOT=C:\Symbian\ARM - CLIENTNAME=Console - COMMONPROGRAMFILES=C:\Program Files\Common Files - COMPUTERNAME=PC213502752220 - COMSPEC=C:\WINDOWS\system32\cmd.exe - FP_NO_HOST_CHECK=NO - HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium - HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" - HOMEDRIVE=C: - HOMEPATH=\Documents and Settings\johnk - LOGONSERVER=\\PC213502752220 - MWCSYM2INCLUDES=C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK - MWSYM2LIBRARIES=C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs - MWSYM2LIBRARYFILES=MSL_All_MSE_Symbian_D.lib;gdi32.lib;user32.lib;kernel32.lib; - NUMBER_OF_PROCESSORS=2 - ONLINESERVICES=Online Services - OS=Windows_NT - PATH=C:\Qt\2009.03\mingw\bin;C:\Qt\2009.03\qt\bin;C:\Symbian\ARM\bin\win_32-pentium;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;C:\Python25\;C:\Program Files\PC Connectivity Solution\;C:\Perl\bin\;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Program Files\ActivIdentity\ActivClient\;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Symbian\Tools\ADT_1.0\raptor\bin;C:\Program Files\Mercurial;%EPOCROOT%epoc32\tools;C:\Symbian\Tools\PDT_1.0\;C:\Symbian\Tools\PDT_1.0\cdb;C:\Symbian\Tools\PDT_1.0\CBR tools;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\STAT\stat;C:\Symbian\Tools\PDT_1.0\SVS Test Development;C:\Symbian\Tools\PDT_1.0\Test Driver;C:\Symbian\Tools\PDT_1.0\Use Case Controller\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\syncservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\testdriverservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller;C:\Program Files\Support Tools\;C:\Symbian\ARM\RVCT\Programs\4.0\591\multi1\win_32-pentium - PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw - PLATFORM=BNB - PROCESSOR_ARCHITECTURE=x86 - PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel - PROCESSOR_LEVEL=6 - PROCESSOR_REVISION=1706 - PROGRAMFILES=C:\Program Files - QTDIR=C:/Qt/2009.03/qt - RVCT40BIN=C:\Symbian\ARM\RVCT\Programs\4.0\591\multi1\win_32-pentium - RVCT40INC=C:\Symbian\ARM\RVCT\Data\4.0\591\include\windows - RVCT40LIB=C:\Symbian\ARM\RVCT\Data\4.0\591\lib - SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor - SESSIONNAME=Console - SYSTEMDRIVE=C: - SYSTEMROOT=C:\WINDOWS - TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - USERDOMAIN=PC213502752220 - USERNAME=JohnK - USERPROFILE=C:\Documents and Settings\johnk - WINDIR=C:\WINDOWS - __COMPAT_LAYER=EnableNXShowUI - - - C:/workspace/QtExamples/BuildLogViewer/BuildLogViewer.pro - -spec - win32-g++ - -r - - C:/Qt/2009.03/qt/bin/qmake.exe - false - C:/workspace/QtExamples/BuildLogViewer - 2 - - - - buildconfiguration-Debug-buildstep1 - - Debug - - /M=RVCT22_ASMOPT - ALLUSERSPROFILE=C:\Documents and Settings\All Users - APPDATA=C:\Documents and Settings\johnk\Application Data - ARMLMD_LICENSE_FILE=C:\Symbian\ARM\Licenses\license40.bat - ARMROOT=C:\Symbian\ARM - CLIENTNAME=Console - COMMONPROGRAMFILES=C:\Program Files\Common Files - COMPUTERNAME=PC213502752220 - COMSPEC=C:\WINDOWS\system32\cmd.exe - FP_NO_HOST_CHECK=NO - HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium - HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" - HOMEDRIVE=C: - HOMEPATH=\Documents and Settings\johnk - LOGONSERVER=\\PC213502752220 - MWCSYM2INCLUDES=C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK - MWSYM2LIBRARIES=C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs - MWSYM2LIBRARYFILES=MSL_All_MSE_Symbian_D.lib;gdi32.lib;user32.lib;kernel32.lib; - NUMBER_OF_PROCESSORS=2 - ONLINESERVICES=Online Services - OS=Windows_NT - PATH=C:\Qt\2009.03\mingw\bin;C:\Qt\2009.03\qt\bin;C:\Symbian\ARM\bin\win_32-pentium;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;C:\Python25\;C:\Program Files\PC Connectivity Solution\;C:\Perl\bin\;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Program Files\ActivIdentity\ActivClient\;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Symbian\Tools\ADT_1.0\raptor\bin;C:\Program Files\Mercurial;%EPOCROOT%epoc32\tools;C:\Symbian\Tools\PDT_1.0\;C:\Symbian\Tools\PDT_1.0\cdb;C:\Symbian\Tools\PDT_1.0\CBR tools;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\STAT\stat;C:\Symbian\Tools\PDT_1.0\SVS Test Development;C:\Symbian\Tools\PDT_1.0\Test Driver;C:\Symbian\Tools\PDT_1.0\Use Case Controller\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\syncservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\testdriverservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller;C:\Program Files\Support Tools\;C:\Symbian\ARM\RVCT\Programs\4.0\591\multi1\win_32-pentium - PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw - PLATFORM=BNB - PROCESSOR_ARCHITECTURE=x86 - PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel - PROCESSOR_LEVEL=6 - PROCESSOR_REVISION=1706 - PROGRAMFILES=C:\Program Files - QTDIR=C:/Qt/2009.03/qt - RVCT40BIN=C:\Symbian\ARM\RVCT\Programs\4.0\591\multi1\win_32-pentium - RVCT40INC=C:\Symbian\ARM\RVCT\Data\4.0\591\include\windows - RVCT40LIB=C:\Symbian\ARM\RVCT\Data\4.0\591\lib - SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor - SESSIONNAME=Console - SYSTEMDRIVE=C: - SYSTEMROOT=C:\WINDOWS - TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - USERDOMAIN=PC213502752220 - USERNAME=JohnK - USERPROFILE=C:\Documents and Settings\johnk - WINDIR=C:\WINDOWS - __COMPAT_LAYER=EnableNXShowUI - - - -w - - C:/Qt/2009.03/mingw/bin/mingw32-make.exe - true - C:/workspace/QtExamples/BuildLogViewer - - - - buildconfiguration-Debug-cleanstep0 - - Debug - - /M=RVCT22_ASMOPT - ALLUSERSPROFILE=C:\Documents and Settings\All Users - APPDATA=C:\Documents and Settings\johnk\Application Data - ARMLMD_LICENSE_FILE=C:\Symbian\ARM\Licenses\license40.bat - ARMROOT=C:\Symbian\ARM - CLIENTNAME=Console - COMMONPROGRAMFILES=C:\Program Files\Common Files - COMPUTERNAME=PC213502752220 - COMSPEC=C:\WINDOWS\system32\cmd.exe - FP_NO_HOST_CHECK=NO - HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium - HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" - HOMEDRIVE=C: - HOMEPATH=\Documents and Settings\johnk - LOGONSERVER=\\PC213502752220 - MWCSYM2INCLUDES=C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK - MWSYM2LIBRARIES=C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs - MWSYM2LIBRARYFILES=MSL_All_MSE_Symbian_D.lib;gdi32.lib;user32.lib;kernel32.lib; - NUMBER_OF_PROCESSORS=2 - ONLINESERVICES=Online Services - OS=Windows_NT - PATH=C:\Qt\2009.03\mingw\bin;C:\Qt\2009.03\qt\bin;C:\Symbian\ARM\bin\win_32-pentium;C:\Symbian\Tools\ADT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;C:\Python25\;C:\Program Files\PC Connectivity Solution\;C:\Perl\bin\;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Program Files\ActivIdentity\ActivClient\;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;C:\Symbian\Tools\ADT_1.0\raptor\bin;C:\Program Files\Mercurial;%EPOCROOT%epoc32\tools;C:\Symbian\Tools\PDT_1.0\;C:\Symbian\Tools\PDT_1.0\cdb;C:\Symbian\Tools\PDT_1.0\CBR tools;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\STAT\stat;C:\Symbian\Tools\PDT_1.0\SVS Test Development;C:\Symbian\Tools\PDT_1.0\Test Driver;C:\Symbian\Tools\PDT_1.0\Use Case Controller\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\syncservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\testdriverservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller;C:\Program Files\Support Tools\;C:\Symbian\ARM\RVCT\Programs\4.0\591\multi1\win_32-pentium - PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw - PLATFORM=BNB - PROCESSOR_ARCHITECTURE=x86 - PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel - PROCESSOR_LEVEL=6 - PROCESSOR_REVISION=1706 - PROGRAMFILES=C:\Program Files - QTDIR=C:/Qt/2009.03/qt - RVCT40BIN=C:\Symbian\ARM\RVCT\Programs\4.0\591\multi1\win_32-pentium - RVCT40INC=C:\Symbian\ARM\RVCT\Data\4.0\591\include\windows - RVCT40LIB=C:\Symbian\ARM\RVCT\Data\4.0\591\lib - SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor - SESSIONNAME=Console - SYSTEMDRIVE=C: - SYSTEMROOT=C:\WINDOWS - TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - USERDOMAIN=PC213502752220 - USERNAME=JohnK - USERPROFILE=C:\Documents and Settings\johnk - WINDIR=C:\WINDOWS - __COMPAT_LAYER=EnableNXShowUI - - - clean - -w - - C:/Qt/2009.03/mingw/bin/mingw32-make.exe - true - C:/workspace/QtExamples/BuildLogViewer - - - - buildconfiguration-Release-buildstep0 - - Release - - ALLUSERSPROFILE=C:\Documents and Settings\All Users - APPDATA=C:\Documents and Settings\johnk\Application Data - CLIENTNAME=Console - COMMONPROGRAMFILES=C:\Program Files\Common Files - COMPUTERNAME=PC213502752220 - COMSPEC=C:\WINDOWS\system32\cmd.exe - FP_NO_HOST_CHECK=NO - HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium - HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" - HOMEDRIVE=C: - HOMEPATH=\Documents and Settings\johnk - LOGONSERVER=\\PC213502752220 - MWCSYM2INCLUDES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK - MWSYM2LIBRARIES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs - MWSYM2LIBRARYFILES=MSL_All_MSE_Symbian_D.lib;gdi32.lib;user32.lib;kernel32.lib; - NUMBER_OF_PROCESSORS=2 - ONLINESERVICES=Online Services - OS=Windows_NT - PATH=C:\Qt\2009.03\mingw\bin;C:\Qt\2009.03\qt\bin;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;C:\Python25\;C:\Program Files\PC Connectivity Solution\;C:\Perl\bin\;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Program Files\ActivIdentity\ActivClient\;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;;C:\Symbian\Tools\ADT_1.0\raptor\bin;C:\Program Files\Mercurial;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\;C:\Symbian\Tools\PDT_1.0\cdb;C:\Symbian\Tools\PDT_1.0\CBR tools;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\STAT\stat;C:\Symbian\Tools\PDT_1.0\SVS Test Development;C:\Symbian\Tools\PDT_1.0\Test Driver;C:\Symbian\Tools\PDT_1.0\Use Case Controller\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\syncservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\testdriverservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller;%EPOCROOT%epoc32\tools - PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw - PLATFORM=BNB - PROCESSOR_ARCHITECTURE=x86 - PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel - PROCESSOR_LEVEL=6 - PROCESSOR_REVISION=1706 - PROGRAMFILES=C:\Program Files - QTDIR=C:/Qt/2009.03/qt - SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor - SESSIONNAME=Console - SYSTEMDRIVE=C: - SYSTEMROOT=C:\WINDOWS - TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - USERDOMAIN=PC213502752220 - USERNAME=JohnK - USERPROFILE=C:\Documents and Settings\johnk - WINDIR=C:\WINDOWS - - - C:/workspace/tinker/BuildLogViewer/BuildLogViewer.pro - -spec - win32-g++ - -r - CONFIG+=release - - C:/Qt/2009.03/qt/bin/qmake.exe - true - C:/workspace/tinker/BuildLogViewer - 0 - - - - buildconfiguration-Release-buildstep1 - - Release - - ALLUSERSPROFILE=C:\Documents and Settings\All Users - APPDATA=C:\Documents and Settings\johnk\Application Data - CLIENTNAME=Console - COMMONPROGRAMFILES=C:\Program Files\Common Files - COMPUTERNAME=PC213502752220 - COMSPEC=C:\WINDOWS\system32\cmd.exe - FP_NO_HOST_CHECK=NO - HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium - HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" - HOMEDRIVE=C: - HOMEPATH=\Documents and Settings\johnk - LOGONSERVER=\\PC213502752220 - MWCSYM2INCLUDES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK - MWSYM2LIBRARIES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs - MWSYM2LIBRARYFILES=MSL_All_MSE_Symbian_D.lib;gdi32.lib;user32.lib;kernel32.lib; - NUMBER_OF_PROCESSORS=2 - ONLINESERVICES=Online Services - OS=Windows_NT - PATH=C:\Qt\2009.03\mingw\bin;C:\Qt\2009.03\qt\bin;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;C:\Python25\;C:\Program Files\PC Connectivity Solution\;C:\Perl\bin\;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\Perl\site\bin;C:\Perl\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;c:\Program Files\ActivIdentity\ActivClient\;C:\Program Files\ATI Technologies\ATI.ACE\Core-Static;;C:\Symbian\Tools\ADT_1.0\raptor\bin;C:\Program Files\Mercurial;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\;C:\Symbian\Tools\PDT_1.0\cdb;C:\Symbian\Tools\PDT_1.0\CBR tools;C:\Symbian\Tools\PDT_1.0\raptor\bin;C:\Symbian\Tools\PDT_1.0\STAT\stat;C:\Symbian\Tools\PDT_1.0\SVS Test Development;C:\Symbian\Tools\PDT_1.0\Test Driver;C:\Symbian\Tools\PDT_1.0\Use Case Controller\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\syncservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller\testdriverservice\bin;C:\Symbian\Tools\PDT_1.0\Use Case Controller;%EPOCROOT%epoc32\tools - PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw - PLATFORM=BNB - PROCESSOR_ARCHITECTURE=x86 - PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel - PROCESSOR_LEVEL=6 - PROCESSOR_REVISION=1706 - PROGRAMFILES=C:\Program Files - QTDIR=C:/Qt/2009.03/qt - SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor - SESSIONNAME=Console - SYSTEMDRIVE=C: - SYSTEMROOT=C:\WINDOWS - TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp - USERDOMAIN=PC213502752220 - USERNAME=JohnK - USERPROFILE=C:\Documents and Settings\johnk - WINDIR=C:\WINDOWS - - - -w - - C:/Qt/2009.03/mingw/bin/mingw32-make.exe - true - C:/workspace/tinker/BuildLogViewer - - - - buildconfiguration-Release-cleanstep0 - - Release - - - - buildconfigurations - - Debug - Release - - - - buildstep0 - - - - - - - buildstep1 - - - - - - buildsteps - - trolltech.qt4projectmanager.qmake - trolltech.qt4projectmanager.make - - - - cleanstep0 - - - true - - - - cleansteps - - trolltech.qt4projectmanager.make - - - - defaultFileEncoding - System - - - project - - - diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/BuildStatus.cpp --- a/BuildLogViewer/BuildStatus.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,49 +0,0 @@ -#include "BuildStatus.h" - -BuildStatus::BuildStatus(QObject *parent) -{ - setParent(parent); - this->m_packageName = new QString(""); - this->m_PresentStatus = new QString("Pass"); - this->m_status = true; -} - -void BuildStatus::setTime(QDateTime w) -{ - this->m_when = w; -} - -QString BuildStatus::time() -{ - return this->m_when.toString(); -} - -void BuildStatus::setName(QString n) -{ - if (m_packageName) - { - delete m_packageName; - m_packageName = NULL; - } - m_packageName = new QString(n); -} - -const QString *BuildStatus::name() -{ - return m_packageName; -} - -void BuildStatus::setStatus (bool n ) -{ - m_status = n ; - if (!m_status) - { - this->m_PresentStatus = new QString("Failed"); - } -} - - -const QString *BuildStatus::status() -{ - return this->m_PresentStatus; -} diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/BuildStatus.h --- a/BuildLogViewer/BuildStatus.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,38 +0,0 @@ -#ifndef BUILDSTATUS_H -#define BUILDSTATUS_H - -#include -#include - -class BuildStatus : public QObject -{ - Q_OBJECT - -public: - BuildStatus(QObject *parent = 0); - -public slots: - void setName(QString n); - void setStatus (bool n ); - void setTime(QDateTime w); - -signals: - void textEmitted(const QString &); - -public: - const QString *name(); - const QString *status(); - QString time(); - -private: - // What was the name of the package? - QString *m_packageName; - // At this time, the symbain build log doesn't have a timestamp in it. - // So, we will use the timestamp on the file. - QDateTime m_when; - // Did the build succeed? - bool m_status; - QString *m_PresentStatus; -}; - -#endif // BUILDSTATUS_H diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/Document.cpp --- a/BuildLogViewer/Document.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -#include -#include -#include - -#include "Document.h" - -Document::Document(QWidget *parent, QString filename) : QTreeView (parent) -{ - setAttribute(Qt::WA_DeleteOnClose); - - QFile file(filename); - QFileInfo fi(file); - this->setWindowTitle(fi.baseName()); - - if (!file.open(QIODevice::ReadOnly)) { - QMessageBox::warning(this, tr("Build Log Viewer"), tr("Cannot open log.")); - return ; - } - QDomDocument *log = new QDomDocument("Build Log"); - if (!log->setContent(&file)) { - QMessageBox::warning(this, tr("Build Log Viewer"), tr("Cannot set content.")); - delete log; - file.close(); - return ; - } - file.close(); - model = new DomModel(log, this); - this->setModel(model); -} diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/Document.h --- a/BuildLogViewer/Document.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -#ifndef DOCUMENT_H -#define DOCUMENT_H - -#include -#include - -#include -#include - -#include - -#include "DomModel.h" - -class Document : public QTreeView -{ - Q_OBJECT - -public: - Document(QWidget *parent,QString); - -private: - DomModel *model; -}; - -#endif // DOCUMENT_H diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/DomItem.cpp --- a/BuildLogViewer/DomItem.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,88 +0,0 @@ - /**************************************************************************** - ** - ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - ** Contact: Nokia Corporation (qt-info@nokia.com) - ** - ** This file is part of the examples of the Qt Toolkit. - ** - ** $QT_BEGIN_LICENSE:LGPL$ - ** Commercial Usage - ** Licensees holding valid Qt Commercial licenses may use this file in - ** accordance with the Qt Commercial License Agreement provided with the - ** Software or, alternatively, in accordance with the terms contained in - ** a written agreement between you and Nokia. - ** - ** GNU Lesser General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU Lesser - ** General Public License version 2.1 as published by the Free Software - ** Foundation and appearing in the file LICENSE.LGPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU Lesser General Public License version 2.1 requirements - ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - ** - ** In addition, as a special exception, Nokia gives you certain - ** additional rights. These rights are described in the Nokia Qt LGPL - ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this - ** package. - ** - ** GNU General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU - ** General Public License version 3.0 as published by the Free Software - ** Foundation and appearing in the file LICENSE.GPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU General Public License version 3.0 requirements will be - ** met: http://www.gnu.org/copyleft/gpl.html. - ** - ** If you are unsure which license is appropriate for your use, please - ** contact the sales department at http://www.qtsoftware.com/contact. - ** $QT_END_LICENSE$ - ** - ****************************************************************************/ - - #include - - #include "domitem.h" - - DomItem::DomItem(QDomNode &node, int row, DomItem *parent) - { - domNode = node; - // Record the item's location within its parent. - rowNumber = row; - parentItem = parent; - } - - DomItem::~DomItem() - { - QHash::iterator it; - for (it = childItems.begin(); it != childItems.end(); ++it) - delete it.value(); - } - - QDomNode DomItem::node() const - { - return domNode; - } - - DomItem *DomItem::parent() - { - return parentItem; - } - - DomItem *DomItem::child(int i) - { - if (childItems.contains(i)) - return childItems[i]; - - if (i >= 0 && i < domNode.childNodes().count()) { - QDomNode childNode = domNode.childNodes().item(i); - DomItem *childItem = new DomItem(childNode, i, this); - childItems[i] = childItem; - return childItem; - } - return 0; - } - - int DomItem::row() - { - return rowNumber; - } diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/DomItem.h --- a/BuildLogViewer/DomItem.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ -/**************************************************************************** - ** - ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - ** Contact: Nokia Corporation (qt-info@nokia.com) - ** - ** This file is part of the examples of the Qt Toolkit. - ** - ** $QT_BEGIN_LICENSE:LGPL$ - ** Commercial Usage - ** Licensees holding valid Qt Commercial licenses may use this file in - ** accordance with the Qt Commercial License Agreement provided with the - ** Software or, alternatively, in accordance with the terms contained in - ** a written agreement between you and Nokia. - ** - ** GNU Lesser General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU Lesser - ** General Public License version 2.1 as published by the Free Software - ** Foundation and appearing in the file LICENSE.LGPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU Lesser General Public License version 2.1 requirements - ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - ** - ** In addition, as a special exception, Nokia gives you certain - ** additional rights. These rights are described in the Nokia Qt LGPL - ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this - ** package. - ** - ** GNU General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU - ** General Public License version 3.0 as published by the Free Software - ** Foundation and appearing in the file LICENSE.GPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU General Public License version 3.0 requirements will be - ** met: http://www.gnu.org/copyleft/gpl.html. - ** - ** If you are unsure which license is appropriate for your use, please - ** contact the sales department at http://www.qtsoftware.com/contact. - ** $QT_END_LICENSE$ - ** - ****************************************************************************/ - - #ifndef DOMITEM_H - #define DOMITEM_H - - #include - #include - - class DomItem - { - public: - DomItem(QDomNode &node, int row, DomItem *parent = 0); - ~DomItem(); - DomItem *child(int i); - DomItem *parent(); - QDomNode node() const; - int row(); - - private: - QDomNode domNode; - QHash childItems; - DomItem *parentItem; - int rowNumber; - }; - -#endif diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/DomModel.cpp --- a/BuildLogViewer/DomModel.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,170 +0,0 @@ -/**************************************************************************** - ** - ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - ** Contact: Nokia Corporation (qt-info@nokia.com) - ** - ** This file is part of the examples of the Qt Toolkit. - ** - ** $QT_BEGIN_LICENSE:LGPL$ - ** Commercial Usage - ** Licensees holding valid Qt Commercial licenses may use this file in - ** accordance with the Qt Commercial License Agreement provided with the - ** Software or, alternatively, in accordance with the terms contained in - ** a written agreement between you and Nokia. - ** - ** GNU Lesser General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU Lesser - ** General Public License version 2.1 as published by the Free Software - ** Foundation and appearing in the file LICENSE.LGPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU Lesser General Public License version 2.1 requirements - ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - ** - ** In addition, as a special exception, Nokia gives you certain - ** additional rights. These rights are described in the Nokia Qt LGPL - ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this - ** package. - ** - ** GNU General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU - ** General Public License version 3.0 as published by the Free Software - ** Foundation and appearing in the file LICENSE.GPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU General Public License version 3.0 requirements will be - ** met: http://www.gnu.org/copyleft/gpl.html. - ** - ** If you are unsure which license is appropriate for your use, please - ** contact the sales department at http://www.qtsoftware.com/contact. - ** $QT_END_LICENSE$ - ** - ****************************************************************************/ - - #include - #include - - #include "domitem.h" - #include "dommodel.h" - - DomModel::DomModel(QDomDocument *document, QObject *parent) - : QAbstractItemModel(parent), domDocument(document) - { - rootItem = new DomItem(*domDocument, 0); - } - - DomModel::~DomModel() - { - delete rootItem; - delete this->domDocument; - } - - int DomModel::columnCount(const QModelIndex &/*parent*/) const - { - return 3; - } - - QVariant DomModel::data(const QModelIndex &index, int role) const - { - if (!index.isValid()) - return QVariant(); - - if (role != Qt::DisplayRole) - return QVariant(); - - DomItem *item = static_cast(index.internalPointer()); - - QDomNode node = item->node(); - QStringList attributes; - QDomNamedNodeMap attributeMap = node.attributes(); - - switch (index.column()) { - case 0: - return node.nodeName(); - case 1: - for (int i = 0; i < attributeMap.count(); ++i) { - QDomNode attribute = attributeMap.item(i); - attributes << attribute.nodeName() + "=\"" - +attribute.nodeValue() + "\""; - } - return attributes.join(" "); - case 2: - return node.nodeValue().split("\n").join(" "); - default: - return QVariant(); - } - } - - Qt::ItemFlags DomModel::flags(const QModelIndex &index) const - { - if (!index.isValid()) - return 0; - - return Qt::ItemIsEnabled | Qt::ItemIsSelectable; - } - - QVariant DomModel::headerData(int section, Qt::Orientation orientation, - int role) const - { - if (orientation == Qt::Horizontal && role == Qt::DisplayRole) { - switch (section) { - case 0: - return tr("Name"); - case 1: - return tr("Attributes"); - case 2: - return tr("Value"); - default: - return QVariant(); - } - } - - return QVariant(); - } - - QModelIndex DomModel::index(int row, int column, const QModelIndex &parent) - const - { - if (!hasIndex(row, column, parent)) - return QModelIndex(); - - DomItem *parentItem; - - if (!parent.isValid()) - parentItem = rootItem; - else - parentItem = static_cast(parent.internalPointer()); - - DomItem *childItem = parentItem->child(row); - if (childItem) - return createIndex(row, column, childItem); - else - return QModelIndex(); - } - - QModelIndex DomModel::parent(const QModelIndex &child) const - { - if (!child.isValid()) - return QModelIndex(); - - DomItem *childItem = static_cast(child.internalPointer()); - DomItem *parentItem = childItem->parent(); - - if (!parentItem || parentItem == rootItem) - return QModelIndex(); - - return createIndex(parentItem->row(), 0, parentItem); - } - - int DomModel::rowCount(const QModelIndex &parent) const - { - if (parent.column() > 0) - return 0; - - DomItem *parentItem; - - if (!parent.isValid()) - parentItem = rootItem; - else - parentItem = static_cast(parent.internalPointer()); - - return parentItem->node().childNodes().count(); - } diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/DomModel.h --- a/BuildLogViewer/DomModel.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,80 +0,0 @@ - /**************************************************************************** - ** - ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - ** Contact: Nokia Corporation (qt-info@nokia.com) - ** - ** This file is part of the examples of the Qt Toolkit. - ** - ** $QT_BEGIN_LICENSE:LGPL$ - ** Commercial Usage - ** Licensees holding valid Qt Commercial licenses may use this file in - ** accordance with the Qt Commercial License Agreement provided with the - ** Software or, alternatively, in accordance with the terms contained in - ** a written agreement between you and Nokia. - ** - ** GNU Lesser General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU Lesser - ** General Public License version 2.1 as published by the Free Software - ** Foundation and appearing in the file LICENSE.LGPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU Lesser General Public License version 2.1 requirements - ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. - ** - ** In addition, as a special exception, Nokia gives you certain - ** additional rights. These rights are described in the Nokia Qt LGPL - ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this - ** package. - ** - ** GNU General Public License Usage - ** Alternatively, this file may be used under the terms of the GNU - ** General Public License version 3.0 as published by the Free Software - ** Foundation and appearing in the file LICENSE.GPL included in the - ** packaging of this file. Please review the following information to - ** ensure the GNU General Public License version 3.0 requirements will be - ** met: http://www.gnu.org/copyleft/gpl.html. - ** - ** If you are unsure which license is appropriate for your use, please - ** contact the sales department at http://www.qtsoftware.com/contact. - ** $QT_END_LICENSE$ - ** - ****************************************************************************/ - - #ifndef DOMMODEL_H - #define DOMMODEL_H - - #include - #include - #include - #include - -/* - * This class encapsulates the DOM tree for the build output log and provides - * an interface to the classes which presents it to the user. - */ - - class DomItem; - - class DomModel : public QAbstractItemModel - { - Q_OBJECT - - public: - DomModel(QDomDocument *document, QObject *parent = 0); - ~DomModel(); - - QVariant data(const QModelIndex &index, int role) const; - Qt::ItemFlags flags(const QModelIndex &index) const; - QVariant headerData(int section, Qt::Orientation orientation, - int role = Qt::DisplayRole) const; - QModelIndex index(int row, int column, - const QModelIndex &parent = QModelIndex()) const; - QModelIndex parent(const QModelIndex &child) const; - int rowCount(const QModelIndex &parent = QModelIndex()) const; - int columnCount(const QModelIndex &parent = QModelIndex()) const; - - private: - QDomDocument *domDocument; - DomItem *rootItem; - }; - -#endif diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/Makefile --- a/BuildLogViewer/Makefile Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,143 +0,0 @@ -############################################################################# -# Makefile for building: BuildLogViewer -# Generated by qmake (2.01a) (Qt 4.5.2) on: Mon Nov 16 10:00:07 2009 -# Project: BuildLogViewer.pro -# Template: app -# Command: c:\Qt\2009.03\qt\bin\qmake.exe -spec ..\..\..\Qt\2009.03\qt\mkspecs\win32-g++ -win32 -o Makefile BuildLogViewer.pro -############################################################################# - -first: debug -install: debug-install -uninstall: debug-uninstall -MAKEFILE = Makefile -QMAKE = c:\Qt\2009.03\qt\bin\qmake.exe -DEL_FILE = del -CHK_DIR_EXISTS= if not exist -MKDIR = mkdir -COPY = copy /y -COPY_FILE = $(COPY) -COPY_DIR = xcopy /s /q /y /i -INSTALL_FILE = $(COPY_FILE) -INSTALL_PROGRAM = $(COPY_FILE) -INSTALL_DIR = $(COPY_DIR) -DEL_FILE = del -SYMLINK = -DEL_DIR = rmdir -MOVE = move -CHK_DIR_EXISTS= if not exist -MKDIR = mkdir -SUBTARGETS = \ - debug \ - release - -debug: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug -debug-make_default: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug -debug-make_first: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug first -debug-all: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug all -debug-clean: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug clean -debug-distclean: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug distclean -debug-install: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug install -debug-uninstall: $(MAKEFILE).Debug FORCE - $(MAKE) -f $(MAKEFILE).Debug uninstall -release: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release -release-make_default: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release -release-make_first: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release first -release-all: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release all -release-clean: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release clean -release-distclean: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release distclean -release-install: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release install -release-uninstall: $(MAKEFILE).Release FORCE - $(MAKE) -f $(MAKEFILE).Release uninstall - -Makefile: BuildLogViewer.pro ../../../Qt/2009.03/qt/mkspecs/win32-g++/qmake.conf ../../../Qt/2009.03/qt/mkspecs/qconfig.pri \ - ../../../Qt/2009.03/qt/mkspecs/features/qt_functions.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/qt_config.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/exclusive_builds.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/default_pre.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/default_pre.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/debug.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/debug_and_release.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/default_post.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/default_post.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/rtti.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/exceptions.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/stl.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/shared.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/warn_on.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/qt.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/thread.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/moc.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/win32/windows.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/resources.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/uic.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/yacc.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/lex.prf \ - ../../../Qt/2009.03/qt/mkspecs/features/include_source_dir.prf \ - c:/Qt/2009.03/qt/lib/qtmaind.prl - $(QMAKE) -spec ..\..\..\Qt\2009.03\qt\mkspecs\win32-g++ -win32 -o Makefile BuildLogViewer.pro -..\..\..\Qt\2009.03\qt\mkspecs\qconfig.pri: -..\..\..\Qt\2009.03\qt\mkspecs\features\qt_functions.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\qt_config.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\exclusive_builds.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\default_pre.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\default_pre.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\debug.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\debug_and_release.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\default_post.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\default_post.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\rtti.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\exceptions.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\stl.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\shared.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\warn_on.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\qt.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\thread.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\moc.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\win32\windows.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\resources.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\uic.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\yacc.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\lex.prf: -..\..\..\Qt\2009.03\qt\mkspecs\features\include_source_dir.prf: -c:\Qt\2009.03\qt\lib\qtmaind.prl: -qmake: qmake_all FORCE - @$(QMAKE) -spec ..\..\..\Qt\2009.03\qt\mkspecs\win32-g++ -win32 -o Makefile BuildLogViewer.pro - -qmake_all: FORCE - -make_default: debug-make_default release-make_default FORCE -make_first: debug-make_first release-make_first FORCE -all: debug-all release-all FORCE -clean: debug-clean release-clean FORCE -distclean: debug-distclean release-distclean FORCE - -$(DEL_FILE) Makefile - -debug-mocclean: $(MAKEFILE).Debug - $(MAKE) -f $(MAKEFILE).Debug mocclean -release-mocclean: $(MAKEFILE).Release - $(MAKE) -f $(MAKEFILE).Release mocclean -mocclean: debug-mocclean release-mocclean - -debug-mocables: $(MAKEFILE).Debug - $(MAKE) -f $(MAKEFILE).Debug mocables -release-mocables: $(MAKEFILE).Release - $(MAKE) -f $(MAKEFILE).Release mocables -mocables: debug-mocables release-mocables -FORCE: - -$(MAKEFILE).Debug: Makefile -$(MAKEFILE).Release: Makefile diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/Makefile.Debug --- a/BuildLogViewer/Makefile.Debug Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,220 +0,0 @@ -############################################################################# -# Makefile for building: BuildLogViewer -# Generated by qmake (2.01a) (Qt 4.5.2) on: Mon Nov 16 10:00:07 2009 -# Project: BuildLogViewer.pro -# Template: app -############################################################################# - -####### Compiler, tools and options - -CC = gcc -CXX = g++ -DEFINES = -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -CFLAGS = -g -Wall $(DEFINES) -CXXFLAGS = -g -frtti -fexceptions -mthreads -Wall $(DEFINES) -INCPATH = -I"..\..\..\Qt\2009.03\qt\include\QtCore" -I"..\..\..\Qt\2009.03\qt\include\QtGui" -I"..\..\..\Qt\2009.03\qt\include\QtXml" -I"..\..\..\Qt\2009.03\qt\include" -I"." -I"..\..\..\Qt\2009.03\qt\include\ActiveQt" -I"debug" -I"." -I"..\..\..\Qt\2009.03\qt\mkspecs\win32-g++" -LINK = g++ -LFLAGS = -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -mthreads -Wl -Wl,-subsystem,windows -LIBS = -L"c:\Qt\2009.03\qt\lib" -lmingw32 -lqtmaind -lQtXmld4 -lQtGuid4 -lQtCored4 -QMAKE = c:\Qt\2009.03\qt\bin\qmake.exe -IDC = c:\Qt\2009.03\qt\bin\idc.exe -IDL = midl -ZIP = zip -r -9 -DEF_FILE = -RES_FILE = -COPY = copy /y -COPY_FILE = $(COPY) -COPY_DIR = xcopy /s /q /y /i -DEL_FILE = del -DEL_DIR = rmdir -MOVE = move -CHK_DIR_EXISTS= if not exist -MKDIR = mkdir -INSTALL_FILE = $(COPY_FILE) -INSTALL_PROGRAM = $(COPY_FILE) -INSTALL_DIR = $(COPY_DIR) - -####### Output directory - -OBJECTS_DIR = debug - -####### Files - -SOURCES = AtAGlance.cpp \ - BuildStatus.cpp \ - Document.cpp \ - DomItem.cpp \ - DomModel.cpp \ - main.cpp \ - mainwindow.cpp debug\moc_AtAGlance.cpp \ - debug\moc_BuildStatus.cpp \ - debug\moc_Document.cpp \ - debug\moc_DomModel.cpp \ - debug\moc_mainwindow.cpp -OBJECTS = debug/AtAGlance.o \ - debug/BuildStatus.o \ - debug/Document.o \ - debug/DomItem.o \ - debug/DomModel.o \ - debug/main.o \ - debug/mainwindow.o \ - debug/moc_AtAGlance.o \ - debug/moc_BuildStatus.o \ - debug/moc_Document.o \ - debug/moc_DomModel.o \ - debug/moc_mainwindow.o -DIST = -QMAKE_TARGET = BuildLogViewer -DESTDIR = debug\ #avoid trailing-slash linebreak -TARGET = BuildLogViewer.exe -DESTDIR_TARGET = debug\BuildLogViewer.exe - -####### Implicit rules - -.SUFFIXES: .cpp .cc .cxx .c - -.cpp.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.cc.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.cxx.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.c.o: - $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< - -####### Build rules - -first: all -all: Makefile.Debug $(DESTDIR_TARGET) - -$(DESTDIR_TARGET): ui_BuildResults.h ui_mainwindow.h $(OBJECTS) - $(LINK) $(LFLAGS) -o $(DESTDIR_TARGET) object_script.BuildLogViewer.Debug $(LIBS) - - -qmake: FORCE - @$(QMAKE) -spec ..\..\..\Qt\2009.03\qt\mkspecs\win32-g++ -win32 -o Makefile.Debug BuildLogViewer.pro - -dist: - $(ZIP) BuildLogViewer.zip $(SOURCES) $(DIST) BuildLogViewer.pro ..\..\..\Qt\2009.03\qt\mkspecs\qconfig.pri ..\..\..\Qt\2009.03\qt\mkspecs\features\qt_functions.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\qt_config.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\exclusive_builds.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\default_pre.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\default_pre.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\debug.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\debug_and_release.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\default_post.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\default_post.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\build_pass.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\rtti.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\exceptions.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\stl.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\shared.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\warn_on.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\qt.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\thread.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\moc.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\windows.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\resources.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\uic.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\yacc.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\lex.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\include_source_dir.prf c:\Qt\2009.03\qt\lib\qtmaind.prl HEADERS RESOURCES IMAGES SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES - -clean: compiler_clean - -$(DEL_FILE) debug\AtAGlance.o debug\BuildStatus.o debug\Document.o debug\DomItem.o debug\DomModel.o debug\main.o debug\mainwindow.o debug\moc_AtAGlance.o debug\moc_BuildStatus.o debug\moc_Document.o debug\moc_DomModel.o debug\moc_mainwindow.o - -distclean: clean - -$(DEL_FILE) $(DESTDIR_TARGET) - -$(DEL_FILE) Makefile.Debug - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: debug/moc_AtAGlance.cpp debug/moc_BuildStatus.cpp debug/moc_Document.cpp debug/moc_DomModel.cpp debug/moc_mainwindow.cpp -compiler_moc_header_clean: - -$(DEL_FILE) debug\moc_AtAGlance.cpp debug\moc_BuildStatus.cpp debug\moc_Document.cpp debug\moc_DomModel.cpp debug\moc_mainwindow.cpp -debug/moc_AtAGlance.cpp: BuildStatus.h \ - ui_BuildResults.h \ - AtAGlance.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 AtAGlance.h -o debug\moc_AtAGlance.cpp - -debug/moc_BuildStatus.cpp: BuildStatus.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 BuildStatus.h -o debug\moc_BuildStatus.cpp - -debug/moc_Document.cpp: DomModel.h \ - Document.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 Document.h -o debug\moc_Document.cpp - -debug/moc_DomModel.cpp: DomModel.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 DomModel.h -o debug\moc_DomModel.cpp - -debug/moc_mainwindow.cpp: Document.h \ - DomModel.h \ - mainwindow.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 mainwindow.h -o debug\moc_mainwindow.cpp - -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: ui_BuildResults.h ui_mainwindow.h -compiler_uic_clean: - -$(DEL_FILE) ui_BuildResults.h ui_mainwindow.h -ui_BuildResults.h: BuildResults.ui - c:\Qt\2009.03\qt\bin\uic.exe BuildResults.ui -o ui_BuildResults.h - -ui_mainwindow.h: mainwindow.ui - c:\Qt\2009.03\qt\bin\uic.exe mainwindow.ui -o ui_mainwindow.h - -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean compiler_uic_clean - - - -####### Compile - -debug/AtAGlance.o: AtAGlance.cpp AtAGlance.h \ - BuildStatus.h \ - ui_BuildResults.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\AtAGlance.o AtAGlance.cpp - -debug/BuildStatus.o: BuildStatus.cpp BuildStatus.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\BuildStatus.o BuildStatus.cpp - -debug/Document.o: Document.cpp Document.h \ - DomModel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\Document.o Document.cpp - -debug/DomItem.o: DomItem.cpp domitem.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\DomItem.o DomItem.cpp - -debug/DomModel.o: DomModel.cpp domitem.h \ - dommodel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\DomModel.o DomModel.cpp - -debug/main.o: main.cpp mainwindow.h \ - Document.h \ - DomModel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\main.o main.cpp - -debug/mainwindow.o: mainwindow.cpp AtAGlance.h \ - BuildStatus.h \ - ui_BuildResults.h \ - Document.h \ - DomModel.h \ - mainwindow.h \ - ui_mainwindow.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\mainwindow.o mainwindow.cpp - -debug/moc_AtAGlance.o: debug/moc_AtAGlance.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_AtAGlance.o debug\moc_AtAGlance.cpp - -debug/moc_BuildStatus.o: debug/moc_BuildStatus.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_BuildStatus.o debug\moc_BuildStatus.cpp - -debug/moc_Document.o: debug/moc_Document.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_Document.o debug\moc_Document.cpp - -debug/moc_DomModel.o: debug/moc_DomModel.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_DomModel.o debug\moc_DomModel.cpp - -debug/moc_mainwindow.o: debug/moc_mainwindow.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug\moc_mainwindow.o debug\moc_mainwindow.cpp - -####### Install - -install: FORCE - -uninstall: FORCE - -FORCE: - diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/Makefile.Release --- a/BuildLogViewer/Makefile.Release Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,220 +0,0 @@ -############################################################################# -# Makefile for building: BuildLogViewer -# Generated by qmake (2.01a) (Qt 4.5.2) on: Mon Nov 16 10:00:07 2009 -# Project: BuildLogViewer.pro -# Template: app -############################################################################# - -####### Compiler, tools and options - -CC = gcc -CXX = g++ -DEFINES = -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_NO_DEBUG -DQT_XML_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -CFLAGS = -O2 -Wall $(DEFINES) -CXXFLAGS = -O2 -frtti -fexceptions -mthreads -Wall $(DEFINES) -INCPATH = -I"..\..\..\Qt\2009.03\qt\include\QtCore" -I"..\..\..\Qt\2009.03\qt\include\QtGui" -I"..\..\..\Qt\2009.03\qt\include\QtXml" -I"..\..\..\Qt\2009.03\qt\include" -I"." -I"..\..\..\Qt\2009.03\qt\include\ActiveQt" -I"release" -I"." -I"..\..\..\Qt\2009.03\qt\mkspecs\win32-g++" -LINK = g++ -LFLAGS = -enable-stdcall-fixup -Wl,-enable-auto-import -Wl,-enable-runtime-pseudo-reloc -Wl,-s -mthreads -Wl -Wl,-subsystem,windows -LIBS = -L"c:\Qt\2009.03\qt\lib" -lmingw32 -lqtmain -lQtXml4 -lQtGui4 -lQtCore4 -QMAKE = c:\Qt\2009.03\qt\bin\qmake.exe -IDC = c:\Qt\2009.03\qt\bin\idc.exe -IDL = midl -ZIP = zip -r -9 -DEF_FILE = -RES_FILE = -COPY = copy /y -COPY_FILE = $(COPY) -COPY_DIR = xcopy /s /q /y /i -DEL_FILE = del -DEL_DIR = rmdir -MOVE = move -CHK_DIR_EXISTS= if not exist -MKDIR = mkdir -INSTALL_FILE = $(COPY_FILE) -INSTALL_PROGRAM = $(COPY_FILE) -INSTALL_DIR = $(COPY_DIR) - -####### Output directory - -OBJECTS_DIR = release - -####### Files - -SOURCES = AtAGlance.cpp \ - BuildStatus.cpp \ - Document.cpp \ - DomItem.cpp \ - DomModel.cpp \ - main.cpp \ - mainwindow.cpp release\moc_AtAGlance.cpp \ - release\moc_BuildStatus.cpp \ - release\moc_Document.cpp \ - release\moc_DomModel.cpp \ - release\moc_mainwindow.cpp -OBJECTS = release/AtAGlance.o \ - release/BuildStatus.o \ - release/Document.o \ - release/DomItem.o \ - release/DomModel.o \ - release/main.o \ - release/mainwindow.o \ - release/moc_AtAGlance.o \ - release/moc_BuildStatus.o \ - release/moc_Document.o \ - release/moc_DomModel.o \ - release/moc_mainwindow.o -DIST = -QMAKE_TARGET = BuildLogViewer -DESTDIR = release\ #avoid trailing-slash linebreak -TARGET = BuildLogViewer.exe -DESTDIR_TARGET = release\BuildLogViewer.exe - -####### Implicit rules - -.SUFFIXES: .cpp .cc .cxx .c - -.cpp.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.cc.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.cxx.o: - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $< - -.c.o: - $(CC) -c $(CFLAGS) $(INCPATH) -o $@ $< - -####### Build rules - -first: all -all: Makefile.Release $(DESTDIR_TARGET) - -$(DESTDIR_TARGET): ui_BuildResults.h ui_mainwindow.h $(OBJECTS) - $(LINK) $(LFLAGS) -o $(DESTDIR_TARGET) object_script.BuildLogViewer.Release $(LIBS) - - -qmake: FORCE - @$(QMAKE) -spec ..\..\..\Qt\2009.03\qt\mkspecs\win32-g++ -win32 -o Makefile.Release BuildLogViewer.pro - -dist: - $(ZIP) BuildLogViewer.zip $(SOURCES) $(DIST) BuildLogViewer.pro ..\..\..\Qt\2009.03\qt\mkspecs\qconfig.pri ..\..\..\Qt\2009.03\qt\mkspecs\features\qt_functions.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\qt_config.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\exclusive_builds.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\default_pre.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\default_pre.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\release.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\debug_and_release.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\default_post.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\default_post.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\build_pass.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\rtti.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\exceptions.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\stl.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\shared.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\warn_on.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\qt.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\thread.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\moc.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\win32\windows.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\resources.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\uic.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\yacc.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\lex.prf ..\..\..\Qt\2009.03\qt\mkspecs\features\include_source_dir.prf c:\Qt\2009.03\qt\lib\qtmain.prl HEADERS RESOURCES IMAGES SOURCES OBJECTIVE_SOURCES FORMS YACCSOURCES YACCSOURCES LEXSOURCES - -clean: compiler_clean - -$(DEL_FILE) release\AtAGlance.o release\BuildStatus.o release\Document.o release\DomItem.o release\DomModel.o release\main.o release\mainwindow.o release\moc_AtAGlance.o release\moc_BuildStatus.o release\moc_Document.o release\moc_DomModel.o release\moc_mainwindow.o - -distclean: clean - -$(DEL_FILE) $(DESTDIR_TARGET) - -$(DEL_FILE) Makefile.Release - -mocclean: compiler_moc_header_clean compiler_moc_source_clean - -mocables: compiler_moc_header_make_all compiler_moc_source_make_all - -compiler_moc_header_make_all: release/moc_AtAGlance.cpp release/moc_BuildStatus.cpp release/moc_Document.cpp release/moc_DomModel.cpp release/moc_mainwindow.cpp -compiler_moc_header_clean: - -$(DEL_FILE) release\moc_AtAGlance.cpp release\moc_BuildStatus.cpp release\moc_Document.cpp release\moc_DomModel.cpp release\moc_mainwindow.cpp -release/moc_AtAGlance.cpp: BuildStatus.h \ - ui_BuildResults.h \ - AtAGlance.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 AtAGlance.h -o release\moc_AtAGlance.cpp - -release/moc_BuildStatus.cpp: BuildStatus.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 BuildStatus.h -o release\moc_BuildStatus.cpp - -release/moc_Document.cpp: DomModel.h \ - Document.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 Document.h -o release\moc_Document.cpp - -release/moc_DomModel.cpp: DomModel.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 DomModel.h -o release\moc_DomModel.cpp - -release/moc_mainwindow.cpp: Document.h \ - DomModel.h \ - mainwindow.h - C:/Qt/2009.03/qt/bin\moc.exe $(DEFINES) $(INCPATH) -D__GNUC__ -DWIN32 mainwindow.h -o release\moc_mainwindow.cpp - -compiler_rcc_make_all: -compiler_rcc_clean: -compiler_image_collection_make_all: qmake_image_collection.cpp -compiler_image_collection_clean: - -$(DEL_FILE) qmake_image_collection.cpp -compiler_moc_source_make_all: -compiler_moc_source_clean: -compiler_uic_make_all: ui_BuildResults.h ui_mainwindow.h -compiler_uic_clean: - -$(DEL_FILE) ui_BuildResults.h ui_mainwindow.h -ui_BuildResults.h: BuildResults.ui - c:\Qt\2009.03\qt\bin\uic.exe BuildResults.ui -o ui_BuildResults.h - -ui_mainwindow.h: mainwindow.ui - c:\Qt\2009.03\qt\bin\uic.exe mainwindow.ui -o ui_mainwindow.h - -compiler_yacc_decl_make_all: -compiler_yacc_decl_clean: -compiler_yacc_impl_make_all: -compiler_yacc_impl_clean: -compiler_lex_make_all: -compiler_lex_clean: -compiler_clean: compiler_moc_header_clean compiler_uic_clean - - - -####### Compile - -release/AtAGlance.o: AtAGlance.cpp AtAGlance.h \ - BuildStatus.h \ - ui_BuildResults.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\AtAGlance.o AtAGlance.cpp - -release/BuildStatus.o: BuildStatus.cpp BuildStatus.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\BuildStatus.o BuildStatus.cpp - -release/Document.o: Document.cpp Document.h \ - DomModel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\Document.o Document.cpp - -release/DomItem.o: DomItem.cpp domitem.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\DomItem.o DomItem.cpp - -release/DomModel.o: DomModel.cpp domitem.h \ - dommodel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\DomModel.o DomModel.cpp - -release/main.o: main.cpp mainwindow.h \ - Document.h \ - DomModel.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\main.o main.cpp - -release/mainwindow.o: mainwindow.cpp AtAGlance.h \ - BuildStatus.h \ - ui_BuildResults.h \ - Document.h \ - DomModel.h \ - mainwindow.h \ - ui_mainwindow.h - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\mainwindow.o mainwindow.cpp - -release/moc_AtAGlance.o: release/moc_AtAGlance.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_AtAGlance.o release\moc_AtAGlance.cpp - -release/moc_BuildStatus.o: release/moc_BuildStatus.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_BuildStatus.o release\moc_BuildStatus.cpp - -release/moc_Document.o: release/moc_Document.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_Document.o release\moc_Document.cpp - -release/moc_DomModel.o: release/moc_DomModel.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_DomModel.o release\moc_DomModel.cpp - -release/moc_mainwindow.o: release/moc_mainwindow.cpp - $(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\moc_mainwindow.o release\moc_mainwindow.cpp - -####### Install - -install: FORCE - -uninstall: FORCE - -FORCE: - diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/main.cpp --- a/BuildLogViewer/main.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,10 +0,0 @@ -#include -#include "mainwindow.h" - -int main(int argc, char *argv[]) -{ - QApplication a(argc, argv); - MainWindow w; - w.show(); - return a.exec(); -} diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/mainwindow.cpp --- a/BuildLogViewer/mainwindow.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,146 +0,0 @@ -#include -#include - -#include "AtAGlance.h" -#include "Document.h" -#include "mainwindow.h" -#include "ui_mainwindow.h" - -MainWindow::MainWindow(QWidget *parent) - : QMainWindow(parent), ui(new Ui::MainWindow) -{ - ui->setupUi(this); - // MDI from Chap 4, page 105 Foundamentals of Qt Development - workspace = new QWorkspace(); - setCentralWidget(workspace); - connect(workspace, SIGNAL(windowActivated(QWidget*)), - this, SLOT(enableActions())); - mapper = new QSignalMapper(this); - connect(mapper, SIGNAL(mapped(QWidget*)), - workspace, SLOT(setActiveWindow(QWidget*))); - - this->createActions(); - this->enableActions(); -} - -MainWindow::~MainWindow() -{ - delete ui; -} - -void MainWindow::notYetImplemented() -{ - QMessageBox::information(this, tr("Build Log Viewer"), tr("Not Yet Implemented.")); -} - - void MainWindow::openLog() - { - QString filename = QFileDialog::getOpenFileName( - this, tr("Open Log"), QDir::currentPath(), - tr("Build log *.xml;;All files (*.*)")); - Document *doc = new Document(this, filename); - workspace->addWindow(doc); - - doc->show(); - } - - void MainWindow::showStatus() - { - QString filename = QFileDialog::getOpenFileName( - this, tr("Open Log"), QDir::currentPath(), - tr("Build log *.xml;;All files (*.*)")); - AtAGlance *aag = new AtAGlance(filename, this); - workspace->addWindow(aag); - aag->traveAndPopulate(); - // obsolete using BuildResults.ui now. - // aag->decideOnLayout(); - aag->show(); - } - - void MainWindow::createActions() - { - // file menu - mark as NYI - //connect(ui->actionOpen, SIGNAL(triggered()), - // this, SLOT(openLog())); - connect(ui->actionOpen, SIGNAL(triggered()), - this, SLOT(showStatus())); - connect(ui->actionClose, SIGNAL(triggered()), - workspace, SLOT(closeActiveWindow())); - - // find menu - mark as NYI - connect(ui->actionFind, SIGNAL(triggered()), - this, SLOT(notYetImplemented())); - connect(ui->actionTags , SIGNAL(triggered()), - this, SLOT(notYetImplemented())); - - // window menu - mark as NYI - connect(ui->actionTile , SIGNAL(triggered()), - this, SLOT(notYetImplemented())); - connect(ui->actionCascade , SIGNAL(triggered()), - this, SLOT(notYetImplemented())); - connect(ui->actionNext_Window , SIGNAL(triggered()), - this, SLOT(notYetImplemented())); - connect(ui->actionPrevious_Window , SIGNAL(triggered()), - this, SLOT(notYetImplemented())); - - ui->actionSeparator->setSeparator(true); - } - - void MainWindow::enableActions() - { - bool hasDocuments = (activeDocument() != 0) ; - // file - ui->actionOpen->setEnabled(true); - ui->actionClose->setEnabled(hasDocuments); - ui->actionQuit->setEnabled(true); - // find - ui->actionFind->setEnabled(hasDocuments); - ui->actionTags->setEnabled(hasDocuments); - // window - ui->actionCascade->setEnabled(hasDocuments); - ui->actionTile->setEnabled(hasDocuments); - ui->actionNext_Window->setEnabled(hasDocuments); - ui->actionPrevious_Window->setEnabled(hasDocuments); - ui->actionSeparator->setEnabled(hasDocuments); - } - - void MainWindow::updateWindowList() - { - ui->menuWindow->clear(); - - ui->menuWindow->addAction(ui->actionTile); - ui->menuWindow->addAction(ui->actionCascade); - ui->menuWindow->addSeparator(); - ui->menuWindow->addAction(ui->actionNext_Window); - ui->menuWindow->addAction(ui->actionPrevious_Window); - // If there are no open logs, we will disable this one. - ui->menuWindow->addAction(ui->actionSeparator); - - int i=1; - foreach(QWidget *w, workspace->windowList()) - { - QString text; - if ( i< 10) { - text = QString("&%1 %2").arg(i++).arg(w->windowTitle()); - } else { - text = w->windowTitle(); - } - - QAction *action = ui->menuWindow->addAction(text); - action->setCheckable(true); - action->setChecked(w == activeDocument()); - connect(action,SIGNAL(triggered()), - mapper, SLOT(map())); - mapper->setMapping(action, w); - } - } - -void MainWindow::closeEvent(QCloseEvent *event) -{ - workspace->closeAllWindows(); -} - -Document * MainWindow::activeDocument() -{ - return qobject_cast(workspace->activeWindow()); -} diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/mainwindow.h --- a/BuildLogViewer/mainwindow.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,42 +0,0 @@ -#ifndef MAINWINDOW_H -#define MAINWINDOW_H - -#include - -#include -#include - -#include "Document.h" - -namespace Ui -{ - class MainWindow; -} - -class MainWindow : public QMainWindow -{ - Q_OBJECT - -public: - MainWindow(QWidget *parent = 0); - ~MainWindow(); - -public slots: - void notYetImplemented(); - void openLog(); - void showStatus(); - void enableActions(); - void closeEvent(QCloseEvent *event); - -private: - Document *activeDocument(); - void createActions(); - void updateWindowList(); - - - Ui::MainWindow *ui; - QWorkspace *workspace; - QSignalMapper *mapper; -}; - -#endif // MAINWINDOW_H diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/mainwindow.ui --- a/BuildLogViewer/mainwindow.ui Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,148 +0,0 @@ - - - MainWindow - - - - 0 - 0 - 600 - 400 - - - - MainWindow - - - - - - 0 - 0 - 600 - 21 - - - - - File - - - - - - - - Filter - - - - - - - Window - - - - - - - - - - - - - - - TopToolBarArea - - - false - - - - - - Open - - - Ctrl+Q - - - - - Close - - - Ctrl+W - - - - - Quit - - - Quit - - - Ctrl+Q - - - - - find - - - - - tags - - - - - Tile - - - - - Cascade - - - - - Next Window - - - - - Previous Window - - - - - Separator Action - - - - - - - - actionQuit - triggered() - MainWindow - close() - - - -1 - -1 - - - 299 - 199 - - - - - diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/readme.txt --- a/BuildLogViewer/readme.txt Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -This program reads the build output log and presents it to the user. It makes liberal use of the "Simple DOM Model Example" example provided by Qt. - -To test it out. build it with Qt Creator. Launch it and open one of the xml files in the test_data directory. - -Build output, in general, isn't valid xml as it must record all output to be useful. You may find trace output from scripts \ No newline at end of file diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/test_data/build_log_232.xml --- a/BuildLogViewer/test_data/build_log_232.xml Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,2759 +0,0 @@ - - - - - -sbs: version 2.5.2 [2009-03-06 release] - -SBS_HOME C:/Symbian/Tools/PDT_1.0/raptor -Set-up C:/Symbian/Tools/PDT_1.0/raptor/sbs_init.xml -Command-line-arguments -s sf\app\organizer\package_definition.xml -k -c winscw -f build_log_231.xml -Environment TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp -Environment COMPUTERNAME=PC213502752220 -Environment MWSYM2LIBRARYFILES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs\MSL_ALL_MSE_Symbian_D.lib;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK\gdi32.lib;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK\user32.lib;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK\kernel32.lib -Environment USERDOMAIN=PC213502752220 -Environment __PYTHON__=C:\Symbian\Tools\PDT_1.0\raptor\win32\python252\python.exe -Environment __RAPTOR__=C:\Symbian\Tools\PDT_1.0\raptor\win32\python252\python.exe C:\Symbian\Tools\PDT_1.0\raptor\python\raptor_start.py -Environment COMMONPROGRAMFILES=C:\Program Files\Common Files -Environment PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel -Environment PROGRAMFILES=C:\Program Files -Environment PROCESSOR_REVISION=1706 -Environment SYSTEMROOT=C:\WINDOWS -Environment PATH=C:\Symbian\Tools\PDT_1.0\raptor\win32\mingw\bin;C:\Symbian\Tools\PDT_1.0\raptor\win32\cygwin\bin;"C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs;C:\Python25\Lib\site-packages\pythonwin;C:\Python25\;C:\Perl\bin;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;z:\epoc32\tools" -Environment HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" -Environment TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp -Environment ALLUSERSPROFILE=C:\Documents and Settings\All Users -Environment L_SDK=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK -Environment HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium -Environment PROCESSOR_ARCHITECTURE=x86 -Environment SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor -Environment PLATFORM=BNB -Environment SESSIONNAME=Console -Environment HOMEPATH=\Documents and Settings\johnk -Environment MWSYM2LIBRARIES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs -Environment USERNAME=JohnK -Environment MWLIBRARIES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs -Environment LOGONSERVER=\\PC213502752220 -Environment PROMPT=$P$G -Environment COMSPEC=C:\WINDOWS\system32\cmd.exe -Environment L_RT=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs -Environment PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw -Environment FP_NO_HOST_CHECK=NO -Environment WINDIR=C:\WINDOWS -Environment __RAPTOR_PY__=C:\Symbian\Tools\PDT_1.0\raptor\python\raptor_start.py -Environment APPDATA=C:\Documents and Settings\johnk\Application Data -Environment HOMEDRIVE=C: -Environment SYSTEMDRIVE=C: -Environment ONLINESERVICES=Online Services -Environment MWCSYM2INCLUDES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK -Environment NUMBER_OF_PROCESSORS=2 -Environment PROCESSOR_LEVEL=6 -Environment EPOCROOT=z:\ -Environment OS=Windows_NT -Environment USERPROFILE=C:\Documents and Settings\johnk -updating configuration make with variant last -Buildable configuration 'winscw_udeb' -Buildable configuration 'winscw_urel' -System Definition file sf/app/organizer/package_definition.xml -Found 6 bld.inf references in sf/app/organizer/package_definition.xml within 1 layers: - app -Found 6 bld.inf references in layer "app" -Buildable specification group 'CONFIG_WIDE' -Buildable specification 'config_wide' -OS version "vtb91sf" determined from file "z:/epoc32/data/buildinfo.txt" -applying the OS variant "vtb91sf" to the configuration "winscw_udeb". -missing flag ENABLE_ABIV2_MODE in z:/epoc32/tools/variant/variant.cfg file. ABIV1 builds are not supported. -OS version "vtb91sf" determined from file "z:/epoc32/data/buildinfo.txt" -applying the OS variant "vtb91sf" to the configuration "winscw_urel". -missing flag ENABLE_ABIV2_MODE in z:/epoc32/tools/variant/variant.cfg file. ABIV1 builds are not supported. -Processing Z:/sf/app/organizer/officeappeng/sheeteng/group/bld.inf -Processing Z:/sf/app/organizer/officeappeng/wordeng/group/bld.inf -Processing Z:/sf/app/organizer/pimappservices/agendamodeltest/TestAgendaSrv/bld.inf -Processing Z:/sf/app/organizer/pimappservices/calendarvcalplugin/group/bld.inf -Processing Z:/sf/app/organizer/pimappsupport/chinesecalendarconverter/group/bld.inf -Processing Z:/sf/app/organizer/group/bld.inf -Up-to-date: z:/epoc32/include/shgapi.h -Up-to-date: z:/epoc32/include/shgerr.h -Up-to-date: z:/epoc32/include/shgpanic.h -Up-to-date: z:/epoc32/include/shgcoord.h -Up-to-date: z:/epoc32/include/shgtoken.h -Up-to-date: z:/epoc32/include/shgfmlex.h -Up-to-date: z:/epoc32/include/shgfmevl.h -Up-to-date: z:/epoc32/include/shgfmvwr.h -Up-to-date: z:/epoc32/rom/include/sheng.iby -Up-to-date: z:/epoc32/rom/include/sheng.hby -Up-to-date: z:/epoc32/include/wngmodel.h -Up-to-date: z:/epoc32/include/wngmodel.inl -Up-to-date: z:/epoc32/include/wngdoor.h -Up-to-date: z:/epoc32/rom/include/wpeng.iby -Up-to-date: z:/epoc32/rom/include/wpengtest.iby -Up-to-date: z:/epoc32/rom/include/agnversit.iby -Up-to-date: z:/epoc32/include/calendarconverter.h -Up-to-date: z:/epoc32/include/calendarconverterplugin.h -Up-to-date: z:/epoc32/rom/include/calcon.iby -Up-to-date: z:/epoc32/rom/include/core/app/missedalarmstore.iby -Up-to-date: Z:/sf/app/organizer/alarmengines/inc/missedalarm.h -Up-to-date: Z:/sf/app/organizer/alarmengines/inc/missedalarmstore.h -Up-to-date: Z:/sf/app/organizer/alarmengines/inc/missedalarmstorecrkeys.h -Up-to-date: z:/epoc32/rom/config/confml_data/s60/missedalarmstore.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/missedalarmstore_2001111B.crml -Up-to-date: z:/epoc32/data/z/private/10202be9/2001111B.txt -Up-to-date: z:/epoc32/release/winscw/udeb/Z/private/10202be9/2001111B.txt -Up-to-date: z:/epoc32/winscw/c/private/10202be9/persists/2001111B.txt -Up-to-date: z:/epoc32/rom/include/core/app/versit2.iby -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/ical.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalbase.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalparser.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalcomponent.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalproperty.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalpropertyparam.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalvalue.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalrulesegment.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalerrors.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalkeywords.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/agnexternalinterface.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/agnexternalinterface.inl -Up-to-date: z:/epoc32/rom/include/core/app/AgnVersit2.iby -Up-to-date: z:/epoc32/rom/include/core/app/CalenInterimUtils.iby -Up-to-date: z:/epoc32/rom/include/core/app/CalenImp.iby -Up-to-date: z:/epoc32/rom/include/core/app/CalenLauncher.iby -Up-to-date: z:/epoc32/include/caldavsession.h -Up-to-date: z:/epoc32/rom/config/confml_data/s60/s60icalui.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/s60icalui_10207286.crml -Up-to-date: z:/epoc32/rom/include/core/app/mrmailboxutils.iby -Up-to-date: z:/epoc32/rom/include/core/app/searchfw.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/notessearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/notessearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/notessearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/filessearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/filessearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/filessearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/calendarsearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/calendarsearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/calendarsearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/contactssearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/contactssearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/contactssearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/messagessearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/messagessearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/messagessearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/multimediasearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/multimediasearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/multimediasearchpluginresources.iby -Up-to-date: z:/epoc32/rom/include/core/app/AlmAlert.iby -Up-to-date: z:/epoc32/rom/include/language/app/AlmAlertResources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/AlmAlert.loc -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10282bc4/rules/alarmuisnooze.rul -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10282bc4/rules/alarmuisnooze.rul -Up-to-date: z:/epoc32/data/z/private/10282bc4/rules/alarmuisnooze.rul -Up-to-date: z:/epoc32/release/wins/udeb/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/wins/udeb/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/wins/urel/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/wins/urel/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/winscw/udeb/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/winscw/udeb/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/winscw/urel/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/winscw/urel/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/thumb/udeb/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/thumb/udeb/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/thumb/urel/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/thumb/urel/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/data/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/data/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/data/z/system/install/alarmui_stub.sis -Up-to-date: z:/epoc32/include/platform/app/loc/sc/calendar.loc -Up-to-date: z:/epoc32/rom/include/core/app/calengsplugin.iby -Up-to-date: z:/epoc32/rom/include/core/app/calencontroller.iby -Up-to-date: z:/epoc32/rom/include/core/app/calenviews.iby -Up-to-date: z:/epoc32/rom/include/core/app/calencustomisationmanager.iby -Up-to-date: z:/epoc32/rom/include/core/app/calencommonutils.iby -Up-to-date: z:/epoc32/rom/include/core/app/calendar.iby -Up-to-date: z:/epoc32/rom/include/core/app/caleneditors.iby -Up-to-date: z:/epoc32/rom/include/core/app/calenglobaldata.iby -Up-to-date: z:/epoc32/rom/include/core/app/calensvr.iby -Up-to-date: z:/epoc32/rom/include/core/app/calensettingsui.iby -Up-to-date: z:/epoc32/rom/include/language/app/calencommonuiresources.iby -Up-to-date: z:/epoc32/rom/include/language/app/calendarresources.iby -Up-to-date: z:/epoc32/rom/include/language/app/caleneditorsresources.iby -Up-to-date: z:/epoc32/rom/include/customer/app/CalenThaiPlugin_Variant.iby -Up-to-date: z:/epoc32/rom/include/customer/app/CalenLunarVietnamese_Variant.iby -Up-to-date: z:/epoc32/rom/include/customer/app/CalenLunarChinese_Variant.iby -Up-to-date: z:/epoc32/data/z/system/install/calendar_stub.sis -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10202be9/10003a5b.cre -Up-to-date: z:/epoc32/data/z/private/10202be9/10003a5b.cre -Up-to-date: z:/epoc32/s60/icons/qgn_menu_maps.svg -Up-to-date: z:/epoc32/rom/config/confml_data/s60/calendarUI.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/calendarUI_101F874B.crml -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenagendautils.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calendateutils.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenentryutil.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calennotedatautil.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenlocationutil.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calensend.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencontext.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/caleninstanceid.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/caleninstanceid.inl -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencontextchangeobserver.h -Up-to-date: Z:/sf/app/organizer/inc/calenglobaldata.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calensettingsuicontainer.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calensetting.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenview.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencustomisation.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencommandhandler.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenservices.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calentoolbar.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencustomisationmanager.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenviewinfo.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencontroller.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencommands.hrh -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenactionuiutils.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenservicesfactory.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calennotificationhandler.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenicons.h -Up-to-date: Z:/sf/app/organizer/inc/caleneditorsplugin.h -Up-to-date: Z:/sf/app/organizer/inc/caleneditorsplugin.inl -Up-to-date: Z:/sf/app/organizer/inc/calendarvariant.hrh -Up-to-date: z:/epoc32/data/z/private/10005901/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005901/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005901/backup_registration.xml -Up-to-date: z:/epoc32/rom/include/core/app/missedalarmindicatorplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/missedalarmindicatorpluginresource.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/missedalarmindicator.loc -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calsvrclient.h -Up-to-date: z:/epoc32/include/platform/app/loc/sc/calensvrmissedalarmmanager.loc -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenextrarowformatter.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarinfo.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarinfoprovider.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarlocalizedinfo.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarlocalizer.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarpanic.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/CalenLunarPaths.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/CalenRegionalPluginUids.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/CalenSolarTerms.h -Up-to-date: z:/epoc32/data/z/private/10005901/solaritems -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005901/solaritems -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005901/solaritems -Up-to-date: z:/epoc32/rom/include/core/app/agnentryui.iby -Up-to-date: z:/epoc32/rom/include/core/app/mrutils.iby -Up-to-date: z:/epoc32/rom/include/language/app/mrutilsuiresources.iby -Up-to-date: z:/epoc32/rom/include/core/app/mrviewers.iby -Up-to-date: z:/epoc32/rom/include/language/app/mrviewersuiresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/MeetingRequest.loc -Up-to-date: z:/epoc32/rom/include/core/app/clockengines.iby -Up-to-date: z:/epoc32/tools/cenrep/data/src/keys_clockapp.xls -Up-to-date: z:/epoc32/rom/config/confml_data/s60/clockapp.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/clockapp_101F874D.crml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/clockapp_101F8876.crml -Up-to-date: z:/epoc32/data/z/private/10005906/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005906/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005906/backup_registration.xml -Up-to-date: z:/epoc32/data/z/private/200159A2/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/200159A2/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/200159A2/backup_registration.xml -Up-to-date: z:/epoc32/data/z/private/10005903/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005903/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005903/backup_registration.xml -Up-to-date: z:/epoc32/data/Z/system/install/clock2_stub.sis -Up-to-date: z:/epoc32/data/z/system/install/clocknitzplugin_stub.sis -Up-to-date: z:/epoc32/data/z/system/install/clock2_server_stub.sis -Up-to-date: z:/epoc32/include/platform/app/loc/sc/adtupdater.loc -Up-to-date: z:/epoc32/rom/include/core/app/adtupdater.iby -Up-to-date: z:/epoc32/rom/include/language/app/adtupdater_resource.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clockalarmeditor.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clkdatetimeview.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clockapp.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/timezonelocalization.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/stopwatchindicatorplugin.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clkindicatorpaneplugin.loc -Up-to-date: z:/epoc32/release/wins/udeb/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/wins/urel/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/winscw/urel/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/thumb/udeb/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/thumb/urel/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/data/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/rom/include/core/app/clock.iby -Up-to-date: z:/epoc32/rom/include/language/app/clockresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/alarmeditorapp.loc -Up-to-date: z:/epoc32/rom/include/core/app/alarmeditorapp.iby -Up-to-date: z:/epoc32/data/Z/private/100012a5/policy/101F8878.spd -Up-to-date: z:/epoc32/release/winscw/UDEB/Z/private/100012a5/policy/101F8878.spd -Up-to-date: z:/epoc32/release/winscw/UREL/Z/private/100012a5/policy/101F8878.spd -Up-to-date: z:/epoc32/data/Z/private/10005907/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/UDEB/Z/private/10005907/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/UREL/Z/private/10005907/backup_registration.xml -Up-to-date: z:/epoc32/rom/include/core/app/Notepad.iby -Up-to-date: z:/epoc32/rom/include/core/app/Npdviewer.iby -Up-to-date: z:/epoc32/rom/include/core/app/Npdlib.iby -Up-to-date: z:/epoc32/rom/include/core/app/npdsmla.iby -Up-to-date: z:/epoc32/rom/include/language/app/NotepadResources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/Notepad.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/NpdLib.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/NpdTemp.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/101F85F8.loc -Up-to-date: z:/epoc32/rom/include/core/app/TxtRecog.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchuiindevice.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchuiresultview.loc -Up-to-date: Z:/sf/app/organizer/inc/srchuicustomservice.h -Up-to-date: z:/epoc32/include/platform/app/loc/sc/gnrlsrchui.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchuiapp.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchaiwprovidermenu.loc -Up-to-date: z:/epoc32/rom/include/core/app/searchapp.iby -Up-to-date: z:/epoc32/rom/include/language/app/searchappresources.iby -Up-to-date: z:/epoc32/include/platform/app/cmrmailboxutils.inl -Up-to-date: z:/epoc32/include/platform/app/cmrmailboxutils.h -Up-to-date: z:/epoc32/include/platform/app/ICalInternalCRKeys.h -Up-to-date: z:/epoc32/include/platform/app/MeetingRequestUids.hrh -Up-to-date: z:/epoc32/include/platform/app/CalenExporter.h -Up-to-date: z:/epoc32/include/platform/app/agnexportobserver.h -Up-to-date: z:/epoc32/include/platform/app/agnimportobserver.h -Up-to-date: z:/epoc32/include/platform/app/CalenImporter.h -Up-to-date: z:/epoc32/include/platform/app/calenlauncher.h -Up-to-date: z:/epoc32/include/platform/app/searchcontent.h -Up-to-date: z:/epoc32/include/platform/app/searchresult.h -Up-to-date: z:/epoc32/include/platform/app/searchlightresult.h -Up-to-date: z:/epoc32/include/platform/app/searchdocumentid.h -Up-to-date: z:/epoc32/include/platform/app/searchquery.h -Up-to-date: z:/epoc32/include/platform/app/searchcondition.h -Up-to-date: z:/epoc32/include/platform/app/searchiconinfo.h -Up-to-date: z:/epoc32/include/platform/app/searchtextsnippet.h -Up-to-date: z:/epoc32/include/platform/app/searchsinglecondition.h -Up-to-date: z:/epoc32/include/platform/app/searchbooleancondition.h -Up-to-date: z:/epoc32/include/platform/app/searchfield.h -Up-to-date: z:/epoc32/include/platform/app/searchsnippetcreator.h -Up-to-date: z:/epoc32/include/platform/app/searchtextsearcher.h -Up-to-date: z:/epoc32/include/platform/app/searchtextsearcherobserver.h -Up-to-date: z:/epoc32/include/platform/app/searchclientsession.h -Up-to-date: z:/epoc32/include/platform/app/searcherrors.h -Up-to-date: z:/epoc32/include/platform/app/searchsessionobservers.h -Up-to-date: z:/epoc32/include/platform/app/searchcontentsearcher.h -Up-to-date: z:/epoc32/include/platform/app/searchplugin.h -Up-to-date: z:/epoc32/include/platform/app/searchplugin.inl -Up-to-date: z:/epoc32/include/platform/app/searchpluginobserver.h -Up-to-date: z:/epoc32/include/platform/app/searchcommon.h -Up-to-date: z:/epoc32/include/platform/app/searchcommon.hrh -Up-to-date: z:/epoc32/include/platform/app/searchcscommon.h -Up-to-date: z:/epoc32/include/platform/app/almconst.h -Up-to-date: z:/epoc32/include/platform/app/alarmuidomainpskeys.h -Up-to-date: z:/epoc32/include/platform/app/CalendarInternalCRKeys.h -Up-to-date: z:/epoc32/include/platform/app/CalendarDomainCRKeys.h -Up-to-date: z:/epoc32/include/platform/app/clockdomaincrkeys.h -Up-to-date: z:/epoc32/include/platform/app/clockalarmeditor.h -Up-to-date: z:/epoc32/include/platform/app/secondarydisplay/alarmuiSecondaryDisplay.h -Up-to-date: z:/epoc32/include/platform/app/srchuisettingsplugininterface.h -Up-to-date: z:/epoc32/include/platform/app/srchuisettingsplugininterface.inl -Up-to-date: z:/epoc32/include/platform/app/srchuisettingsview.h -Up-to-date: z:/epoc32/include/platform/app/MAgnEntryUi.h -Up-to-date: z:/epoc32/include/platform/app/CAgnEntryUi.h -Up-to-date: z:/epoc32/include/platform/app/CAgnEntryUi.inl -Up-to-date: z:/epoc32/include/platform/app/CMRUtils.h -Up-to-date: z:/epoc32/include/platform/app/CMRUtils.inl -Up-to-date: z:/epoc32/include/platform/app/MRUtilsApiExt.h -Up-to-date: z:/epoc32/include/platform/app/MMRUtilsTombsExt.h -Up-to-date: z:/epoc32/include/platform/app/MRCommands.hrh -Up-to-date: z:/epoc32/include/platform/app/CMRViewers.h -Up-to-date: z:/epoc32/include/platform/app/CMRViewers.inl -Up-to-date: z:/epoc32/include/app/CalenInterimUtils2.h -Up-to-date: z:/epoc32/include/app/NpdApi.h -No objects found in XML file z:/epoc32/tools/makefile_templates\s60\mifconv_templates\layers.sysdef.xml -Duplicate interface 's60.mifconv' (in 'z:/epoc32/tools/makefile_templates\s60\mifconv.xml' and 'z:/epoc32/tools/makefile_templates\s60\mifconv_templates\mifconv.xml') -Processing Z:/sf/app/organizer/officeappeng/sheeteng/group/SHENG.MMP for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/officeappeng/wordeng/group/WPENG.MMP for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/pimappservices/calendarvcalplugin/group/agnversit.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/pimappsupport/chinesecalendarconverter/group/CCon.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/alarmengines/missedalarmstore/group/missedalarmstore.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/versit2/group/versit2.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/agnversit2/group/agnversit2.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/caleninterimutils/group/CalenInterimUtils2.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/calenimp/group/CalenImp.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/calenlauncher/group/calenlauncher.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/caldav/group/CalDavClient.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/caldav/group/CalDavServer.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarengines/caldav/group/CalDavTest.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/meetingrequestEngines/mrmailboxutils/group/mrmailboxutils.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/coresearchfw/group/searchutilities.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/coresearchfw/group/searchclient.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/coresearchfw/group/searchserver.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/plugins/notessearchplugin/group/notessearchplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/plugins/filesplugin/group/filesplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/plugins/calendarplugin/group/calendarsearchplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/plugins/contactsplugin/group/contactsplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/plugins/messagingplugin/group/messagessearchplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchfw/plugins/multimediaplugin/group/multimediasearchplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/alarmui/group/almalert.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/alarmui/group/aknalarmservice.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/commonutils/group/commonutils.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/globaldata/group/calenglobaldata.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/settings/settingsui/group/calensettingsui.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/settings/gsplugin/group/calengsplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/customisationmanager/group/calencustomisationmanager.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/views/group/calenviews.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/controller/group/calencontroller.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/editors/group/calendefaulteditors.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/application/group/calendar.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/missedalarmindicatorplugin/group/missedalarmindicatorplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/server/calensvrclient/group/calensvrclient.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/server/calensvr/group/calensvr.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/regionalplugins/calenregionalutil/group/calenregionalutil.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/regionalplugins/thai/group/calenthaiplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/regionalplugins/lunarchinese/group/calenlunarchineseplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/regionalplugins/lunarvietnamese/group/calenlunarvietnameseplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/calendarui/caldav/group/calencaldavplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/meetingui/agnentryui/group/agnentryui.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockengines/clocktimezoneresolver/group/clocktimezoneresolver.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockengines/clocktimesourceinterface/group/clocktimesourceinterface.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockengines/clocknitzplugin/group/clocknitzplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockengines/utilities/clockecomlistener/group/clockecomlistener.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockengines/clockserver/client/group/clockserverclient.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockengines/clockserver/server/group/clockserver.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/adtupdater/group/adtupdater.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uiengine/countdownengine/group/countdownengine.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uiengine/stopwatchengine/group/stopwatchengine.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/clkdatetimeview/group/clkdatetimeview.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/plugins/datetimeviewplugin/group/clkdatetimeviewplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/plugins/stopwatchindicatorplugin/group/stopwatchindicatorplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/plugins/clockindicatorpaneplugin/group/clockindicatorpaneplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/clockalarmeditor/group/clockalarmeditor.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/clockcityselectionlist/group/clockcityselectionlist.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/group/clock.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/uimodel/group/clkuimodel.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/clock2/clockui/alarmeditorapp/group/alarmeditorapp.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/notepad/notepad1/group/NpdLib.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/notepad/notepad1/group/Notepad.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/notepad/notepad1/group/NpdViewer.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/notepad/notepad1/SyncMLAdapter/group/nsmldsnotepaddataprovider.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/notepad/txtrecog/group/TxtRecog.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchui/searchapp/srchuicommon/group/srchuicommon.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchui/searchapp/plugins/indevicesearch/group/srchuiindeviceserviceplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchui/searchapp/plugins/resultviewerplugin/group/srchuiresviewplugin.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchui/searchapp/srchuigenui/group/srchuigenui.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchui/searchapp/srchuiapp/group/srchuiapp.mmp for platform winscw_udeb + winscw_urel -Processing Z:/sf/app/organizer/searchui/searchapp/srchaiwprovider/group/srchaiwprovider.mmp for platform winscw_udeb + winscw_urel -Buildable specification group 'ALL' -Buildable specification 'export_0' -Buildable specification 'build_0' -Running C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs275468367 start -Making z:/epoc32/build/Makefile.export -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.export" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs275468367"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -make.exe: Nothing to be done for `EXPORT'. -Making z:/epoc32/build/Makefile.bitmap -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.bitmap" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs275468367"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/notespluginicons/qgn_prop_nrtyp_note.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/notespluginicons/qgn_prop_nrtyp_note.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/notespluginicons.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/notespluginicons.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/filessearchplugin/qgn_prop_search_file_names.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/filessearchplugin/qgn_prop_search_file_names.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/filessearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/filessearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_prop_nrtyp_date.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_prop_nrtyp_date.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_birthday.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_birthday.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_meeting.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_meeting.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_reminder.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_reminder.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_todo.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsearchplugin/qgn_indi_cdr_todo.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/calendarsearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/calendarsearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/contactssearchplugin/qgn_prop_search_contacts.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/contactssearchplugin/qgn_prop_search_contacts.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/contactssearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/contactssearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_wml_sms.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_wml_sms.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_inbox_small.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_inbox_small.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_outbox_small.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_outbox_small.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_sent.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_sent.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_drafts.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/messagessearchplugin/qgn_prop_mce_drafts.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/messagessearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/messagessearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/multimediasearchplugin/qgn_prop_file_images_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/multimediasearchplugin/qgn_prop_file_images_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/multimediasearchplugin/qgn_prop_file_video.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/multimediasearchplugin/qgn_prop_file_video.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/multimediasearchplugin/qgn_prop_file_music_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/multimediasearchplugin/qgn_prop_file_music_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/multimediasearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/multimediasearchplugin.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_set_apps_cale.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_set_apps_cale.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_set_cams_image_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_set_cams_image_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_set_cams_video_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_set_cams_video_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_cams_set_image_tab2.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_cams_set_image_tab2.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_cams_set_video_tab2.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendarsettings/qgn_prop_cams_set_video_tab2.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/calendarsettings.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/calendarsettings.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_birthday.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_birthday.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_meeting.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_meeting.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_reminder.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_reminder.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_event_mixed.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_event_mixed.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_item_not_shown.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_item_not_shown.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_repeat_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_repeat_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_repeat_exception_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_repeat_exception_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_prop_todo_undone.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_prop_todo_undone.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_prop_todo_done.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_prop_todo_done.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_todo_high_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_todo_high_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_todo_low_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_todo_low_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_todo.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_todo.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_day.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_day.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_left.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_left.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_month.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_month.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_new_entry.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_new_entry.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_right.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_right.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_todo.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_todo.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_week.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_week.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_meeting_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_meeting_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_todo_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cale_tb_todo_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_mg_tb_edit.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_mg_tb_edit.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_mg_tb_delete.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_mg_tb_delete.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_tb_mce.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_tb_mce.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_menu_maps.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_menu_maps.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_birthday_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_birthday_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_meeting_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_meeting_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_reminder_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_reminder_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_todo_undone_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_cdr_todo_undone_missed_new.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_tb_cale_alarm_dismiss.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_tb_cale_alarm_dismiss.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_tb_cale_alarm_dismiss_all.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar/qgn_indi_tb_cale_alarm_dismiss_all.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/calendar.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/calendar.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/calendar_aif/qgn_menu_cale.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/calendar_aif/qgn_menu_cale.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_indi_alarm_inactive_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_indi_alarm_inactive_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_indi_repeat_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_indi_repeat_add.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_prop_set_datim_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_prop_set_datim_sub.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_prop_clock_homecity.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_prop_clock_homecity.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_prop_clock_default.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp/qgn_prop_clock_default.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/clockapp.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/clockapp.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_clock_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_clock_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_wrld_clk_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_wrld_clk_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_stp_watch_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_stp_watch_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_cntdwn_timer_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp_tab/qgn_prop_clk_cntdwn_timer_tab4.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/clockapp_tab.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/clockapp_tab.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/clockapp_aif/qgn_menu_wclk.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/clockapp_aif/qgn_menu_wclk.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/alarmeditorapp_aif/qgn_menu_clk_alarm.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/alarmeditorapp_aif/qgn_menu_clk_alarm.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_side_t.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_side_t.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_cont_side_t.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_cont_side_t.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/npdlib/qgn_prop_mce_template.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/npdlib/qgn_prop_mce_template.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_corner_tl.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_corner_tl.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_corner_tr.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/npdlib/qsn_fr_notepad_corner_tr.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: overriding commands for target `z:/epoc32/include/npdlib.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_templates/mifconv.flm:91: warning: ignoring old commands for target `z:/epoc32/include/npdlib.mbg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/notepad_aif/qgn_menu_note.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/notepad_aif/qgn_menu_note.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: overriding commands for target `z:/epoc32/build/s60/icons/npdviewer_aif/qgn_menu_note.svg' -z:/epoc32/tools/makefile_templates/s60/mifconv_step3.make:79: warning: ignoring old commands for target `z:/epoc32/build/s60/icons/npdviewer_aif/qgn_menu_note.svg' -true -true -true -true -true -true -true -true -true -true -Making z:/epoc32/build/Makefile.resource -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.resource" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs275468367"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -Making z:/epoc32/build/Makefile.default -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.default" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs275468367"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -Unfrozen Exports in build for winscw/udeb - - - - - - - - - - - - - - - - - - - - - -' -+ echo '#pragma data_seg(".SYMBIAN")' -+ echo '__EMULATOR_IMAGE_HEADER2(0x1000007a,0x00000000,0xe800002c,EPriorityForeground,0x0001a130u,0x00000000u,0xe800002c,0x70000001,0x00010000,0)' -+ echo '#pragma data_seg()' -]]> - - - - - - - - - - - -' -+ echo '#pragma data_seg(".SYMBIAN")' -+ echo '__EMULATOR_IMAGE_HEADER2(0x1000007a,0x00000000,0xe800002c,EPriorityForeground,0x0001a130u,0x00000000u,0xe800002c,0x70000001,0x00010000,0)' -+ echo '#pragma data_seg()' -]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Running C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs275468367 stop -The make-engine exited successfully. -Run time 161 seconds - diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/test_data/build_log_236e.xml --- a/BuildLogViewer/test_data/build_log_236e.xml Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1286 +0,0 @@ - - -sbs: version 2.5.2 [2009-03-06 release] - -SBS_HOME C:/Symbian/Tools/PDT_1.0/raptor -Set-up C:/Symbian/Tools/PDT_1.0/raptor/sbs_init.xml -Command-line-arguments -s sf\app\organizer\package_definition.xml -k -c winscw_udeb -f build_log_236e.xml -Environment TMP=C:\DOCUME~1\johnk\LOCALS~1\Temp -Environment COMPUTERNAME=PC213502752220 -Environment MWSYM2LIBRARYFILES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs\MSL_ALL_MSE_Symbian_D.lib;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK\gdi32.lib;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK\user32.lib;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK\kernel32.lib -Environment USERDOMAIN=PC213502752220 -Environment __PYTHON__=C:\Symbian\Tools\PDT_1.0\raptor\win32\python252\python.exe -Environment __RAPTOR__=C:\Symbian\Tools\PDT_1.0\raptor\win32\python252\python.exe C:\Symbian\Tools\PDT_1.0\raptor\python\raptor_start.py -Environment COMMONPROGRAMFILES=C:\Program Files\Common Files -Environment PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel -Environment PROGRAMFILES=C:\Program Files -Environment PROCESSOR_REVISION=1706 -Environment SYSTEMROOT=C:\WINDOWS -Environment PATH=C:\Symbian\Tools\PDT_1.0\raptor\win32\mingw\bin;C:\Symbian\Tools\PDT_1.0\raptor\win32\cygwin\bin;"C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs;C:\Python25\Lib\site-packages\pythonwin;C:\Python25\;C:\Perl\bin;C:\Program Files\Common Files\Symbian\Tools;C:\Program Files\CSL Arm Toolchain\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Tools\Command_Line_Tools;z:\epoc32\tools" -Environment HGMERGE="C:\Program Files\WinMerge\WinMergeU.exe" -Environment TEMP=C:\DOCUME~1\johnk\LOCALS~1\Temp -Environment ALLUSERSPROFILE=C:\Documents and Settings\All Users -Environment L_SDK=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK -Environment HELIUM_HOME=C:\Symbian\Tools\PDT_1.0\helium -Environment PROCESSOR_ARCHITECTURE=x86 -Environment SBS_HOME=C:\Symbian\Tools\PDT_1.0\raptor -Environment PLATFORM=BNB -Environment SESSIONNAME=Console -Environment HOMEPATH=\Documents and Settings\johnk -Environment MWSYM2LIBRARIES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs -Environment USERNAME=JohnK -Environment MWLIBRARIES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Libraries\Win32 SDK;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs -Environment LOGONSERVER=\\PC213502752220 -Environment PROMPT=$P$G -Environment COMSPEC=C:\WINDOWS\system32\cmd.exe -Environment L_RT=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Runtime\Runtime_x86\Runtime_Win32\Libs -Environment PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.py;.pyw -Environment CLIENTNAME=Console -Environment FP_NO_HOST_CHECK=NO -Environment WINDIR=C:\WINDOWS -Environment __RAPTOR_PY__=C:\Symbian\Tools\PDT_1.0\raptor\python\raptor_start.py -Environment APPDATA=C:\Documents and Settings\johnk\Application Data -Environment HOMEDRIVE=C: -Environment SYSTEMDRIVE=C: -Environment ONLINESERVICES=Online Services -Environment MWCSYM2INCLUDES=C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C\MSL_X86;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_C++\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Common\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\MSL\MSL_Extras\MSL_Win32\Include;C:\Symbian\Tools\PDT_1.0\Carbide.c++\x86Build\Symbian_Support\Win32-x86 Support\Headers\Win32 SDK -Environment NUMBER_OF_PROCESSORS=2 -Environment PROCESSOR_LEVEL=6 -Environment EPOCROOT=z:\ -Environment OS=Windows_NT -Environment USERPROFILE=C:\Documents and Settings\johnk -updating configuration make with variant last -Buildable configuration 'winscw_udeb' -System Definition file sf/app/organizer/package_definition.xml -Found 6 bld.inf references in sf/app/organizer/package_definition.xml within 1 layers: - app -Found 6 bld.inf references in layer "app" -Buildable specification group 'CONFIG_WIDE' -Buildable specification 'config_wide' -OS version "vtb91sf" determined from file "z:/epoc32/data/buildinfo.txt" -applying the OS variant "vtb91sf" to the configuration "winscw_udeb". -missing flag ENABLE_ABIV2_MODE in z:/epoc32/tools/variant/variant.cfg file. ABIV1 builds are not supported. -Processing Z:/sf/app/organizer/officeappeng/sheeteng/group/bld.inf -Processing Z:/sf/app/organizer/officeappeng/wordeng/group/bld.inf -Processing Z:/sf/app/organizer/pimappservices/agendamodeltest/TestAgendaSrv/bld.inf -Processing Z:/sf/app/organizer/pimappservices/calendarvcalplugin/group/bld.inf -Processing Z:/sf/app/organizer/pimappsupport/chinesecalendarconverter/group/bld.inf -Processing Z:/sf/app/organizer/group/bld.inf -Up-to-date: z:/epoc32/include/shgapi.h -Up-to-date: z:/epoc32/include/shgerr.h -Up-to-date: z:/epoc32/include/shgpanic.h -Up-to-date: z:/epoc32/include/shgcoord.h -Up-to-date: z:/epoc32/include/shgtoken.h -Up-to-date: z:/epoc32/include/shgfmlex.h -Up-to-date: z:/epoc32/include/shgfmevl.h -Up-to-date: z:/epoc32/include/shgfmvwr.h -Up-to-date: z:/epoc32/rom/include/sheng.iby -Up-to-date: z:/epoc32/rom/include/sheng.hby -Up-to-date: z:/epoc32/include/wngmodel.h -Up-to-date: z:/epoc32/include/wngmodel.inl -Up-to-date: z:/epoc32/include/wngdoor.h -Up-to-date: z:/epoc32/rom/include/wpeng.iby -Up-to-date: z:/epoc32/rom/include/wpengtest.iby -Up-to-date: z:/epoc32/rom/include/agnversit.iby -Up-to-date: z:/epoc32/include/calendarconverter.h -Up-to-date: z:/epoc32/include/calendarconverterplugin.h -Up-to-date: z:/epoc32/rom/include/calcon.iby -Up-to-date: z:/epoc32/rom/include/core/app/missedalarmstore.iby -Up-to-date: Z:/sf/app/organizer/alarmengines/inc/missedalarm.h -Up-to-date: Z:/sf/app/organizer/alarmengines/inc/missedalarmstore.h -Up-to-date: Z:/sf/app/organizer/alarmengines/inc/missedalarmstorecrkeys.h -Up-to-date: z:/epoc32/rom/config/confml_data/s60/missedalarmstore.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/missedalarmstore_2001111B.crml -Up-to-date: z:/epoc32/data/z/private/10202be9/2001111B.txt -Up-to-date: z:/epoc32/release/winscw/udeb/Z/private/10202be9/2001111B.txt -Up-to-date: z:/epoc32/winscw/c/private/10202be9/persists/2001111B.txt -Up-to-date: z:/epoc32/rom/include/core/app/versit2.iby -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/ical.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalbase.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalparser.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalcomponent.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalproperty.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalpropertyparam.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalvalue.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalrulesegment.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalerrors.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/icalkeywords.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/agnexternalinterface.h -Up-to-date: Z:/sf/app/organizer/calendarengines/inc/agnexternalinterface.inl -Up-to-date: z:/epoc32/rom/include/core/app/AgnVersit2.iby -Up-to-date: z:/epoc32/rom/include/core/app/CalenInterimUtils.iby -Up-to-date: z:/epoc32/rom/include/core/app/CalenImp.iby -Up-to-date: z:/epoc32/rom/include/core/app/CalenLauncher.iby -Up-to-date: z:/epoc32/include/caldavsession.h -Up-to-date: z:/epoc32/rom/config/confml_data/s60/s60icalui.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/s60icalui_10207286.crml -Up-to-date: z:/epoc32/rom/include/core/app/mrmailboxutils.iby -Up-to-date: z:/epoc32/rom/include/core/app/searchfw.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/notessearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/notessearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/notessearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/filessearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/filessearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/filessearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/calendarsearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/calendarsearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/calendarsearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/contactssearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/contactssearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/contactssearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/messagessearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/messagessearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/messagessearchpluginresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/multimediasearchplugin.loc -Up-to-date: z:/epoc32/rom/include/core/app/multimediasearchplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/multimediasearchpluginresources.iby -Up-to-date: z:/epoc32/rom/include/core/app/AlmAlert.iby -Up-to-date: z:/epoc32/rom/include/language/app/AlmAlertResources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/AlmAlert.loc -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10282bc4/rules/alarmuisnooze.rul -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10282bc4/rules/alarmuisnooze.rul -Up-to-date: z:/epoc32/data/z/private/10282bc4/rules/alarmuisnooze.rul -Up-to-date: z:/epoc32/release/wins/udeb/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/wins/udeb/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/wins/urel/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/wins/urel/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/winscw/udeb/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/winscw/udeb/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/winscw/urel/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/winscw/urel/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/thumb/udeb/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/thumb/udeb/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/release/thumb/urel/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/release/thumb/urel/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/data/z/data/sounds/digital/alarm.aac -Up-to-date: z:/epoc32/data/z/data/sounds/digital/clock.aac -Up-to-date: z:/epoc32/data/z/system/install/alarmui_stub.sis -Up-to-date: z:/epoc32/include/platform/app/loc/sc/calendar.loc -Up-to-date: z:/epoc32/rom/include/core/app/calengsplugin.iby -Up-to-date: z:/epoc32/rom/include/core/app/calencontroller.iby -Up-to-date: z:/epoc32/rom/include/core/app/calenviews.iby -Up-to-date: z:/epoc32/rom/include/core/app/calencustomisationmanager.iby -Up-to-date: z:/epoc32/rom/include/core/app/calencommonutils.iby -Up-to-date: z:/epoc32/rom/include/core/app/calendar.iby -Up-to-date: z:/epoc32/rom/include/core/app/caleneditors.iby -Up-to-date: z:/epoc32/rom/include/core/app/calenglobaldata.iby -Up-to-date: z:/epoc32/rom/include/core/app/calensvr.iby -Up-to-date: z:/epoc32/rom/include/core/app/calensettingsui.iby -Up-to-date: z:/epoc32/rom/include/language/app/calencommonuiresources.iby -Up-to-date: z:/epoc32/rom/include/language/app/calendarresources.iby -Up-to-date: z:/epoc32/rom/include/language/app/caleneditorsresources.iby -Up-to-date: z:/epoc32/rom/include/customer/app/CalenThaiPlugin_Variant.iby -Up-to-date: z:/epoc32/rom/include/customer/app/CalenLunarVietnamese_Variant.iby -Up-to-date: z:/epoc32/rom/include/customer/app/CalenLunarChinese_Variant.iby -Up-to-date: z:/epoc32/data/z/system/install/calendar_stub.sis -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10202be9/10003a5b.cre -Up-to-date: z:/epoc32/data/z/private/10202be9/10003a5b.cre -Up-to-date: z:/epoc32/s60/icons/qgn_menu_maps.svg -Up-to-date: z:/epoc32/rom/config/confml_data/s60/calendarUI.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/calendarUI_101F874B.crml -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenagendautils.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calendateutils.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenentryutil.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calennotedatautil.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenlocationutil.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calensend.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencontext.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/caleninstanceid.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/caleninstanceid.inl -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencontextchangeobserver.h -Up-to-date: Z:/sf/app/organizer/inc/calenglobaldata.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calensettingsuicontainer.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calensetting.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenview.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencustomisation.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencommandhandler.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenservices.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calentoolbar.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencustomisationmanager.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenviewinfo.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencontroller.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calencommands.hrh -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenactionuiutils.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenservicesfactory.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calennotificationhandler.h -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calenicons.h -Up-to-date: Z:/sf/app/organizer/inc/caleneditorsplugin.h -Up-to-date: Z:/sf/app/organizer/inc/caleneditorsplugin.inl -Up-to-date: Z:/sf/app/organizer/inc/calendarvariant.hrh -Up-to-date: z:/epoc32/data/z/private/10005901/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005901/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005901/backup_registration.xml -Up-to-date: z:/epoc32/rom/include/core/app/missedalarmindicatorplugin.iby -Up-to-date: z:/epoc32/rom/include/language/app/missedalarmindicatorpluginresource.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/missedalarmindicator.loc -Up-to-date: Z:/sf/app/organizer/calendarui/inc/calsvrclient.h -Up-to-date: z:/epoc32/include/platform/app/loc/sc/calensvrmissedalarmmanager.loc -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenextrarowformatter.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarinfo.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarinfoprovider.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarlocalizedinfo.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarlocalizer.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/calenlunarpanic.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/CalenLunarPaths.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/CalenRegionalPluginUids.h -Up-to-date: Z:/sf/app/organizer/calendarui/regionalplugins/inc/CalenSolarTerms.h -Up-to-date: z:/epoc32/rom/include/core/app/agnentryui.iby -Up-to-date: z:/epoc32/rom/include/core/app/mrutils.iby -Up-to-date: z:/epoc32/rom/include/language/app/mrutilsuiresources.iby -Up-to-date: z:/epoc32/rom/include/core/app/mrviewers.iby -Up-to-date: z:/epoc32/rom/include/language/app/mrviewersuiresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/MeetingRequest.loc -Up-to-date: z:/epoc32/rom/include/core/app/clockengines.iby -Up-to-date: z:/epoc32/tools/cenrep/data/src/keys_clockapp.xls -Up-to-date: z:/epoc32/rom/config/confml_data/s60/clockapp.confml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/clockapp_101F874D.crml -Up-to-date: z:/epoc32/rom/config/confml_data/s60/clockapp_101F8876.crml -Up-to-date: z:/epoc32/data/z/private/10005906/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005906/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005906/backup_registration.xml -Up-to-date: z:/epoc32/data/z/private/200159A2/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/200159A2/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/200159A2/backup_registration.xml -Up-to-date: z:/epoc32/data/z/private/10005903/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/10005903/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/urel/z/private/10005903/backup_registration.xml -Up-to-date: z:/epoc32/data/Z/system/install/clock2_stub.sis -Up-to-date: z:/epoc32/data/z/system/install/clocknitzplugin_stub.sis -Up-to-date: z:/epoc32/data/z/system/install/clock2_server_stub.sis -Up-to-date: z:/epoc32/include/platform/app/loc/sc/adtupdater.loc -Up-to-date: z:/epoc32/rom/include/core/app/adtupdater.iby -Up-to-date: z:/epoc32/rom/include/language/app/adtupdater_resource.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clockalarmeditor.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clkdatetimeview.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clockapp.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/timezonelocalization.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/stopwatchindicatorplugin.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/clkindicatorpaneplugin.loc -Up-to-date: z:/epoc32/release/wins/udeb/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/wins/urel/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/winscw/udeb/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/winscw/urel/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/thumb/udeb/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/release/thumb/urel/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/data/z/private/1020383E/tzdb.dbz -Up-to-date: z:/epoc32/rom/include/core/app/clock.iby -Up-to-date: z:/epoc32/rom/include/language/app/clockresources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/alarmeditorapp.loc -Up-to-date: z:/epoc32/rom/include/core/app/alarmeditorapp.iby -Up-to-date: z:/epoc32/data/Z/private/100012a5/policy/101F8878.spd -Up-to-date: z:/epoc32/release/winscw/UDEB/Z/private/100012a5/policy/101F8878.spd -Up-to-date: z:/epoc32/release/winscw/UREL/Z/private/100012a5/policy/101F8878.spd -Up-to-date: z:/epoc32/data/Z/private/10005907/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/UDEB/Z/private/10005907/backup_registration.xml -Up-to-date: z:/epoc32/release/winscw/UREL/Z/private/10005907/backup_registration.xml -Up-to-date: z:/epoc32/rom/include/core/app/Notepad.iby -Up-to-date: z:/epoc32/rom/include/core/app/Npdviewer.iby -Up-to-date: z:/epoc32/rom/include/core/app/Npdlib.iby -Up-to-date: z:/epoc32/rom/include/core/app/npdsmla.iby -Up-to-date: z:/epoc32/rom/include/language/app/NotepadResources.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/Notepad.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/NpdLib.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/NpdTemp.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/101F85F8.loc -Up-to-date: z:/epoc32/rom/include/core/app/TxtRecog.iby -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchuiindevice.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchuiresultview.loc -Up-to-date: Z:/sf/app/organizer/inc/srchuicustomservice.h -Up-to-date: z:/epoc32/include/platform/app/loc/sc/gnrlsrchui.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchuiapp.loc -Up-to-date: z:/epoc32/include/platform/app/loc/sc/srchaiwprovidermenu.loc -Up-to-date: z:/epoc32/rom/include/core/app/searchapp.iby -Up-to-date: z:/epoc32/rom/include/language/app/searchappresources.iby -Up-to-date: z:/epoc32/include/platform/app/cmrmailboxutils.inl -Up-to-date: z:/epoc32/include/platform/app/cmrmailboxutils.h -Up-to-date: z:/epoc32/include/platform/app/ICalInternalCRKeys.h -Up-to-date: z:/epoc32/include/platform/app/MeetingRequestUids.hrh -Up-to-date: z:/epoc32/include/platform/app/CalenExporter.h -Up-to-date: z:/epoc32/include/platform/app/agnexportobserver.h -Up-to-date: z:/epoc32/include/platform/app/agnimportobserver.h -Up-to-date: z:/epoc32/include/platform/app/CalenImporter.h -Up-to-date: z:/epoc32/include/platform/app/calenlauncher.h -Up-to-date: z:/epoc32/include/platform/app/searchcontent.h -Up-to-date: z:/epoc32/include/platform/app/searchresult.h -Up-to-date: z:/epoc32/include/platform/app/searchlightresult.h -Up-to-date: z:/epoc32/include/platform/app/searchdocumentid.h -Up-to-date: z:/epoc32/include/platform/app/searchquery.h -Up-to-date: z:/epoc32/include/platform/app/searchcondition.h -Up-to-date: z:/epoc32/include/platform/app/searchiconinfo.h -Up-to-date: z:/epoc32/include/platform/app/searchtextsnippet.h -Up-to-date: z:/epoc32/include/platform/app/searchsinglecondition.h -Up-to-date: z:/epoc32/include/platform/app/searchbooleancondition.h -Up-to-date: z:/epoc32/include/platform/app/searchfield.h -Up-to-date: z:/epoc32/include/platform/app/searchsnippetcreator.h -Up-to-date: z:/epoc32/include/platform/app/searchtextsearcher.h -Up-to-date: z:/epoc32/include/platform/app/searchtextsearcherobserver.h -Up-to-date: z:/epoc32/include/platform/app/searchclientsession.h -Up-to-date: z:/epoc32/include/platform/app/searcherrors.h -Up-to-date: z:/epoc32/include/platform/app/searchsessionobservers.h -Up-to-date: z:/epoc32/include/platform/app/searchcontentsearcher.h -Up-to-date: z:/epoc32/include/platform/app/searchplugin.h -Up-to-date: z:/epoc32/include/platform/app/searchplugin.inl -Up-to-date: z:/epoc32/include/platform/app/searchpluginobserver.h -Up-to-date: z:/epoc32/include/platform/app/searchcommon.h -Up-to-date: z:/epoc32/include/platform/app/searchcommon.hrh -Up-to-date: z:/epoc32/include/platform/app/searchcscommon.h -Up-to-date: z:/epoc32/include/platform/app/almconst.h -Up-to-date: z:/epoc32/include/platform/app/alarmuidomainpskeys.h -Up-to-date: z:/epoc32/include/platform/app/CalendarInternalCRKeys.h -Up-to-date: z:/epoc32/include/platform/app/CalendarDomainCRKeys.h -Up-to-date: z:/epoc32/include/platform/app/clockdomaincrkeys.h -Up-to-date: z:/epoc32/include/platform/app/clockalarmeditor.h -Up-to-date: z:/epoc32/include/platform/app/secondarydisplay/alarmuiSecondaryDisplay.h -Up-to-date: z:/epoc32/include/platform/app/srchuisettingsplugininterface.h -Up-to-date: z:/epoc32/include/platform/app/srchuisettingsplugininterface.inl -Up-to-date: z:/epoc32/include/platform/app/srchuisettingsview.h -Up-to-date: z:/epoc32/include/platform/app/MAgnEntryUi.h -Up-to-date: z:/epoc32/include/platform/app/CAgnEntryUi.h -Up-to-date: z:/epoc32/include/platform/app/CAgnEntryUi.inl -Up-to-date: z:/epoc32/include/platform/app/CMRUtils.h -Up-to-date: z:/epoc32/include/platform/app/CMRUtils.inl -Up-to-date: z:/epoc32/include/platform/app/MRUtilsApiExt.h -Up-to-date: z:/epoc32/include/platform/app/MMRUtilsTombsExt.h -Up-to-date: z:/epoc32/include/platform/app/MRCommands.hrh -Up-to-date: z:/epoc32/include/platform/app/CMRViewers.h -Up-to-date: z:/epoc32/include/platform/app/CMRViewers.inl -Up-to-date: z:/epoc32/include/app/CalenInterimUtils2.h -Up-to-date: z:/epoc32/include/app/NpdApi.h -No objects found in XML file z:/epoc32/tools/makefile_templates\s60\mifconv_templates\layers.sysdef.xml -Duplicate interface 's60.mifconv' (in 'z:/epoc32/tools/makefile_templates\s60\mifconv.xml' and 'z:/epoc32/tools/makefile_templates\s60\mifconv_templates\mifconv.xml') -Processing Z:/sf/app/organizer/officeappeng/sheeteng/group/SHENG.MMP for platform winscw_udeb -Processing Z:/sf/app/organizer/officeappeng/wordeng/group/WPENG.MMP for platform winscw_udeb -Processing Z:/sf/app/organizer/pimappservices/calendarvcalplugin/group/agnversit.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/pimappsupport/chinesecalendarconverter/group/CCon.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/alarmengines/missedalarmstore/group/missedalarmstore.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/versit2/group/versit2.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/agnversit2/group/agnversit2.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/caleninterimutils/group/CalenInterimUtils2.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/calenimp/group/CalenImp.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/calenlauncher/group/calenlauncher.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/caldav/group/CalDavClient.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/caldav/group/CalDavServer.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarengines/caldav/group/CalDavTest.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/meetingrequestEngines/mrmailboxutils/group/mrmailboxutils.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/coresearchfw/group/searchutilities.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/coresearchfw/group/searchclient.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/coresearchfw/group/searchserver.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/plugins/notessearchplugin/group/notessearchplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/plugins/filesplugin/group/filesplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/plugins/calendarplugin/group/calendarsearchplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/plugins/contactsplugin/group/contactsplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/plugins/messagingplugin/group/messagessearchplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchfw/plugins/multimediaplugin/group/multimediasearchplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/alarmui/group/almalert.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/alarmui/group/aknalarmservice.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/commonutils/group/commonutils.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/globaldata/group/calenglobaldata.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/settings/settingsui/group/calensettingsui.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/settings/gsplugin/group/calengsplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/customisationmanager/group/calencustomisationmanager.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/views/group/calenviews.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/controller/group/calencontroller.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/editors/group/calendefaulteditors.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/application/group/calendar.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/missedalarmindicatorplugin/group/missedalarmindicatorplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/server/calensvrclient/group/calensvrclient.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/server/calensvr/group/calensvr.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/regionalplugins/calenregionalutil/group/calenregionalutil.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/calendarui/caldav/group/calencaldavplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/meetingui/agnentryui/group/agnentryui.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockengines/clocktimezoneresolver/group/clocktimezoneresolver.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockengines/clocktimesourceinterface/group/clocktimesourceinterface.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockengines/clocknitzplugin/group/clocknitzplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockengines/utilities/clockecomlistener/group/clockecomlistener.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockengines/clockserver/client/group/clockserverclient.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockengines/clockserver/server/group/clockserver.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/adtupdater/group/adtupdater.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uiengine/countdownengine/group/countdownengine.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uiengine/stopwatchengine/group/stopwatchengine.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/clkdatetimeview/group/clkdatetimeview.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/plugins/datetimeviewplugin/group/clkdatetimeviewplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/plugins/stopwatchindicatorplugin/group/stopwatchindicatorplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/plugins/clockindicatorpaneplugin/group/clockindicatorpaneplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/clockalarmeditor/group/clockalarmeditor.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/clockcityselectionlist/group/clockcityselectionlist.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uilayer/group/clock.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/uimodel/group/clkuimodel.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/clock2/clockui/alarmeditorapp/group/alarmeditorapp.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/notepad/notepad1/group/NpdLib.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/notepad/notepad1/group/Notepad.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/notepad/notepad1/group/NpdViewer.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/notepad/notepad1/SyncMLAdapter/group/nsmldsnotepaddataprovider.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/notepad/txtrecog/group/TxtRecog.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchui/searchapp/srchuicommon/group/srchuicommon.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchui/searchapp/plugins/indevicesearch/group/srchuiindeviceserviceplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchui/searchapp/plugins/resultviewerplugin/group/srchuiresviewplugin.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchui/searchapp/srchuigenui/group/srchuigenui.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchui/searchapp/srchuiapp/group/srchuiapp.mmp for platform winscw_udeb -Processing Z:/sf/app/organizer/searchui/searchapp/srchaiwprovider/group/srchaiwprovider.mmp for platform winscw_udeb -Buildable specification group 'ALL' -Buildable specification 'export_0' -Buildable specification 'build_0' -Running C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs3882447167 start -Making z:/epoc32/build/Makefile.export -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.export" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs3882447167"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -make.exe: Nothing to be done for `EXPORT'. -Making z:/epoc32/build/Makefile.bitmap -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.bitmap" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs3882447167"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -true -true -true -true -true -Making z:/epoc32/build/Makefile.resource -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.resource" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs3882447167"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -Making z:/epoc32/build/Makefile.default -Executing 'C:/Symbian/Tools/PDT_1.0/raptor/win32/mingw/bin/make.exe HAVE_ORDERONLY=1 -r -f "z:/epoc32/build/Makefile.default" -k -j 4 DESCRAMBLE="C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs3882447167"' -NOT generating CLEAN targets as no CLEAN target was requested -NOT generating WHAT targets as WHAT target not requested -Unfrozen Exports in build for winscw/udeb - - - - - - - - - - - - - - - -' -+ echo '#pragma data_seg(".SYMBIAN")' -+ echo '__EMULATOR_IMAGE_HEADER2(0x1000007a,0x00000000,0xe800002c,EPriorityForeground,0x0001a130u,0x00000000u,0xe800002c,0x70000001,0x00010000,0)' -+ echo '#pragma data_seg()' -]]> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Running C:/Symbian/Tools/PDT_1.0/raptor/bin/sbs_descramble.exe sbs3882447167 stop -The make-engine exited successfully. -Run time 134 seconds - diff -r edc0144719a1 -r b56d7e268634 BuildLogViewer/ui_mainwindow.h --- a/BuildLogViewer/ui_mainwindow.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,146 +0,0 @@ -/******************************************************************************** -** Form generated from reading ui file 'mainwindow.ui' -** -** Created: Mon Nov 16 10:01:16 2009 -** by: Qt User Interface Compiler version 4.5.2 -** -** WARNING! All changes made in this file will be lost when recompiling ui file! -********************************************************************************/ - -#ifndef UI_MAINWINDOW_H -#define UI_MAINWINDOW_H - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -QT_BEGIN_NAMESPACE - -class Ui_MainWindow -{ -public: - QAction *actionOpen; - QAction *actionClose; - QAction *actionQuit; - QAction *actionFind; - QAction *actionTags; - QAction *actionTile; - QAction *actionCascade; - QAction *actionNext_Window; - QAction *actionPrevious_Window; - QAction *actionSeparator; - QWidget *centralWidget; - QMenuBar *menuBar; - QMenu *menuFile; - QMenu *menuFilter; - QMenu *menuWindow; - QToolBar *mainToolBar; - QStatusBar *statusBar; - - void setupUi(QMainWindow *MainWindow) - { - if (MainWindow->objectName().isEmpty()) - MainWindow->setObjectName(QString::fromUtf8("MainWindow")); - MainWindow->resize(600, 400); - actionOpen = new QAction(MainWindow); - actionOpen->setObjectName(QString::fromUtf8("actionOpen")); - actionClose = new QAction(MainWindow); - actionClose->setObjectName(QString::fromUtf8("actionClose")); - actionQuit = new QAction(MainWindow); - actionQuit->setObjectName(QString::fromUtf8("actionQuit")); - actionFind = new QAction(MainWindow); - actionFind->setObjectName(QString::fromUtf8("actionFind")); - actionTags = new QAction(MainWindow); - actionTags->setObjectName(QString::fromUtf8("actionTags")); - actionTile = new QAction(MainWindow); - actionTile->setObjectName(QString::fromUtf8("actionTile")); - actionCascade = new QAction(MainWindow); - actionCascade->setObjectName(QString::fromUtf8("actionCascade")); - actionNext_Window = new QAction(MainWindow); - actionNext_Window->setObjectName(QString::fromUtf8("actionNext_Window")); - actionPrevious_Window = new QAction(MainWindow); - actionPrevious_Window->setObjectName(QString::fromUtf8("actionPrevious_Window")); - actionSeparator = new QAction(MainWindow); - actionSeparator->setObjectName(QString::fromUtf8("actionSeparator")); - centralWidget = new QWidget(MainWindow); - centralWidget->setObjectName(QString::fromUtf8("centralWidget")); - MainWindow->setCentralWidget(centralWidget); - menuBar = new QMenuBar(MainWindow); - menuBar->setObjectName(QString::fromUtf8("menuBar")); - menuBar->setGeometry(QRect(0, 0, 600, 21)); - menuFile = new QMenu(menuBar); - menuFile->setObjectName(QString::fromUtf8("menuFile")); - menuFilter = new QMenu(menuBar); - menuFilter->setObjectName(QString::fromUtf8("menuFilter")); - menuWindow = new QMenu(menuBar); - menuWindow->setObjectName(QString::fromUtf8("menuWindow")); - MainWindow->setMenuBar(menuBar); - mainToolBar = new QToolBar(MainWindow); - mainToolBar->setObjectName(QString::fromUtf8("mainToolBar")); - MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar); - statusBar = new QStatusBar(MainWindow); - statusBar->setObjectName(QString::fromUtf8("statusBar")); - MainWindow->setStatusBar(statusBar); - - menuBar->addAction(menuFile->menuAction()); - menuBar->addAction(menuFilter->menuAction()); - menuBar->addAction(menuWindow->menuAction()); - menuFile->addAction(actionOpen); - menuFile->addAction(actionClose); - menuFile->addAction(actionQuit); - menuFilter->addAction(actionFind); - menuFilter->addAction(actionTags); - menuWindow->addAction(actionTile); - menuWindow->addAction(actionCascade); - menuWindow->addSeparator(); - menuWindow->addAction(actionNext_Window); - menuWindow->addAction(actionPrevious_Window); - menuWindow->addAction(actionSeparator); - - retranslateUi(MainWindow); - QObject::connect(actionQuit, SIGNAL(triggered()), MainWindow, SLOT(close())); - - QMetaObject::connectSlotsByName(MainWindow); - } // setupUi - - void retranslateUi(QMainWindow *MainWindow) - { - MainWindow->setWindowTitle(QApplication::translate("MainWindow", "MainWindow", 0, QApplication::UnicodeUTF8)); - actionOpen->setText(QApplication::translate("MainWindow", "Open", 0, QApplication::UnicodeUTF8)); - actionOpen->setShortcut(QApplication::translate("MainWindow", "Ctrl+Q", 0, QApplication::UnicodeUTF8)); - actionClose->setText(QApplication::translate("MainWindow", "Close", 0, QApplication::UnicodeUTF8)); - actionClose->setShortcut(QApplication::translate("MainWindow", "Ctrl+W", 0, QApplication::UnicodeUTF8)); - actionQuit->setText(QApplication::translate("MainWindow", "Quit", 0, QApplication::UnicodeUTF8)); -#ifndef QT_NO_TOOLTIP - actionQuit->setToolTip(QApplication::translate("MainWindow", "Quit", 0, QApplication::UnicodeUTF8)); -#endif // QT_NO_TOOLTIP - actionQuit->setShortcut(QApplication::translate("MainWindow", "Ctrl+Q", 0, QApplication::UnicodeUTF8)); - actionFind->setText(QApplication::translate("MainWindow", "find", 0, QApplication::UnicodeUTF8)); - actionTags->setText(QApplication::translate("MainWindow", "tags", 0, QApplication::UnicodeUTF8)); - actionTile->setText(QApplication::translate("MainWindow", "Tile", 0, QApplication::UnicodeUTF8)); - actionCascade->setText(QApplication::translate("MainWindow", "Cascade", 0, QApplication::UnicodeUTF8)); - actionNext_Window->setText(QApplication::translate("MainWindow", "Next Window", 0, QApplication::UnicodeUTF8)); - actionPrevious_Window->setText(QApplication::translate("MainWindow", "Previous Window", 0, QApplication::UnicodeUTF8)); - actionSeparator->setText(QApplication::translate("MainWindow", "Separator Action", 0, QApplication::UnicodeUTF8)); - menuFile->setTitle(QApplication::translate("MainWindow", "File", 0, QApplication::UnicodeUTF8)); - menuFilter->setTitle(QApplication::translate("MainWindow", "Filter", 0, QApplication::UnicodeUTF8)); - menuWindow->setTitle(QApplication::translate("MainWindow", "Window", 0, QApplication::UnicodeUTF8)); - } // retranslateUi - -}; - -namespace Ui { - class MainWindow: public Ui_MainWindow {}; -} // namespace Ui - -QT_END_NAMESPACE - -#endif // UI_MAINWINDOW_H diff -r edc0144719a1 -r b56d7e268634 Seafood/SeafoodTabbed.pro.user --- a/Seafood/SeafoodTabbed.pro.user Thu Aug 26 14:34:34 2010 -0700 +++ b/Seafood/SeafoodTabbed.pro.user Fri Sep 03 07:59:16 2010 -0700 @@ -13,8 +13,13 @@ ProjectExplorer.Project.Target.0 +<<<<<<< local + Desktop + Qt4ProjectManager.Target.DesktopTarget +======= Qt Simulator Qt4ProjectManager.Target.QtSimulatorTarget +>>>>>>> other 0 0 @@ -43,12 +48,22 @@ 1 false +<<<<<<< local + Qt in PATH Debug +======= Debug +>>>>>>> other Qt4ProjectManager.Qt4BuildConfiguration 2 +<<<<<<< local + /home/johnk/workspace/qt/QtExamples/SeafoodTabbed-build-desktop + 3 + 0 +======= C:/workspace/qt/QtExamples/SeafoodTabbed-build-simulator 28 2 +>>>>>>> other true @@ -77,15 +92,97 @@ 1 false +<<<<<<< local + Qt in PATH Release +======= Release +>>>>>>> other Qt4ProjectManager.Qt4BuildConfiguration 0 +<<<<<<< local + /home/johnk/workspace/qt/QtExamples/SeafoodTabbed-build-desktop + 3 + 0 +======= C:/workspace/qt/QtExamples/SeafoodTabbed-build-simulator 28 2 +>>>>>>> other + true + +<<<<<<< local + + + qmake + QtProjectManager.QMakeBuildStep + + + + Make + Qt4ProjectManager.MakeStep + false + + + + 2 + + Make + Qt4ProjectManager.MakeStep + true + + clean + + + + 1 + false + + Qt 4.6.3 OpenSource Debug + Qt4ProjectManager.Qt4BuildConfiguration + 2 + /home/johnk/workspace/qt/QtExamples/SeafoodTabbed-build-desktop + 2 + 0 true + + + qmake + QtProjectManager.QMakeBuildStep + + + + Make + Qt4ProjectManager.MakeStep + false + + + + 2 + + Make + Qt4ProjectManager.MakeStep + true + + clean + + + + 1 + false + + Qt 4.6.3 OpenSource Release + Qt4ProjectManager.Qt4BuildConfiguration + 0 + /home/johnk/workspace/qt/QtExamples/SeafoodTabbed-build-desktop + 2 + 0 + true + + 4 +======= 2 +>>>>>>> other SeafoodTabbed Qt4ProjectManager.Qt4RunConfiguration @@ -103,6 +200,8 @@ +<<<<<<< local +======= ProjectExplorer.Project.Target.1 Symbian Device @@ -385,8 +484,13 @@ +>>>>>>> other ProjectExplorer.Project.TargetCount +<<<<<<< local + 1 +======= 2 +>>>>>>> other ProjectExplorer.Project.Updater.FileVersion diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/buffer.cpp --- a/SigningTS/client/buffer.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,15 +0,0 @@ -#include -#include -#include "buffer.h" - -void Buffer::replyFinished(QNetworkReply *reply) -{ - QByteArray data = reply->readAll(); - qDebug() << "result: " << data << endl; - reply->deleteLater(); -} - -Buffer::Buffer(QObject *parent) : - QObject(parent) -{ -} diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/buffer.h --- a/SigningTS/client/buffer.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,21 +0,0 @@ -#ifndef BUFFER_H -#define BUFFER_H - -#include - -class QNetworkReply; - -class Buffer : public QObject -{ -Q_OBJECT -public: - explicit Buffer(QObject *parent = 0); - -signals: - -public slots: - void replyFinished(QNetworkReply *reply); - -}; - -#endif // BUFFER_H diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/client.pro --- a/SigningTS/client/client.pro Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,25 +0,0 @@ -#------------------------------------------------- -# -# Project created by QtCreator 2010-04-26T16:59:26 -# -#------------------------------------------------- - -QT += core network - -QT -= gui - -TARGET = test116 -CONFIG += console -CONFIG -= app_bundle - -TEMPLATE = app - - -SOURCES += main.cpp \ - buffer.cpp \ - signingcommoncase.cpp - -HEADERS += \ - buffer.h \ - test.h \ - signingcommoncase.h diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/main.cpp --- a/SigningTS/client/main.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,66 +0,0 @@ -#include -#include - -#include -#include -#include -#include - -#include "buffer.h" - -const QString BaseURL = "http://localhost:8080/?key=853b128a-0c18-42f2-835f-db9f5b6f7fb9&api=1&cmd="; - -QNetworkReply *addIMEI(QNetworkAccessManager *mgr) -{ - QString reqPOST = BaseURL + "addIMEI"; - QNetworkRequest request(QUrl(reqPOST.toUtf8())); - request.setHeader(QNetworkRequest::ContentTypeHeader,"application/xhtml+xml"); - - QByteArray data; - data.append(""); - data.append(""); - data.append(""); - data.append("356945030065847"); - data.append(""); - data.append(""); - data.append("X6 from Angela"); - data.append(""); - data.append(""); - data.append(""); - - return mgr->post(request,data); -} - -QNetworkReply *getDevCert(QNetworkAccessManager *mgr) -{ - QString reqPOST = BaseURL + "getDevCert&genID=456723322"; - QNetworkRequest request(QUrl(reqPOST.toUtf8())); - request.setHeader(QNetworkRequest::ContentTypeHeader,"application/xhtml+xml"); - - return mgr->get(request); -} - -QNetworkReply *getSubmission(QNetworkAccessManager *mgr) -{ - QString reqGET = BaseURL + "getSubmission&genID=456723322"; - QNetworkRequest request(QUrl(reqGET.toUtf8())); - - return mgr->get(request); -} - -int main(int argc, char **argv) -{ - QCoreApplication app(argc, argv); - QNetworkAccessManager *manager = new QNetworkAccessManager(); - Buffer *buf = new Buffer(); - QString reqGet = "http://localhost:8080/?key=853b128a-0c18-42f2-835f-db9f5b6f7fb9&api=1&cmd=GetUIDList" ; - - app.connect(manager, SIGNAL(finished(QNetworkReply*)), - buf, SLOT(replyFinished(QNetworkReply*))); - // QNetworkReply *reply = manager->get(QNetworkRequest(QUrl::fromEncoded(reqGet.toUtf8()))); - - // addIMEI(manager); - getDevCert(manager); - // app.connect(reply, SIGNAL(finished()), SLOT(quit())); - return app.exec(); -} diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/signingcommoncase.cpp --- a/SigningTS/client/signingcommoncase.cpp Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,31 +0,0 @@ - -#include "signingcommoncase.h" - -SigningCommonCase::SigningCommonCase(QNetworkAccessManager &aMgr, QObject *parent) : - QObject(parent), mgr(aMgr) -{ - testBaseURL = ::BaseURL + "?key=" + ::DefaultKey + "&api=" + ApiVersion + "&cmd="; -} - -void SigningCommonCase::run() -{ - -} - -void SigningCommonCase::uploadSIS() -{ - QString reqPOST = BaseURL + "uploadSIS"; - QNetworkRequest request(QUrl(reqPOST.toUtf8())); - request.setHeader(QNetworkRequest::ContentTypeHeader,"x-epoc/x-sisx-app"); - - // connect this request to a method for reply. - - // here is the sis file which we will post to the server. - - //mgr.post(request); -} - -TestInterface::TRESULT_STATE SigningCommonCase::getResult() -{ - return TestInterface::INPROGESS; -} diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/signingcommoncase.h --- a/SigningTS/client/signingcommoncase.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,76 +0,0 @@ -#ifndef SIGNINGCOMMONCASE_H -#define SIGNINGCOMMONCASE_H - -#include -#include - -#include - -#include -#include -#include - - - -#include "test.h" - -/** - This is the original puesdo-code for this test. - This walks through signing. Express and Certified signing are very similar. - - sign sis file with publisher ID - - type is one of express or certified. -submissionID,type = uploadSIS(sisfile) - -createSigningRequest(submissionID, type, description) - -done = false -do { - status = getSubmissionStatus(submissionID) - switch (status) - { - case SIGNED: - done = true - break; - case SCAN_FAILED: - done = true - break; - case TEST_FAILED: - done = true - break; - case TESTING_IN_PROGRESS: - case AUDIT_IN_PROGRESS: - // This take awhile. Probably don't want to poll. IDEs may want to check for outstanding - // submissions when IDE is started. see enumerateSubmissions - break; - default: - sleep(2000); - } - -} while (!done) - -if (status == SIGNED) getSubmission(submissionID) - */ - -class SigningCommonCase : public QObject, public TestInterface -{ - Q_OBJECT -public: - explicit SigningCommonCase(QNetworkAccessManager &mgr, QObject *parent = 0); - - void run(); - TRESULT_STATE getResult(); - -signals: - -public slots: - - -private: - void uploadSIS(); - QString testBaseURL; - QNetworkAccessManager &mgr; -}; - -#endif // SIGNINGCOMMONCASE_H diff -r edc0144719a1 -r b56d7e268634 SigningTS/client/test.h --- a/SigningTS/client/test.h Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,29 +0,0 @@ -#ifndef TEST_H -#define TEST_H - -#include - -// Each test will be a subclass of this abstract class. -// A test has a sequence of steps. Each step is composed of -// a request and reply. - -const QString BaseURL = "http://localhost:8080/"; -const QString DefaultKey = "853b128a-0c18-42f2-835f-db9f5b6f7fb9"; -const int ApiVersion = 1; - -class TestInterface -{ - -public: - virtual void run () = 0 ; // run the test. - - enum TRESULT_STATE { PASS=0, FAIL, INPROGESS} ; - virtual TRESULT_STATE getResult() = 0; - - - enum TAPI_SIGNING_STATE { SUBMITTED=0, SCANNED, FAILED_SCAN, SIGNED, - AUDIT_IN_PROGRESS, FAILED_TESTING, - TESTING_IN_PROGRESS}; -}; - -#endif // TEST_H diff -r edc0144719a1 -r b56d7e268634 SigningTS/readme.txt --- a/SigningTS/readme.txt Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,5 +0,0 @@ -This directory represents work towards establishing an API for Signing. - -server3020 is simply a google app which will act as a stub representing a web server. - -client is a Qt application which calls the web service. Initially, just the test stub. Upon completion, it will also act as a test suite. diff -r edc0144719a1 -r b56d7e268634 SigningTS/server3020/app.yaml --- a/SigningTS/server3020/app.yaml Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,8 +0,0 @@ -application: server3020 -version: 1 -runtime: python -api_version: 1 - -handlers: -- url: .* - script: main.py diff -r edc0144719a1 -r b56d7e268634 SigningTS/server3020/index.yaml --- a/SigningTS/server3020/index.yaml Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -indexes: - -# AUTOGENERATED - -# This index.yaml is automatically updated whenever the dev_appserver -# detects that a new type of query is run. If you want to manage the -# index.yaml file manually, remove the above marker line (the line -# saying "# AUTOGENERATED"). If you want to manage some indexes -# manually, move them above the marker line. The index.yaml file is -# automatically uploaded to the admin console when you next deploy -# your application using appcfg.py. diff -r edc0144719a1 -r b56d7e268634 SigningTS/server3020/main.py --- a/SigningTS/server3020/main.py Thu Aug 26 14:34:34 2010 -0700 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,58 +0,0 @@ -#!/usr/bin/env python -# -# Copyright 2007 Google Inc. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -from google.appengine.ext import webapp -from google.appengine.ext.webapp import util - - -class MainHandler(webapp.RequestHandler): - - def __init__(self): - self.key="853b128a-0c18-42f2-835f-db9f5b6f7fb9" - # version - self.apiVersion=1 - - def get(self): - self.response.headers['Content-Type'] = 'text/xml' - self.response.out.write('') - self.response.out.write('') - self.response.out.write('0xDEADBEEF') - self.response.out.write('') - self.response.out.write('') - self.response.out.write('leviation application. Pretty cool, ahe?') - self.response.out.write('') - self.response.out.write('') - - def post(self): - self.response.headers['Content-Type'] = 'text/xml' - self.response.out.write('') - self.response.out.write(self.request.query_string) - self.response.out.write('') - self.response.out.write('') - self.response.out.write(self.request.body) - self.response.out.write('') - - -def main(): - application = webapp.WSGIApplication([('/', MainHandler)], - debug=True) - util.run_wsgi_app(application) - - -if __name__ == '__main__': - main() diff -r edc0144719a1 -r b56d7e268634 contactengine/contactsengine.cpp --- a/contactengine/contactsengine.cpp Thu Aug 26 14:34:34 2010 -0700 +++ b/contactengine/contactsengine.cpp Fri Sep 03 07:59:16 2010 -0700 @@ -130,7 +130,6 @@ QString msg = QString("Manager %1 created, that has %2 contacts") .arg(m_manager->managerName()).arg(contactIds.count()); - // emit errorOccurred(msg); } diff -r edc0144719a1 -r b56d7e268634 contactengine/dbtools.cpp --- a/contactengine/dbtools.cpp Thu Aug 26 14:34:34 2010 -0700 +++ b/contactengine/dbtools.cpp Fri Sep 03 07:59:16 2010 -0700 @@ -1,108 +1,12 @@ #include -#include #include +#include +#include + #include "database.h" #include "dbtools.h" -bool DBTools::createTable(QString sqlStmt) -{ - qDebug() << "DB: create table statement: " << sqlStmt << endl; - - QSqlQuery query; - return query.exec(sqlStmt); -} - -int DBTools::getLastInsertRowId() -{ - int rc = -1; - QSqlQuery query; - query.exec("select last_insert_rowid()"); - if (!query.exec()) { - QString errCode = "last rowid query Failed: " + query.lastError().text(); - qWarning(errCode.toStdString().c_str()); - - } else { - query.next(); - rc = query.value(0).toInt(); - } - return rc; -} - -void DBTools::insertContact( QString name, QString mobile, QString deskphone, - int xtn, QString email, QString skype, - QString twitter, QString title, int site, - int department, int floor) -{ - QSqlQuery query; - - query.prepare("INSERT INTO contacts ( name, mobile, deskphone, xtn, " - "email, skype, twitter, title, site, department, floor) " - "VALUES (:name,:mobile,:deskphone,:xtn,:email,:skype, " - ":twitter, :title, :site, :department, :floor)"); - - query.bindValue(":name", name); - query.bindValue(":mobile", mobile); - query.bindValue(":deskphone", deskphone); - query.bindValue(":xtn", xtn); - query.bindValue(":twitter", twitter); - query.bindValue(":skype", skype); - query.bindValue(":email", email); - query.bindValue(":title", title); - query.bindValue(":site", site); - query.bindValue(":department", department); - query.bindValue(":floor", floor); - - if (!query.exec()) - { - qDebug() << query.lastError(); - qFatal("Failed to add fish."); - } -} - - -bool DBTools::createDB() -{ - QSqlDatabase db; - - // Find QSLite driver - db = QSqlDatabase::addDatabase("QSQLITE"); - - db.setDatabaseName("C:\\contactengine.db"); - - // Open databasee - if(!db.open()) - { - qDebug() << "DB: failed to open" << endl; - exit (1); - } - - qDebug() << "DB: database opened " << endl; - - bool rc = createTable("create table contacts " - "(cid integer primary key, " - "name varchar(128)," - "mobile varchar(128)," - "deskphone varchar(128)," - "xtn int," - "email varchar(128)," - "skype varchar(128)," - "twitter varchar(128)," - "title varchar(128)," - "site int," - "department int," - "floor int)"); - - qDebug() << "DB: create table rc=" << rc << endl; - return rc; -} - -void DBTools::testDB() -{ - createDB(); - insertContact("Tom", "12345", "45678", 22, "tom@symbian.org", "thetom", "tomtom", - "Senior Tom", SITE_LONDON, DEPT_TDM, 0); -} void DBTools::importCSV(QString fileName) { @@ -173,7 +77,6 @@ DBTools::DBTools(QObject *parent) { QObject(); - createDB(); } DBTools::~DBTools() diff -r edc0144719a1 -r b56d7e268634 contactengine/readme.txt --- a/contactengine/readme.txt Thu Aug 26 14:34:34 2010 -0700 +++ b/contactengine/readme.txt Fri Sep 03 07:59:16 2010 -0700 @@ -21,3 +21,4 @@ * Get the linkedIn profile. Users might want to review it before visiting with someone who they haven't seen in awhile. * dynamically determine if it is a touch or non-touch device. * beef up QStackedView to associated the options menu with the page in questions. +* Using location to sort the the contains.