<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://techbase.kde.org/skins/common/feed.css?0.2"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://techbase.kde.org/api.php?action=feedcontributions&amp;user=Krf&amp;feedformat=atom</id>
		<title>KDE TechBase - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://techbase.kde.org/api.php?action=feedcontributions&amp;user=Krf&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Special:Contributions/Krf"/>
		<updated>2013-05-20T04:57:05Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.20.2</generator>

	<entry>
		<id>http://techbase.kde.org/Getting_Started/Build/Environment</id>
		<title>Getting Started/Build/Environment</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Getting_Started/Build/Environment"/>
				<updated>2011-05-06T07:39:05Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: Fix missing quotes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Configuring your build environment is the single most important step in building KDE.  A wrong decision or mistake here could at best mean you have to rebuild everything from scratch again, or at worst break your system KDE rendering your system unusable.&lt;br /&gt;
&lt;br /&gt;
A lot of very important concepts will be discussed and it is important that you understand them before proceeding.&lt;br /&gt;
&lt;br /&gt;
A set of configuration scripts and bash commands are provided as a recommended configuration when building KDE manually.  If you use these as provided then your KDE build will be a lot easier and it will be easier for you to find support online.  The one disadvantage to these scripts is that they hide important details from you which you may want to learn about, but the two methods are completely interchangeable so once you are comfortable building KDE using the scripts you can learn more by doing everything yourself.&lt;br /&gt;
&lt;br /&gt;
It is recommended that you build KDE using your normal user account.  In some circumstances you may want to build using a separate user account, such as if you are a KWin or Plasma developer wishing to test a full KDE session with compositing effects, but for most circumstances a simple way can be found for achieving the same aim while still running using your normal user account (e.g. Nested X using xypher).&lt;br /&gt;
&lt;br /&gt;
== Git Configuration ==&lt;br /&gt;
&lt;br /&gt;
KDE uses Git as its main source repository and revision control software which you need to configure before you can use it in KDE.  You can find the recommended Git configuration for KDE on the [[Development/Git/Configuration|Git Configuration]] page.&lt;br /&gt;
&lt;br /&gt;
== Path Configuration ==&lt;br /&gt;
&lt;br /&gt;
This section explains the different paths that need to be configured for building KDE.  The following section will demonstrate a simple method for setting up the required paths.&lt;br /&gt;
&lt;br /&gt;
=== Source Path ===&lt;br /&gt;
&lt;br /&gt;
The $KDE_SRC path environment variable defines where the KDE Build System can find the source files.&lt;br /&gt;
&lt;br /&gt;
TODO: Decide how to do stable and unstable source branches in parallel.  While Git supports having these in a single source clone to save disk space, it is sometimes nice to have separate clones to allow simultaneous parallel builds, and it takes less scripting to achieve.  It's also conceptually closer to how svn works so seems preferable during the transition.&lt;br /&gt;
&lt;br /&gt;
=== Build Path ===&lt;br /&gt;
&lt;br /&gt;
The $KDE_BUILD path environment variable defines where the KDE Build System will create the build files.&lt;br /&gt;
&lt;br /&gt;
The KDE build system requires that your source and build files be in different directories (aka out-of-source builds).  This keeps your source directories clean and simplifies management of your different build files. :&lt;br /&gt;
* It makes it very easy to rebuild from scratch, you just delete the build directory to remove all the generated files - even old ones that &amp;quot;make clean&amp;quot; wouldn't remove.&lt;br /&gt;
* It is easier to look at the source files (grep, ls etc.).&lt;br /&gt;
* It allows multiple build trees with different settings, e.g. debug and release. &lt;br /&gt;
&lt;br /&gt;
While for some simple build scenarios you could just create a &amp;quot;build&amp;quot; directory inside your 'source' directory (e.g. &amp;quot;kde/src/kdelibs/build&amp;quot;), this negates many of the advantages when used with a full KDE build.  Instead clearly separate paths are recommended.&lt;br /&gt;
&lt;br /&gt;
For example if we were building kdelibs we could have the following folders:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/kdelibs&lt;br /&gt;
&lt;br /&gt;
If you plan to build multiple branches of KDE such as stable and unstable in parallel then you will need to add an extra level to the directory:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/src/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/4.6/kdelibs&lt;br /&gt;
&lt;br /&gt;
=== Install Path ===&lt;br /&gt;
The $KDEDIR path environment variable defines where the KDE Build System will install KDE.&lt;br /&gt;
&lt;br /&gt;
It is strongly recommended for a development build that you do a user based install and not a root install, i.e. install your KDE build into a user-owned directory and not into the system /usr directory.  This provides a number of advantages:&lt;br /&gt;
* Your root/system installed version of KDE is untouched, meaning your normal desktop and applications remain stable and usable even if your development build breaks&lt;br /&gt;
* You can build and run multiple development versions of KDE at the same time, i.e. a stable branch for bug fixes and an unstable branch for new features&lt;br /&gt;
* You can use a single alias or bash command to compile/link/install without having to do a su/sudo in the middle&lt;br /&gt;
* Doing &amp;quot;make&amp;quot; and &amp;quot;make install&amp;quot; as the same user is a lot quicker as the Makefiles are only parsed once.&lt;br /&gt;
* No root owned files in the build directory&lt;br /&gt;
* No problems caused by root not having a correctly configured KDE build environment&lt;br /&gt;
* It makes it very easy to reinstall from scratch, you just delete the install directory to remove all the installed files and rerun the build.&lt;br /&gt;
&lt;br /&gt;
That said, the build instructions provided are completely generic and will work for building a root system install if you configure your environment to do so, i.e. for Linux from Scratch or doing a root install in a virtual machine for testing or packaging purposes.&lt;br /&gt;
&lt;br /&gt;
For the kdelibs example given above we would then have:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/src/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/4.6/kdelibs&lt;br /&gt;
&lt;br /&gt;
=== Home Path ===&lt;br /&gt;
The $KDEHOME path environment variable defines wat directory KDE will treat as your home folder, i.e. for stroing data writing config files to.&lt;br /&gt;
&lt;br /&gt;
For the same reason as the Install Path, it is strongly recommended that you set your KDE Home Path to be different from your normal home folder.&lt;br /&gt;
&lt;br /&gt;
For the kdelibs example given above we would then have:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/src/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/home/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/home/4.6/kdelibs&lt;br /&gt;
&lt;br /&gt;
=== XDG Paths ===&lt;br /&gt;
&lt;br /&gt;
The Cross Desktop (XDG) Paths XDG_DATA_DIRS and XDG_CONFIG_DIRS are a standard set of paths used to find various shared cross-desktop standard data and config such as mimetypes.  If you are building the KDE Development Platform yourself then it is recommended to unset these paths to prevent your build from seeing your system install (usually /usr) as this will cause problems.  However, if you do so you must install the shared-mime-info data into your development install path.  If you are not building your own KDE Development Platform then you should not unset the XDG Data Paths.&lt;br /&gt;
&lt;br /&gt;
=== Other Paths ===&lt;br /&gt;
&lt;br /&gt;
There are a number of other paths that are required, but these can all be automatically derived and created by the config script given below.&lt;br /&gt;
&lt;br /&gt;
== Environment Configuration ==&lt;br /&gt;
&lt;br /&gt;
The example environment configuration script given below is for building KDE against your system Qt under your normal user account with an out-of-source build and installing into a user directory.  By changing just four variables you can use the script to configure any KDE build environment you want.&lt;br /&gt;
&lt;br /&gt;
It is recommended you create a separate script for each build environment you require.  If you have separate source directories for each build then save the script into the root source directory with the name &amp;quot;.build-config&amp;quot; to allow the bash scripts in the next section to automatically load the config and create the required directories.&lt;br /&gt;
&lt;br /&gt;
If you don't wish to use the bash scripts then you must manually create the required directories and manually execute the config script.&lt;br /&gt;
&lt;br /&gt;
If you are building KDE using a dedicated user to run a full desktop session, then you should put this config into the users ~/.bashrc file.&lt;br /&gt;
&lt;br /&gt;
Please see the notes above about the [[Getting_Started/Build/Environment#XDG_Paths|XDG Paths]], the example config script below overrides the XDG Data Paths.&lt;br /&gt;
&lt;br /&gt;
=== Sample .build-config file ===&lt;br /&gt;
&amp;lt;code bash&amp;gt;&lt;br /&gt;
# KDE4 Build Environment configuration script&lt;br /&gt;
#&lt;br /&gt;
# To configure your build environment set LIB_SUFFIX, BASEDIR, BUILDNAME and&lt;br /&gt;
# QTDIR as appropriate&lt;br /&gt;
#&lt;br /&gt;
# The default values provided are for a master/trunk/unstable build in your own&lt;br /&gt;
# user directory using your system Qt&lt;br /&gt;
&lt;br /&gt;
# Uncomment if building on a 64 bit system&lt;br /&gt;
#export LIB_SUFFIX=64&lt;br /&gt;
&lt;br /&gt;
# Set where your base KDE development folder is located, usually ~/kde&lt;br /&gt;
export BASEDIR=~/kde&lt;br /&gt;
&lt;br /&gt;
# Give the build a name, e.g. master, 4.6, debug, etc&lt;br /&gt;
export BUILDNAME=master&lt;br /&gt;
&lt;br /&gt;
# Set up which Qt to use&lt;br /&gt;
# Use the system Qt, adjust path as required&lt;br /&gt;
export QTDIR=/usr&lt;br /&gt;
# Uncomment to use your own build of qt-kde&lt;br /&gt;
#export QTDIR=$BASEDIR/inst/master/qt-kde&lt;br /&gt;
#export PATH=$QTDIR/bin:$PATH&lt;br /&gt;
#export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH&lt;br /&gt;
#export PKG_CONFIG_PATH=$QTDIR/lib:$PKG_CONFIG_PATH&lt;br /&gt;
&lt;br /&gt;
# Set up the KDE paths&lt;br /&gt;
export KDE_SRC=$BASEDIR/src&lt;br /&gt;
export KDE_BUILD=$BASEDIR/build&lt;br /&gt;
export KDEDIR=$BASEDIR/inst/$BUILDNAME&lt;br /&gt;
export KDEDIRS=$KDEDIR&lt;br /&gt;
export KDEHOME=$BASEDIR/home/.$BUILDNAME&lt;br /&gt;
export KDETMP=/tmp/$BUILDNAME-$USER&lt;br /&gt;
export KDEVARTMP=/var/tmp/$BUILDNAME-$USER&lt;br /&gt;
mkdir -p $KDETMP&lt;br /&gt;
mkdir -p $KDEVARTMP&lt;br /&gt;
&lt;br /&gt;
# Add the KDE plugins to the Qt plugins path&lt;br /&gt;
export QT_PLUGIN_PATH=$KDEDIR/lib/kde4/plugins&lt;br /&gt;
&lt;br /&gt;
# Do we really need these?&lt;br /&gt;
export KDE4_DBUS_INTERFACES_DIR=$KDEDIR/share/dbus-1/interfaces&lt;br /&gt;
export PYTHON_SITE_PACKAGES_DIR=$KDEDIR/lib/python2.6/site-packages/PyKDE4&lt;br /&gt;
&lt;br /&gt;
# Export the standard paths to include KDE&lt;br /&gt;
export PATH=$KDEDIR/bin:$PATH&lt;br /&gt;
export LD_LIBRARY_PATH=$KDEDIR/lib:$LD_LIBRARY_PATH&lt;br /&gt;
export PKG_CONFIG_PATH=$KDEDIR/lib/pkgconfig:$PKG_CONFIG_PATH&lt;br /&gt;
&lt;br /&gt;
# Export the CMake paths so it searches for KDE in the right places&lt;br /&gt;
export CMAKE_PREFIX_PATH=$KDEDIR:$CMAKE_PREFIX_PATH&lt;br /&gt;
export CMAKE_LIBRARY_PATH=$KDEDIR/lib:$CMAKE_LIBRARY_PATH&lt;br /&gt;
export CMAKE_INCLUDE_PATH=$KDEDIR/include:$CMAKE_INCLUDE_PATH&lt;br /&gt;
&lt;br /&gt;
# Unset XDG to avoid seeing KDE files from /usr&lt;br /&gt;
# If unset then you must install shared-mime-info&lt;br /&gt;
unset XDG_DATA_DIRS&lt;br /&gt;
unset XDG_CONFIG_DIRS&lt;br /&gt;
&lt;br /&gt;
# Uncomment if you are using Icecream for distributed compiling&lt;br /&gt;
#export PATH=/opt/icecream/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
# Report what the environment is set to&lt;br /&gt;
echo&lt;br /&gt;
echo &amp;quot;*** Configured KDE Build Environment &amp;quot; $BUILDNAME &amp;quot; ***&amp;quot;&lt;br /&gt;
echo&lt;br /&gt;
echo &amp;quot;QTDIR=&amp;quot; $QTDIR&lt;br /&gt;
echo &amp;quot;KDEDIR=&amp;quot; $KDEDIR&lt;br /&gt;
echo &amp;quot;PATH=&amp;quot; $PATH&lt;br /&gt;
echo&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Useful Bash Scripts ==&lt;br /&gt;
&lt;br /&gt;
This section provides a set of bash scripts to simplify setting up your build environment and managing the KDE build process.  If you use these scripts, then you can use the 'Easy Recipe' option documented in these pages.  If you do not want to use these scripts then you will need to use the 'Full Recipe' option documented in these pages.&lt;br /&gt;
&lt;br /&gt;
You can find further details about using these scripts on the [[../Recipes|Build Recipes]] page.&lt;br /&gt;
&lt;br /&gt;
The main commands provided are:&lt;br /&gt;
&lt;br /&gt;
;''cs''&lt;br /&gt;
Change to source directory&lt;br /&gt;
;''cb''&lt;br /&gt;
Change to build directory&lt;br /&gt;
;''cmakekde''&lt;br /&gt;
Configure, build and install the current KDE module&lt;br /&gt;
&lt;br /&gt;
=== findup ===&lt;br /&gt;
Save this script in an executable file called &amp;quot;findup&amp;quot; somewhere in your path, usually ~/bin/findup.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code bash&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
arg=&amp;quot;$1&amp;quot;&lt;br /&gt;
if test -z &amp;quot;$arg&amp;quot;; then exit 1; fi&lt;br /&gt;
&lt;br /&gt;
while ! test -f &amp;quot;$arg&amp;quot;; do&lt;br /&gt;
 cd ..&lt;br /&gt;
 if test &amp;quot;$PWD&amp;quot; = &amp;quot;/&amp;quot;; then&lt;br /&gt;
    exit 1&lt;br /&gt;
 fi&lt;br /&gt;
done&lt;br /&gt;
&lt;br /&gt;
echo $PWD/$arg&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== .bashrc ===&lt;br /&gt;
Add the following script to the end of your ~/.bashrc, or save as a separate ~/.kde-bashrc and add ''source .kde-bashrc'' to your ~/.bashrc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code bash&amp;gt;&lt;br /&gt;
###&lt;br /&gt;
## A script to setup some needed variables and functions for KDE 4 development.&lt;br /&gt;
## This should normally go in the ~/.bashrc file of your kde development user.&lt;br /&gt;
&lt;br /&gt;
CURRENT_SHELL=$(echo $0)&lt;br /&gt;
&lt;br /&gt;
prepend() { [ -d &amp;quot;$2&amp;quot; ] &amp;amp;&amp;amp; eval $1=\&amp;quot;$2\$\{$1:+':'\$$1\}\&amp;quot; &amp;amp;&amp;amp; export $1 ; }&lt;br /&gt;
&lt;br /&gt;
# This will make the debug output prettier&lt;br /&gt;
export KDE_COLOR_DEBUG=1&lt;br /&gt;
export QTEST_COLORED=1&lt;br /&gt;
&lt;br /&gt;
# Make&lt;br /&gt;
# Tell many scripts how to switch from source dir to build dir:&lt;br /&gt;
export OBJ_REPLACEMENT=&amp;quot;s#$KDE_SRC#$KDE_BUILD#&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Use makeobj instead of make, to automatically switch to the build dir.&lt;br /&gt;
# If you don't have makeobj, install the package named kdesdk-scripts or&lt;br /&gt;
# kdesdk, or check out kdesdk/scripts from svn, or just don't set the alias&lt;br /&gt;
# yet.&lt;br /&gt;
alias make=makeobj&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# A function to easily build the current directory of KDE.&lt;br /&gt;
#&lt;br /&gt;
# This builds only the sources in the current ~/{src,build}/KDE subdirectory.&lt;br /&gt;
# Usage: cs KDE/kdebase &amp;amp;&amp;amp; cmakekde&lt;br /&gt;
#   will build/rebuild the sources in ~/src/KDE/kdebase&lt;br /&gt;
#&lt;br /&gt;
function cmakekde {&lt;br /&gt;
    if test -n &amp;quot;$1&amp;quot;; then&lt;br /&gt;
        # srcFolder is defined via command line argument&lt;br /&gt;
        srcFolder=&amp;quot;$1&amp;quot;&lt;br /&gt;
    else&lt;br /&gt;
        # get srcFolder for current dir&lt;br /&gt;
        srcFolder=`pwd | sed -e s,$KDE_BUILD,$KDE_SRC,`&lt;br /&gt;
    fi&lt;br /&gt;
    # we are in the src folder, change to build directory&lt;br /&gt;
    # Alternatively, we could just use makeobj in the commands below...&lt;br /&gt;
    current=`pwd`&lt;br /&gt;
    if [ &amp;quot;$srcFolder&amp;quot; = &amp;quot;$current&amp;quot; ]; then&lt;br /&gt;
        cb&lt;br /&gt;
    fi&lt;br /&gt;
    # To disable tests, remove -DKDE4_BUILD_TESTS=TRUE&lt;br /&gt;
    # To save disk space change &amp;quot;debugfull&amp;quot; to &amp;quot;debug&amp;quot;&lt;br /&gt;
    cmake &amp;quot;$srcFolder&amp;quot; \&lt;br /&gt;
          -DCMAKE_INSTALL_PREFIX=$KDEDIR \&lt;br /&gt;
          -DKDE4_BUILD_TESTS=TRUE \&lt;br /&gt;
          -DCMAKE_BUILD_TYPE=debugfull&lt;br /&gt;
&lt;br /&gt;
        # Comment out the following two lines to stop builds waiting after&lt;br /&gt;
        # the configuration step, so that the user can check configure output&lt;br /&gt;
        echo &amp;quot;Press &amp;lt;ENTER&amp;gt; to continue...&amp;quot;&lt;br /&gt;
        read userinput&lt;br /&gt;
&lt;br /&gt;
        # Note: To speed up compiling, change 'make -j2' to 'make -jx',&lt;br /&gt;
        #   where x is your number of processors +1&lt;br /&gt;
        nice make -j2 &amp;amp;&amp;amp; make install&lt;br /&gt;
        #Use this line instead if using icecream&lt;br /&gt;
        #nice make CC=icecc -j6 &amp;amp;&amp;amp; make install&lt;br /&gt;
        RETURN=$?&lt;br /&gt;
        cs&lt;br /&gt;
        return ${RETURN}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function cd() {&lt;br /&gt;
  if test -z &amp;quot;$1&amp;quot;; then&lt;br /&gt;
    builtin cd&lt;br /&gt;
  elif test -z &amp;quot;$2&amp;quot;; then&lt;br /&gt;
    builtin cd &amp;quot;$1&amp;quot;&lt;br /&gt;
  else&lt;br /&gt;
    builtin cd &amp;quot;$1&amp;quot; &amp;quot;$2&amp;quot;&lt;br /&gt;
  fi&lt;br /&gt;
  _f=`findup .build-config`&lt;br /&gt;
  if test -n &amp;quot;$_f&amp;quot; -a &amp;quot;$_lastf&amp;quot; != &amp;quot;$_f&amp;quot;; then&lt;br /&gt;
    echo &amp;quot;Loading $_f&amp;quot;&lt;br /&gt;
    _lastf=&amp;quot;$_f&amp;quot;&lt;br /&gt;
    source &amp;quot;$_f&amp;quot;&lt;br /&gt;
  fi&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# A function to easily change to the build directory.&lt;br /&gt;
# Usage: cb KDE/kdebase&lt;br /&gt;
#   will change to $KDE_BUILD/KDE/kdebase&lt;br /&gt;
# Usage: cb&lt;br /&gt;
#   will simply go to the build folder if you are currently in a src folder&lt;br /&gt;
#   Example:&lt;br /&gt;
#     $ pwd&lt;br /&gt;
#     /home/user/src/KDE/kdebase&lt;br /&gt;
#     $ cb &amp;amp;&amp;amp; pwd&lt;br /&gt;
#     /home/user/build/KDE/kdebase&lt;br /&gt;
#&lt;br /&gt;
function cb {&lt;br /&gt;
        local dest&lt;br /&gt;
&lt;br /&gt;
    # Make sure build directory exists.&lt;br /&gt;
    mkdir -p &amp;quot;$KDE_BUILD&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    # command line argument&lt;br /&gt;
    if test -n &amp;quot;$1&amp;quot;; then&lt;br /&gt;
        cd &amp;quot;$KDE_BUILD/$1&amp;quot;&lt;br /&gt;
        return&lt;br /&gt;
    fi&lt;br /&gt;
    # substitute src dir with build dir&lt;br /&gt;
    dest=`pwd | sed -e s,$KDE_SRC,$KDE_BUILD,`&lt;br /&gt;
    if test ! -d &amp;quot;$dest&amp;quot;; then&lt;br /&gt;
        # build directory does not exist, create&lt;br /&gt;
        mkdir -p &amp;quot;$dest&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
    cd &amp;quot;$dest&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# Change to the source directory.  Same as cb, except this&lt;br /&gt;
# switches to $KDE_SRC instead of $KDE_BUILD.&lt;br /&gt;
# Usage: cs KDE/kdebase&lt;br /&gt;
#   will change to $KDE_SRC/KDE/kdebase&lt;br /&gt;
# Usage: cs&lt;br /&gt;
#   will simply go to the source folder if you are currently in a build folder&lt;br /&gt;
#   Example:&lt;br /&gt;
#     $ pwd&lt;br /&gt;
#     /home/myuser/kde/build/master/KDE/kdebase&lt;br /&gt;
#     $ cs &amp;amp;&amp;amp; pwd&lt;br /&gt;
#     /home/myuser/kde/src/master/KDE/kdebase&lt;br /&gt;
#&lt;br /&gt;
function cs {&lt;br /&gt;
        local dest current&lt;br /&gt;
&lt;br /&gt;
    # Make sure source directory exists.&lt;br /&gt;
    mkdir -p &amp;quot;$KDE_SRC&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    # command line argument&lt;br /&gt;
    if test -n &amp;quot;$1&amp;quot;; then&lt;br /&gt;
        cd &amp;quot;$KDE_SRC/$1&amp;quot;&lt;br /&gt;
    else&lt;br /&gt;
        # substitute build dir with src dir&lt;br /&gt;
        dest=`pwd | sed -e s,$KDE_BUILD,$KDE_SRC,`&lt;br /&gt;
        current=`pwd`&lt;br /&gt;
        if [ &amp;quot;$dest&amp;quot; = &amp;quot;$current&amp;quot; ]; then&lt;br /&gt;
            cd &amp;quot;$KDE_SRC&amp;quot;&lt;br /&gt;
        else&lt;br /&gt;
            cd &amp;quot;$dest&amp;quot;&lt;br /&gt;
        fi&lt;br /&gt;
    fi&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# Add autocompletion to cs function&lt;br /&gt;
#&lt;br /&gt;
function _cs_scandir&lt;br /&gt;
{&lt;br /&gt;
        local base ext&lt;br /&gt;
&lt;br /&gt;
    base=$1&lt;br /&gt;
    ext=$2&lt;br /&gt;
    if [ -d $base ]; then&lt;br /&gt;
        for d in `ls $base`; do&lt;br /&gt;
            if [ -d $base/$d ]; then&lt;br /&gt;
                dirs=&amp;quot;$dirs $ext$d/&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
        done&lt;br /&gt;
    fi&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function _cs()&lt;br /&gt;
{&lt;br /&gt;
    local cur dirs&lt;br /&gt;
    _cs_scandir &amp;quot;$KDE_SRC&amp;quot;&lt;br /&gt;
    _cs_scandir &amp;quot;$KDE_SRC/KDE&amp;quot; &amp;quot;KDE/&amp;quot;&lt;br /&gt;
    COMPREPLY=()&lt;br /&gt;
    cur=&amp;quot;${COMP_WORDS[COMP_CWORD]}&amp;quot;&lt;br /&gt;
    COMPREPLY=( $(compgen -W &amp;quot;${dirs}&amp;quot; -- ${cur}) )&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
svndiff ()&lt;br /&gt;
{&lt;br /&gt;
    svn diff &amp;quot;$*&amp;quot; | colordiff | less;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Setup shell&lt;br /&gt;
if [ &amp;quot;$CURRENT_SHELL&amp;quot; = &amp;quot;bash&amp;quot; ]; then&lt;br /&gt;
    complete -F _cs cs&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Getting_Started/Build/Environment</id>
		<title>Getting Started/Build/Environment</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Getting_Started/Build/Environment"/>
				<updated>2011-05-06T07:36:23Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: Make the bashrc somewhat shell independent (&amp;quot;complete&amp;quot; is bash-only)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
&lt;br /&gt;
Configuring your build environment is the single most important step in building KDE.  A wrong decision or mistake here could at best mean you have to rebuild everything from scratch again, or at worst break your system KDE rendering your system unusable.&lt;br /&gt;
&lt;br /&gt;
A lot of very important concepts will be discussed and it is important that you understand them before proceeding.&lt;br /&gt;
&lt;br /&gt;
A set of configuration scripts and bash commands are provided as a recommended configuration when building KDE manually.  If you use these as provided then your KDE build will be a lot easier and it will be easier for you to find support online.  The one disadvantage to these scripts is that they hide important details from you which you may want to learn about, but the two methods are completely interchangeable so once you are comfortable building KDE using the scripts you can learn more by doing everything yourself.&lt;br /&gt;
&lt;br /&gt;
It is recommended that you build KDE using your normal user account.  In some circumstances you may want to build using a separate user account, such as if you are a KWin or Plasma developer wishing to test a full KDE session with compositing effects, but for most circumstances a simple way can be found for achieving the same aim while still running using your normal user account (e.g. Nested X using xypher).&lt;br /&gt;
&lt;br /&gt;
== Git Configuration ==&lt;br /&gt;
&lt;br /&gt;
KDE uses Git as its main source repository and revision control software which you need to configure before you can use it in KDE.  You can find the recommended Git configuration for KDE on the [[Development/Git/Configuration|Git Configuration]] page.&lt;br /&gt;
&lt;br /&gt;
== Path Configuration ==&lt;br /&gt;
&lt;br /&gt;
This section explains the different paths that need to be configured for building KDE.  The following section will demonstrate a simple method for setting up the required paths.&lt;br /&gt;
&lt;br /&gt;
=== Source Path ===&lt;br /&gt;
&lt;br /&gt;
The $KDE_SRC path environment variable defines where the KDE Build System can find the source files.&lt;br /&gt;
&lt;br /&gt;
TODO: Decide how to do stable and unstable source branches in parallel.  While Git supports having these in a single source clone to save disk space, it is sometimes nice to have separate clones to allow simultaneous parallel builds, and it takes less scripting to achieve.  It's also conceptually closer to how svn works so seems preferable during the transition.&lt;br /&gt;
&lt;br /&gt;
=== Build Path ===&lt;br /&gt;
&lt;br /&gt;
The $KDE_BUILD path environment variable defines where the KDE Build System will create the build files.&lt;br /&gt;
&lt;br /&gt;
The KDE build system requires that your source and build files be in different directories (aka out-of-source builds).  This keeps your source directories clean and simplifies management of your different build files. :&lt;br /&gt;
* It makes it very easy to rebuild from scratch, you just delete the build directory to remove all the generated files - even old ones that &amp;quot;make clean&amp;quot; wouldn't remove.&lt;br /&gt;
* It is easier to look at the source files (grep, ls etc.).&lt;br /&gt;
* It allows multiple build trees with different settings, e.g. debug and release. &lt;br /&gt;
&lt;br /&gt;
While for some simple build scenarios you could just create a &amp;quot;build&amp;quot; directory inside your 'source' directory (e.g. &amp;quot;kde/src/kdelibs/build&amp;quot;), this negates many of the advantages when used with a full KDE build.  Instead clearly separate paths are recommended.&lt;br /&gt;
&lt;br /&gt;
For example if we were building kdelibs we could have the following folders:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/kdelibs&lt;br /&gt;
&lt;br /&gt;
If you plan to build multiple branches of KDE such as stable and unstable in parallel then you will need to add an extra level to the directory:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/src/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/4.6/kdelibs&lt;br /&gt;
&lt;br /&gt;
=== Install Path ===&lt;br /&gt;
The $KDEDIR path environment variable defines where the KDE Build System will install KDE.&lt;br /&gt;
&lt;br /&gt;
It is strongly recommended for a development build that you do a user based install and not a root install, i.e. install your KDE build into a user-owned directory and not into the system /usr directory.  This provides a number of advantages:&lt;br /&gt;
* Your root/system installed version of KDE is untouched, meaning your normal desktop and applications remain stable and usable even if your development build breaks&lt;br /&gt;
* You can build and run multiple development versions of KDE at the same time, i.e. a stable branch for bug fixes and an unstable branch for new features&lt;br /&gt;
* You can use a single alias or bash command to compile/link/install without having to do a su/sudo in the middle&lt;br /&gt;
* Doing &amp;quot;make&amp;quot; and &amp;quot;make install&amp;quot; as the same user is a lot quicker as the Makefiles are only parsed once.&lt;br /&gt;
* No root owned files in the build directory&lt;br /&gt;
* No problems caused by root not having a correctly configured KDE build environment&lt;br /&gt;
* It makes it very easy to reinstall from scratch, you just delete the install directory to remove all the installed files and rerun the build.&lt;br /&gt;
&lt;br /&gt;
That said, the build instructions provided are completely generic and will work for building a root system install if you configure your environment to do so, i.e. for Linux from Scratch or doing a root install in a virtual machine for testing or packaging purposes.&lt;br /&gt;
&lt;br /&gt;
For the kdelibs example given above we would then have:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/src/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/4.6/kdelibs&lt;br /&gt;
&lt;br /&gt;
=== Home Path ===&lt;br /&gt;
The $KDEHOME path environment variable defines wat directory KDE will treat as your home folder, i.e. for stroing data writing config files to.&lt;br /&gt;
&lt;br /&gt;
For the same reason as the Install Path, it is strongly recommended that you set your KDE Home Path to be different from your normal home folder.&lt;br /&gt;
&lt;br /&gt;
For the kdelibs example given above we would then have:&lt;br /&gt;
&lt;br /&gt;
 /home/myuser/kde/src/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/src/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/build/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/inst/4.6/kdelibs&lt;br /&gt;
 /home/myuser/kde/home/master/kdelibs&lt;br /&gt;
 /home/myuser/kde/home/4.6/kdelibs&lt;br /&gt;
&lt;br /&gt;
=== XDG Paths ===&lt;br /&gt;
&lt;br /&gt;
The Cross Desktop (XDG) Paths XDG_DATA_DIRS and XDG_CONFIG_DIRS are a standard set of paths used to find various shared cross-desktop standard data and config such as mimetypes.  If you are building the KDE Development Platform yourself then it is recommended to unset these paths to prevent your build from seeing your system install (usually /usr) as this will cause problems.  However, if you do so you must install the shared-mime-info data into your development install path.  If you are not building your own KDE Development Platform then you should not unset the XDG Data Paths.&lt;br /&gt;
&lt;br /&gt;
=== Other Paths ===&lt;br /&gt;
&lt;br /&gt;
There are a number of other paths that are required, but these can all be automatically derived and created by the config script given below.&lt;br /&gt;
&lt;br /&gt;
== Environment Configuration ==&lt;br /&gt;
&lt;br /&gt;
The example environment configuration script given below is for building KDE against your system Qt under your normal user account with an out-of-source build and installing into a user directory.  By changing just four variables you can use the script to configure any KDE build environment you want.&lt;br /&gt;
&lt;br /&gt;
It is recommended you create a separate script for each build environment you require.  If you have separate source directories for each build then save the script into the root source directory with the name &amp;quot;.build-config&amp;quot; to allow the bash scripts in the next section to automatically load the config and create the required directories.&lt;br /&gt;
&lt;br /&gt;
If you don't wish to use the bash scripts then you must manually create the required directories and manually execute the config script.&lt;br /&gt;
&lt;br /&gt;
If you are building KDE using a dedicated user to run a full desktop session, then you should put this config into the users ~/.bashrc file.&lt;br /&gt;
&lt;br /&gt;
Please see the notes above about the [[Getting_Started/Build/Environment#XDG_Paths|XDG Paths]], the example config script below overrides the XDG Data Paths.&lt;br /&gt;
&lt;br /&gt;
=== Sample .build-config file ===&lt;br /&gt;
&amp;lt;code bash&amp;gt;&lt;br /&gt;
# KDE4 Build Environment configuration script&lt;br /&gt;
#&lt;br /&gt;
# To configure your build environment set LIB_SUFFIX, BASEDIR, BUILDNAME and&lt;br /&gt;
# QTDIR as appropriate&lt;br /&gt;
#&lt;br /&gt;
# The default values provided are for a master/trunk/unstable build in your own&lt;br /&gt;
# user directory using your system Qt&lt;br /&gt;
&lt;br /&gt;
# Uncomment if building on a 64 bit system&lt;br /&gt;
#export LIB_SUFFIX=64&lt;br /&gt;
&lt;br /&gt;
# Set where your base KDE development folder is located, usually ~/kde&lt;br /&gt;
export BASEDIR=~/kde&lt;br /&gt;
&lt;br /&gt;
# Give the build a name, e.g. master, 4.6, debug, etc&lt;br /&gt;
export BUILDNAME=master&lt;br /&gt;
&lt;br /&gt;
# Set up which Qt to use&lt;br /&gt;
# Use the system Qt, adjust path as required&lt;br /&gt;
export QTDIR=/usr&lt;br /&gt;
# Uncomment to use your own build of qt-kde&lt;br /&gt;
#export QTDIR=$BASEDIR/inst/master/qt-kde&lt;br /&gt;
#export PATH=$QTDIR/bin:$PATH&lt;br /&gt;
#export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH&lt;br /&gt;
#export PKG_CONFIG_PATH=$QTDIR/lib:$PKG_CONFIG_PATH&lt;br /&gt;
&lt;br /&gt;
# Set up the KDE paths&lt;br /&gt;
export KDE_SRC=$BASEDIR/src&lt;br /&gt;
export KDE_BUILD=$BASEDIR/build&lt;br /&gt;
export KDEDIR=$BASEDIR/inst/$BUILDNAME&lt;br /&gt;
export KDEDIRS=$KDEDIR&lt;br /&gt;
export KDEHOME=$BASEDIR/home/.$BUILDNAME&lt;br /&gt;
export KDETMP=/tmp/$BUILDNAME-$USER&lt;br /&gt;
export KDEVARTMP=/var/tmp/$BUILDNAME-$USER&lt;br /&gt;
mkdir -p $KDETMP&lt;br /&gt;
mkdir -p $KDEVARTMP&lt;br /&gt;
&lt;br /&gt;
# Add the KDE plugins to the Qt plugins path&lt;br /&gt;
export QT_PLUGIN_PATH=$KDEDIR/lib/kde4/plugins&lt;br /&gt;
&lt;br /&gt;
# Do we really need these?&lt;br /&gt;
export KDE4_DBUS_INTERFACES_DIR=$KDEDIR/share/dbus-1/interfaces&lt;br /&gt;
export PYTHON_SITE_PACKAGES_DIR=$KDEDIR/lib/python2.6/site-packages/PyKDE4&lt;br /&gt;
&lt;br /&gt;
# Export the standard paths to include KDE&lt;br /&gt;
export PATH=$KDEDIR/bin:$PATH&lt;br /&gt;
export LD_LIBRARY_PATH=$KDEDIR/lib:$LD_LIBRARY_PATH&lt;br /&gt;
export PKG_CONFIG_PATH=$KDEDIR/lib/pkgconfig:$PKG_CONFIG_PATH&lt;br /&gt;
&lt;br /&gt;
# Export the CMake paths so it searches for KDE in the right places&lt;br /&gt;
export CMAKE_PREFIX_PATH=$KDEDIR:$CMAKE_PREFIX_PATH&lt;br /&gt;
export CMAKE_LIBRARY_PATH=$KDEDIR/lib:$CMAKE_LIBRARY_PATH&lt;br /&gt;
export CMAKE_INCLUDE_PATH=$KDEDIR/include:$CMAKE_INCLUDE_PATH&lt;br /&gt;
&lt;br /&gt;
# Unset XDG to avoid seeing KDE files from /usr&lt;br /&gt;
# If unset then you must install shared-mime-info&lt;br /&gt;
unset XDG_DATA_DIRS&lt;br /&gt;
unset XDG_CONFIG_DIRS&lt;br /&gt;
&lt;br /&gt;
# Uncomment if you are using Icecream for distributed compiling&lt;br /&gt;
#export PATH=/opt/icecream/bin:$PATH&lt;br /&gt;
&lt;br /&gt;
# Report what the environment is set to&lt;br /&gt;
echo&lt;br /&gt;
echo &amp;quot;*** Configured KDE Build Environment &amp;quot; $BUILDNAME &amp;quot; ***&amp;quot;&lt;br /&gt;
echo&lt;br /&gt;
echo &amp;quot;QTDIR=&amp;quot; $QTDIR&lt;br /&gt;
echo &amp;quot;KDEDIR=&amp;quot; $KDEDIR&lt;br /&gt;
echo &amp;quot;PATH=&amp;quot; $PATH&lt;br /&gt;
echo&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Useful Bash Scripts ==&lt;br /&gt;
&lt;br /&gt;
This section provides a set of bash scripts to simplify setting up your build environment and managing the KDE build process.  If you use these scripts, then you can use the 'Easy Recipe' option documented in these pages.  If you do not want to use these scripts then you will need to use the 'Full Recipe' option documented in these pages.&lt;br /&gt;
&lt;br /&gt;
You can find further details about using these scripts on the [[../Recipes|Build Recipes]] page.&lt;br /&gt;
&lt;br /&gt;
The main commands provided are:&lt;br /&gt;
&lt;br /&gt;
;''cs''&lt;br /&gt;
Change to source directory&lt;br /&gt;
;''cb''&lt;br /&gt;
Change to build directory&lt;br /&gt;
;''cmakekde''&lt;br /&gt;
Configure, build and install the current KDE module&lt;br /&gt;
&lt;br /&gt;
=== findup ===&lt;br /&gt;
Save this script in an executable file called &amp;quot;findup&amp;quot; somewhere in your path, usually ~/bin/findup.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code bash&amp;gt;&lt;br /&gt;
#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
arg=&amp;quot;$1&amp;quot;&lt;br /&gt;
if test -z &amp;quot;$arg&amp;quot;; then exit 1; fi&lt;br /&gt;
&lt;br /&gt;
while ! test -f &amp;quot;$arg&amp;quot;; do&lt;br /&gt;
 cd ..&lt;br /&gt;
 if test &amp;quot;$PWD&amp;quot; = &amp;quot;/&amp;quot;; then&lt;br /&gt;
    exit 1&lt;br /&gt;
 fi&lt;br /&gt;
done&lt;br /&gt;
&lt;br /&gt;
echo $PWD/$arg&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== .bashrc ===&lt;br /&gt;
Add the following script to the end of your ~/.bashrc, or save as a separate ~/.kde-bashrc and add ''source .kde-bashrc'' to your ~/.bashrc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code bash&amp;gt;&lt;br /&gt;
###&lt;br /&gt;
## A script to setup some needed variables and functions for KDE 4 development.&lt;br /&gt;
## This should normally go in the ~/.bashrc file of your kde development user.&lt;br /&gt;
&lt;br /&gt;
CURRENT_SHELL=$(echo $0)&lt;br /&gt;
&lt;br /&gt;
prepend() { [ -d &amp;quot;$2&amp;quot; ] &amp;amp;&amp;amp; eval $1=\&amp;quot;$2\$\{$1:+':'\$$1\}\&amp;quot; &amp;amp;&amp;amp; export $1 ; }&lt;br /&gt;
&lt;br /&gt;
# This will make the debug output prettier&lt;br /&gt;
export KDE_COLOR_DEBUG=1&lt;br /&gt;
export QTEST_COLORED=1&lt;br /&gt;
&lt;br /&gt;
# Make&lt;br /&gt;
# Tell many scripts how to switch from source dir to build dir:&lt;br /&gt;
export OBJ_REPLACEMENT=&amp;quot;s#$KDE_SRC#$KDE_BUILD#&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# Use makeobj instead of make, to automatically switch to the build dir.&lt;br /&gt;
# If you don't have makeobj, install the package named kdesdk-scripts or&lt;br /&gt;
# kdesdk, or check out kdesdk/scripts from svn, or just don't set the alias&lt;br /&gt;
# yet.&lt;br /&gt;
alias make=makeobj&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# A function to easily build the current directory of KDE.&lt;br /&gt;
#&lt;br /&gt;
# This builds only the sources in the current ~/{src,build}/KDE subdirectory.&lt;br /&gt;
# Usage: cs KDE/kdebase &amp;amp;&amp;amp; cmakekde&lt;br /&gt;
#   will build/rebuild the sources in ~/src/KDE/kdebase&lt;br /&gt;
#&lt;br /&gt;
function cmakekde {&lt;br /&gt;
    if test -n &amp;quot;$1&amp;quot;; then&lt;br /&gt;
        # srcFolder is defined via command line argument&lt;br /&gt;
        srcFolder=&amp;quot;$1&amp;quot;&lt;br /&gt;
    else&lt;br /&gt;
        # get srcFolder for current dir&lt;br /&gt;
        srcFolder=`pwd | sed -e s,$KDE_BUILD,$KDE_SRC,`&lt;br /&gt;
    fi&lt;br /&gt;
    # we are in the src folder, change to build directory&lt;br /&gt;
    # Alternatively, we could just use makeobj in the commands below...&lt;br /&gt;
    current=`pwd`&lt;br /&gt;
    if [ &amp;quot;$srcFolder&amp;quot; = &amp;quot;$current&amp;quot; ]; then&lt;br /&gt;
        cb&lt;br /&gt;
    fi&lt;br /&gt;
    # To disable tests, remove -DKDE4_BUILD_TESTS=TRUE&lt;br /&gt;
    # To save disk space change &amp;quot;debugfull&amp;quot; to &amp;quot;debug&amp;quot;&lt;br /&gt;
    cmake &amp;quot;$srcFolder&amp;quot; \&lt;br /&gt;
          -DCMAKE_INSTALL_PREFIX=$KDEDIR \&lt;br /&gt;
          -DKDE4_BUILD_TESTS=TRUE \&lt;br /&gt;
          -DCMAKE_BUILD_TYPE=debugfull&lt;br /&gt;
&lt;br /&gt;
        # Comment out the following two lines to stop builds waiting after&lt;br /&gt;
        # the configuration step, so that the user can check configure output&lt;br /&gt;
        echo &amp;quot;Press &amp;lt;ENTER&amp;gt; to continue...&amp;quot;&lt;br /&gt;
        read userinput&lt;br /&gt;
&lt;br /&gt;
        # Note: To speed up compiling, change 'make -j2' to 'make -jx',&lt;br /&gt;
        #   where x is your number of processors +1&lt;br /&gt;
        nice make -j2 &amp;amp;&amp;amp; make install&lt;br /&gt;
        #Use this line instead if using icecream&lt;br /&gt;
        #nice make CC=icecc -j6 &amp;amp;&amp;amp; make install&lt;br /&gt;
        RETURN=$?&lt;br /&gt;
        cs&lt;br /&gt;
        return ${RETURN}&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
function cd() {&lt;br /&gt;
  if test -z &amp;quot;$1&amp;quot;; then&lt;br /&gt;
    builtin cd&lt;br /&gt;
  elif test -z &amp;quot;$2&amp;quot;; then&lt;br /&gt;
    builtin cd &amp;quot;$1&amp;quot;&lt;br /&gt;
  else&lt;br /&gt;
    builtin cd &amp;quot;$1&amp;quot; &amp;quot;$2&amp;quot;&lt;br /&gt;
  fi&lt;br /&gt;
  _f=`findup .build-config`&lt;br /&gt;
  if test -n &amp;quot;$_f&amp;quot; -a &amp;quot;$_lastf&amp;quot; != &amp;quot;$_f&amp;quot;; then&lt;br /&gt;
    echo &amp;quot;Loading $_f&amp;quot;&lt;br /&gt;
    _lastf=&amp;quot;$_f&amp;quot;&lt;br /&gt;
    source &amp;quot;$_f&amp;quot;&lt;br /&gt;
  fi&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# A function to easily change to the build directory.&lt;br /&gt;
# Usage: cb KDE/kdebase&lt;br /&gt;
#   will change to $KDE_BUILD/KDE/kdebase&lt;br /&gt;
# Usage: cb&lt;br /&gt;
#   will simply go to the build folder if you are currently in a src folder&lt;br /&gt;
#   Example:&lt;br /&gt;
#     $ pwd&lt;br /&gt;
#     /home/user/src/KDE/kdebase&lt;br /&gt;
#     $ cb &amp;amp;&amp;amp; pwd&lt;br /&gt;
#     /home/user/build/KDE/kdebase&lt;br /&gt;
#&lt;br /&gt;
function cb {&lt;br /&gt;
        local dest&lt;br /&gt;
&lt;br /&gt;
    # Make sure build directory exists.&lt;br /&gt;
    mkdir -p &amp;quot;$KDE_BUILD&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    # command line argument&lt;br /&gt;
    if test -n &amp;quot;$1&amp;quot;; then&lt;br /&gt;
        cd &amp;quot;$KDE_BUILD/$1&amp;quot;&lt;br /&gt;
        return&lt;br /&gt;
    fi&lt;br /&gt;
    # substitute src dir with build dir&lt;br /&gt;
    dest=`pwd | sed -e s,$KDE_SRC,$KDE_BUILD,`&lt;br /&gt;
    if test ! -d &amp;quot;$dest&amp;quot;; then&lt;br /&gt;
        # build directory does not exist, create&lt;br /&gt;
        mkdir -p &amp;quot;$dest&amp;quot;&lt;br /&gt;
    fi&lt;br /&gt;
    cd &amp;quot;$dest&amp;quot;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# Change to the source directory.  Same as cb, except this&lt;br /&gt;
# switches to $KDE_SRC instead of $KDE_BUILD.&lt;br /&gt;
# Usage: cs KDE/kdebase&lt;br /&gt;
#   will change to $KDE_SRC/KDE/kdebase&lt;br /&gt;
# Usage: cs&lt;br /&gt;
#   will simply go to the source folder if you are currently in a build folder&lt;br /&gt;
#   Example:&lt;br /&gt;
#     $ pwd&lt;br /&gt;
#     /home/myuser/kde/build/master/KDE/kdebase&lt;br /&gt;
#     $ cs &amp;amp;&amp;amp; pwd&lt;br /&gt;
#     /home/myuser/kde/src/master/KDE/kdebase&lt;br /&gt;
#&lt;br /&gt;
function cs {&lt;br /&gt;
        local dest current&lt;br /&gt;
&lt;br /&gt;
    # Make sure source directory exists.&lt;br /&gt;
    mkdir -p &amp;quot;$KDE_SRC&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    # command line argument&lt;br /&gt;
    if test -n &amp;quot;$1&amp;quot;; then&lt;br /&gt;
        cd &amp;quot;$KDE_SRC/$1&amp;quot;&lt;br /&gt;
    else&lt;br /&gt;
        # substitute build dir with src dir&lt;br /&gt;
        dest=`pwd | sed -e s,$KDE_BUILD,$KDE_SRC,`&lt;br /&gt;
        current=`pwd`&lt;br /&gt;
        if [ &amp;quot;$dest&amp;quot; = &amp;quot;$current&amp;quot; ]; then&lt;br /&gt;
            cd &amp;quot;$KDE_SRC&amp;quot;&lt;br /&gt;
        else&lt;br /&gt;
            cd &amp;quot;$dest&amp;quot;&lt;br /&gt;
        fi&lt;br /&gt;
    fi&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
##&lt;br /&gt;
# Add autocompletion to cs function&lt;br /&gt;
#&lt;br /&gt;
function _cs_scandir&lt;br /&gt;
{&lt;br /&gt;
        local base ext&lt;br /&gt;
&lt;br /&gt;
    base=$1&lt;br /&gt;
    ext=$2&lt;br /&gt;
    if [ -d $base ]; then&lt;br /&gt;
        for d in `ls $base`; do&lt;br /&gt;
            if [ -d $base/$d ]; then&lt;br /&gt;
                dirs=&amp;quot;$dirs $ext$d/&amp;quot;&lt;br /&gt;
            fi&lt;br /&gt;
        done&lt;br /&gt;
    fi&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function _cs()&lt;br /&gt;
{&lt;br /&gt;
    local cur dirs&lt;br /&gt;
    _cs_scandir &amp;quot;$KDE_SRC&amp;quot;&lt;br /&gt;
    _cs_scandir &amp;quot;$KDE_SRC/KDE&amp;quot; &amp;quot;KDE/&amp;quot;&lt;br /&gt;
    COMPREPLY=()&lt;br /&gt;
    cur=&amp;quot;${COMP_WORDS[COMP_CWORD]}&amp;quot;&lt;br /&gt;
    COMPREPLY=( $(compgen -W &amp;quot;${dirs}&amp;quot; -- ${cur}) )&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
svndiff ()&lt;br /&gt;
{&lt;br /&gt;
    svn diff &amp;quot;$*&amp;quot; | colordiff | less;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# Setup shell&lt;br /&gt;
if [ $CURRENT_SHELL = &amp;quot;bash&amp;quot; ]; then&lt;br /&gt;
    complete -F _cs cs&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User:Krf</id>
		<title>User:Krf</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User:Krf"/>
				<updated>2011-05-06T07:33:17Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Real name: Kevin Funk&lt;br /&gt;
&lt;br /&gt;
Nick name: KRF (IRC, Jabber, etc.)&lt;br /&gt;
&lt;br /&gt;
Homepage: http://electrostorm.net&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User:Krf</id>
		<title>User:Krf</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User:Krf"/>
				<updated>2011-05-06T07:32:57Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Real name: Kevin Funk&lt;br /&gt;
Nick name: KRF (IRC, Jabber, etc.)&lt;br /&gt;
Homepage: http://electrostorm.net&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User_talk:Danimo</id>
		<title>User talk:Danimo</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User_talk:Danimo"/>
				<updated>2008-04-29T13:10:06Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==CAPTCHAs that won't go away==&lt;br /&gt;
Aseigo [[Talk:Main_Page#Something_wrong_with_the_CAPTCHAs|suggested]] that I ask you about this.  Everytime I make an edit, it claims that I am adding a URL, and wants me to do some math.  Is it even supposed to do this to registered users?  In any case, ''most'' times I am not adding a url at all, and I tire of the systems inordinate appetite for elementary arithmetic.  Can this be fixed?  Thanks. --[[User:Axiom|Axiom]] 20:27, 28 March 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;nowiki&amp;gt;{{file}}&amp;lt;/nowiki&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
As you asked me, I removed all the occurrences of &amp;lt;nowiki&amp;gt;{{file}}&amp;lt;/nowiki&amp;gt; with &amp;lt;nowiki&amp;gt;{{path}}&amp;lt;/nowiki&amp;gt;, and removed the obsolete template &amp;lt;nowiki&amp;gt;{{file}}&amp;lt;/nowiki&amp;gt;. -- [[user:Pino|pino]] 02:16, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:There is also a template called &amp;lt;nowiki&amp;gt;{{module}}&amp;lt;/nowiki&amp;gt; for KDE modules (kdelibs, kdebase), etc. I initially used path here, too, and thought that's enough. It's not widely used, only by 2 articles. Maybe we should replace it by path again? What do you think? --[[User:Dhaumann|Dhaumann]] 09:14, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::I agree. --[[User:Danimo|Danimo]] 09:28, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::Or maybe link it to the module page in the apidocs (e.g [http://api.kde.org/4.0-api/kdelibs-apidocs/ kdelibs])? --[[User:Milliams|milliams]] 14:47, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::Good idea, &amp;lt;nowiki&amp;gt;{{kdelibs}}, {{kdebase}}&amp;lt;/nowiki&amp;gt; etc... +1 from my side :) --[[User:Dhaumann|Dhaumann]] 15:11, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::::Sounds good. Or how about &amp;lt;nowiki&amp;gt;{{module|foo}}&amp;lt;/nowiki&amp;gt; linking to http://api.kde.org/4.0-api/foo-apidocs/? I don't know how flexible this method is though? --[[User:Milliams|milliams]] 19:41, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::::+1 on [[User:Milliams|milliams]]' idea --[[user:Pino|pino]] 21:35, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Assistance needed for new contributor to Techbase==&lt;br /&gt;
Hi. My name is Thor, I am a new contributor to KDE and I am looking to provide some help with regard to one of the KDE Games, KTuberling (The Potato dude).  I am a Polyglot, and work in many different languages, and I have noticed on issues of KTuberling that even with correct software in place, certain speech selections do not function (Notably; Serbian and Danish).  I have been working on these for a while and would like to obtain source code for the Tuberling to try and correct the error.  Could you tell me please how I find out who is working on what, and what they are doing to it?  Thanks and Regards.  [[User:ThunderGod|ThunderGod]] 15:40, 30 December 2007 (CET)&lt;br /&gt;
:The best place to find assistance with this is by visiting the #kdegames or #kde-edu channels on irc.freenode.org or by sending an joining the KDE Games mailing list at [https://mail.kde.org/mailman/listinfo/kde-games-devel https://mail.kde.org/mailman/listinfo/kde-games-devel]. I believe tsdgeos (Albert Astals Cid) is the best person to speak to. --[[User:Milliams|milliams]] 17:13, 30 December 2007 (CET)&lt;br /&gt;
&lt;br /&gt;
== More readable URLs ==&lt;br /&gt;
&lt;br /&gt;
At the moment all links on this site are in the form [http://techbase.kde.org/index.php?title=Development/Tutorials http://techbase.kde.org/index.php?title=Development/Tutorials]. I think it would make the site much more readable to convert these links into something like [http://techbase.kde.org/Development/Tutorials http://techbase.kde.org/Development/Tutorials]. Now, as you can see, if you click on that link it does indeed work and takes you to the same page (so you've obviously got mod_rewrite working correctly) so the problem is that mediawiki itself isn't formatting it's links to take advantage of this. I think you basically need to do step 2 from [http://www.mediawiki.org/wiki/Manual:Short_URL#Setup_steps here]. --[[User:Milliams|milliams]] 14:53, 18 April 2008 (CEST)&lt;br /&gt;
:It seems this is working now. Thanks a lot :) --[[User:Milliams|milliams]] 14:34, 28 April 2008 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Remove my account ==&lt;br /&gt;
&lt;br /&gt;
Please remove my account; i'd like to choose another username. Thank you. [[User:Krf|KRF]]&lt;br /&gt;
&lt;br /&gt;
:Mediawiki has no concept of user account deletion, since that would mess up the history. Just create a new user and add redirects from your current user accounts user page. --[[User:Danimo|Danimo]] 17:55, 20 April 2008 (CEST)&lt;br /&gt;
&lt;br /&gt;
Okay, would be nice if you could make my username uppercase then... Some database tweaking maybe? ;). No need to answer this, you can remove my entry when you've read it. Thank you anyway. [[User:Krf|KRF]]&lt;br /&gt;
&lt;br /&gt;
== Hidden search button text in french localized ktechbase==&lt;br /&gt;
&lt;br /&gt;
When switching ktechbase language to french the button search text is really too small. I have read somewhere that the css file will use fixed width for a while so changing the search button width from 4em to 6em will fix that small issue.&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User_talk:Danimo</id>
		<title>User talk:Danimo</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User_talk:Danimo"/>
				<updated>2008-04-20T15:49:29Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: /* Remove my account */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==CAPTCHAs that won't go away==&lt;br /&gt;
Aseigo [[Talk:Main_Page#Something_wrong_with_the_CAPTCHAs|suggested]] that I ask you about this.  Everytime I make an edit, it claims that I am adding a URL, and wants me to do some math.  Is it even supposed to do this to registered users?  In any case, ''most'' times I am not adding a url at all, and I tire of the systems inordinate appetite for elementary arithmetic.  Can this be fixed?  Thanks. --[[User:Axiom|Axiom]] 20:27, 28 March 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;nowiki&amp;gt;{{file}}&amp;lt;/nowiki&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
As you asked me, I removed all the occurrences of &amp;lt;nowiki&amp;gt;{{file}}&amp;lt;/nowiki&amp;gt; with &amp;lt;nowiki&amp;gt;{{path}}&amp;lt;/nowiki&amp;gt;, and removed the obsolete template &amp;lt;nowiki&amp;gt;{{file}}&amp;lt;/nowiki&amp;gt;. -- [[user:Pino|pino]] 02:16, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:There is also a template called &amp;lt;nowiki&amp;gt;{{module}}&amp;lt;/nowiki&amp;gt; for KDE modules (kdelibs, kdebase), etc. I initially used path here, too, and thought that's enough. It's not widely used, only by 2 articles. Maybe we should replace it by path again? What do you think? --[[User:Dhaumann|Dhaumann]] 09:14, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::I agree. --[[User:Danimo|Danimo]] 09:28, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::Or maybe link it to the module page in the apidocs (e.g [http://api.kde.org/4.0-api/kdelibs-apidocs/ kdelibs])? --[[User:Milliams|milliams]] 14:47, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::Good idea, &amp;lt;nowiki&amp;gt;{{kdelibs}}, {{kdebase}}&amp;lt;/nowiki&amp;gt; etc... +1 from my side :) --[[User:Dhaumann|Dhaumann]] 15:11, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
::::Sounds good. Or how about &amp;lt;nowiki&amp;gt;{{module|foo}}&amp;lt;/nowiki&amp;gt; linking to http://api.kde.org/4.0-api/foo-apidocs/? I don't know how flexible this method is though? --[[User:Milliams|milliams]] 19:41, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
:::::+1 on [[User:Milliams|milliams]]' idea --[[user:Pino|pino]] 21:35, 29 May 2007 (CEST)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Assistance needed for new contributor to Techbase==&lt;br /&gt;
Hi. My name is Thor, I am a new contributor to KDE and I am looking to provide some help with regard to one of the KDE Games, KTuberling (The Potato dude).  I am a Polyglot, and work in many different languages, and I have noticed on issues of KTuberling that even with correct software in place, certain speech selections do not function (Notably; Serbian and Danish).  I have been working on these for a while and would like to obtain source code for the Tuberling to try and correct the error.  Could you tell me please how I find out who is working on what, and what they are doing to it?  Thanks and Regards.  [[User:ThunderGod|ThunderGod]] 15:40, 30 December 2007 (CET)&lt;br /&gt;
:The best place to find assistance with this is by visiting the #kdegames or #kde-edu channels on irc.freenode.org or by sending an joining the KDE Games mailing list at [https://mail.kde.org/mailman/listinfo/kde-games-devel https://mail.kde.org/mailman/listinfo/kde-games-devel]. I believe tsdgeos (Albert Astals Cid) is the best person to speak to. --[[User:Milliams|milliams]] 17:13, 30 December 2007 (CET)&lt;br /&gt;
&lt;br /&gt;
== More readable URLs ==&lt;br /&gt;
&lt;br /&gt;
At the moment all links on this site are in the form [http://techbase.kde.org/index.php?title=Development/Tutorials http://techbase.kde.org/index.php?title=Development/Tutorials]. I think it would make the site much more readable to convert these links into something like [http://techbase.kde.org/Development/Tutorials http://techbase.kde.org/Development/Tutorials]. Now, as you can see, if you click on that link it does indeed work and takes you to the same page (so you've obviously got mod_rewrite working correctly) so the problem is that mediawiki itself isn't formatting it's links to take advantage of this. I think you basically need to do step 2 from [http://www.mediawiki.org/wiki/Manual:Short_URL#Setup_steps here]. --[[User:Milliams|milliams]] 14:53, 18 April 2008 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Remove my account ==&lt;br /&gt;
&lt;br /&gt;
Please remove my account; i'd like to choose another username. Thank you. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2"/>
				<updated>2008-04-20T14:35:50Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: done&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This day will happen in the future at some point, but feel free to start now. The aim is to carry on from where we left off on [[Contribute/Bugsquad/BugDays/06APR08|6th April Bug Day]]. Our target for triage is bugs listed in [http://bugs.kde.org bugs.kde.org] under the product Konqueror.&lt;br /&gt;
&lt;br /&gt;
'''The goal of this bug-day is to check for: simple step-by-step instructions, reproducibility, and most of all, come up with test-cases for reproducing the bugs. This will enable the Konqueror developers to deal with bugs more easily, and so have more time left to actually fix them.''' When you have added either a test-case or step-by-step instructions for the reproduction of a bug, please list it in the appropriate section below, so that a second triager can see if they can get your instructions/test-case to work correctly. [http://konqueror.kde.org/investigatebug/ This page] provides an excellent explanation of how to create a test-case. [http://techbase.kde.org/index.php?title=Contribute/Bugsquad This page] also has useful information on how to not mis-mark bugs. In particular, &amp;quot;duplicates are hard&amp;quot;. Konqueror doesn't have as many duplicates as some applications, and we don't want to claim things are duplicates when they aren't. So do not look too hard for them, and '''make sure''' to double check them with someone else, preferably one of the developers before marking/closing.'''We especially don't want to create more work for developers!'''&lt;br /&gt;
&lt;br /&gt;
Be sure to join #kde-bugs on irc.freenode.net, as this is where the bug-day will be coordinated. (You can even join now!)&lt;br /&gt;
&lt;br /&gt;
You should either be working with Konqueror from KDE 4 (either 4.0.2 or newer is best or SVN trunk) for testing these bugs. In this case, it probably won't matter which one, because KHTML/KJS are aggressively forward-ported and back-ported, and you might find 4.0.x easier to compile. &lt;br /&gt;
&lt;br /&gt;
You may need another browser to test things in.&lt;br /&gt;
&lt;br /&gt;
===Testcases===&lt;br /&gt;
If you come across a bug with a testcase in the text, put it under the testcase section. If it isn't marked &amp;quot;testcase&amp;quot; in the title, make a note of that. Check that the testcase works! (And doesn't work!)&lt;br /&gt;
&lt;br /&gt;
Most importantly, we need to [http://konqueror.kde.org/investigatebug/ create testcases]. These are time-consuming, but extremely useful and really help out developers. These are especially important if it is a site that is either a non-Western language or a site you need some sort of account for. &lt;br /&gt;
&lt;br /&gt;
===Unclear===&lt;br /&gt;
If something has no clear instructions on how to reproduce it, or has little useful information, add a comment asking the reporter for more detail. Then list it in the [[#Bugs_awaiting_feedback|bugs awaiting feedback]] section. Be polite, we want to be nice to our bug reporters!&lt;br /&gt;
&lt;br /&gt;
===Is it a big bug?===&lt;br /&gt;
Prioritizing is good. If a major website doesn't work, that is important.&lt;br /&gt;
Let's keep track of them. &lt;br /&gt;
&lt;br /&gt;
===Version field===&lt;br /&gt;
Keep an eye on what the &amp;quot;Version:&amp;quot; fields say in Bugzilla. If it says &amp;quot;unspecified&amp;quot;, it won't show up in developer's searches for 4.0 bugs! Change the version field to match what the other one says, i.e. to match version the bug was first reported in, or mark it below if you don't have bugzilla permissions. Do not update or change the version number (ex. from 3.5.2 to 4.0.2) if it is currently set as a number! Just make a note on the bug of what the status is in the version you are testing with (be explicit as to what version of 4 you are using, mentioning whether it is a source build or which distro the packages come from).&lt;br /&gt;
&lt;br /&gt;
===Double Check!===&lt;br /&gt;
'''Please list bugs here to get a second opinion before making the change in bugzilla. This also gives a record of what we've done for the developers to check.'''&lt;br /&gt;
&lt;br /&gt;
===Keep this page updated!===&lt;br /&gt;
After adding triaged bugs on this page, you should keep an eye on their bugzilla status. Add yourself on the CC field in bugzilla to be informed about updates. When a bug is closed on bugzilla, it should be updated on this page.&lt;br /&gt;
&lt;br /&gt;
You can do this with the tag &amp;amp;lt;s&amp;amp;gt;...&amp;amp;lt;/s&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Update bugzilla===&lt;br /&gt;
Add your comments even on bugzilla for a more complete feedback by users and developers.&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
&lt;br /&gt;
Please select a period of bugs from the [[#Division_of_Labour|Division of Labour]] section below and mark your name next to it and mark it with your irc nickname to show that you are working on it. When you have completed all the bugs in that section, please mark it as complete.&lt;br /&gt;
&lt;br /&gt;
For each bug, try and reproduce it as described in the report. Then list it in the appropriate section below. '''If you wish to close or mark as duplicate a bug, please list it here even if you have the bugzilla permissions to do so, in order to get a second opinion from another triager. This will help to reduce the number of incorrect actions taken on bugs.'''&lt;br /&gt;
&lt;br /&gt;
==Sign-in==&lt;br /&gt;
Tell developers what you are testing with. (If you expect to upgrade between now and BugDay, put what version you are using now next to the bugs/comments that you put on this page.) &lt;br /&gt;
&lt;br /&gt;
Please give distro/version or SVN branch/trunk with revision below:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KDE version used for testing&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Grundleborg|Grundleborg]]||svn trunk r795406||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:krop|krop]]||svn trunk &amp;lt;s&amp;gt;r797569&amp;lt;/s&amp;gt; &amp;lt;s&amp;gt;r.798035&amp;lt;/s&amp;gt; r. 799086||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:finex|FiNeX]]||svn trunk r797319 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Nixeagle|Nixeagle]] || KDE 4.0.3 Gentoo Linux ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Frank78ac|frank78ac]] || svn trunk r798811 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Talavis|Talavis]] || svn trunk r798735 and 3.5.9 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]] || svn trunk r798768 and 3.5.9 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Batika|Batika]] || KDE 4.0.3 Gentoo Linux ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]] || KDE 4.0.3 openSUSE ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:KRF|KRF]] || KDE 4.0.3 Kubuntu ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Crvena_Zvezda|Crvena_Zvezda]] || KDE 4.0.3 Kubuntu 8.04 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:katastrophe|katastrophe]] || KDE 4.0.3 gentoo ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:mzanetti|mzanetti]] || svn trunk r798527 and 3.5.9 on Gentoo ||&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
{{Tip|Please be sure to sign every bug or comment you add to this page with your irc nickname. You can use the wiki markup &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt; to insert your wiki username automatically (but only do this if it is the same as your IRC nickname, otherwise write your IRC nickname in by hand).}}&lt;br /&gt;
&lt;br /&gt;
==Division of Labour==&lt;br /&gt;
Please choose a month that is not already taken and then query bugs.kde.org for all bugs in that month. Please mark you irc nickname in the table below to show which month's bugs you are working on to avoid duplication of effort.&lt;br /&gt;
&lt;br /&gt;
The bugzilla query to use for this triage day can be [http://bugs.kde.org/query.cgi?short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;long_desc_type=allwordssubstr&amp;amp;long_desc=&amp;amp;product=konqueror&amp;amp;component=khtml&amp;amp;component=khtml+adblock&amp;amp;component=khtml+ecma&amp;amp;component=khtml+event&amp;amp;component=khtml+forms&amp;amp;component=khtml+image+part&amp;amp;component=khtml+parsing&amp;amp;component=khtml+part&amp;amp;component=khtml+printing&amp;amp;component=khtml+renderer&amp;amp;component=khtml+xml&amp;amp;bug_status=UNCONFIRMED&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED&amp;amp;bug_severity=critical&amp;amp;bug_severity=grave&amp;amp;bug_severity=major&amp;amp;bug_severity=crash&amp;amp;bug_severity=normal&amp;amp;bug_severity=minor&amp;amp;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;emailassigned_to1=1&amp;amp;emailtype1=substring&amp;amp;email1=&amp;amp;emailassigned_to2=1&amp;amp;emailreporter2=1&amp;amp;emailcc2=1&amp;amp;emailtype2=substring&amp;amp;email2=&amp;amp;changedin=&amp;amp;chfield=%5BBug+creation%5D&amp;amp;chfieldfrom=2003-01-01&amp;amp;chfieldto=2003-01-31&amp;amp;chfieldvalue=&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;newqueryname=konq-triage-2003-01&amp;amp;namedcmd=2003-onwards found here]. Be sure to correct the dates to the month which you will triage before running the query.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Month !! No of bugs !! IRC Nickname !! Status&lt;br /&gt;
|-&lt;br /&gt;
|2005-02 || 14 ||[[User:finex|FiNeX]]||  working  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-03 || 20 || [[User:Batika|Batika]] || in progress... ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-04 || 16 || [[User:Grundleborg|Grundleborg]] || in progress ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-07 || 10 ||[[User:krop|krop]]|| Done. {{Bug|109218}} left (kwallet is buggy atm)  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-08 || 10 ||[[User:krop|krop]]|| Done.  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-09 || 16 || [[User:Nixeagle|Nixeagle]] || done. Bugs I had issues with are at [[User:Nixeagle/konquerorbugs]]. I'd appreciate it if that page were updated as folks look at the bugs.||&lt;br /&gt;
|-&lt;br /&gt;
|2005-11 || 16 || [[User:Nixeagle|Nixeagle]] || done - any I did not finish are at [[User:Nixeagle/konquerorbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2006-03 || 17 || [[User:Nixeagle|Nixeagle]] || done - incomplete at [[User:Nixeagle/konquerorbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2006-04 || 19 || [[User:Nixeagle|Nixeagle]] || working&lt;br /&gt;
|-&lt;br /&gt;
|2006-05 || 20 || [[User:Njg234908|Njg234908]] || 10 down back later to complete :)&lt;br /&gt;
|-&lt;br /&gt;
|2006-06 || 21 || [[User:Crvena_Zvezda|Crvena_Zvezda]] || just starting&lt;br /&gt;
|-&lt;br /&gt;
|2006-07 || 16 || [[User:katastrophe|katastrophe]] || in progress&lt;br /&gt;
|-&lt;br /&gt;
|2006-08 || 19 || [[User:mzanetti|mzanetti]] || in progress&lt;br /&gt;
|-&lt;br /&gt;
|2006-09 || 23&lt;br /&gt;
|-&lt;br /&gt;
|2006-10 || 27&lt;br /&gt;
|-&lt;br /&gt;
|2006-11 || 25&lt;br /&gt;
|-&lt;br /&gt;
|2006-12 || 17&lt;br /&gt;
|-&lt;br /&gt;
|2007-01 || 26&lt;br /&gt;
|-&lt;br /&gt;
|2007-02 || 26 || [[User:lemma|lemma]] || starting out...&lt;br /&gt;
|-&lt;br /&gt;
|2007-03 || 25 ||[[User:krop|krop]]|| in progress...  ||&lt;br /&gt;
|-&lt;br /&gt;
|2007-04 || 11&lt;br /&gt;
|-&lt;br /&gt;
|2007-05 || 20&lt;br /&gt;
|-&lt;br /&gt;
|2007-06 || 21&lt;br /&gt;
|-&lt;br /&gt;
|2007-07 || 16 || [[User:KRF|KRF]] || done&lt;br /&gt;
|-&lt;br /&gt;
|2007-08 || 12 || [[User:Talavis|Talavis]] || in progress&lt;br /&gt;
|-&lt;br /&gt;
|2007-09 || 9 || [[User:Talavis|Talavis]] || Done, unable to test: [[User:Talavis/konqbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2007-10 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2007-11 || 21 || [[User:KRF|KRF]] || done&lt;br /&gt;
|-&lt;br /&gt;
|2007-12 || 23&lt;br /&gt;
|-&lt;br /&gt;
|2008-01 || 32&lt;br /&gt;
|-&lt;br /&gt;
|2008-02 || 28&lt;br /&gt;
|-&lt;br /&gt;
|2008-03 || 22&lt;br /&gt;
|-&lt;br /&gt;
|2008-04 || 2&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 615)&lt;br /&gt;
&lt;br /&gt;
== Completed Bugs ==&lt;br /&gt;
Below lists the various sections for completed bugs. This aids everyone in double checking each other's work. In addition this allows those of us that don't have bugzilla permissions to list bugs so that the folks with the permissions can follow up. &lt;br /&gt;
&lt;br /&gt;
Please note that this is an experimental layout designed to reduce the number of edit conflicts on this page. Each section is its own subpage. The best way to work with this is to enable section editing by going to &amp;quot;My preferences&amp;quot; &amp;gt; &amp;quot;editing&amp;quot; &amp;gt; &amp;quot;Enable section editing via [edit] links&amp;quot;. When you click edit you will automatically edit the subpage.&lt;br /&gt;
:For those interested, this was implemented after a short discussion on IRC between grundleborg, blauzahl, _lemma, and myself (nixeagle).&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing version field changed}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with test-cases Added}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with step-by-step instructions}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as RESOLVED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as INVALID}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as DUPLICATE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Non english locales}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/High Profile}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Needs more information}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs awaiting feedback}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs not related to today}}&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers"/>
				<updated>2008-04-20T14:26:19Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from Konqueror developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behavior is intended, or if there's some other reason that it would be useful for a Konqueror developer to take a look. Make sure you indicate ''why'' the bug needs attention from them.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108634}} - The bug reporter complains about the style Konqueror uses for &amp;lt;abbr&amp;gt; &amp;amp; &amp;lt;acronym&amp;gt;. Konqueror just uses the &amp;quot;typical style&amp;quot; suggested here : http://www.w3.org/TR/REC-CSS2/sample.html [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124193}} - Report has a problem with XLST, the only response to this bug is that XLST is not supported.&amp;lt;/s&amp;gt; [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
** Maksim has had a look, stated it was low priority but not a WONTFIX. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124843}}&amp;lt;/s&amp;gt; - Report appears as if it may have a fix on the page. However I can't confirm as there is no way to get a working demo up. If you guys happen to know if this is resolved, please close it. Otherwise we have to wait until we can get a working demo going again. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Closed after speaking to harri on IRC. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103468}} - not sure what can really be done about this. Should it be closed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|124910}} - Is this fixed? For all appearances it is in kde 4.0.3. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Dev responded, looks like that one is staying open. We probably will need to create a test case of some sort to be sure that it really is fixed or not. Sadly I'm not able to do this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|102198}} - Given comment #5, should it be marked as INVALID? [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|147408}} - The testcase site provided by the reporter is a mess (php code in html and so on). Should it work at all?&lt;br /&gt;
*{{Bug|126941}} - Error compiling konq using icpc - is this supported?  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|149366}} - text-transform:lowercase not affecting input fields. This seems not to be working in other browsers (Firefox) [[Talavis|Talavis]]&lt;br /&gt;
*{{Bug|104656}} - the HTML is buggy, but should konqueror emulate firefox and other browsers here? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|152285}} - there are some serious troubles regarding js with krugle.org in 4.0.3. Seems to work in 3.5.9, though. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|115913}} - should be ok to close. feature doesnt exist in kde4 anymore but works ok for me in 3.5.9. Reporter complains about intented behaviour i think. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|152860}} - Regression in KDE 4.x. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|153041}} - Patch included.&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x"/>
				<updated>2008-04-20T14:16:32Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs no longer present in 4.x===&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug can no longer be reproduced in KDE 4.x, then it should be listed here. Please '''do not''' close the bug. The Konqueror developers would like to check each one before they are closed.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109907}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**Resolved in 3.5.9 as well, closing the bug. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|109860}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109694}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109046}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**This works in konq 3.5.9, so I closed it. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|108596}} - The original website doesn't exist anymore. [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110251}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111585}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
**Confirmation that the bug was fixed in 3.5.9 is wanted [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
***It's still there [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|111336}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111125}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110284}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
**Works for me in 3.5.9 as well as 4.0.3. Closing. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110225}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112686}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**lemma says it also works in 3.5.9 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|112541}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|113507}} - Resolved in 4.0.3 - There is also a comment noting it works in 3.5.7. This should likely be closed. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|115909}} - Resolved in trunk (r796129) [[User:Philrod|Philrod]]&lt;br /&gt;
*{{Bug|116804}} - Resolved in 4.0.3 - I personally can't reproduce it. However flash *may* be required to produce this. I don't have that installed at this time. (If this is the wrong section, please move this) [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|117245}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|116124}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123490}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123378}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149466}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|150294}} - Resolved in trunk and 3.5.9? [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|129631}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|124422}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124407}} - Resolved in 4.0.3, by comments on the bug, I infer its resolved in 3.5.x as well. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123278}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124312}} - Resolved in 4.0.3 - Please note the bug is unconfirmed, but was confirmad at one time (A dev unconfirmed it again noting similar behavior to firefox). However the report is resolved so that it works as the filer wanted. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126416}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149709}} - Resolved in trunk [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|125567}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126285}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|101579}} - Resolved in 4.0.3 [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104297}} - I think its resolved in trunk and 3.5.9, but someone needs to check my testcase is correct. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|102795}} - Resolved in 4.0.3. [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|98542}} - CSS3 :first-line property work as expected. The bug seems fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|104317}} - Resolved in trunk, still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104358}} - fixed in trunk but still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|126785}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127344}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127345}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127152}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|152008}} - resolved in 4.0.3. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|143641}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|142518}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|104438}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|113260}} - Resolved in 4.0.3 and 3.5.9. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|152470}} - Resolved in 4.0.3 and 3.5.9. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|153033}} - Resolved in 4.0.3. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-04-20T14:12:42Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing users with particular setups===&lt;br /&gt;
Bugs that require particular software or hardware that you don't have available should be listed here with a description of the non-standard requirement.&lt;br /&gt;
*{{bug|112476}} - Site problem - Someone with an older CPU should check this. It appears fixed using a newer CPU. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|124937}} - Looks like we need someone with &amp;quot;Microsoft Outlook Web Access&amp;quot; to even have a chance at reproducing this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|100604}} - needs a printer to test. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|125613}} - needs a printer [[User:Nixeagle|Nixeagle]] - works for me on kde3 and kde4. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|152624}} - What are orkuts? [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug| 153017}} - Blogger account needed. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User:Krf</id>
		<title>User:Krf</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User:Krf"/>
				<updated>2008-04-20T14:11:14Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: User:KRF moved to User:Krf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Homepage: http://electrostorm.net&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User:KRF</id>
		<title>User:KRF</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User:KRF"/>
				<updated>2008-04-20T14:11:14Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: User:KRF moved to User:Krf&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[User:Krf]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-04-20T14:10:43Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing users with particular setups===&lt;br /&gt;
Bugs that require particular software or hardware that you don't have available should be listed here with a description of the non-standard requirement.&lt;br /&gt;
*{{bug|112476}} - Site problem - Someone with an older CPU should check this. It appears fixed using a newer CPU. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|124937}} - Looks like we need someone with &amp;quot;Microsoft Outlook Web Access&amp;quot; to even have a chance at reproducing this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|100604}} - needs a printer to test. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|125613}} - needs a printer [[User:Nixeagle|Nixeagle]] - works for me on kde3 and kde4. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|152624}} - What are orkuts? [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers"/>
				<updated>2008-04-20T14:09:23Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from Konqueror developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behavior is intended, or if there's some other reason that it would be useful for a Konqueror developer to take a look. Make sure you indicate ''why'' the bug needs attention from them.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108634}} - The bug reporter complains about the style Konqueror uses for &amp;lt;abbr&amp;gt; &amp;amp; &amp;lt;acronym&amp;gt;. Konqueror just uses the &amp;quot;typical style&amp;quot; suggested here : http://www.w3.org/TR/REC-CSS2/sample.html [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124193}} - Report has a problem with XLST, the only response to this bug is that XLST is not supported.&amp;lt;/s&amp;gt; [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
** Maksim has had a look, stated it was low priority but not a WONTFIX. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124843}}&amp;lt;/s&amp;gt; - Report appears as if it may have a fix on the page. However I can't confirm as there is no way to get a working demo up. If you guys happen to know if this is resolved, please close it. Otherwise we have to wait until we can get a working demo going again. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Closed after speaking to harri on IRC. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103468}} - not sure what can really be done about this. Should it be closed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|124910}} - Is this fixed? For all appearances it is in kde 4.0.3. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Dev responded, looks like that one is staying open. We probably will need to create a test case of some sort to be sure that it really is fixed or not. Sadly I'm not able to do this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|102198}} - Given comment #5, should it be marked as INVALID? [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|147408}} - The testcase site provided by the reporter is a mess (php code in html and so on). Should it work at all?&lt;br /&gt;
*{{Bug|126941}} - Error compiling konq using icpc - is this supported?  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|149366}} - text-transform:lowercase not affecting input fields. This seems not to be working in other browsers (Firefox) [[Talavis|Talavis]]&lt;br /&gt;
*{{Bug|104656}} - the HTML is buggy, but should konqueror emulate firefox and other browsers here? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|152285}} - there are some serious troubles regarding js with krugle.org in 4.0.3. Seems to work in 3.5.9, though. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|115913}} - should be ok to close. feature doesnt exist in kde4 anymore but works ok for me in 3.5.9. Reporter complains about intented behaviour i think. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|152860}} - Regression in KDE 4.x. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x"/>
				<updated>2008-04-20T14:05:19Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs no longer present in 4.x===&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug can no longer be reproduced in KDE 4.x, then it should be listed here. Please '''do not''' close the bug. The Konqueror developers would like to check each one before they are closed.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109907}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**Resolved in 3.5.9 as well, closing the bug. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|109860}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109694}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109046}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**This works in konq 3.5.9, so I closed it. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|108596}} - The original website doesn't exist anymore. [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110251}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111585}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
**Confirmation that the bug was fixed in 3.5.9 is wanted [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
***It's still there [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|111336}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111125}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110284}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
**Works for me in 3.5.9 as well as 4.0.3. Closing. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110225}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112686}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**lemma says it also works in 3.5.9 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|112541}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|113507}} - Resolved in 4.0.3 - There is also a comment noting it works in 3.5.7. This should likely be closed. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|115909}} - Resolved in trunk (r796129) [[User:Philrod|Philrod]]&lt;br /&gt;
*{{Bug|116804}} - Resolved in 4.0.3 - I personally can't reproduce it. However flash *may* be required to produce this. I don't have that installed at this time. (If this is the wrong section, please move this) [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|117245}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|116124}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123490}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123378}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149466}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|150294}} - Resolved in trunk and 3.5.9? [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|129631}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|124422}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124407}} - Resolved in 4.0.3, by comments on the bug, I infer its resolved in 3.5.x as well. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123278}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124312}} - Resolved in 4.0.3 - Please note the bug is unconfirmed, but was confirmad at one time (A dev unconfirmed it again noting similar behavior to firefox). However the report is resolved so that it works as the filer wanted. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126416}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149709}} - Resolved in trunk [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|125567}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126285}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|101579}} - Resolved in 4.0.3 [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104297}} - I think its resolved in trunk and 3.5.9, but someone needs to check my testcase is correct. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|102795}} - Resolved in 4.0.3. [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|98542}} - CSS3 :first-line property work as expected. The bug seems fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|104317}} - Resolved in trunk, still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104358}} - fixed in trunk but still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|126785}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127344}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127345}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127152}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|152008}} - resolved in 4.0.3. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|143641}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|142518}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|104438}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|113260}} - Resolved in trunk and 3.5.9. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|152470}} - Resolved in trunk and 3.5.9. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-04-20T13:55:58Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing users with particular setups===&lt;br /&gt;
Bugs that require particular software or hardware that you don't have available should be listed here with a description of the non-standard requirement.&lt;br /&gt;
*{{bug|112476}} - Site problem - Someone with an older CPU should check this. It appears fixed using a newer CPU. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|124937}} - Looks like we need someone with &amp;quot;Microsoft Outlook Web Access&amp;quot; to even have a chance at reproducing this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|100604}} - needs a printer to test. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|125613}} - needs a printer [[User:Nixeagle|Nixeagle]] - works for me on kde3 and kde4. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-04-20T13:52:25Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing users with particular setups===&lt;br /&gt;
Bugs that require particular software or hardware that you don't have available should be listed here with a description of the non-standard requirement.&lt;br /&gt;
*{{bug|112476}} - Site problem - Someone with an older CPU should check this. It appears fixed using a newer CPU. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|124937}} - Looks like we need someone with &amp;quot;Microsoft Outlook Web Access&amp;quot; to even have a chance at reproducing this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|100604}} - needs a printer to test. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|125613}} - needs a printer [[User:Nixeagle|Nixeagle]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers"/>
				<updated>2008-04-20T13:51:53Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from Konqueror developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behavior is intended, or if there's some other reason that it would be useful for a Konqueror developer to take a look. Make sure you indicate ''why'' the bug needs attention from them.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108634}} - The bug reporter complains about the style Konqueror uses for &amp;lt;abbr&amp;gt; &amp;amp; &amp;lt;acronym&amp;gt;. Konqueror just uses the &amp;quot;typical style&amp;quot; suggested here : http://www.w3.org/TR/REC-CSS2/sample.html [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124193}} - Report has a problem with XLST, the only response to this bug is that XLST is not supported.&amp;lt;/s&amp;gt; [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
** Maksim has had a look, stated it was low priority but not a WONTFIX. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124843}}&amp;lt;/s&amp;gt; - Report appears as if it may have a fix on the page. However I can't confirm as there is no way to get a working demo up. If you guys happen to know if this is resolved, please close it. Otherwise we have to wait until we can get a working demo going again. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Closed after speaking to harri on IRC. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103468}} - not sure what can really be done about this. Should it be closed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|124910}} - Is this fixed? For all appearances it is in kde 4.0.3. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Dev responded, looks like that one is staying open. We probably will need to create a test case of some sort to be sure that it really is fixed or not. Sadly I'm not able to do this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|102198}} - Given comment #5, should it be marked as INVALID? [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|147408}} - The testcase site provided by the reporter is a mess (php code in html and so on). Should it work at all?&lt;br /&gt;
*{{Bug|126941}} - Error compiling konq using icpc - is this supported?  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|149366}} - text-transform:lowercase not affecting input fields. This seems not to be working in other browsers (Firefox) [[Talavis|Talavis]]&lt;br /&gt;
*{{Bug|104656}} - the HTML is buggy, but should konqueror emulate firefox and other browsers here? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|152285}} - there are some serious troubles regarding js with krugle.org in 4.0.3. Seems to work in 3.5.9, though. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|115913}} - should be ok to close. feature doesnt exist in kde4 anymore but works ok for me in 3.5.9. Reporter complains about intented behaviour i think. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_awaiting_feedback</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs awaiting feedback</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_awaiting_feedback"/>
				<updated>2008-04-20T13:42:28Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs awaiting feedback===&lt;br /&gt;
'''NB. Feedback should only be requested for bugs if you have tried and failed to reproduce them or if the report contains insufficient information to try and reproduce the bug. Requesting feedback for a bug should be seen as a ''last resort'' only.'''&lt;br /&gt;
&lt;br /&gt;
Bugs for which feedback has been requested, which should be revisited in 30 days to see if there's any response. Please list all bugs here for which feedback has been requested.&lt;br /&gt;
*{{Bug|122883}} - No way to reproduce this as the links for the testcase give 403 forbidden. I've asked for updated links if there are still some available. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103631}} - page no longer exists. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-04-20T13:41:09Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing users with particular setups===&lt;br /&gt;
Bugs that require particular software or hardware that you don't have available should be listed here with a description of the non-standard requirement.&lt;br /&gt;
*{{bug|112476}} - Site problem - Someone with an older CPU should check this. It appears fixed using a newer CPU. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|115913}} - Need a mouse with a middle mouse button. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|124937}} - Looks like we need someone with &amp;quot;Microsoft Outlook Web Access&amp;quot; to even have a chance at reproducing this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|100604}} - needs a printer to test. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|125613}} - needs a printer [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|152287}} - needs someone with w32codecs and kaffeine installed. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x"/>
				<updated>2008-04-20T13:33:12Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs no longer present in 4.x===&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug can no longer be reproduced in KDE 4.x, then it should be listed here. Please '''do not''' close the bug. The Konqueror developers would like to check each one before they are closed.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109907}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**Resolved in 3.5.9 as well, closing the bug. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|109860}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109694}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109046}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**This works in konq 3.5.9, so I closed it. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|108596}} - The original website doesn't exist anymore. [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110251}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111585}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
**Confirmation that the bug was fixed in 3.5.9 is wanted [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
***It's still there [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|111336}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111125}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110284}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
**Works for me in 3.5.9 as well as 4.0.3. Closing. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110225}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112686}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**lemma says it also works in 3.5.9 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|112541}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|113507}} - Resolved in 4.0.3 - There is also a comment noting it works in 3.5.7. This should likely be closed. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|115909}} - Resolved in trunk (r796129) [[User:Philrod|Philrod]]&lt;br /&gt;
*{{Bug|116804}} - Resolved in 4.0.3 - I personally can't reproduce it. However flash *may* be required to produce this. I don't have that installed at this time. (If this is the wrong section, please move this) [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|117245}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|116124}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123490}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123378}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149466}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|150294}} - Resolved in trunk and 3.5.9? [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|129631}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|124422}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124407}} - Resolved in 4.0.3, by comments on the bug, I infer its resolved in 3.5.x as well. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123278}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124312}} - Resolved in 4.0.3 - Please note the bug is unconfirmed, but was confirmad at one time (A dev unconfirmed it again noting similar behavior to firefox). However the report is resolved so that it works as the filer wanted. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126416}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149709}} - Resolved in trunk [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|125567}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126285}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|101579}} - Resolved in 4.0.3 [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104297}} - I think its resolved in trunk and 3.5.9, but someone needs to check my testcase is correct. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|102795}} - Resolved in 4.0.3. [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|98542}} - CSS3 :first-line property work as expected. The bug seems fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|104317}} - Resolved in trunk, still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104358}} - fixed in trunk but still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|126785}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127344}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127345}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127152}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|152008}} - resolved in 4.0.3. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|143641}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|142518}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|104438}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|113260}} - Resolved in trunk and 3.5.9. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-04-20T13:27:14Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing users with particular setups===&lt;br /&gt;
Bugs that require particular software or hardware that you don't have available should be listed here with a description of the non-standard requirement.&lt;br /&gt;
*{{bug|113260}} - google maps has problems printing. - requires a printer, which I don't have on my test setup. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|112476}} - Site problem - Someone with an older CPU should check this. It appears fixed using a newer CPU. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|115913}} - Need a mouse with a middle mouse button. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{bug|124937}} - Looks like we need someone with &amp;quot;Microsoft Outlook Web Access&amp;quot; to even have a chance at reproducing this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|100604}} - needs a printer to test. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|103631}} - needs working java in konqueror. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|125613}} - needs a printer [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|152287}} - needs someone with w32codecs and kaffeine installed. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers"/>
				<updated>2008-04-20T13:21:44Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from Konqueror developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behavior is intended, or if there's some other reason that it would be useful for a Konqueror developer to take a look. Make sure you indicate ''why'' the bug needs attention from them.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108634}} - The bug reporter complains about the style Konqueror uses for &amp;lt;abbr&amp;gt; &amp;amp; &amp;lt;acronym&amp;gt;. Konqueror just uses the &amp;quot;typical style&amp;quot; suggested here : http://www.w3.org/TR/REC-CSS2/sample.html [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124193}} - Report has a problem with XLST, the only response to this bug is that XLST is not supported.&amp;lt;/s&amp;gt; [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
** Maksim has had a look, stated it was low priority but not a WONTFIX. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124843}}&amp;lt;/s&amp;gt; - Report appears as if it may have a fix on the page. However I can't confirm as there is no way to get a working demo up. If you guys happen to know if this is resolved, please close it. Otherwise we have to wait until we can get a working demo going again. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Closed after speaking to harri on IRC. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103468}} - not sure what can really be done about this. Should it be closed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|124910}} - Is this fixed? For all appearances it is in kde 4.0.3. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Dev responded, looks like that one is staying open. We probably will need to create a test case of some sort to be sure that it really is fixed or not. Sadly I'm not able to do this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|102198}} - Given comment #5, should it be marked as INVALID? [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|147408}} - The testcase site provided by the reporter is a mess (php code in html and so on). Should it work at all?&lt;br /&gt;
*{{Bug|126941}} - Error compiling konq using icpc - is this supported?  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|149366}} - text-transform:lowercase not affecting input fields. This seems not to be working in other browsers (Firefox) [[Talavis|Talavis]]&lt;br /&gt;
*{{Bug|104656}} - the HTML is buggy, but should konqueror emulate firefox and other browsers here? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|152285}} - there are some serious troubles regarding js with krugle.org in 4.0.3. Seems to work in 3.5.9, though. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_no_longer_present_in_4.x"/>
				<updated>2008-04-20T12:54:22Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: add bug&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs no longer present in 4.x===&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug can no longer be reproduced in KDE 4.x, then it should be listed here. Please '''do not''' close the bug. The Konqueror developers would like to check each one before they are closed.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109907}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**Resolved in 3.5.9 as well, closing the bug. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|109860}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109694}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|109046}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**This works in konq 3.5.9, so I closed it. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|108596}} - The original website doesn't exist anymore. [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110251}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111585}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
**Confirmation that the bug was fixed in 3.5.9 is wanted [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
***It's still there [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|111336}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|111125}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110284}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
**Works for me in 3.5.9 as well as 4.0.3. Closing. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|110225}} - Resolved in trunk&amp;lt;/s&amp;gt; [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112686}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**lemma says it also works in 3.5.9 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|112541}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|113507}} - Resolved in 4.0.3 - There is also a comment noting it works in 3.5.7. This should likely be closed. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|115909}} - Resolved in trunk (r796129) [[User:Philrod|Philrod]]&lt;br /&gt;
*{{Bug|116804}} - Resolved in 4.0.3 - I personally can't reproduce it. However flash *may* be required to produce this. I don't have that installed at this time. (If this is the wrong section, please move this) [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|117245}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|116124}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123490}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123378}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149466}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|150294}} - Resolved in trunk and 3.5.9? [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|129631}} - Resolved in trunk and 3.5.9 [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|124422}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124407}} - Resolved in 4.0.3, by comments on the bug, I infer its resolved in 3.5.x as well. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|123278}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|124312}} - Resolved in 4.0.3 - Please note the bug is unconfirmed, but was confirmad at one time (A dev unconfirmed it again noting similar behavior to firefox). However the report is resolved so that it works as the filer wanted. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126416}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|149709}} - Resolved in trunk [[User:Talavis|Talavis]]&lt;br /&gt;
*{{Bug|125567}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|126285}} - Resolved in 4.0.3 [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|101579}} - Resolved in 4.0.3 [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104297}} - I think its resolved in trunk and 3.5.9, but someone needs to check my testcase is correct. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|102795}} - Resolved in 4.0.3. [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|98542}} - CSS3 :first-line property work as expected. The bug seems fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|104317}} - Resolved in trunk, still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104358}} - fixed in trunk but still present in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|126785}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127344}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127345}} - not present in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127152}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|152008}} - resolved in 4.0.3. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2"/>
				<updated>2008-04-20T12:40:59Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: readd myself&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This day will happen in the future at some point, but feel free to start now. The aim is to carry on from where we left off on [[Contribute/Bugsquad/BugDays/06APR08|6th April Bug Day]]. Our target for triage is bugs listed in [http://bugs.kde.org bugs.kde.org] under the product Konqueror.&lt;br /&gt;
&lt;br /&gt;
'''The goal of this bug-day is to check for: simple step-by-step instructions, reproducibility, and most of all, come up with test-cases for reproducing the bugs. This will enable the Konqueror developers to deal with bugs more easily, and so have more time left to actually fix them.''' When you have added either a test-case or step-by-step instructions for the reproduction of a bug, please list it in the appropriate section below, so that a second triager can see if they can get your instructions/test-case to work correctly. [http://konqueror.kde.org/investigatebug/ This page] provides an excellent explanation of how to create a test-case. [http://techbase.kde.org/index.php?title=Contribute/Bugsquad This page] also has useful information on how to not mis-mark bugs. In particular, &amp;quot;duplicates are hard&amp;quot;. Konqueror doesn't have as many duplicates as some applications, and we don't want to claim things are duplicates when they aren't. So do not look too hard for them, and '''make sure''' to double check them with someone else, preferably one of the developers before marking/closing.'''We especially don't want to create more work for developers!'''&lt;br /&gt;
&lt;br /&gt;
Be sure to join #kde-bugs on irc.freenode.net, as this is where the bug-day will be coordinated. (You can even join now!)&lt;br /&gt;
&lt;br /&gt;
You should either be working with Konqueror from KDE 4 (either 4.0.2 or newer is best or SVN trunk) for testing these bugs. In this case, it probably won't matter which one, because KHTML/KJS are aggressively forward-ported and back-ported, and you might find 4.0.x easier to compile. &lt;br /&gt;
&lt;br /&gt;
You may need another browser to test things in.&lt;br /&gt;
&lt;br /&gt;
===Testcases===&lt;br /&gt;
If you come across a bug with a testcase in the text, put it under the testcase section. If it isn't marked &amp;quot;testcase&amp;quot; in the title, make a note of that. Check that the testcase works! (And doesn't work!)&lt;br /&gt;
&lt;br /&gt;
Most importantly, we need to [http://konqueror.kde.org/investigatebug/ create testcases]. These are time-consuming, but extremely useful and really help out developers. These are especially important if it is a site that is either a non-Western language or a site you need some sort of account for. &lt;br /&gt;
&lt;br /&gt;
===Unclear===&lt;br /&gt;
If something has no clear instructions on how to reproduce it, or has little useful information, add a comment asking the reporter for more detail. Then list it in the [[#Bugs_awaiting_feedback|bugs awaiting feedback]] section. Be polite, we want to be nice to our bug reporters!&lt;br /&gt;
&lt;br /&gt;
===Is it a big bug?===&lt;br /&gt;
Prioritizing is good. If a major website doesn't work, that is important.&lt;br /&gt;
Let's keep track of them. &lt;br /&gt;
&lt;br /&gt;
===Version field===&lt;br /&gt;
Keep an eye on what the &amp;quot;Version:&amp;quot; fields say in Bugzilla. If it says &amp;quot;unspecified&amp;quot;, it won't show up in developer's searches for 4.0 bugs! Change the version field to match what the other one says, i.e. to match version the bug was first reported in, or mark it below if you don't have bugzilla permissions. Do not update or change the version number (ex. from 3.5.2 to 4.0.2) if it is currently set as a number! Just make a note on the bug of what the status is in the version you are testing with (be explicit as to what version of 4 you are using, mentioning whether it is a source build or which distro the packages come from).&lt;br /&gt;
&lt;br /&gt;
===Double Check!===&lt;br /&gt;
'''Please list bugs here to get a second opinion before making the change in bugzilla. This also gives a record of what we've done for the developers to check.'''&lt;br /&gt;
&lt;br /&gt;
===Keep this page updated!===&lt;br /&gt;
After adding triaged bugs on this page, you should keep an eye on their bugzilla status. Add yourself on the CC field in bugzilla to be informed about updates. When a bug is closed on bugzilla, it should be updated on this page.&lt;br /&gt;
&lt;br /&gt;
You can do this with the tag &amp;amp;lt;s&amp;amp;gt;...&amp;amp;lt;/s&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Update bugzilla===&lt;br /&gt;
Add your comments even on bugzilla for a more complete feedback by users and developers.&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
&lt;br /&gt;
Please select a period of bugs from the [[#Division_of_Labour|Division of Labour]] section below and mark your name next to it and mark it with your irc nickname to show that you are working on it. When you have completed all the bugs in that section, please mark it as complete.&lt;br /&gt;
&lt;br /&gt;
For each bug, try and reproduce it as described in the report. Then list it in the appropriate section below. '''If you wish to close or mark as duplicate a bug, please list it here even if you have the bugzilla permissions to do so, in order to get a second opinion from another triager. This will help to reduce the number of incorrect actions taken on bugs.'''&lt;br /&gt;
&lt;br /&gt;
==Sign-in==&lt;br /&gt;
Tell developers what you are testing with. (If you expect to upgrade between now and BugDay, put what version you are using now next to the bugs/comments that you put on this page.) &lt;br /&gt;
&lt;br /&gt;
Please give distro/version or SVN branch/trunk with revision below:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KDE version used for testing&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Grundleborg|Grundleborg]]||svn trunk r795406||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:krop|krop]]||svn trunk &amp;lt;s&amp;gt;r797569&amp;lt;/s&amp;gt; &amp;lt;s&amp;gt;r.798035&amp;lt;/s&amp;gt; r. 799086||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:finex|FiNeX]]||svn trunk r797319 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Nixeagle|Nixeagle]] || KDE 4.0.3 Gentoo Linux ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Frank78ac|frank78ac]] || svn trunk r798811 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Talavis|Talavis]] || svn trunk r798735 and 3.5.9 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]] || svn trunk r798768 and 3.5.9 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Batika|Batika]] || KDE 4.0.3 Gentoo Linux ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]] || KDE 4.0.3 openSUSE ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:KRF|KRF]] || KDE 4.0.3 Kubuntu ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Crvena_Zvezda|Crvena_Zvezda]] || KDE 4.0.3 Kubuntu 8.04 ||&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
{{Tip|Please be sure to sign every bug or comment you add to this page with your irc nickname. You can use the wiki markup &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt; to insert your wiki username automatically (but only do this if it is the same as your IRC nickname, otherwise write your IRC nickname in by hand).}}&lt;br /&gt;
&lt;br /&gt;
==Division of Labour==&lt;br /&gt;
Please choose a month that is not already taken and then query bugs.kde.org for all bugs in that month. Please mark you irc nickname in the table below to show which month's bugs you are working on to avoid duplication of effort.&lt;br /&gt;
&lt;br /&gt;
The bugzilla query to use for this triage day can be [http://bugs.kde.org/query.cgi?short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;long_desc_type=allwordssubstr&amp;amp;long_desc=&amp;amp;product=konqueror&amp;amp;component=khtml&amp;amp;component=khtml+adblock&amp;amp;component=khtml+ecma&amp;amp;component=khtml+event&amp;amp;component=khtml+forms&amp;amp;component=khtml+image+part&amp;amp;component=khtml+parsing&amp;amp;component=khtml+part&amp;amp;component=khtml+printing&amp;amp;component=khtml+renderer&amp;amp;component=khtml+xml&amp;amp;bug_status=UNCONFIRMED&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED&amp;amp;bug_severity=critical&amp;amp;bug_severity=grave&amp;amp;bug_severity=major&amp;amp;bug_severity=crash&amp;amp;bug_severity=normal&amp;amp;bug_severity=minor&amp;amp;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;emailassigned_to1=1&amp;amp;emailtype1=substring&amp;amp;email1=&amp;amp;emailassigned_to2=1&amp;amp;emailreporter2=1&amp;amp;emailcc2=1&amp;amp;emailtype2=substring&amp;amp;email2=&amp;amp;changedin=&amp;amp;chfield=%5BBug+creation%5D&amp;amp;chfieldfrom=2003-01-01&amp;amp;chfieldto=2003-01-31&amp;amp;chfieldvalue=&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;newqueryname=konq-triage-2003-01&amp;amp;namedcmd=2003-onwards found here]. Be sure to correct the dates to the month which you will triage before running the query.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Month !! No of bugs !! IRC Nickname !! Status&lt;br /&gt;
|-&lt;br /&gt;
|2005-02 || 14 ||[[User:finex|FiNeX]]||  working  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-03 || 20 || [[User:Batika|Batika]] || in progress... ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-04 || 16 || [[User:Grundleborg|Grundleborg]] || in progress ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-07 || 10 ||[[User:krop|krop]]|| Done. {{Bug|109218}} left (kwallet is buggy atm)  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-08 || 10 ||[[User:krop|krop]]|| Done.  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-09 || 16 || [[User:Nixeagle|Nixeagle]] || done. Bugs I had issues with are at [[User:Nixeagle/konquerorbugs]]. I'd appreciate it if that page were updated as folks look at the bugs.||&lt;br /&gt;
|-&lt;br /&gt;
|2005-11 || 16 || [[User:Nixeagle|Nixeagle]] || done - any I did not finish are at [[User:Nixeagle/konquerorbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2006-03 || 17 || [[User:Nixeagle|Nixeagle]] || done - incomplete at [[User:Nixeagle/konquerorbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2006-04 || 19 || [[User:Nixeagle|Nixeagle]] || working&lt;br /&gt;
|-&lt;br /&gt;
|2006-05 || 20 || [[User:Njg234908|Njg234908]] || just starting&lt;br /&gt;
|-&lt;br /&gt;
|2006-06 || 21 || [[User:Crvena_Zvezda|Crvena_Zvezda]] || just starting&lt;br /&gt;
|-&lt;br /&gt;
|2006-07 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2006-08 || 18&lt;br /&gt;
|-&lt;br /&gt;
|2006-09 || 23&lt;br /&gt;
|-&lt;br /&gt;
|2006-10 || 27&lt;br /&gt;
|-&lt;br /&gt;
|2006-11 || 25&lt;br /&gt;
|-&lt;br /&gt;
|2006-12 || 17&lt;br /&gt;
|-&lt;br /&gt;
|2007-01 || 26&lt;br /&gt;
|-&lt;br /&gt;
|2007-02 || 26 || [[User:lemma|lemma]] || starting out...&lt;br /&gt;
|-&lt;br /&gt;
|2007-03 || 25 ||[[User:krop|krop]]|| in progress...  ||&lt;br /&gt;
|-&lt;br /&gt;
|2007-04 || 11&lt;br /&gt;
|-&lt;br /&gt;
|2007-05 || 20&lt;br /&gt;
|-&lt;br /&gt;
|2007-06 || 21&lt;br /&gt;
|-&lt;br /&gt;
|2007-07 || 16 || [[User:KRF|KRF]] || done&lt;br /&gt;
|-&lt;br /&gt;
|2007-08 || 12 || [[User:Talavis|Talavis]] || in progress&lt;br /&gt;
|-&lt;br /&gt;
|2007-09 || 9 || [[User:Talavis|Talavis]] || Done, unable to test: [[User:Talavis/konqbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2007-10 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2007-11 || 21 || [[User:KRF|KRF]] || in progress&lt;br /&gt;
|-&lt;br /&gt;
|2007-12 || 23&lt;br /&gt;
|-&lt;br /&gt;
|2008-01 || 32&lt;br /&gt;
|-&lt;br /&gt;
|2008-02 || 28&lt;br /&gt;
|-&lt;br /&gt;
|2008-03 || 22&lt;br /&gt;
|-&lt;br /&gt;
|2008-04 || 2&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 615)&lt;br /&gt;
&lt;br /&gt;
== Completed Bugs ==&lt;br /&gt;
Below lists the various sections for completed bugs. This aids everyone in double checking each other's work. In addition this allows those of us that don't have bugzilla permissions to list bugs so that the folks with the permissions can follow up. &lt;br /&gt;
&lt;br /&gt;
Please note that this is an experimental layout designed to reduce the number of edit conflicts on this page. Each section is its own subpage. The best way to work with this is to enable section editing by going to &amp;quot;My preferences&amp;quot; &amp;gt; &amp;quot;editing&amp;quot; &amp;gt; &amp;quot;Enable section editing via [edit] links&amp;quot;. When you click edit you will automatically edit the subpage.&lt;br /&gt;
:For those interested, this was implemented after a short discussion on IRC between grundleborg, blauzahl, _lemma, and myself (nixeagle).&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing version field changed}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with test-cases Added}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with step-by-step instructions}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as RESOLVED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as INVALID}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as DUPLICATE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Non english locales}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/High Profile}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Needs more information}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs awaiting feedback}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs not related to today}}&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_test-cases_Added</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with test-cases Added</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_test-cases_Added"/>
				<updated>2008-04-20T12:37:51Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: add bug headers&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with test-cases Added===&lt;br /&gt;
Bugs that have had a test case (an example of how to reproduce the bug) added should be entered below.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108442}} - Testcase added - Confirmed in trunk. Seems unrelated to Konqueror [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109070}} - Testcase added - Confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112756}} - Test case was already there, however someone with the correct permissions needs to add [testcase] to the summary. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Added [testcase] [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|150165}} - Testcase already there, need [testcase] added to summary. Confirmed in trunk.[[User:Talavis|Talavis]]&lt;br /&gt;
**Added [testcase] [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103250}} Testcase added - Confirmed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|103846}} - Testcase tag added - confirmed in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|100647}} - Test case already present, need [testcase] added to summary [[User:Batika|Batika]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|100805}} - Test case added, confirmed in 4.0.3. Modify summary [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104259}} - Test case tag added. confirmed in trunk and 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|128714}} - Test case. Confirmed in 4.0.3 [[User:Crvena_Zvezda|Crvena_Zvezda]]&lt;br /&gt;
*{{Bug|147960}} - Test case already present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|147789}} - Very detailed test case present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|147935}} - Test case present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|104396}} - Testcase tag added. Still present in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|126778}} - still present in 4.0.3, testcase added - needs marking as [testcase] [[User:Njg234908|Njg234908]] - done. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|127174}} - still present in 4.0.3, testcase added - needs marking as [testcase] [[User:Njg234908|Njg234908]] - done. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|127027}} - still present in 4.0.3, has testcase but needs marking [testcase] [[User:Njg234908|Njg234908]] - done. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|148343}} - Testcase tag added. Cant test though. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_test-cases_Added</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with test-cases Added</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_test-cases_Added"/>
				<updated>2008-04-20T12:34:05Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: add bug&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with test-cases Added===&lt;br /&gt;
Bugs that have had a test case (an example of how to reproduce the bug) added should be entered below.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108442}} - Testcase added - Confirmed in trunk. Seems unrelated to Konqueror [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109070}} - Testcase added - Confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112756}} - Test case was already there, however someone with the correct permissions needs to add [testcase] to the summary. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Added [testcase] [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|150165}} - Testcase already there, need [testcase] added to summary. Confirmed in trunk.[[User:Talavis|Talavis]]&lt;br /&gt;
**Added [testcase] [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103250}} Testcase added - Confirmed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|103846}} - Testcase tag added - confirmed in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|100647}} - Test case already present, need [testcase] added to summary [[User:Batika|Batika]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|100805}} - Test case added, confirmed in 4.0.3. Modify summary [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104259}} - Test case tag added. confirmed in trunk and 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|128714}} - Test case. Confirmed in 4.0.3 [[User:Crvena_Zvezda|Crvena_Zvezda]]&lt;br /&gt;
*{{Bug|147960}} - Test case already present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|147789}} - Very detailed test case present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|147935}} - Test case present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|104396}} - Testcase tag added. Still present in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|126778}} - still present in 4.0.3, testcase added - needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127174}} - still present in 4.0.3, testcase added - needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127027}} - still present in 4.0.3, has testcase but needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|148343}} - Testcase tag added. Cant test though. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_test-cases_Added</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with test-cases Added</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_test-cases_Added"/>
				<updated>2008-04-20T11:43:58Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: add bugs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with test-cases Added===&lt;br /&gt;
Bugs that have had a test case (an example of how to reproduce the bug) added should be entered below.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108442}} - Testcase added - Confirmed in trunk. Seems unrelated to Konqueror [[User:krop|krop]]&lt;br /&gt;
*{{Bug|109070}} - Testcase added - Confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|112756}} - Test case was already there, however someone with the correct permissions needs to add [testcase] to the summary. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Added [testcase] [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|150165}} - Testcase already there, need [testcase] added to summary. Confirmed in trunk.[[User:Talavis|Talavis]]&lt;br /&gt;
**Added [testcase] [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103250}} Testcase added - Confirmed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|103846}} - Testcase tag added - confirmed in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|100647}} - Test case already present, need [testcase] added to summary [[User:Batika|Batika]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|100805}} - Test case added, confirmed in 4.0.3. Modify summary [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|104259}} - Test case tag added. confirmed in trunk and 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|147960}} - Test case already present. [[User:Krf|KRF]]&lt;br /&gt;
*{{Bug|147789}} - Very detailed test case present. [[User:Krf|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_attention_from_Konqueror_developers"/>
				<updated>2008-04-20T11:00:46Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: add bug&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from Konqueror developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behavior is intended, or if there's some other reason that it would be useful for a Konqueror developer to take a look. Make sure you indicate ''why'' the bug needs attention from them.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|108634}} - The bug reporter complains about the style Konqueror uses for &amp;lt;abbr&amp;gt; &amp;amp; &amp;lt;acronym&amp;gt;. Konqueror just uses the &amp;quot;typical style&amp;quot; suggested here : http://www.w3.org/TR/REC-CSS2/sample.html [[User:krop|krop]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124193}} - Report has a problem with XLST, the only response to this bug is that XLST is not supported.&amp;lt;/s&amp;gt; [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
** Maksim has had a look, stated it was low priority but not a WONTFIX. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|124843}}&amp;lt;/s&amp;gt; - Report appears as if it may have a fix on the page. However I can't confirm as there is no way to get a working demo up. If you guys happen to know if this is resolved, please close it. Otherwise we have to wait until we can get a working demo going again. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Closed after speaking to harri on IRC. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|103468}} - not sure what can really be done about this. Should it be closed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|124910}} - Is this fixed? For all appearances it is in kde 4.0.3. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
**Dev responded, looks like that one is staying open. We probably will need to create a test case of some sort to be sure that it really is fixed or not. Sadly I'm not able to do this. [[User:Nixeagle|Nixeagle]]&lt;br /&gt;
*{{Bug|102198}} - Given comment #5, should it be marked as INVALID? [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|147408}} - The testcase site provided by the reporter is a mess (php code in html and so on). Should it work at all?&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2"/>
				<updated>2008-04-20T10:45:07Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: add  myself&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This day will happen in the future at some point, but feel free to start now. The aim is to carry on from where we left off on [[Contribute/Bugsquad/BugDays/06APR08|6th April Bug Day]]. Our target for triage is bugs listed in [http://bugs.kde.org bugs.kde.org] under the product Konqueror.&lt;br /&gt;
&lt;br /&gt;
'''The goal of this bug-day is to check for: simple step-by-step instructions, reproducibility, and most of all, come up with test-cases for reproducing the bugs. This will enable the Konqueror developers to deal with bugs more easily, and so have more time left to actually fix them.''' When you have added either a test-case or step-by-step instructions for the reproduction of a bug, please list it in the appropriate section below, so that a second triager can see if they can get your instructions/test-case to work correctly. [http://konqueror.kde.org/investigatebug/ This page] provides an excellent explanation of how to create a test-case. [http://techbase.kde.org/index.php?title=Contribute/Bugsquad This page] also has useful information on how to not mis-mark bugs. In particular, &amp;quot;duplicates are hard&amp;quot;. Konqueror doesn't have as many duplicates as some applications, and we don't want to claim things are duplicates when they aren't. So do not look too hard for them, and '''make sure''' to double check them with someone else, preferably one of the developers before marking/closing.'''We especially don't want to create more work for developers!'''&lt;br /&gt;
&lt;br /&gt;
Be sure to join #kde-bugs on irc.freenode.net, as this is where the bug-day will be coordinated. (You can even join now!)&lt;br /&gt;
&lt;br /&gt;
You should either be working with Konqueror from KDE 4 (either 4.0.2 or newer is best or SVN trunk) for testing these bugs. In this case, it probably won't matter which one, because KHTML/KJS are aggressively forward-ported and back-ported, and you might find 4.0.x easier to compile. &lt;br /&gt;
&lt;br /&gt;
You may need another browser to test things in.&lt;br /&gt;
&lt;br /&gt;
===Testcases===&lt;br /&gt;
If you come across a bug with a testcase in the text, put it under the testcase section. If it isn't marked &amp;quot;testcase&amp;quot; in the title, make a note of that. Check that the testcase works! (And doesn't work!)&lt;br /&gt;
&lt;br /&gt;
Most importantly, we need to [http://konqueror.kde.org/investigatebug/ create testcases]. These are time-consuming, but extremely useful and really help out developers. These are especially important if it is a site that is either a non-Western language or a site you need some sort of account for. &lt;br /&gt;
&lt;br /&gt;
===Unclear===&lt;br /&gt;
If something has no clear instructions on how to reproduce it, or has little useful information, add a comment asking the reporter for more detail. Then list it in the [[#Bugs_awaiting_feedback|bugs awaiting feedback]] section. Be polite, we want to be nice to our bug reporters!&lt;br /&gt;
&lt;br /&gt;
===Is it a big bug?===&lt;br /&gt;
Prioritizing is good. If a major website doesn't work, that is important.&lt;br /&gt;
Let's keep track of them. &lt;br /&gt;
&lt;br /&gt;
===Version field===&lt;br /&gt;
Keep an eye on what the &amp;quot;Version:&amp;quot; fields say in Bugzilla. If it says &amp;quot;unspecified&amp;quot;, it won't show up in developer's searches for 4.0 bugs! Change the version field to match what the other one says, i.e. to match version the bug was first reported in, or mark it below if you don't have bugzilla permissions. Do not update or change the version number (ex. from 3.5.2 to 4.0.2) if it is currently set as a number! Just make a note on the bug of what the status is in the version you are testing with (be explicit as to what version of 4 you are using, mentioning whether it is a source build or which distro the packages come from).&lt;br /&gt;
&lt;br /&gt;
===Double Check!===&lt;br /&gt;
'''Please list bugs here to get a second opinion before making the change in bugzilla. This also gives a record of what we've done for the developers to check.'''&lt;br /&gt;
&lt;br /&gt;
===Keep this page updated!===&lt;br /&gt;
After adding triaged bugs on this page, you should keep an eye on their bugzilla status. Add yourself on the CC field in bugzilla to be informed about updates. When a bug is closed on bugzilla, it should be updated on this page.&lt;br /&gt;
&lt;br /&gt;
You can do this with the tag &amp;amp;lt;s&amp;amp;gt;...&amp;amp;lt;/s&amp;amp;gt; &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Update bugzilla===&lt;br /&gt;
Add your comments even on bugzilla for a more complete feedback by users and developers.&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
&lt;br /&gt;
Please select a period of bugs from the [[#Division_of_Labour|Division of Labour]] section below and mark your name next to it and mark it with your irc nickname to show that you are working on it. When you have completed all the bugs in that section, please mark it as complete.&lt;br /&gt;
&lt;br /&gt;
For each bug, try and reproduce it as described in the report. Then list it in the appropriate section below. '''If you wish to close or mark as duplicate a bug, please list it here even if you have the bugzilla permissions to do so, in order to get a second opinion from another triager. This will help to reduce the number of incorrect actions taken on bugs.'''&lt;br /&gt;
&lt;br /&gt;
==Sign-in==&lt;br /&gt;
Tell developers what you are testing with. (If you expect to upgrade between now and BugDay, put what version you are using now next to the bugs/comments that you put on this page.) &lt;br /&gt;
&lt;br /&gt;
Please give distro/version or SVN branch/trunk with revision below:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KDE version used for testing&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Grundleborg|Grundleborg]]||svn trunk r795406||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:krop|krop]]||svn trunk &amp;lt;s&amp;gt;r797569&amp;lt;/s&amp;gt; r.798035||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:finex|FiNeX]]||svn trunk r797319 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Nixeagle|Nixeagle]] || KDE 4.0.3 Gentoo Linux ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Frank78ac|frank78ac]] || svn trunk r798811 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Talavis|Talavis]] || svn trunk r798735 and 3.5.9 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]] || svn trunk r798768 and 3.5.9 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Batika|Batika]] || KDE 4.0.3 Gentoo Linux ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]] || KDE 4.0.3 openSUSE ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:KRF|KRF]] || KDE 4.0.3 Kubuntu ||&lt;br /&gt;
|}&lt;br /&gt;
 &lt;br /&gt;
{{Tip|Please be sure to sign every bug or comment you add to this page with your irc nickname. You can use the wiki markup &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt; to insert your wiki username automatically (but only do this if it is the same as your IRC nickname, otherwise write your IRC nickname in by hand).}}&lt;br /&gt;
&lt;br /&gt;
==Division of Labour==&lt;br /&gt;
Please choose a month that is not already taken and then query bugs.kde.org for all bugs in that month. Please mark you irc nickname in the table below to show which month's bugs you are working on to avoid duplication of effort.&lt;br /&gt;
&lt;br /&gt;
The bugzilla query to use for this triage day can be [http://bugs.kde.org/query.cgi?short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;long_desc_type=allwordssubstr&amp;amp;long_desc=&amp;amp;product=konqueror&amp;amp;component=khtml&amp;amp;component=khtml+adblock&amp;amp;component=khtml+ecma&amp;amp;component=khtml+event&amp;amp;component=khtml+forms&amp;amp;component=khtml+image+part&amp;amp;component=khtml+parsing&amp;amp;component=khtml+part&amp;amp;component=khtml+printing&amp;amp;component=khtml+renderer&amp;amp;component=khtml+xml&amp;amp;bug_status=UNCONFIRMED&amp;amp;bug_status=NEW&amp;amp;bug_status=ASSIGNED&amp;amp;bug_status=REOPENED&amp;amp;bug_severity=critical&amp;amp;bug_severity=grave&amp;amp;bug_severity=major&amp;amp;bug_severity=crash&amp;amp;bug_severity=normal&amp;amp;bug_severity=minor&amp;amp;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;emailassigned_to1=1&amp;amp;emailtype1=substring&amp;amp;email1=&amp;amp;emailassigned_to2=1&amp;amp;emailreporter2=1&amp;amp;emailcc2=1&amp;amp;emailtype2=substring&amp;amp;email2=&amp;amp;changedin=&amp;amp;chfield=%5BBug+creation%5D&amp;amp;chfieldfrom=2003-01-01&amp;amp;chfieldto=2003-01-31&amp;amp;chfieldvalue=&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;newqueryname=konq-triage-2003-01&amp;amp;namedcmd=2003-onwards found here]. Be sure to correct the dates to the month which you will triage before running the query.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Month !! No of bugs !! IRC Nickname !! Status&lt;br /&gt;
|-&lt;br /&gt;
|2005-02 || 14 ||[[User:finex|FiNeX]]||  working  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-03 || 20 || [[User:Batika|Batika]] || in progress... ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-04 || 16 || [[User:Grundleborg|Grundleborg]] || in progress ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-07 || 10 ||[[User:krop|krop]]|| Done. {{Bug|109218}} left (kwallet is buggy atm)  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-08 || 10 ||[[User:krop|krop]]|| Done.  ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-09 || 16 || [[User:Nixeagle|Nixeagle]] || done. Bugs I had issues with are at [[User:Nixeagle/konquerorbugs]]. I'd appreciate it if that page were updated as folks look at the bugs.||&lt;br /&gt;
|-&lt;br /&gt;
|2005-11 || 16 || [[User:Nixeagle|Nixeagle]] || done - any I did not finish are at [[User:Nixeagle/konquerorbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2006-03 || 17 || [[User:Nixeagle|Nixeagle]] || done - incomplete at [[User:Nixeagle/konquerorbugs]]&lt;br /&gt;
|-&lt;br /&gt;
|2006-04 || 19 || [[User:Nixeagle|Nixeagle]] || working&lt;br /&gt;
|-&lt;br /&gt;
|2006-05 || 20 || [[User:Njg234908|Njg234908]] || just starting&lt;br /&gt;
|-&lt;br /&gt;
|2006-06 || 21&lt;br /&gt;
|-&lt;br /&gt;
|2006-07 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2006-08 || 18&lt;br /&gt;
|-&lt;br /&gt;
|2006-09 || 23&lt;br /&gt;
|-&lt;br /&gt;
|2006-10 || 27&lt;br /&gt;
|-&lt;br /&gt;
|2006-11 || 25&lt;br /&gt;
|-&lt;br /&gt;
|2006-12 || 17&lt;br /&gt;
|-&lt;br /&gt;
|2007-01 || 26&lt;br /&gt;
|-&lt;br /&gt;
|2007-02 || 26 || [[User:lemma|lemma]] || starting out...&lt;br /&gt;
|-&lt;br /&gt;
|2007-03 || 25&lt;br /&gt;
|-&lt;br /&gt;
|2007-04 || 11&lt;br /&gt;
|-&lt;br /&gt;
|2007-05 || 20&lt;br /&gt;
|-&lt;br /&gt;
|2007-06 || 21&lt;br /&gt;
|-&lt;br /&gt;
|2007-07 || 16 || [[User:KRF|KRF]] || in progress&lt;br /&gt;
|-&lt;br /&gt;
|2007-08 || 12&lt;br /&gt;
|-&lt;br /&gt;
|2007-09 || 9 || [[User:Talavis|Talavis]] || working&lt;br /&gt;
|-&lt;br /&gt;
|2007-10 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2007-11 || 21&lt;br /&gt;
|-&lt;br /&gt;
|2007-12 || 23&lt;br /&gt;
|-&lt;br /&gt;
|2008-01 || 32&lt;br /&gt;
|-&lt;br /&gt;
|2008-02 || 28&lt;br /&gt;
|-&lt;br /&gt;
|2008-03 || 22&lt;br /&gt;
|-&lt;br /&gt;
|2008-04 || 2&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 615)&lt;br /&gt;
&lt;br /&gt;
== Completed Bugs ==&lt;br /&gt;
Below lists the various sections for completed bugs. This aids everyone in double checking each other's work. In addition this allows those of us that don't have bugzilla permissions to list bugs so that the folks with the permissions can follow up. &lt;br /&gt;
&lt;br /&gt;
Please note that this is an experimental layout designed to reduce the number of edit conflicts on this page. Each section is its own subpage. The best way to work with this is to enable section editing by going to &amp;quot;My preferences&amp;quot; &amp;gt; &amp;quot;editing&amp;quot; &amp;gt; &amp;quot;Enable section editing via [edit] links&amp;quot;. When you click edit you will automatically edit the subpage.&lt;br /&gt;
:For those interested, this was implemented after a short discussion on IRC between grundleborg, blauzahl, _lemma, and myself (nixeagle).&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs no longer present in 4.x}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing version field changed}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with test-cases Added}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with step-by-step instructions}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as RESOLVED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as INVALID}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs to be marked as DUPLICATE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing users with particular setups}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Non english locales}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing attention from Konqueror developers}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/High Profile}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Needs more information}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs awaiting feedback}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs not related to today}}&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/User:Krf</id>
		<title>User:Krf</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/User:Krf"/>
				<updated>2008-04-20T10:22:49Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: New page: Homepage: http://electrostorm.net&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Homepage: http://electrostorm.net&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_version_field_changed</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs needing version field changed</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_needing_version_field_changed"/>
				<updated>2008-04-20T10:18:57Z</updated>
		
		<summary type="html">&lt;p&gt;Krf: resolved&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing version field changed===&lt;br /&gt;
Bugs should be listed here if their version field is invalid and they are still present in KDE 4, so that the version field can be corrected.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|109497}} - Confirmed in trunk - No version specified [[User:krop|krop]] - done. [[User:KRF|KRF]]&lt;br /&gt;
*{{Bug|110947}} - Confirmed in trunk [[User:krop|krop]] - done. [[User:KRF|KRF]]&lt;br /&gt;
*{{Bug|111113}} - Confirmed in trunk [[User:krop|krop]] - done. [[User:KRF|KRF]]&lt;br /&gt;
*{{Bug|110513}} - Confirmed in trunk [[User:krop|krop]] - done. [[User:KRF|KRF]]&lt;br /&gt;
*{{Bug|100647}} - Confirmed in 4.0.3 [[User:Batika|Batika]] - done. [[User:KRF|KRF]]&lt;br /&gt;
*{{Bug|101279}} - Confirmed in 4.0.3. Probably the component should be also changed to Parsing. [[User:Batika|Batika]] - done. [[User:KRF|KRF]]&lt;/div&gt;</summary>
		<author><name>Krf</name></author>	</entry>

	</feed>