<?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=JLP&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=JLP&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Special:Contributions/JLP"/>
		<updated>2013-05-23T09:03:58Z</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-06-29T16:52:33Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Sample .build-config file */&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;
&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;
=== Qt Path ===&lt;br /&gt;
&lt;br /&gt;
The $QTDIR environment variable defines where the KDE Build System can find the Qt library and include files to use when building KDE.  Normally you will want to set this to your system Qt, but you may want to change this to point to a different version of Qt you have [[Getting_Started/Build/Qt|built yourself]].&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;
By tradition this is usually saved in your home directory, but can be anywhere convenient or large enough to hold the source, build and install files:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/src/&lt;br /&gt;
&lt;br /&gt;
Inside this directory you can copy all the required git and svn source code repositories, for example:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/src/kdelibs&lt;br /&gt;
&lt;br /&gt;
This works fine if you only build a few repositories.  However, if you build many repositories or branches you may want to organise your repositories in a directory hierarchy.&lt;br /&gt;
&lt;br /&gt;
If you need 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 structure to keep these separate:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/src/master/&lt;br /&gt;
 ~/kde/src/4.6/&lt;br /&gt;
&lt;br /&gt;
See the Git Configuration page for details on setting up [[Development/Git/Configuration#Multiple_Work_Branches|Multiple Work Branches]].&lt;br /&gt;
&lt;br /&gt;
In Subversion the KDE Source Code was organised into Modules with a single repository holding all the applications for that module which imposed a clear structure.  In Git many KDE Modules have been split up into separate repositories for each application and library which can get very messy.  It is recommended you organize the repositories into separate sub-directories for each traditional Module:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/src/master/kdesupport/akonadi&lt;br /&gt;
 ~/kde/src/master/KDE/kdelibs&lt;br /&gt;
 ~/kde/src/master/KDE/kdeedu/marble&lt;br /&gt;
 ~/kde/src/master/extragear/multimedia/amarok&lt;br /&gt;
&lt;br /&gt;
See the [[Getting_Started/Sources|KDE Sources page]] or the [http://projects.kde.org/projects KDE Projects page] to see how the KDE Modules are organized.&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 'build' directory inside your 'source' directory (e.g. ~/kde/src/kdelibs/build), 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;
Continuing the example given above, you will now need the following new directories:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/build/master/&lt;br /&gt;
 ~/kde/build/4.6/&lt;br /&gt;
&lt;br /&gt;
=== Install Path ===&lt;br /&gt;
&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;
Continuing the example given above, you will now need the following new directories:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/inst/master/&lt;br /&gt;
 ~/kde/inst/4.6/&lt;br /&gt;
&lt;br /&gt;
=== Home Path ===&lt;br /&gt;
&lt;br /&gt;
The $KDEHOME path environment variable defines what directory KDE will treat as your home folder, i.e. for storing data and 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;
Continuing the example given above, you will now need the following new directories:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/home/master/&lt;br /&gt;
 ~/kde/home/4.6/&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;
=== Summary ===&lt;br /&gt;
&lt;br /&gt;
If you are only working on unstable, then you will end up with a directory hierarchy looking like:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/src/&lt;br /&gt;
 ~/kde/build/&lt;br /&gt;
 ~/kde/inst/&lt;br /&gt;
 ~/kde/home/&lt;br /&gt;
&lt;br /&gt;
If you are working on both unstable and stable then you will end up with a directory hierarchy looking like:&lt;br /&gt;
&lt;br /&gt;
 ~/kde/src/master/&lt;br /&gt;
 ~/kde/src/4.6/&lt;br /&gt;
 ~/kde/build/master/&lt;br /&gt;
 ~/kde/build/4.6/&lt;br /&gt;
 ~/kde/inst/master/&lt;br /&gt;
 ~/kde/inst/4.6/&lt;br /&gt;
 ~/kde/home/master/&lt;br /&gt;
 ~/kde/home/4.6/&lt;br /&gt;
&lt;br /&gt;
Just remember that you do not have to put the directories in your home folder, they can be anywhere you like that has sufficient space.  You can even have each directory in a different location.&lt;br /&gt;
&lt;br /&gt;
Normally you would need to manually create all the directories yourself and set the KDE Path Environment Variables manually, but if you use the config scripts below then you only need to create the source directory, all the other directories will be created by the KDE Build System when required.&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;syntaxhighlight lang=&amp;quot;bash&amp;quot;&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/pkgconfig:$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;/syntaxhighlight&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;
;''kdebuild''&lt;br /&gt;
Configure, build and install the current KDE module&lt;br /&gt;
;''kdecmake''&lt;br /&gt;
Configure the current KDE module using cmake&lt;br /&gt;
;''kdemake''&lt;br /&gt;
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;syntaxhighlight lang=&amp;quot;bash&amp;quot;&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;/syntaxhighlight&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;syntaxhighlight lang=&amp;quot;bash&amp;quot;&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;
 &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_AUTH_POLICY_FILES_INSTALL_DIR=$KDEDIR/share/polkit-1/actions \&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;
# 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; kdebuild&lt;br /&gt;
#   will build/rebuild the sources in ~/src/KDE/kdebase&lt;br /&gt;
##&lt;br /&gt;
function kdebuild {&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_AUTH_POLICY_FILES_INSTALL_DIR=$KDEDIR/share/polkit-1/actions \&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;
# A function to easily run cmake for KDE configuration&lt;br /&gt;
##&lt;br /&gt;
function kdecmake {&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_AUTH_POLICY_FILES_INSTALL_DIR=$KDEDIR/share/polkit-1/actions \&lt;br /&gt;
          -DKDE4_BUILD_TESTS=TRUE \&lt;br /&gt;
          -DCMAKE_BUILD_TYPE=debugfull&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;
# A function to easily make and install the current or selected directory of KDE.&lt;br /&gt;
##&lt;br /&gt;
function kdemake {&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;
 &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;
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;
# 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;/syntaxhighlight&amp;gt;&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Getting_Started/Build/KDE_Development_Platform</id>
		<title>Getting Started/Build/KDE Development Platform</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Getting_Started/Build/KDE_Development_Platform"/>
				<updated>2011-06-18T19:41:10Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* KDE Libraries */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:I18n/Language Navigation Bar|Getting_Started/Build/KDE_Development_Platform}}&lt;br /&gt;
&lt;br /&gt;
{{TutorialBrowser|&lt;br /&gt;
series=Getting Started|&lt;br /&gt;
name=Building KDE4 From Source/KDE Development Platform|&lt;br /&gt;
pre=[[../KDE_Support|KDE Support]]|&lt;br /&gt;
next=[[../KDE_Workspace|KDE Workspace]]|&lt;br /&gt;
|&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
&lt;br /&gt;
The KDE Development Platform contains a number of KDE modules that form the foundation for all KDE Software.&lt;br /&gt;
&lt;br /&gt;
If you are only interested in developing a KDE Application and not the KDE Development Platform itself then your distribution packages may be sufficient for these requirements, but Unstable development may require the latest Unstable versions to be built from source.&lt;br /&gt;
&lt;br /&gt;
=== Required Steps ===&lt;br /&gt;
&lt;br /&gt;
You need to have completed the following steps:&lt;br /&gt;
* Set up your [[../Environment|Build Environment]]&lt;br /&gt;
* Selected your [[../Recipes|Build Recipes]]&lt;br /&gt;
* Installed the [[../Requirements|System Requirements]]&lt;br /&gt;
* Installed or Built [[../Qt|Qt and related requirements]]&lt;br /&gt;
* Installed or Built [[../KDE_Support|KDE Support]]&lt;br /&gt;
* Understand the [[../Requirements#Definitions|Requirements Table format]]&lt;br /&gt;
&lt;br /&gt;
== KDE Libraries ==&lt;br /&gt;
&lt;br /&gt;
KDE Libraries (kdelibs) is the core library of the KDE Development Platform.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Project Page'''&lt;br /&gt;
| width=&amp;quot;75%&amp;quot; | [https://projects.kde.org/projects/kde/kdelibs https://projects.kde.org/projects/kde/kdelibs]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Easy Repository'''&lt;br /&gt;
| git clone kde:kdelibs.git&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Full Repository'''&lt;br /&gt;
| git clone git://anongit.kde.org/kdelibs.git&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ '''KDE Libraries Build Requirements'''&lt;br /&gt;
|-&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Requirement&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Stable Requires&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Unstable Requires&lt;br /&gt;
! width=&amp;quot;10%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Devel Pkgs?&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Details&lt;br /&gt;
|-&lt;br /&gt;
| [http://oscaf.sourceforge.net Shared desktop ontologies]&lt;br /&gt;
| style=&amp;quot;background-color:#FFFFFF&amp;quot; | ??&lt;br /&gt;
| style=&amp;quot;background-color:#FFFF66&amp;quot; | &amp;gt;= 0.6.50&lt;br /&gt;
| ??&lt;br /&gt;
| Support for the Nepomuk semantic desktop system.&amp;lt;br /&amp;gt;This is needed if you intend to  install ''kdepimlibs''&lt;br /&gt;
|-&lt;br /&gt;
| [http://www.grantlee.org Grantlee]&lt;br /&gt;
| style=&amp;quot;background-color:#FFFFFF&amp;quot; | ??&lt;br /&gt;
| style=&amp;quot;background-color:#66FF66&amp;quot; | &amp;gt;= 0.1.0&lt;br /&gt;
| ??&lt;br /&gt;
| Grantlee is used for generating compilable code by the ModelEventLogger.&amp;lt;br /&amp;gt;Without Grantlee, the logger will do nothing.&lt;br /&gt;
|-&lt;br /&gt;
| [http://aspell.net Aspell]&lt;br /&gt;
| style=&amp;quot;background-color:#FFFFFF&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#66FF66&amp;quot; |&lt;br /&gt;
| ??&lt;br /&gt;
| Spell checking support via Aspell.&lt;br /&gt;
|-&lt;br /&gt;
| [http://ivrix.org.il/projects/spell-checker/ HSpell]&lt;br /&gt;
| style=&amp;quot;background-color:#FFFFFF&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#66FF66&amp;quot; |&lt;br /&gt;
| ??&lt;br /&gt;
| Spell checking support for Hebrew.&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== KDE PIM Libraries ==&lt;br /&gt;
&lt;br /&gt;
KDE PIM Libraries (kdepimlibs) is the PIM library of the KDE Development Platform.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Project Page'''&lt;br /&gt;
| width=&amp;quot;75%&amp;quot; | [https://projects.kde.org/projects/kde/kdepimlibs https://projects.kde.org/projects/kde/kdepimlibs]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Easy Repository'''&lt;br /&gt;
| git clone kde:kdepimlibs.git&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Full Repository'''&lt;br /&gt;
| git clone git://anongit.kde.org/kdepimlibs.git&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ '''KDE PIM Libraries Build Requirements'''&lt;br /&gt;
|-&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Requirement&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Stable Requires&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Unstable Requires&lt;br /&gt;
! width=&amp;quot;10%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Devel Pkgs?&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Details&lt;br /&gt;
|-&lt;br /&gt;
| [http:// Project]&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| Yes&lt;br /&gt;
| A library for &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Troubleshooting ===&lt;br /&gt;
&lt;br /&gt;
If cmake tells you that it can not find ''Nepomuk'', it may be that you are missing some of the nepomuk dependencies of kdelibs.&lt;br /&gt;
&lt;br /&gt;
The solution is to rebuild kdelibs with the missing dependencies.&lt;br /&gt;
&lt;br /&gt;
== KDE Runtime ==&lt;br /&gt;
&lt;br /&gt;
KDE Runtime (kde-runtime) is the runtime component of the KDE Development Platform.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Project Page'''&lt;br /&gt;
| width=&amp;quot;75%&amp;quot; | [https://projects.kde.org/projects/kde/kdebase/kde-runtime https://projects.kde.org/projects/kde/kdebase/kde-runtime]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Easy Repository'''&lt;br /&gt;
| git clone kde:kde-runtime.git&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Full Repository'''&lt;br /&gt;
| git clone git://anongit.kde.org/kde-runtime.git&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ '''Project Build Requirements'''&lt;br /&gt;
|-&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Requirement&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Stable Requires&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Unstable Requires&lt;br /&gt;
! width=&amp;quot;10%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Devel Pkgs?&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Details&lt;br /&gt;
|-&lt;br /&gt;
| [http:// Project]&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| Yes&lt;br /&gt;
| A library for &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Kate ==&lt;br /&gt;
&lt;br /&gt;
TODO: Does it belong here or Apps?&lt;br /&gt;
&lt;br /&gt;
Kate is the text editor component for the KDE Development Platform.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Project Page'''&lt;br /&gt;
| width=&amp;quot;75%&amp;quot; | [https://projects.kde.org/projects/kde/kdebase/kate https://projects.kde.org/projects/kde/kdebase/kate]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Easy Repository'''&lt;br /&gt;
| git clone kde:kate.git&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Full Repository'''&lt;br /&gt;
| git clone git://anongit.kde.org/kate.git&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ '''Kate Build Requirements'''&lt;br /&gt;
|-&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Requirement&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Stable Requires&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Unstable Requires&lt;br /&gt;
! width=&amp;quot;10%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Devel Pkgs?&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Details&lt;br /&gt;
|-&lt;br /&gt;
| [http:// Project]&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| Yes&lt;br /&gt;
| A library for &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Konsole ==&lt;br /&gt;
&lt;br /&gt;
TODO: Does it belong here or Apps?&lt;br /&gt;
&lt;br /&gt;
Konsole is the terminal emulator component for the KDE Development Platform.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Project Page'''&lt;br /&gt;
| width=&amp;quot;75%&amp;quot; | [https://projects.kde.org/projects/kde/kdebase/konsole https://projects.kde.org/projects/kde/kdebase/konsole]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Easy Repository'''&lt;br /&gt;
| git clone kde:konsole.git&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Full Repository'''&lt;br /&gt;
| git clone git://anongit.kde.org/konsole.git&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ '''Konsole Build Requirements'''&lt;br /&gt;
|-&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Requirement&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Stable Requires&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Unstable Requires&lt;br /&gt;
! width=&amp;quot;10%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Devel Pkgs?&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Details&lt;br /&gt;
|-&lt;br /&gt;
| [http:// Project]&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| Yes&lt;br /&gt;
| A library for &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== KDE SDK ==&lt;br /&gt;
&lt;br /&gt;
The KDE SDK Module is not strictly speaking part of the KDE Development Platform, but it contains many useful tools and scripts that make developing KDE Software a lot easier and so is recommended to always be built or installed.&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| width=&amp;quot;25%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Project Page'''&lt;br /&gt;
| width=&amp;quot;75%&amp;quot; | http://websvn.kde.org/trunk/KDE/kdesdk/&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Easy Repository'''&lt;br /&gt;
| svn checkout svn://anonsvn.kde.org/home/kde/trunk/KDE/kdesdk/&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#EFEFEF;&amp;quot; | '''Full Repository'''&lt;br /&gt;
| svn checkout svn://anonsvn.kde.org/home/kde/trunk/KDE/kdesdk/&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;5&amp;quot; cellspacing=&amp;quot;0&amp;quot;&lt;br /&gt;
|+ '''KDE SDK Build Requirements'''&lt;br /&gt;
|-&lt;br /&gt;
! width=&amp;quot;20%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Requirement&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Stable Requires&lt;br /&gt;
! width=&amp;quot;15%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Unstable Requires&lt;br /&gt;
! width=&amp;quot;10%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Devel Pkgs?&lt;br /&gt;
! width=&amp;quot;40%&amp;quot; style=&amp;quot;background-color:#EFEFEF;&amp;quot; | Details&lt;br /&gt;
|-&lt;br /&gt;
| [http:// Project]&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| style=&amp;quot;background-color:#FF6666&amp;quot; |&lt;br /&gt;
| Yes&lt;br /&gt;
| A library for &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Getting_Started/Sources</id>
		<title>Getting Started/Sources</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Getting_Started/Sources"/>
				<updated>2011-05-29T20:34:14Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* KDE Applications */ KDE Edu is in Git → https://projects.kde.org/projects/kde/kdeedu&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Source Repositories and Revision Control ==&lt;br /&gt;
&lt;br /&gt;
KDE uses a central online repository to store our Source Code and to track changes made to the code.  Currently, KDE is in the middle of migrating our main repository from [[/Subversion|Subversion (svn)]] to [[Development/Git|Git]], so some software modules currently live in Git while others are still only available from Subversion.  This means you will need to become familiar with both systems.&lt;br /&gt;
&lt;br /&gt;
== Obtaining The Source Code ==&lt;br /&gt;
&lt;br /&gt;
There are three main ways of doing this:&lt;br /&gt;
&lt;br /&gt;
* Directly access the KDE Source Repository using either Git or Subversion to copy the source code as it currently is with a full history of all changes.  In Git this is know as Cloning the repository, in Subversion it is Checking-Out the code.  This is most commonly done if you want to actively develop the code. The git repositories are available at [https://projects.kde.org/projects projects.kde.org].&lt;br /&gt;
* Download a tarball snapshot of the Source Repository to bootstrap a Git clone or Subversion checkout.  This is a good option if you have a slow or unreliable internet connection.  See the [[/Snapshots|Source Snapshots]] page for more details.&lt;br /&gt;
* Download a tarball snapshot of just the code as at a given time or release.  This is most commonly done if you do not want to develop the code itself but just want to use it for a stable system installation, testing a release, or developing applications outside of the KDE SC.&lt;br /&gt;
&lt;br /&gt;
Note that Checkout has a different meaning in Git than it does in Subversion.&lt;br /&gt;
&lt;br /&gt;
== KDE Software Modules ==&lt;br /&gt;
&lt;br /&gt;
Within the KDE Source Repository the code is organized in Projects and Modules.  There are also a number of high-level groupings of the Modules.&lt;br /&gt;
&lt;br /&gt;
=== Qt KDE ===&lt;br /&gt;
&lt;br /&gt;
* Qt KDE (qt-kde) git&lt;br /&gt;
&lt;br /&gt;
=== KDE Support ===&lt;br /&gt;
&lt;br /&gt;
The '''KDE Support''' group is a set of tools and libraries that have been developed by KDE and that various KDE modules depend upon but are not themselves dependent on the KDE Development Platform.  These libraries can thus be used by non-KDE applications without having to rely on KDE as well.&lt;br /&gt;
&lt;br /&gt;
=== KDE Software Compilation ===&lt;br /&gt;
&lt;br /&gt;
The '''KDE Software Compilation''' (aka KDE SC) is an informal term covering all the KDE Software which is released together on the regular KDE Release Cycle.&lt;br /&gt;
&lt;br /&gt;
==== KDE Development Platform ====&lt;br /&gt;
&lt;br /&gt;
The '''KDE Development Platform''' group is defined as those KDE Modules that are required to run a KDE Application, i.e. the core libraries and runtime dependencies.&lt;br /&gt;
&lt;br /&gt;
* KDE Libraries (kdelibs) Git&lt;br /&gt;
* KDE PIM Libraries (kdepimlibs) Git&lt;br /&gt;
* KDE Runtime (kde-runtime) Git&lt;br /&gt;
&lt;br /&gt;
==== KDE Workspace ====&lt;br /&gt;
&lt;br /&gt;
The '''KDE Workspace''' group (aka '''Plasma''') is defined as those KDE Modules that are needed to run a workspace, such as the Desktop or Netbook.  This group is not needed to run a KDE Application under another workspace such as Gnome or Windows.&lt;br /&gt;
&lt;br /&gt;
* KDE Workspace (kde-workspace) Git&lt;br /&gt;
* KDE Base (kde-baseapps) Git&lt;br /&gt;
&lt;br /&gt;
==== KDE Applications ====&lt;br /&gt;
&lt;br /&gt;
The '''KDE Applications''' group is defined as those KDE modules built on the KDE Development Platform that are hosted by the KDE infrastructure and are released as part of the regular KDE Release Cycle, i.e. they are part of the KDE SC.&lt;br /&gt;
&lt;br /&gt;
* KDE Accessibility (kdeaccessibility) svn&lt;br /&gt;
* KDE Admin (kdeadmin) svn&lt;br /&gt;
* KDE Artwork (kdeartwork) svn&lt;br /&gt;
* KDE Bindings (kdebindings) git/svn&lt;br /&gt;
* KDE Examples (kdeexamples) git&lt;br /&gt;
* KDE Education (kdeedu) git&lt;br /&gt;
* KDE Games (kdegames) svn&lt;br /&gt;
* KDE Graphics (kdegraphics) git/svn&lt;br /&gt;
* KDE Network (kdenetwork) svn&lt;br /&gt;
* KDE Multimedia (kdemultimedia) svn&lt;br /&gt;
* Plasma Addons (kdeplasma-addons) git&lt;br /&gt;
* KDE PIM Runtime (kdepim-runtime) Git&lt;br /&gt;
* '''Kontact''' and Kontact Touch as part of KDE PIM (kdepim) Git&lt;br /&gt;
* KDE SDK (kdesdk) svn&lt;br /&gt;
* KDE Toys (kdetoys) svn&lt;br /&gt;
* KDE Utilities (kdeutils) svn&lt;br /&gt;
* KDE Web Development (kdewebdev) svn&lt;br /&gt;
&lt;br /&gt;
=== KDE Extragear ===&lt;br /&gt;
&lt;br /&gt;
The '''KDE Extragear''' group is defined as those applications built on the KDE Development Platform that are hosted by the KDE infrastructure and have a stable release but are not part of a KDE Module and are not released as part of the regular KDE Release Cycle, i.e. they are not part of the KDE SC.&lt;br /&gt;
&lt;br /&gt;
* KDE Extragear (extragear) Git/svn&lt;br /&gt;
&lt;br /&gt;
=== KDE Playground ===&lt;br /&gt;
&lt;br /&gt;
The '''KDE Playground''' group is defined as those applications built on the KDE Development Platform that are hosted by the KDE infrastructure but have not yet had a stable release and may never be released.&lt;br /&gt;
&lt;br /&gt;
* KDE Playground (playground) git/svn&lt;br /&gt;
&lt;br /&gt;
=== KDE Review ===&lt;br /&gt;
&lt;br /&gt;
The '''KDE Review''' group is defined as those applications that are being reviewed for inclusion in a KDE Module or KDE Extragear, usually moving over from KDE Playground.&lt;br /&gt;
&lt;br /&gt;
=== KDE Translations ===&lt;br /&gt;
&lt;br /&gt;
* KDE Translations (i18n) svn&lt;br /&gt;
&lt;br /&gt;
=== KDE Websites ===&lt;br /&gt;
&lt;br /&gt;
* KDE Websites (websites/www) git/svn&lt;br /&gt;
&lt;br /&gt;
=== KOffice ===&lt;br /&gt;
&lt;br /&gt;
* KOffice (koffice) git, stable in svn&lt;br /&gt;
&lt;br /&gt;
=== Calligra ===&lt;br /&gt;
&lt;br /&gt;
* '''Calligra''' (calligra) git&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Tutorials/CMake</id>
		<title>Development/Tutorials/CMake</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Tutorials/CMake"/>
				<updated>2010-04-29T19:25:32Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Command Line Variables */ fixed link ro build types&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:I18n/Language Navigation Bar|Development/Tutorials/CMake}}&lt;br /&gt;
&lt;br /&gt;
== Introduction ==&lt;br /&gt;
[http://www.cmake.org CMake] reads script files and produces input files for the native buildsystem of the platform where it runs on. It can create GNU Makefiles, KDevelop project files, XCode project files, and Visual Studio project files.&lt;br /&gt;
&lt;br /&gt;
[http://www.cmake.org CMake] is free software and released under a BSD license.  It is developed by [http://www.kitware.com Kitware Inc.]&lt;br /&gt;
&lt;br /&gt;
You can find more CMake related information on the [[Development/CMake | main CMake page]] here on TechBase.&lt;br /&gt;
&lt;br /&gt;
== Why use CMake ? ==&lt;br /&gt;
CMake is the official tool of KDE 4 release, decided in March 2006, primarily due to technical merits as compared to the older KDE tools automake and unsermake:&lt;br /&gt;
* CMake is developed independently of KDE, it can be used by other projects as well &lt;br /&gt;
* Compilation time is much faster, mainly due to not using libtool anymore&lt;br /&gt;
* The build files are easier to write&lt;br /&gt;
&lt;br /&gt;
== How to compile KDE using CMake==&lt;br /&gt;
&lt;br /&gt;
=== Get and install CMake ===&lt;br /&gt;
==== Linux, BSD, and other Unix Systems ====&lt;br /&gt;
Retrieve the latest stable version of CMake from [http://www.cmake.org/HTML/Download.html here].&lt;br /&gt;
&lt;br /&gt;
Once downloaded, unpack and compile it:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
$ mkdir cmake-build&lt;br /&gt;
$ cd cmake-build&lt;br /&gt;
$ ../bootstrap&lt;br /&gt;
$ make&lt;br /&gt;
$ make install&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
By default, this will install CMake in /usr/local, so make sure to have /usr/local/bin in your execute path.   To change the installation prefix (e.g. to /usr in debian), add the '--prefix=PATH' option to the bootstrap command.&lt;br /&gt;
&lt;br /&gt;
Please follow the instructions located [http://cmake.org/HTML/Download.html#cvs here] if you would like to use the current development version.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
Retrieve the latest stable version of CMake from [http://www.cmake.org/HTML/Download.html here].&lt;br /&gt;
&lt;br /&gt;
Once downloaded, run the cmake installer. &lt;br /&gt;
&lt;br /&gt;
By default, this will install CMake in C:\Program Files\CMake 2.8, so make sure to have &amp;lt;installpath&amp;gt;\bin in your execute path.   &lt;br /&gt;
&lt;br /&gt;
Please follow the instructions at [http://cmake.org/HTML/Download.html#cvs here] if you would like to use the current development version.&lt;br /&gt;
&lt;br /&gt;
=== Run CMake ===&lt;br /&gt;
&lt;br /&gt;
==== Linux, BSD, and other Unix Systems ====&lt;br /&gt;
You have to run CMake so that it generates the build files for your system.  Both in-source and out-of-source builds are supported by CMake, but currently in-source builds are prevented by the KDE implementation.&lt;br /&gt;
&lt;br /&gt;
So, let's say you have kdelibs/ in ~/src/kdelibs/, then do the following:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
$ ls&lt;br /&gt;
kdelibs/&lt;br /&gt;
$ mkdir kdelibs-build&lt;br /&gt;
$ cd kdelibs-build&lt;br /&gt;
$ cmake ../kdelibs&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
This will generate the Makefiles for building kdelibs/ in kdelibs-build/.&lt;br /&gt;
&lt;br /&gt;
==== Windows ====&lt;br /&gt;
You have to run CMake so that it generates the build files for your system.  Both in-source and out-of-source builds are supported by CMake, but currently in-source builds are prevented by the KDE implementation.&lt;br /&gt;
&lt;br /&gt;
So, let's say you have kdelibs\ in c:\daten\kde4, then do the following:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
c:\daten\kde4&amp;gt; cd kdelibs\win&lt;br /&gt;
c:\daten\kde4&amp;gt; cmake&lt;br /&gt;
c:\daten\kde4&amp;gt; make &lt;br /&gt;
c:\daten\kde4&amp;gt; make install&lt;br /&gt;
c:\daten\kde4&amp;gt; cd ..&lt;br /&gt;
c:\daten\kde4&amp;gt; mkdir kdelibs-build&lt;br /&gt;
c:\daten\kde4&amp;gt; cd kdelibs-build&lt;br /&gt;
c:\daten\kde4\kdelibs-build&amp;gt; cmake ..\kdelibs&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will generate the Makefiles for building kdelibs\ in kdelibs-build\. See [[Projects/KDE_on_Windows|KDE on Windows]] for more informations about compiling KDE on Windows.&lt;br /&gt;
&lt;br /&gt;
==== KDevelop 3 Project Files ====&lt;br /&gt;
If you prefer project files for KDevelop 3 (which will basically be Makefiles accompanied by some extra files for KDevelop), run it like this:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
$ cmake ../kdelibs -GKDevelop3&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
Use 'cmake -h' to find out which generators CMake supports and the other options.&lt;br /&gt;
&lt;br /&gt;
==== CMake and Qt4 ====&lt;br /&gt;
To locate Qt 4, CMake searches for qmake in your execute path. CMake does ''not'' use the QTDIR environment variable.  So make sure that the first qmake found in the execution path is the one you like to use.&lt;br /&gt;
&lt;br /&gt;
==== More Details ====&lt;br /&gt;
When CMake has finished, it will have created a file called &amp;quot;CMakeCache.txt&amp;quot;.  This file contains all the settings CMake has detected on your system.  If you want to run CMake with another generator or you want CMake to detect everything again, delete this file.&lt;br /&gt;
&lt;br /&gt;
If CMake didn't find something, but you know it is somewere on your box, you can tell CMake manually where to find it.  CMake uses variables to store this information.  These variables are cached in the already mentioned file CMakeCache.txt.  You have three options to adjust these variables manually:&lt;br /&gt;
* tell CMake the correct value via the command line: cmake ../kdelibs -DNAME_OF_THE_VARIABLE=value&lt;br /&gt;
* use ccmake, which provides a curses based GUI to adjust the CMake variables (run: ccmake ../kdelibs)&lt;br /&gt;
* edit the file CMakeCache.txt directly (not recommended)&lt;br /&gt;
&lt;br /&gt;
You should run &amp;quot;ccmake ../kdelibs&amp;quot; at least once so that you get an impression which variables CMake uses.  Press &amp;quot;T&amp;quot; to see also the &amp;quot;advanced&amp;quot; variables.  So, if CMake didn't find something, start ccmake and adjust it manually.&lt;br /&gt;
&lt;br /&gt;
==== Command Line Variables ====&lt;br /&gt;
&lt;br /&gt;
Some cmake command line variables you may want to set:&lt;br /&gt;
* '''CMAKE_INSTALL_PREFIX''': cmake ../kdelibs -DCMAKE_INSTALL_PREFIX=/opt/kde4 is the equivalent to ./configure --prefix=/opt/kde4&lt;br /&gt;
* '''[[Development/CMake/Addons_for_KDE#Buildtypes|CMAKE_BUILD_TYPE]]''': decide which type of build you want. You can choose between &amp;quot;debugfull&amp;quot;, &amp;quot;Debug&amp;quot;, &amp;quot;Profile&amp;quot;, &amp;quot;RelWithDebInfo&amp;quot; and &amp;quot;Release&amp;quot;. The default is &amp;quot;RelWithDebInfo&amp;quot;. Please refer to page [[Development/CMake/Addons_for_KDE#Buildtypes|CMake Build Types]] for a more detailed explanation.&lt;br /&gt;
* '''KDE4_BUILD_TESTS=ON''': creates Makefiles with build test programs and also provides 'test' targets&lt;br /&gt;
* '''KDE4_TEST_OUTPUT=xml''': Unit tests using the QTestLib framework will create xml formatted logfiles.&lt;br /&gt;
* '''KDE4_DISABLE_MULTIMEDIA=ON''': Build KDE without any multimedia (audio and video) support.&lt;br /&gt;
* '''BUILD_foo=OFF''': disables the build for the project in subdirectory 'foo'.&lt;br /&gt;
* '''WITH_foo''': there are several options, e.g. WITH_CUPS or WITH_Jasper. If you disable them, cmake will not even try to find this package. If it is enabled, cmake will try to find it. If it fails with this, you can still adjust it manually as described above.&lt;br /&gt;
&lt;br /&gt;
=== Environment Variables ===&lt;br /&gt;
If you have headers and libraries installed in non-standard locations that cmake cannot find (e.g., fink on Mac OSX installs to /sw), then set the following as environment variables.  This can be also very&lt;br /&gt;
useful e.g. if you install kdesupport to ~/install/kdesupport .&lt;br /&gt;
Despite the similar naming convention, these will not work as arguments on the cmake command line:&lt;br /&gt;
* '''CMAKE_INCLUDE_PATH''', eg. export CMAKE_INCLUDE_PATH=/sw/include&lt;br /&gt;
* '''CMAKE_LIBRARY_PATH''', eg. export CMAKE_LIBRARY_PATH=/sw/lib&lt;br /&gt;
* '''CMAKE_PROGRAM_PATH''', eg. export CMAKE_PROGRAM_PATH=/sw/bin&lt;br /&gt;
&lt;br /&gt;
With CMake 2.6.0 and above the same effect can be achieved by setting just one&lt;br /&gt;
variable:&lt;br /&gt;
* '''CMAKE_PREFIX_PATH''', eg. export CMAKE_PREFIX_PATH=/sw&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For more information on variables, see [http://www.cmake.org/Wiki/CMake_Useful_Variables this cmake.org wiki page]&lt;br /&gt;
&lt;br /&gt;
=== Going Further ===&lt;br /&gt;
If cmake finishes with &amp;quot;Generating done&amp;quot; then there was no errors, but if it finishes with &amp;quot;Configuring done&amp;quot; then there was errors that you have to fix.  Once cmake finishes successfully, run your buildtool (i.e. make, KDevelop, XCode or MSVC) and build and wait until it has finished.  Then &amp;quot;make install&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
If you got a failure that says something like&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
CMake Error: This project requires some variables to be set,&lt;br /&gt;
and cmake can not find them.&lt;br /&gt;
Please set the following variables:&lt;br /&gt;
X11_XTest_LIB (ADVANCED)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
then you may have a missing library (or other dependency). To find&lt;br /&gt;
out which library, search in the cmake/modules directory for&lt;br /&gt;
the variable that cmake can't find. In the example above, it is&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
find_library(X11_XTest_LIB Xtst ${X11_LIB_SEARCH_PATH})&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
So the missing library is Xtst. You then need to find it (perhaps installing a libXtst-devel library) and re-run cmake.&lt;br /&gt;
&lt;br /&gt;
== Using CMake for a Simple Application ==&lt;br /&gt;
&lt;br /&gt;
Here's the most simple CMakeLists.txt:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
add_executable(hello main.cpp)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
This will create an executable named &amp;quot;hello&amp;quot; (or &amp;quot;hello.exe&amp;quot; under Windows) from the source file main.cpp. You can mix C and C++ files as you want.  You can have multiple executables and libraries in one CMakeLists.txt.  The same source file can be used in multiple targets, it will be compiled for each target independently from the other targets.  Probably the most important part of the cmake language are the variables:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
set( MY_SOURCES main.cpp widget.cpp)&lt;br /&gt;
message(STATUS &amp;quot;my sources: ${MY_SOURCES}&amp;quot;)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
So, use the SET() command to set the value of a variable. If you list more than one string, the variable will be a list.   A list is a list of strings separated by semicolons. If you set it to only one item, it will have just that value. To get the value of a variable, use ${VAR}.&lt;br /&gt;
You can iterate over a list using FOREACH():&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
foreach(next_ITEM ${MY_SOURCES})&lt;br /&gt;
   message(STATUS &amp;quot;next item: ${next_ITEM}&amp;quot;)&lt;br /&gt;
endforeach(next_ITEM ${MY_SOURCES})&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
The commands in CMake are case-insensitive.  Names of variables and names of parameter are case-sensitive.&lt;br /&gt;
&lt;br /&gt;
You can also test for various things:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
if (UNIX)&lt;br /&gt;
   message(STATUS &amp;quot;This is UNIX (including OS X and CygWin)&amp;quot;)&lt;br /&gt;
endif (UNIX)&lt;br /&gt;
&lt;br /&gt;
if (MSVC)&lt;br /&gt;
   set(MY_SRCS ${MY_SRCS} winextra.cpp)&lt;br /&gt;
endif (MSVC)&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
In this second example  you can see also how to append items to a list.&lt;br /&gt;
&lt;br /&gt;
In the cmake Wiki there is also a [http://www.cmake.org/Wiki/HowToBuildKDE4Software  tutorial] on using cmake to build KDE 4 software. It is recommended reading.&lt;br /&gt;
&lt;br /&gt;
== Using CMake for a KDE Project ==&lt;br /&gt;
&lt;br /&gt;
Here's a basic CMakeList file that builds a small KDE 4 project:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
project( kde4project )&lt;br /&gt;
find_package( KDE4 REQUIRED )&lt;br /&gt;
include_directories( ${KDE4_INCLUDES} )&lt;br /&gt;
&lt;br /&gt;
set( KDE4ProjectSources kde4mainapp.cpp someclass.cpp someotherclass.cpp )&lt;br /&gt;
&lt;br /&gt;
kde4_add_executable( kde4project ${KDE4ProjectSources} )&lt;br /&gt;
&lt;br /&gt;
target_link_libraries( kde4project ${KDE4_KDEUI_LIBS} ${KDE4_KPARTS_LIBS} )&lt;br /&gt;
&lt;br /&gt;
install( TARGETS kde4project  ${INSTALL_TARGETS_DEFAULT_ARGS} )&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
''target_link_libraries'' contains the development libraries that are linked to your program. E.g. if you want to link to libtidy-devel, your library file name may be called /usr/local/lib/libtidy.a. You would then add -ltidy to a gcc call. Here, you add ''tidy'' to your target_link_libraries. If possible, use pre-defined variables or macros like ${KDE4_KDEUI_LIBS}.&lt;br /&gt;
&lt;br /&gt;
''install (TARGETS'' is where the target will finally be installed. If you do not have this line, make install will not be available.&lt;br /&gt;
&lt;br /&gt;
Variables, macros and other useful information specific to KDE can be found at the [[Development/CMake/Addons for KDE|CMake addons for KDE]] page.&lt;br /&gt;
&lt;br /&gt;
== Extending CMake ==&lt;br /&gt;
CMake can be extended using cmake scripts. CMake comes with a number of scripts; under UNIX they are by default installed to /usr/local/share/CMake/Modules/. The KDE libraries install also a set of cmake modules into share/apps/cmake/modules/. The files located there will be preferred over the ones in the system global cmake module path. &lt;br /&gt;
For detecting software packages there are FindFOO.cmake files, see [http://www.cmake.org/Wiki/CMake_HowToFindInstalledSoftware here] for more information.&lt;br /&gt;
You can also write macros in CMake. They are powerful enough to do most things you will need to build software, but they are not intended to be used as a general purpose programming language.&lt;br /&gt;
&lt;br /&gt;
== Converting autotools-based KDE software to CMake ==&lt;br /&gt;
In kdesdk/cmake/ you can find a script am2cmake . This is a ruby script, so you need to have ruby installed. Run am2cmake in the toplevel directory of your sources:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
$ cd src/mykooltool/&lt;br /&gt;
$ am2cmake --kde4&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
Don't forget the switch &amp;quot;--kde4&amp;quot;, otherwise it won't generate files suitable for KDE 4 software. The converted files 'may' work as they are, but complicated projects will require some additional editing.&lt;br /&gt;
&lt;br /&gt;
You may have to:&lt;br /&gt;
* add more include direcories, using INCLUDE_DIRECTORIES()&lt;br /&gt;
* add more link libraries, using TARGET_LINK_LIBRARIES()&lt;br /&gt;
* add some compile switches, using ADD_DEFINITIONS()&lt;br /&gt;
* add some &amp;quot;configure&amp;quot; checks, see [http://www.cmake.org/Wiki/CMake_HowToDoPlatformChecks How To Do Platform Checks] and [http://www.cmake.org/Wiki/CMake_HowToFindInstalledSoftware How To Find Installed Software]&lt;br /&gt;
* take special care of former libtool convenience libraries. They are not supported by cmake, instead there will be a file ConvenienceLibs.cmake created.  In this file you will find for every convenience lib a variable, which contains all source files of this convenience lib.  For the targets which linked to this convenience lib, just add the variable to the sources.&lt;br /&gt;
* a file AdditionalInfo.txt will be created.  There you will see all *.in and *.in.in files of your project. The stuff done in these files will have to be converted manually to cmake.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Programming]]&lt;br /&gt;
[[Category:Tutorial]]&lt;br /&gt;
[[Category:FAQs]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Further_Information</id>
		<title>Development/Further Information</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Further_Information"/>
				<updated>2010-02-17T10:21:04Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:I18n/Language Navigation Bar|Development/Further Information}}&lt;br /&gt;
== Web Sites ==&lt;br /&gt;
* [http://www.KDE.org KDE Home]&lt;br /&gt;
* [http://dot.kde.org KDE Dot News]&lt;br /&gt;
* [http://www.planetkde.org Planet KDE]&lt;br /&gt;
&lt;br /&gt;
==Blogs==&lt;br /&gt;
&lt;br /&gt;
== Books ==&lt;br /&gt;
Below are a list of books associated with KDE 4 development.  These may be specific to applications, using the Qt Toolkit, or specifically KDE 4 books.&lt;br /&gt;
&lt;br /&gt;
===KDE 4 Development Books===&lt;br /&gt;
&lt;br /&gt;
[mailto:manishchaks@gmail.com Manish Chakravarty ] from [http://kde.in KDE India] is working on a KDE 4 programming book. &lt;br /&gt;
The scheduled release date is the the 15th of August 2007&lt;br /&gt;
&lt;br /&gt;
===Qt 4 Development Books===&lt;br /&gt;
&lt;br /&gt;
==== English ====&lt;br /&gt;
&lt;br /&gt;
'''[http://www.qt4-book.com/ The Book of Qt 4: The Art of Building Qt Applications] by Daniel Molkentin'''&lt;br /&gt;
&lt;br /&gt;
Daniel Molkentin, author of this book, is a core developer of KDE. He uses practical examples to explain Qt characteristics like the signal slot concept and its event system. He guides the reader through developing applications both with and without Qt's graphical GUI builder &amp;quot;Qt Designer.&amp;quot; Topics covered include: tools needed to create dialog boxes; steps to follow when developing a GUI-based application; layout; how to visualize data using Qt's &amp;quot;model-view concept&amp;quot;; the QtSql model; the graphics library; as well as how to work with XML, databases, threads, and debugging. The book also includes lots of useful hints on how to use Qt's own datatypes, containers and algorithms and how to develop user-friendly applications.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/Book-Qt-Art-Building-Applications/dp/1593271476 Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.apress.com/book/view/1590598318 Foundations of Qt Development] by Johan Thelin'''&lt;br /&gt;
&lt;br /&gt;
Foundations of Qt Development is based on Qt 4.2, and is aimed at C++ programmers who want to become proficient using this excellent toolkit to create graphical applications that can be ported to all major platforms. The book is focused on teaching you to write your own code in addition to using existing code. And common areas of confusion are identified, addressed, and answered. Youll learn everything you need to know to get up and running fast.&lt;br /&gt;
&lt;br /&gt;
'''[http://www.informit.com/store/product.aspx?isbn=0131879057 An Introduction to Design Patterns in C++ with Qt 4] by Alan Ezust, Paul Ezust'''&lt;br /&gt;
&lt;br /&gt;
Now, with the help of An Introduction to Design Patterns in C++ with Qt 4.1, you can master C++ and design patterns together, using the world's #1 open source framework for cross-platform development: Qt 4.1. This complete tutorial and reference assumes no previous knowledge of C, C++, objects, or patterns. You'll walk through every core concept, one step at a time, learning through an extensive collection of Qt 4.1-tested examples and exercises. Learn objects fast: classes, inheritance, polymorphism, and more. Master powerful design patterns, from Iterator and Visitor to Abstract Factory and Facade. Discover efficient high-level programming techniques utilizing libraries, generics, and containers. Build graphical applications using Qt widgets, models, and views.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0131879057 Amazon]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available on-line at [http://cartan.cas.suffolk.edu/moin/OopDocbook?page=index.html Suffolk University]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.informit.com/store/product.aspx?isbn=0131872494 C++ GUI Programming with Qt 4] by Jasmin Blanchette, Mark Summerfield'''&lt;br /&gt;
&lt;br /&gt;
The only official best-practice guide to Qt 4.1 Programming. Using C++ GUI Programming with Qt 4 you'll discover the most effective Qt 4 programming patterns and techniques as you master key technologies ranging from Qt's model/view architecture to Qt's powerful new 2D paint engine. The authors provide readers with unparalleled insight into Qt's event model and layout system. Then, using realistic examples, they introduce superior techniques for everything from basic GUI development to advanced database and XML integration.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0131872494 Amazon]&lt;br /&gt;
&lt;br /&gt;
Free download is available from [http://www.qtrac.eu/C++-GUI-Programming-with-Qt-4-1st-ed.zip Mark Summerfield's web page] (ZIP with PDF, 5.5 MiB)&lt;br /&gt;
&lt;br /&gt;
'''Note''': the 2nd edition is now available which was updated for Qt 4.3 and is available from [http://www.amazon.com/Programming-Prentice-Source-Software-Development/dp/0132354160 Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.informit.com/store/product.aspx?isbn=0131240722 C++ GUI Programming with Qt 3]'''&lt;br /&gt;
&lt;br /&gt;
The first official Trolltech guide to Qt 3.2 programming written by Trolltech software engineer Jasmin Blanchette and Trolltech's documentation manager Mark Summerfield, with a foreword by Matthias Ettrich, Trolltech lead developer and founder of the KDE project. The book teaches every facet of Qt 3 programming, ranging from basic user interfaces and layout managers to 2D/3D graphics, drag-and-drop, signaling, networking, XML, database integration, even internationalization and multithreading. The book in PDF format and sources can be downloaded from linked publisher's page.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0131240722 Amazon]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available on-line at: [http://www.phptr.com/content/images/0131240722/downloads/blanchette_book.pdf Prentice-Hall] (free PDF download)&lt;br /&gt;
&lt;br /&gt;
'''[http://www.pragmaticprogrammer.com/titles/ctrubyqt/ Rapid GUI Development with QtRuby]'''&lt;br /&gt;
&lt;br /&gt;
See how to use the powerful Qt3 library to create cross-platform GUI applications for Linux and OS X in Ruby. Covers installation, basic and advanced programming, event models, and Korundum. A must if you want to develop software with QtRuby/Korundum.&lt;br /&gt;
&lt;br /&gt;
'''[http://www.charlesriver.com/Books/BookDetail.aspx?productID=114877 Open Source Game Development: Qt Games for KDE, PDA's, and Windows]'''&lt;br /&gt;
&lt;br /&gt;
This book provides beginning and intermediate game programmers with a step-by-step resource to desktop game programming. The reader is introdcuded into the development of a desktop game application using Qt3/Qt4/Qtopia/KDE as development platform. Desktop game relevant topics such as pathfinding, AI, sound, 2D and 3D graphics and network programming are introduced in the scope of Qt and KDE. All topics are accompanied by plenty of source code examples in the book and on the companion CD-ROM.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/1584504064 Amazon]&lt;br /&gt;
&lt;br /&gt;
==== German ====&lt;br /&gt;
&lt;br /&gt;
[https://www.opensourcepress.de/index.php?26&amp;amp;backPID=15&amp;amp;tt_products=23 Qt 4: Einführung in die Applikationsentwicklung von Daniel Molkentin]&lt;br /&gt;
&lt;br /&gt;
==== Russian ====&lt;br /&gt;
[http://www.bhv.ru/books/book.php?id=186572 Qt4.5. Профессиональное программирование на C++]&lt;br /&gt;
&lt;br /&gt;
===C++ Programming Books===&lt;br /&gt;
&lt;br /&gt;
==== English ====&lt;br /&gt;
&lt;br /&gt;
'''A Complete Guide to Programming in C++'''&lt;br /&gt;
&lt;br /&gt;
Suited for both complete novices and advanced users of C++. Takes a clear and logical approach using uncluttered English and purposeful examples. With examples and website content, it represents great value for the money and is highly recommended as both a tutorial for students and newcomers to C++ and a dip-in guide for more advanced practitioners. This book teaches you the C++ STL in a natural way while learning C++, while many others relegate the STL to an appendix.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0763718173 Amazon]&lt;br /&gt;
&lt;br /&gt;
'''Problem Solving, Abstraction, and Design Using C++'''&lt;br /&gt;
&lt;br /&gt;
This book presents introductory programming material. Only the features of C++ that are appropriate to introductory concepts are introduced. Object-oriented concepts are presented. Abstraction is stressed throughout the book and pointers are presented in a gradual and gentle fashion for easier learning.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/0201612771/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html Thinking in C++]'''&lt;br /&gt;
&lt;br /&gt;
The effective presentation, along with dozens of helpful code examples, make this book a standout. The text first sets the stage for using C++ with a tour of what object-oriented programming is all about, as well as the software design life cycle. The author then delves into every aspect of C++, from basic keywords and programming principles to more advanced topics, like function and operator overloading, virtual inheritance, exception handling, namespaces, and templates. C++ is a complex language, and the author covers a lot of ground using today's Standard C++, but without getting bogged down in excessive detail.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ISBN=0139798099/ Amazon]&amp;lt;br /&amp;gt;&lt;br /&gt;
Available via: [http://www1.fatbrain.com/FindItNow/Services/home.cl?from=YGY567&amp;amp;store=1 Fatbrain]&lt;br /&gt;
&lt;br /&gt;
'''Accelerated C++: Practical Programming by Example'''&lt;br /&gt;
&lt;br /&gt;
If you don't have a lot of time, but still want to learn the latest in C++, you don't have to learn C first. You might learn more by digging into current language features and classes from the very beginning. That's the approach that's offered by Accelerated C++, a text that delves into more advanced C++ features like templates and Standard Template Library (STL) collection classes early on. This book arguably can get a motivated beginning programmer into C++ more quickly than other available tutorials.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/020170353X/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''Effective C++: 50 Specific Ways to Improve Your Programs and Design'''&lt;br /&gt;
&lt;br /&gt;
Highly recommended by KDE core developers! It is not a book on syntax, so this should not be the 1st C++ book that you read -- but it should *definitely* be the 2nd! An absolutely terrific book focusing on basic C++ and object-oriented programming techniques. A crucial book for anyone new to C++ to read.&lt;br /&gt;
&lt;br /&gt;
2nd Edition Available via: [http://www.amazon.com/exec/obidos/ASIN/0201924889/ Amazon]&amp;lt;br /&amp;gt; &lt;br /&gt;
3rd Edition Available via: [http://www.amazon.com/exec/obidos/ASIN/0321334876/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''More Effective C++: 35 New Ways to Improve Your Programs and Designs''' &lt;br /&gt;
&lt;br /&gt;
From the author of the indispensable Effective C++, here are 35 new ways to improve your programs and designs. Drawing on years of experience, Meyers explains how to write software that is more effective: more efficient, more robust, more consistent, more portable, and more reusable. In short, how to write C++ software that's just plain better. For programmers at the intermediate level and above.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/020163371X/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''C++ FAQs''' &lt;br /&gt;
&lt;br /&gt;
This book answers all the questions one can imagine about C++. The author explains the reasoning and principals behind good OO design in a simple and well informed manner. See also the free online [http://www.parashift.com/c++-faq-lite/ C++ FAQ LITE]. If you like the online lite version, you will be ecstatic about the printed book version because it covers much more.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/0201589583/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.icce.rug.nl/documents/cplusplus/cplusplus.html C++ Annotations]'''&lt;br /&gt;
&lt;br /&gt;
This online book is intended for knowledgeable users of C who would like to make the transition to C++. It is a guide for C++ programming courses given at the University of Groningen, Netherlands. As such, the book is not a complete C++ handbook. Rather, it serves as an addition to other documentation sources.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/020163371X/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''The C++ Programming Language'''&lt;br /&gt;
&lt;br /&gt;
By Bjarne Stroustrup, the creator of C++. This book is not for people who do not have programming experience in C++ already. This is not a ground up tutorial on how to program in C++, and it is not a fast read. What this book is, however, is probably the best reference book on C++ in existance.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/0201700735/ Amazon]&lt;br /&gt;
&lt;br /&gt;
===Other Books===&lt;br /&gt;
&lt;br /&gt;
'''[http://doc.trolltech.com/guibooks.html Books on GUI design]'''&lt;br /&gt;
&lt;br /&gt;
Trolltech's recommendations of books about GUI design.&lt;br /&gt;
&lt;br /&gt;
===Historic===&lt;br /&gt;
'''[http://developer.kde.org/documentation/books/kde-2.0-development/index.html KDE 2.0 Development]'''&lt;br /&gt;
&lt;br /&gt;
A 540 page book available online and in print. Covers KParts, DCOP, aRts, KDevelop, licensing, introductory programming, and other topics. The [http://kde20development.andamooka.org support site] has the full text in various formats along with community annotation and discussion of KDE development. This book is as close to an Official Book by the KDE Project as possible. All authors and technical editors are KDE developers.&lt;br /&gt;
&lt;br /&gt;
== IRC Channels ==&lt;br /&gt;
In general, IRC channels mentioned here are available on FreeNode. Connect to irc.kde.org, and check these channels out for further information.&lt;br /&gt;
&lt;br /&gt;
*KDE User Channel - [irc://irc.kde.org:6667/kde #kde]&lt;br /&gt;
*KDE Development - [irc://irc.kde.org:6667/kde-devel #kde-devel]&lt;br /&gt;
*Phonon - [irc://irc.kde.org:6667/phonon #phonon]&lt;br /&gt;
*Decibel - [irc://irc.kde.org:6667/decibel #decibel]&lt;br /&gt;
*Solid - [irc://irc.kde.org:6667/solid #solid]&lt;br /&gt;
*Plasma - [irc://irc.kde.org:6667/plasma #plasma]&lt;br /&gt;
*KDE EDU - [irc://irc.kde.org:6667/kdeedu #kdeedu]&lt;br /&gt;
*KDE Games - [irc://irc.kde.org:6667/kdegames #kdegames]&lt;br /&gt;
*KDE PIM - [irc://irc.kde.org:6667/kontact #kontact]&lt;br /&gt;
*KDevelop IDE - [irc://irc.kde.org:6667/kdevelop #kdevelop]&lt;br /&gt;
*Amarok - [irc://irc.kde.org:6667/kdevelop #amarok]&lt;br /&gt;
&lt;br /&gt;
== Newsgroups ==&lt;br /&gt;
== Forums ==&lt;br /&gt;
== Events ==&lt;br /&gt;
== Courses and Certifications ==&lt;br /&gt;
== Audio and Video Casts ==&lt;br /&gt;
== Source Code Repositories ==&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Projects/Usability/NWI</id>
		<title>Projects/Usability/NWI</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Projects/Usability/NWI"/>
				<updated>2009-04-30T02:41:30Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''This is summary-in-progress, thus there are question notes in the text.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=green&amp;gt;From editor :-) -- how to add [edit] buttons per each section/heading?&lt;br /&gt;
&lt;br /&gt;
Go to your preferences (link under Personal Tools in the left menu) and there under edit enable the option Enable section editing via edit links.&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The idea of NWI (Nested Windows Interface) emerged from the discussion about MDI (Multiple Document Interface) — so far each application had to implement the most suitable UI by its own (TDI in Konqueror, SDI in Okular) which led to inconsistent behaviour (&amp;quot;is closing the last document possible?&amp;quot;). NWI is thought as uniform UI at one hand, while help to increase productivity by extending the idea of tiles and tabs on the other.&lt;br /&gt;
&lt;br /&gt;
== Why? ==&lt;br /&gt;
&lt;br /&gt;
It happens almost every day — you edit some data in one application (like html file in KWrite), you view the results using another application (like Konqueror). So despite there is no relation between KWrite and Konqueror, for this task — task you perform right now — those two applications are related. Would it be useful if those two applications work temporarily as one — a group? &lt;br /&gt;
&lt;br /&gt;
[[File:Nwi-rationale.png|240px|thumb|right|Kpdf + group-wanna-be of KWrite and Konqueror]] &lt;br /&gt;
&lt;br /&gt;
Let's say you launched Kpdf as well. Traditionally when you switch from Kpdf to KWrite, Window Manager (WM) brings only KWrite to the front, so you have to bring to front Konqueror by yourself. This tiresome — with grouping, KWrite and Konqueror would act as one — you switch to group, all applications are put in front.&lt;br /&gt;
&lt;br /&gt;
Whenever you feel it would be more natural to put several applications as one group (because of the common task, or common data, or just for fun), NWI lets you do it — as tiles or as tabs.&lt;br /&gt;
&lt;br /&gt;
== What is it? ==&lt;br /&gt;
&lt;br /&gt;
Probably you are already familiar with several User Interface kinds — TDI, MDI, SDI, and so on. Some of them proved to be very useful, some of them not especially. In NWI world the most basic, yet the more flexible UI you can think of are SAI, GAI and TAI.&lt;br /&gt;
&lt;br /&gt;
=== Single Application Interface (SAI) ===&lt;br /&gt;
&lt;br /&gt;
This is really the simplest UI, no magic here. Just application window with some data — if application window can hold only one document per window, it is SAI. Examples: Kpdf, Okular. &lt;br /&gt;
&lt;br /&gt;
[[File:Sai-konqueror.png|240px|thumb|right|Konqueror in SAI mode]] &lt;br /&gt;
&lt;br /&gt;
Application can can postpone &amp;quot;real&amp;quot; UI mode — &amp;quot;decide later whether this SAI or TAI&amp;quot;. In other words, there is an option &amp;quot;show tabs&amp;quot;, which translates to:&amp;lt;br&amp;gt;&lt;br /&gt;
[ ] start as SAI, user can add another tab later&amp;lt;br&amp;gt;&lt;br /&gt;
[x] from the start show as TAI (show even single tab)&lt;br /&gt;
&lt;br /&gt;
=== Grouped Applications Interface (GAI) ===&lt;br /&gt;
&lt;br /&gt;
''More accurate name would be Tiling Applications Interface, but such name would conflict with Tabbed Applications Interface.''&lt;br /&gt;
&lt;br /&gt;
GAI is such container that tiles selected windows, so they are close together, next to each other — vertically or/and horizontally. From geometrical point of view GAI container behaves as one window with many panes. &lt;br /&gt;
&lt;br /&gt;
GAI has one shared titlebar (for container) plus at user request mini-titlebar for each window embedded into GAI. &lt;br /&gt;
&lt;br /&gt;
When you finish grouping, you still can change the proportions of the group &amp;quot;panes&amp;quot; just like in KMail for example. You can also rearrange them — via context menu or simply by like dragging &lt;br /&gt;
docked windows. &lt;br /&gt;
&lt;br /&gt;
=== Floating Application Interface (FAI) ===&lt;br /&gt;
&lt;br /&gt;
The most common FAI container is desktop — you can tell whether container is FAI if the embedded windows can be moved in such way they overlap. Despite KDE desktop runs by default in FAI mode it is possible to switch it to another type.&lt;br /&gt;
&lt;br /&gt;
The FAI container can be any non-root container too — being able to convert to/from any container, FAI helps reorganizing windows inside GAI.&lt;br /&gt;
&lt;br /&gt;
Windows in FAI root container (desktop) can be minimized, in FAI non-root containers when minimized they are shaded instead — so they are directly accessible all the time.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=green&amp;gt;Resizing FAI?&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tabbed Applications Interface (TAI) ===&lt;br /&gt;
&lt;br /&gt;
You know the special case of TAI already — it is TDI (Tabbed Document Interface). The well-known example of TDI application is Konqueror. You can launch one Konqueror and then open multiple web pages, each per one tab. &lt;br /&gt;
&lt;br /&gt;
TAI goes a little further — you can arrange several applications in tabs and put them into one window. So in one tab you can have Konqueror displaying web page, and in the second tab you can have Okular displaying pdf file.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Nested Windows Interface (NWI) ===&lt;br /&gt;
&lt;br /&gt;
Once the container is arranged, you can think of it as a window. And such window you can put into another container — thus nesting containers. So in general, such UI is called NWI, Nested Windows Interface.&lt;br /&gt;
&lt;br /&gt;
For containers (non-SAI) by default each application menu stays within its pane but it is possible to configure it so the one menu is displayed per whole container — menu of the active application pane.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=green&amp;gt;make one global option, so it would affect desktop as well and we would have Mac menu for &amp;quot;free&amp;quot;?&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
&lt;br /&gt;
Containers cannot get focus — only the applications within can get focus.&lt;br /&gt;
&lt;br /&gt;
=== Session management ===&lt;br /&gt;
&lt;br /&gt;
When you turn the session management on (at KDE level), SM not only restores the applications, but also recreates grouping. &lt;br /&gt;
&lt;br /&gt;
It is also possible to save container state as preset (like: Kwrite+Konqueror) and then later launch such group at once — without recreating the group manually.&lt;br /&gt;
&lt;br /&gt;
=== Taskbar presentation ===&lt;br /&gt;
&lt;br /&gt;
Taskbar shows the first-class windows — i.e. windows that are not embedded into any containers. When user clicks LMB on &lt;br /&gt;
container entry in the taskbar, the list of all embedded applications is shown.&lt;br /&gt;
&lt;br /&gt;
[[File:Taskbar_list.png|240px|thumb|right|group list in the taskbar]] &lt;br /&gt;
&lt;br /&gt;
=== Managing the containers ===&lt;br /&gt;
&lt;br /&gt;
Except for the root container (the desktop) empty containers are not allowed. Thus you have to point out which windows you would like to group or convert one of the windows to be container and add another window to it.&lt;br /&gt;
&lt;br /&gt;
==== Arranging windows as container ====&lt;br /&gt;
&lt;br /&gt;
# launch applications as you like&lt;br /&gt;
# RMB on the desktop to get context menu&lt;br /&gt;
# choose &amp;quot;select windows&amp;quot;&lt;br /&gt;
# select desired windows&lt;br /&gt;
# RMB on the desktop to get context menu again&lt;br /&gt;
# choose &amp;quot;group selection&amp;quot; — container is created &lt;br /&gt;
&lt;br /&gt;
To select windows:&lt;br /&gt;
* with Shift+LMB pressed down select region over the windows (like in KSnapshot)&lt;br /&gt;
* with Ctrl pressed down click LMB on the window (to deselect click again)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=green&amp;gt;Picker for easier selecting? Maybe none, but allowing to run switchers?&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Incremental adding in GAI ====&lt;br /&gt;
&lt;br /&gt;
[[File:Gai-adding_app.png|240px|thumb|right|Creating GAI by adding new application]] &lt;br /&gt;
&lt;br /&gt;
==== Incremental adding in FAI ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;font color=green&amp;gt;D&amp;amp;D?&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Incremental adding in TAI ====&lt;br /&gt;
&lt;br /&gt;
Just use &amp;quot;create new tab&amp;quot; like in Konqueror.&lt;br /&gt;
&lt;br /&gt;
==== Disassembling the container ====&lt;br /&gt;
&lt;br /&gt;
* user can convert any container to any other type (for example FAI to GAI)&lt;br /&gt;
* user can tear off any window from the container to other container, even if the source and target containers are different types (&amp;lt;font color=green&amp;gt;tear off by d&amp;amp;d or explicit RMB and choosing &amp;quot;ungroup&amp;quot;?&amp;lt;/font&amp;gt;)&lt;br /&gt;
&lt;br /&gt;
=== Closing documents, applications and windows ===&lt;br /&gt;
&lt;br /&gt;
Empty containers (except for desktop) are not allowed, empty applications (without document opened) are allowed.&lt;br /&gt;
&lt;br /&gt;
* close current document [ctrl+w]&lt;br /&gt;
* close current application [ctrl+q]&lt;br /&gt;
* close current application siblings (i.e. close all except the current one) [&amp;lt;font color=green&amp;gt;?&amp;lt;/font&amp;gt;]&lt;br /&gt;
* close current window/container [alt+f4]&lt;br /&gt;
* close topmost container (not counting desktop) [&amp;lt;font color=green&amp;gt;ctrl+shift+q?&amp;lt;/font&amp;gt;]&lt;br /&gt;
&lt;br /&gt;
Options for non SAI containers:&lt;br /&gt;
* do not touch last application in container on close (maintain the document)&lt;br /&gt;
* on close last application in the container close the document instead&lt;br /&gt;
* close document closes the application also if there are sibling instances of that application within container&lt;br /&gt;
&lt;br /&gt;
=== Keyboard shortcuts ===&lt;br /&gt;
&lt;br /&gt;
* convert current container to TAI &lt;br /&gt;
* convert current container to GAI&lt;br /&gt;
* convert current container to FAI&lt;br /&gt;
* wm-container-split (win-t?) — the last (not the best name, would need a better description in the actual UI) creates a new 'empty space for child', that will absorb the next-created window. So, new tab, new pane in tiled, new window (meaning a title bar and frame) in floating (&amp;lt;font color=green&amp;gt;see ML, now there is doubt about hollow apps&amp;lt;/font&amp;gt;)&lt;br /&gt;
* create empty sibling for the current application [ctrl+n] (for TAI it means new tab, for GAI it means split)&lt;br /&gt;
* create duplicate of the current application [ctrl+d] &lt;br /&gt;
&lt;br /&gt;
win-shift-left: exchange this window with window to the left. And similar for other shortcuts. Doesn't wrap. &lt;br /&gt;
&amp;lt;font color=green&amp;gt;The same for application?&amp;lt;/font&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Switchers ==&lt;br /&gt;
&lt;br /&gt;
Mod is either [alt] or [win].&lt;br /&gt;
&lt;br /&gt;
Classic alt+tab switch (application switch) now has a bit different meaning — it switches top windows. If top window is a container, after switch to it, the focus goes not to container but to active application within it. To do so, each container remembers its active application.&lt;br /&gt;
&lt;br /&gt;
=== Keyboard shortcut actions ===&lt;br /&gt;
&lt;br /&gt;
* (desktop) spatial switch&lt;br /&gt;
* (window) sequence switch &amp;lt;font color=green&amp;gt;???&amp;lt;/font&amp;gt;&lt;br /&gt;
* (window, desktop, global) historic switch&lt;br /&gt;
&lt;br /&gt;
The ones marked &amp;quot;global&amp;quot; switch '''all''' windows (&amp;lt;font color=green&amp;gt;all-top-level or all-all?&amp;lt;/font&amp;gt;), &lt;br /&gt;
marked &amp;quot;desktop&amp;quot; switch only on current desktop, window actions are constrained to current container.&lt;br /&gt;
&lt;br /&gt;
In FAI, spatial actually does historic (&amp;lt;font color=green&amp;gt;???&amp;lt;/font&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
User can choose (option) if she/he prefers switch-wrap on or off for switches except historic.&lt;br /&gt;
&lt;br /&gt;
=== Default keyboard bindings ===&lt;br /&gt;
&lt;br /&gt;
* historic previous  mod+back&lt;br /&gt;
* historic next      mod+shift-back&lt;br /&gt;
* spatial previous   mod+left  (RTL: mod+right)&lt;br /&gt;
* spatial next       mod+right (RTL: mod+left)&lt;br /&gt;
&lt;br /&gt;
(Switcher is activated by any of the above and stays active as long as mod is held.)&lt;br /&gt;
&lt;br /&gt;
TAI: Left/right would be configurable to either switch instantly between siblings i.e. like current tab switching, or pop up an alt-tab-like tree switcher (or I suppose, whatever people come up with for fancy switchers). Down/up &lt;br /&gt;
would go immediately to the switcher, with up starting at the active window's parent.&lt;br /&gt;
&lt;br /&gt;
* &amp;quot;previous sibling&amp;quot;  (ctrl-backspace)&lt;br /&gt;
* &amp;quot;next sibling&amp;quot;      (ctrl-shift-backspace)&lt;br /&gt;
* &amp;quot;left sibling&amp;quot;      (ctrl-left, ctrl-shift-tab)&lt;br /&gt;
* &amp;quot;right sibling&amp;quot;     (ctrl-right, ctrl-tab)&lt;br /&gt;
* &amp;quot;prev top-level&amp;quot;    (alt-shift-tab)&lt;br /&gt;
* &amp;quot;next top-level&amp;quot;   (alt-tab)&lt;br /&gt;
 &lt;br /&gt;
* left window -- win+left&lt;br /&gt;
* right window -- win+right&lt;br /&gt;
* up window -- win+up&lt;br /&gt;
* down window -- win+down&lt;br /&gt;
* next window -- win+tab ?&lt;br /&gt;
* prev. window -- win+shift+tab&lt;br /&gt;
 &lt;br /&gt;
* spatial n/s/e/w (win+arrows)&lt;br /&gt;
* &amp;quot;smart&amp;quot; previous/next (win-[shift-]tab)&lt;br /&gt;
* historic previous/next (win-[shift-]backspace? unbound?)&lt;br /&gt;
* activate switcher at current window&lt;br /&gt;
 &lt;br /&gt;
* left window -- win+left&lt;br /&gt;
* right window -- win+right&lt;br /&gt;
* up window -- win+up&lt;br /&gt;
* down window -- win+down&lt;br /&gt;
* next window -- win+tab&lt;br /&gt;
* prev. window -- win+shift+tab&lt;br /&gt;
 &lt;br /&gt;
GLOBAL SCOPE:&lt;br /&gt;
* left win -- win+shift+left&lt;br /&gt;
* right window -- win+shift+right&lt;br /&gt;
* up window -- win+shift+up&lt;br /&gt;
* down window -- win+shift+down&lt;br /&gt;
 &lt;br /&gt;
HISTORY (GLOBAL):&lt;br /&gt;
* next.hist -- win+backspace&lt;br /&gt;
* prev.hist -- win+shift+backspace&lt;br /&gt;
 &lt;br /&gt;
* next.hist -- win+pgdn&lt;br /&gt;
* prev.hist -- win+pgup&lt;br /&gt;
 &lt;br /&gt;
* cancel -- win+escape&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Projects/Summer_of_Code/2009/Ideas</id>
		<title>Projects/Summer of Code/2009/Ideas</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Projects/Summer_of_Code/2009/Ideas"/>
				<updated>2009-03-01T16:31:46Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* KDE Games */ Parsek – advanced galaxy conquest client&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Guidelines ==&lt;br /&gt;
===Information for Students===&lt;br /&gt;
&lt;br /&gt;
These ideas were contributed by our developers and users. They are sometimes vague or incomplete. If you wish to submit a proposal based on these ideas, you may wish to contact the developers and find out more about the particular suggestion you're looking at. &lt;br /&gt;
&lt;br /&gt;
Being accepted as a Google Summer of Code student is quite competitive. Accepted students typically have thoroughly researched the technologies of their proposed project and have been in frequent contact with potential mentors. Simply copying and pasting an idea here will not work. On the other hand, creating a completely new idea without first consulting potential mentors is unlikely to work out.&lt;br /&gt;
&lt;br /&gt;
When writing your proposal or asking for help from the general KDE community don't assume people are familiar with the ideas here. KDE is really big!&lt;br /&gt;
&lt;br /&gt;
If there is no specific contact given you can ask questions on the general KDE development list kde-devel@kde.org. See [http://www.kde.org/mailinglists/ the KDE mailing lists page] for information on available mailing lists and how to subscribe.&lt;br /&gt;
&lt;br /&gt;
===Adding a Proposal===&lt;br /&gt;
When adding an idea to this section, please try to include the following data:&lt;br /&gt;
:* if the application is not widely known, a description of what it does and where its code lives&lt;br /&gt;
:* a brief explanation&lt;br /&gt;
:* the expected results&lt;br /&gt;
:* pre-requisites for working on your project&lt;br /&gt;
:* if applicable, links to more information or discussions&lt;br /&gt;
:* mailing list or IRC channel for your application/library/module&lt;br /&gt;
:* your name and email address for contact (if you're willing to be a mentor)&lt;br /&gt;
&lt;br /&gt;
If you are not a developer but have a good idea for a proposal, get in contact with relevant developers first.&lt;br /&gt;
==Ideas==&lt;br /&gt;
===Plasma===&lt;br /&gt;
[http://plasma.kde.org Website] - [https://mail.kde.org/mailman/listinfo/panel-dev Mailing list] - IRC channel: #plasma on Freenode.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Project: Network Enabling Plasma::Service====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The Service should be able to parse WSDL files and let Plasmoids connect to the described Webservices as well as optionally announce itself to the local network over uPnp and/or zeroconf. Finally, a Service that announces itself and can send a widget over the wire to another Plasma instance would complete this project.&lt;br /&gt;
&lt;br /&gt;
====Project: Simple Media Center components====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Plasma could offer a Media center mode, where features a really simple ui to browse media files and plasmoids that shows the actual media. All should be operable with mouse, keyboard or a simple remote control. the work could consist in building the whole thing or just writing a plasmoid able to browse media files, that is the most important missing part.&lt;br /&gt;
Mockups for it by Nuno Pinheiro can be seen [http://img213.imageshack.us/img213/3200/image3231picturefz5.png here] and [http://img26.imageshack.us/img26/3407/image323musicoloectionck2.png here]&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
An applet to browse and thumbnail media files, like the first mockup and control the actual media viewing applets, like the media player applet or the picture frame applet. At this stage the functionality will be really minimum&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ and some familiarity with Qt especially QGraphicsView related classes.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Marco Martin (notmart a gmail dot org), or other Plasma developers. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Plasmate====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
PlasMate is an application that gives people a way to start creating scripted plasmoids without worrying about anything except making their bits. It hides the whole metadata.desktop thing, the package layout details, making a Plasmoid package (aka &amp;quot;zipping up the directory&amp;quot;), uploading content and version control system.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Working application that one can do the tasks described above, making it easy to create and distribute a scripted plasmoid.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ and familiarity with Qt (QWidgets and QGraphicsView related classes).&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Artur Duque de Souza (morpheuz a gmail dot org), or other Plasma developers. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Qt Kinetic + Plasma====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A layer over Qt Kinetic to provide a standardized set of &amp;quot;out of the box&amp;quot; &lt;br /&gt;
animations and bring them into libplasma. The work will be done with the Plasma developers to make this API as efficient as possible. The work will be based on Kinetic, the next framework for animations in Qt.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
We can kill Plasma::Animator class. The goal is to bring fancy effects/animations in Plasma to have one of the best desktop ever.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++, familiarity with QGraphicsView related classes and some familiarity with animations bits.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Alexis Ménard (alexis.menard at nokia dot com) or Artur Duque de Souza (morpheuz a gmail dot org). Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Eduactional layout====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A set of Containments and Plasmoids specifically designed for primary school &lt;br /&gt;
students.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A simplified panel containment that contains basic launchers and user feedback &lt;br /&gt;
for the student, a widget that allows teachers to provide context-specific &lt;br /&gt;
sets of applications and documents to the student (context being a combination &lt;br /&gt;
of the student logged in and the current class subject), a widget that &lt;br /&gt;
provides some basic teacher-&amp;gt;student communication and status (e.g. what the &lt;br /&gt;
current assignment is, how long the student has been logged in, etc) and &lt;br /&gt;
optionally some widgets that work with KDE edu apps.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Desktop dock====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A MacOS style dock containment.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A containment that provides a similar user experience to the MacOS dock: &lt;br /&gt;
application launchers that are also task bar entries when the application is &lt;br /&gt;
active and a separate area for widgets such as the trash, battery, etc.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Kdm frontend using plasma====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A log-in screen layout manager for KDM that uses libplasma.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A KDM screen that is rendered completely using Plasma. This means both using &lt;br /&gt;
libplasma in KDM for the log in screen as well as writing Plasmoids for &lt;br /&gt;
entering the user name and password, listing users, session switching, etc. &lt;br /&gt;
Some of these widgets already exist for the desktop shell, so in some cases &lt;br /&gt;
this will be simply integrating existing Plasmoids, but in other cases will &lt;br /&gt;
mean writing new ones from the ground up.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Raptor====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Raptor aims to deliver a new kind of launch menu system for KDE. It is designed with usability and beauty in mind.&lt;br /&gt;
Raptor-Menu does not try to be the final answer to the menu question, instead aspires to be the best answer we can give, merging many ideas form modern desktop launch menus.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
http://www.raptor-menu.org/&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: New Widget Explorer====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A new widget explorer that supports both our own widgets as well as others &lt;br /&gt;
more seamlessly.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A usable and pretty browser for widgets that allows a user to see an icon or &lt;br /&gt;
snapshot of the widget, select a widget to be placed in a containment, search &lt;br /&gt;
for a widget based on name/description, sort the widgets into categories, rate &lt;br /&gt;
widgets and provide ways to launch the online browsers and installers for both &lt;br /&gt;
native Plasmoids as well as third party tools such as Google Gadgets (which is &lt;br /&gt;
already supported in the Package class). All the required support &lt;br /&gt;
functionality already exists, this project is really about creating a &lt;br /&gt;
beautiful and dynamic user interface for looking through a widget catalog that &lt;br /&gt;
looks &amp;quot;Plasma&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Project: D-Bus Interface====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A comprehensive set of D-Bus interfaces for the plasma-desktop Plasma shell.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The D-Bus interface must provide access to the Corona (DestkopCorona class), &lt;br /&gt;
which in turn will list all existing Containments and allow Containments to be &lt;br /&gt;
added, removed, saved, etc.&lt;br /&gt;
&lt;br /&gt;
A D-Bus interface for each existing Containment will be made available as &lt;br /&gt;
well, which will provide a standard set of tools including listing, adding and &lt;br /&gt;
removing widgets as well as positioning and sizing for PanelContaiments. Ways &lt;br /&gt;
to control the wallpaper, if any, will also be provided in the per-Containment &lt;br /&gt;
D-Bus interface.&lt;br /&gt;
&lt;br /&gt;
In turn, a D-Bus interface for each widget representing its available &lt;br /&gt;
contextual actions will be provided dynamically upon request.&lt;br /&gt;
&lt;br /&gt;
Finally, the application D-Bus interface for things such as locking/unlocking &lt;br /&gt;
widgets will be designed and implemented.&lt;br /&gt;
&lt;br /&gt;
The result will be a Plasma that is fully accessible via D-Bus.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Security====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A set of methods to define the existing security state of the Plasma &lt;br /&gt;
application, the security requirements of individual widgets, mechanisms to &lt;br /&gt;
respect those two sets of information and cryptographic signing of Plasmoid &lt;br /&gt;
packages.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A set of functionality descriptions will be enumerated (e.g. &amp;quot;Network access&amp;quot;, &lt;br /&gt;
&amp;quot;Local file system access&amp;quot;, etc.). Individual widgets will advertise which of &lt;br /&gt;
these functionality sets they require. &lt;br /&gt;
&lt;br /&gt;
The plasma-overlay shell (used on the screensaver) will have code added to it &lt;br /&gt;
to respect these settings and not run widgets that advertise they need things &lt;br /&gt;
that aren't safe to provide on a screensaver (due to it being locked to &lt;br /&gt;
prevent others from accessing the system).&lt;br /&gt;
&lt;br /&gt;
The plasma-desktop shell will gain the ability to be put into various lock down &lt;br /&gt;
states which will map to different sets of functionality. Part of this project &lt;br /&gt;
will be enumerate the various states, but that list must include &amp;quot;only load &lt;br /&gt;
trusted widgets&amp;quot;, &amp;quot;no external access&amp;quot;, &amp;quot;no local file system access&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The JavaScript engine will provide methods for each of the functionality sets &lt;br /&gt;
(e.g. a set of functions to access local files) which will be exported or not &lt;br /&gt;
based on the current Security state. This implies providing a security state &lt;br /&gt;
to the Corona which can then be passed on down to Applets and AppletScripts.&lt;br /&gt;
&lt;br /&gt;
Finally, GPG signing of Plasmoid packages will be implemented along with a way &lt;br /&gt;
of checking the validity of these at runtime.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ and some experience with security.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Telepathy Integration====&lt;br /&gt;
&lt;br /&gt;
See [[#Project:_Telepathy_Plasma_Integration| here]] for more project details.&lt;br /&gt;
&lt;br /&gt;
===Amarok===&lt;br /&gt;
A KDE music manager and player.&lt;br /&gt;
&lt;br /&gt;
[http://amarok.kde.org Website] - [https://mail.kde.org/mailman/listinfo/amarok Mailing list] - IRC channel: #amarok on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: DLNA/UPnP Support====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Using the UPnP protocol users can, for example, share music from their Vista computer to a PS3. Amarok lacks any sort of UPnP support. Being able to act as a client or possibly a UPnP media server would be useful. In addition to that controlling a UPnP Media Renderer from within Amarok is possible with framework support.&lt;br /&gt;
&lt;br /&gt;
The [http://coherence.beebits.net/ Coherence server] would likely be used since it is also intended to be used by a KIO slave.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
*Using the Amarok Collection framework, create a plugin which allows Amarok to browse, search and play music off of a UPnP share. Playing music may use the UPnP KIO-slave, but more advanced functionality requires Amarok to handle this directly.&lt;br /&gt;
*Allow Amarok to share it's collection with other devices or control other devices via UPnP. This is secondary priority but it may be pretty easy with Coherence.&lt;br /&gt;
*Control UPnP Media Renderers (DMR: Digital Media Renderer device class in DLNA) from within Amarok.&lt;br /&gt;
&lt;br /&gt;
'''Material Prerequisite:''' Some UPnP devices or computers to test with. Good excuse to buy a PS3. If you live in Europe a Philips Streamium DMR can be borrowed.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Coherence uses Python and D-Bus but doesn't need to be hacked on in the scope of this project.&lt;br /&gt;
&lt;br /&gt;
And of course, understanding of UPnP networking and devices wouldn't hurt!&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Stecchino (bart.cerneels at kde dot org)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: New meta-applets for the Context View====&lt;br /&gt;
'''Brief Explanation:'''&lt;br /&gt;
The Context View (CV) is currently used to display multiple applets that expose various information. However, due to the fact that each applet displays a certain type of information from one data source, there is significant amount of wasted space, and it is hard to show much more than 3 different pieces of data at once.&lt;br /&gt;
&lt;br /&gt;
Meta-Applets are large applets that integrate date from multiple data sources in order to display more semantically related information coherently and efficiently. This could mean, for example, an applet that brings together lyrics, artist info, upcoming concerts, and related songs/artists. &lt;br /&gt;
&lt;br /&gt;
More info is available here [http://amarok.kde.org/wiki/Proposals/More_Contexual_Information on the amarok wiki]&lt;br /&gt;
&lt;br /&gt;
'''Expected Results:'''&lt;br /&gt;
Two or three (to be discussed with mentor in application writing process) applets that elegantly execute the ideas discussed above.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ is required, and some familiarity with Qt is helpful (especially QGraphicsView) but not necessary. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Leo Franchi (lfranchi AAAT kde DT org), or other Amarok developers. Contact at amarok@kde.org or #amarok on freenode.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
====Project: Code regression test suite, implemented with QtScript ====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Amarok currently has no automatic code regression testing (&amp;quot;unit testing&amp;quot;) in place at all. We very much need such a system in place (for as many components as possible), as we sometimes accidentally break certain components of the program by extending the code.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Code regression test suite for Amarok 2, implemented as one &amp;quot;Amarok-Script&amp;quot; (JavaScript), and internally split into multiple separate files and components, so that it would be possible to run arbitray tests (or the full suite) with very little effort, and no compiling, at any time. A requirement would also be testing of the collection scanning code (with test case collections), and testing of GUI correctness with the QTest library.&lt;br /&gt;
&lt;br /&gt;
Also see:&lt;br /&gt;
http://amarok.kde.org/wiki/Development/Scripting_HowTo_2.0&lt;br /&gt;
&lt;br /&gt;
A plus would be the generation of suitable statistics (possibly with document export), and possibly a visual representation of the data.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, KDE-Libs, QtScript (JavaScript), SVN, git, code testing.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
 Contact the amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Multilevel playlist sorting and sorting GUI ====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
In Amarok 2.1, the layout of the playlist will be very configurable, being able to show as much or as little information about each track as each user might wish. Currently however, it is lacking an advanced system for sorting in the playlist, something that many users comming from Amarok 1 are missing. While simple sorting is relatively easy to do (and has already been partly implemented) we would like to aim a bit higher with Amarok 2.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A proxy model allowing the tracks in the playlist to be sorted using an arbitrary number of &amp;quot;layered&amp;quot; sort criteria. for instance, a sort setup could be &amp;quot;artist-album-tracknumber&amp;quot; This would sort all tracks by artist, then sort the tracks from each artist by album, and finally the tracks from each album based on track number. Once this model is working, a GUI is needed for making this functionality easilly avaialble to the user. Ideally this gui should tie in well with the playlist layout and search/filter stuff. Also, all track navigators (the classes that determines the order of playback, such as normal, random, random album and so on) need to be updated to use and work correctly with the new proxy model.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, KDE-Libs, SVN/git.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Nikolaj Hald Nielsen &amp;lt;nhnFreespirit@gmail.com&amp;gt; or contact the amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Playlist and Collection synchronization====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Mediadevices and services can add tracks and playlists to Amarok. Synchronization would automatically copy over tracks between the main Amarok Collection and devices or services or even between each other, either for a single playlist or the complete collection.&lt;br /&gt;
An algorithm needs to be implemented that does this automatically in a fast and efficient way with minimal intervention needed by the user.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Playlists set up on both the local collection and a portable mediaplayer will get synchronized the moment the player is connected.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, KDE-Libs, SVN/git.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Bart Cerneels &amp;lt;bart.cerneels at kde dot org&amp;gt; or contact the amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
&lt;br /&gt;
====Project: CD Ripping====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Many users (eg, my girlfriend) expect their music player to rip CDs. Amarok has never had this feture. With [http://solid.kde.org Solid] it should be fairly easy to create a non-intrusive UI.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
An easy to use but unintrusive interface in Amarok to rip audio CDs into a variety of audio formats. Perhaps work with the media device developers to design a UI that will react to events such as &amp;quot;user inserts audio CD&amp;quot; or &amp;quot;user connects their iPod.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
'''Material Prerequisite:'''&lt;br /&gt;
Some audio CDs. You remember those shiny things you used to get at record stores?&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, kdelibs. Knowledge of how CD ripping and audio encoding works in Linux would be useful.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Potentially one of several. Contact the Amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
&lt;br /&gt;
===Phonon===&lt;br /&gt;
Abstraction library for sound and video support. Used by KDE notifications, Amarok, Dragon Player and Qt Software.&lt;br /&gt;
&lt;br /&gt;
[http://phonon.kde.org Website] - [https://mail.kde.org/mailman/listinfo/phonon-backends Mailing list] - IRC channel: #phonon on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Analyzer Support====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Applications such as Amarok and Dragon Player cannot have an analyzer or visualizations since they use Phonon which does not yet have the functionality to do it. The analyzer is the little bar graph thing which bounces around while music is playing. Users like it as its pretty and gives them a visual indication of their music playing. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
As this project is working on extending a library, it has three parts: the Phonon library itself, a Phonon backend, and an application. The Phonon library would need the new API calls. At least phonon-xine and preferably 1 or 2 other Phonon backends must then implement the new API. An application like Amarok or Dragon Player should be used to demonstrate the use of the new API.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Experience with Xine or GStreamer is probably useful.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Ian Monroe (contact on the [https://mail.kde.org/mailman/listinfo/amarok Amarok mailing list]) or possibly another Amarok or Phonon developer.&lt;br /&gt;
----&lt;br /&gt;
===Marble===&lt;br /&gt;
A desktop globe and map application. Also provides a map Qt Widget.&lt;br /&gt;
&lt;br /&gt;
[http://edu.kde.org/marble/ Website] - [https://mail.kde.org/mailman/listinfo/marble-devel Mailing list]&lt;br /&gt;
&lt;br /&gt;
====Project: Satellite navigation====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Satellite navigation devices have become widely used and the quality of openstreetmap data is becoming high, with some cities completely mapped already. Providing satellite navigation would be a useful desktop app for many as well as adding appeal for the use of KDE in embedded devices.&lt;br /&gt;
&lt;br /&gt;
It also opens the possibility to bringing many of the free software ideals to interaction with the real world such as collaborative/social POIs.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The project would aim at getting a basic satellite navigation application running. The most basic features required would be getting the current location from a GPS device and providing route calculation to a destination.&lt;br /&gt;
&lt;br /&gt;
The AndNav project (http://andnav.org) has already achieved something similar for Android so it could be a point of reference for how to use OpenStreetMap data to achieve this. A possible approach would be to use [http://developers.cloudmade.com/projects/show/vector-tiles vector tiles from Cloudmade].&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Experience with GPS devices under linux would be beneficial. Knowing java may also be of benefit in order to study the AndNav implementation.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' I (Alan Jones, skyphyr using gmail) am willing to mentor, but not having any GPS or Marble experience there is most likely somebody far more suited to undertake this role.&lt;br /&gt;
&lt;br /&gt;
Comment from a Marble Project guy: Alan, please get in touch with the Marble Project. Our mailing list is marble-devel@kde.org. We'd like to support this project if a student is willing to do it. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Add Time support to Marble====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Wouldn't it be great to be able to see the world at different times in Marble? Like having a slider which would give you the ability to browse through the time? Marble's internal datastructure is modelled after KML. But support for time-related tags is missing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* Having a GUI on the map and as a QWidget based dialog which allows people to &amp;quot;slide&amp;quot; through time.&lt;br /&gt;
* Implementation of the KML [http://code.google.com/apis/kml/documentation/kmlreference.html#timeprimitive &amp;lt;TimePrimitive&amp;gt;] and [http://code.google.com/apis/kml/documentation/kmlreference.html#timespan &amp;lt;TimeSpan&amp;gt;] tag: Creating the KML-handler and needed data classes for the GeoData parser. &lt;br /&gt;
* Having a central &amp;quot;internal&amp;quot; clock which the current view would be based on.&lt;br /&gt;
* Porting existing features (like the starry sky and the sun shading) over to the new class design.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Knowledge about KML is not necessary but would be appreciated.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Torsten Rahn / Patrick Spendrin.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KDevelop===&lt;br /&gt;
KDE-based Integrated Development Environment, specializing in c++ support, but including a powerful generic framework (definition use chain) which makes it possible to relatively easily support multiple different languages.&lt;br /&gt;
&lt;br /&gt;
[http://www.kdevelop.org Website] - [http://www.kdevelop.org/index.html?filename=mailinglist.html Mailing list] - IRC channel: #kdevelop on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: C++ Refactoring Support====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
C++ support in KDevelop is already highly advanced, often equalling or surpassing what the user and compiler understand about the code.  A few refactoring tools have been developed already, but they have been constructed in a crude fashion, generating code via string concatenation.&lt;br /&gt;
&lt;br /&gt;
This project would aim to create a new system to implement refactoring tools, and to create, test and deploy several advanced refactoring tools for c++.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A library would be created to enable refactoring based on the c++ AST (abstract syntax tree).  A reverse parser (AST to code) already exists, but classes would be created to allow programatic manipulation of an AST.  Optionally this library would also cover a generic framework based on the duchain which would be re-usable by other languages and make refactoring plugins easier to develop and partially shareable between languages.&lt;br /&gt;
&lt;br /&gt;
See the [http://api.kde.org/4.x-api/kdevplatform-apidocs/language/codegen/html/index.html Code Generation Design] documents for the initial plan for this project.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Experience with parsers would be a bonus.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Hamish Rodda (Definition-Use chain code creator) rodda at kde/dot/org, possibly also David Nolden (DUChain guru)(to be confirmed)&lt;br /&gt;
----&lt;br /&gt;
=== KStars ===&lt;br /&gt;
KStars is a Desktop Planetarium for KDE. It displays a map of the sky and provides a lot of tools to learn astronomy, or to calculate and predict astronomical phenomena. See [[http://edu.kde.org/kstars|The KStars Homepage]] for more information.&lt;br /&gt;
&lt;br /&gt;
==== Project: Community Integration for KStars ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Amateur Astronomy (which is one of the important use-cases of KStars) is typically done in communities. KStars permits users to save their own observing logs. It would be nicer if the user could share his observing logs with other users and see other observers' logs within KStars. It would also be nice if KStars had a map (using MarbleWidget) to display various Astronomy-related establishments (like amateur associations, observatories, research institutes). Another possible idea could be an observing report generator that would generate a report based on observing logs, and at the user's will, share it / post it on the internet.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Implement some features that will make it easier for users to collaborate, as suggested above.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. Prior knowledge of KIO_HTTP will help.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: FITS Image Overlay on the sky map. ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' It would be great if a FITS image could be overlayed on the sky map so that the field drawn by KStars could be compared with the field in the FITS image. This would be of great benefit to observational astronomers, astrophotographers and comet / asteroid observers. An extension would be to download a DSS image using KStars' already existing tool and map it onto the sky map. The support of shapes like ds9 region, annotations on the sky, etc. could also be added.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Functionality to overlay a FITS image or a DSS image obtained through KStars on to the sky map.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. Prior knowledge of the FITS format and cfitsio library will help.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Tools for Eclipses ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. Currently, it can predict Solar Eclipses (using the Conjunctions tool), but cannot plot trajectory of shadows, or predict Lunar Eclipses.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' The project's primary goals are to include simulation and prediction (maybe using the existing Conjunction backend) of Lunar eclipses, and to create a tool to mark the trajectories of Solar and Lunar eclipse shadows on a map of the earth, including marking of totality, partial eclipse and annular eclipse. Something similar to this: [http://eclipse.gsfc.nasa.gov/SEmono/TSE2009/TSE2009iau/TSE2009-fig01.GIF]&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' A complete set of tools to deal with eclipses.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: KStars: Prettyfication ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. The display is interactive, but it could be made more beautiful. &lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' We often get good suggestions for making KStars look better. Choose any of the following ideas: realistic rendering of asteroids and comets (including tails!); texture-mapping of the sky (this would mostly allow a photorealistic Milky Way); texture-mapping of planets; realistic sky-lighting effects (i.e., sky is blue in the daytime, gets gradually darker and colorful at sunset). One could also think of using Qt-GL rendering optionally.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Successful implementation of any of these ideas to make KStars more beautiful. &lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Printable star charts ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. It already has a print feature, but the printed chart could be much better.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' A printed star chart should at least include a legend explaining the symbols, and provide some information on the location of the user, the time and date, etc. The user would ideally be able to annotate the chart in various ways. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Significant improvements to the printed star charts in KStars. &lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Basic programming skills, ability to quickly learn QPainter API. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Many Moons ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. It currently includes Earth's moon and 4 of Jupiter's moons. &lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Generalize the JupiterMoons class to encapsulate any planet's Moons. The project will require some research to identify a public source of orbital data for planetary moons, most likely from a NASA webpage. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Implement moons for at least Mars, Jupiter, Saturn, and Pluto with the new system. &lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. The project doesn't require much contact with Qt/KDE APIs, and the existing JupiterMoons class can be used as a template. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Support many catalogs ====&lt;br /&gt;
'''Project Information:''' KStars is a Desktop Planetarium for KDE. Currently KStars loads some star catalogs that are made available in a KStars native format.&lt;br /&gt;
&lt;br /&gt;
'''Brief Explanation:''' KStars currently loads Tycho-2 and parts of USNO NOMAD catalog of stars. These catalogs are required to be in KStars' native format which uses the Hirearcheal Triangular Mesh to index regions in the sky. Popular star catalogs like USNO A organize stars and divide the sky into regions differently. Most users of astronomy software typically have one of these popular catalogs downloaded, and it would be great if KStars could support them somehow. While ability to read the non-native catalogs straight off is desirable, tools to convert these catalogs into KStars' native format would also help.&lt;br /&gt;
&lt;br /&gt;
'''Expected Results:''' Implement support for at least the most popular catalogs like USNO-A2.0, Stellarium's Extra catalog, Cartes du Ciel's Tycho and Tycho-2 catalogs.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. Ability to read documentation and quickly understand the existing code and ability to deal with binary files will help.&lt;br /&gt;
&lt;br /&gt;
=== Kalzium ===&lt;br /&gt;
&lt;br /&gt;
==== Project: Strigi integration ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:'''&lt;br /&gt;
The goal of this project is to integrate Strigi as backend behind the periodic table and the glossary (and possible other elements).&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The idea here is to have a GUI element that shows Strigi search results based on the element selected from the periodic table, or the item from the glossary, found on the users desktop. For element, this would include the elements name, and possible even the element symbol, if integration with last years Strigi-Chemistry GSoC project is achieved. For glossary items, a simple text search would suffice.&lt;br /&gt;
&lt;br /&gt;
Another idea is to make it possible to querry like this: &amp;quot;Give me all molecules with a molecularweigth of 123u and at least one Carbon atom&amp;quot;. For this we can use the [http://chem-file.sourceforge.net/ Chemical File Database] (or of course every other database, even those for [http://www.rcsb.org/pdb/home/home.do proteins].&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* provide GUI for Strigi search results for an element selected in the periodic table&lt;br /&gt;
* provide GUI for Strigi search results for an glossary item&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++, DBUS. Could be useful: Qt.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Undecided.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Project: Kalzium beautification ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:'''&lt;br /&gt;
Many parts of [http://edu.kde.org/kalzium Kalzium] could need a fresh up of the interface. For example, the main table should be written using Qt Model/View technique and for example use SVGs as a background. A first (uncomplete but working) code is already existing.&lt;br /&gt;
&lt;br /&gt;
At the same time, many dialogs are not as beautiful as they could be. This project could also include the creation of a &amp;quot;simplified Kalzium&amp;quot; mode in which some parts of the feature set are hidden; this would be good for schools.&lt;br /&gt;
&lt;br /&gt;
A third idea is to make more use of Plasma, for example improve the already written Plasmoids and/or extent Kalzium so that a Plasmoid could open a information dialog using Kalzium.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Depending on the chosen project for example a cleaned up codebase with an improved interface.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++, Qt, possible Plasma, Debug. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Carsten Niehaus&lt;br /&gt;
&lt;br /&gt;
==== Project: Molecular calculator ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:'''&lt;br /&gt;
Kalzium already has a basic mass calculator for molecules (in the sidebar). The goal of this project would be to add full-blown widget that allows users to calculate masses of molecules, do calculations with them, calculate concentrations (mol/l, g/l..) of solutions...&lt;br /&gt;
ChemicalDataObject already has the needed data to achieve this, there's a parser for molecule formulas, so the project's goal is to make a nice GUI and of course write code that uses that data in the good way.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
An easy-to-use (multi-tabbed?) window, where users can enter what they know (molecule name and number of grams...), pick what they want to know (number of mols).&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++, Qt, basic knowledge of chemistry.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Undecided.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KOffice ===&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' support for versioned OpenDocument files.&lt;br /&gt;
&lt;br /&gt;
'''Explanation:''' The OpenDocument specification doesn't include support for multiple versions of the same document in a single file. But that feature is supported by OpenOffice.org. The objective for this Summer of Code is to add support for that versioning system in KOffice. Since KOffice shares the OpenDocument loading/saving code, it should be possible to add this support in every KOffice application in one Summer of Code.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Being able to load a specific version of a file, and create/manage versions&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, excellent english reading skills.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Add support for e-book formats to KOffice.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Add a new export for one or more formats that are specifically tuned for e-book devices.&lt;br /&gt;
&lt;br /&gt;
With the increased popularity of ebook readers there is going to be a need for tools to create ebook content. While most e-book devices can display PDF there are in fact a lot more formats in use. One such format is .epub, which allows reflowable content (unlike PDF). The format itself is based on XML and uses style sheets (CSS) to format content. There are few free software tools that can generate and manipulate this format and those that exist are restricted to command line.&lt;br /&gt;
&lt;br /&gt;
Since most people creating content will most likely want to use an office suite or word processor to make documents it makes sense to add an export option for this format to KOffice.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge requisites:'''&lt;br /&gt;
* C++&lt;br /&gt;
* XML&lt;br /&gt;
* CSS&lt;br /&gt;
&lt;br /&gt;
==== Flake ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' support missing ODF drawing shape feature&lt;br /&gt;
&lt;br /&gt;
'''Explanation:''' KOffice can already load and save most of the shapes that ODF defines. Still a few features are missing especially text on shapes, but also caption, title, description and the measure shape.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' The project should implement the mentioned features and it should be possible to load, save and easily edit them&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
==== KWord ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
==== KPresenter ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Powerpoint import.&lt;br /&gt;
&lt;br /&gt;
'''Explanation:''' From some years ago another gSoc project implemented the basis for powerpoint import, but it was never finished. So there is a good basis to start from. From a quick look it seems like styles support is the thing missing most to complete the work, however a thorough analysis of what is there and what is not needs to be done. And then the actual work needs to be done too, obviously&lt;br /&gt;
&lt;br /&gt;
==== Krita ====&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' New tile engine for Krita&lt;br /&gt;
&lt;br /&gt;
'''Project information:''' Krita's current tile engine suffers from some limitations, like extensive locking. A new tile engine should offer some compelling features, like mipmapping, tile aging, in-memory compression, lock-free access of tiles, as efficient as possible undo information, pluggable backends (like png or tiff). See for a short summary http://wiki.koffice.org/index.php?title=Krita/Akademy_2007_Meeting#tile_backend. &lt;br /&gt;
'''Expected Results:''' an production-ready implementation having these features.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' This is a difficult, ambitious project. Applicants should have a good knowledge of C++, data structures and be aware of existing literature on this subject and have a knowledge of graphics applications.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Sketch-pad interface for Krita&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Krita is a large and complex application built around a sophisticated painting engine. The goal of this project is to create a new interface around the Krita engine, specialized for quick sketching.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should implement a new interface around Krita, presenting the user a single-layer plus tracing paper interface with a single freehand sketching tool. Easy to use and graphic color and paint operation (brush, pencil, eraser etc.) interface elements must be designed and implemented.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Shader filters and generators for Krita&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Some initial work has already been done to make it possible to write filters in the OpenGL shading language. This project should take that initial code as a basis and implement a fully functioning plugin for Krita that allows filters and shaders to be executed on images in any colorspace.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' The plugin should have a finished user interface and make it possible to experiment with shader filters in an interactive way. Example filters must be implemented.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, OpenGL.&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Animation support&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' There is no support at all in Krita for animated images such as GIF or MNG or for working with images in an animation context, such as textures or backgrounds in applications like Blender. The applicant should first investigate user needs and use cases and then implement support in the user interface and in the import/export filters.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' A user-friendly way of working with animated images (i.e., not by making each frame a layer), but e.g. a docker that shows the the animation running in thumbnail format. Import/export filters for relevant file formats.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' PSD and Gimp plugins&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Krita is powerful enough to handle nearly all that the Gimp and Photoshop are capable of saving. This project is about creating dedicated file import/export filters that can handle as much of these file formats as possible, possibly through the use of existing libraries.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' 4 plugins: psd import/export and xcf import/export. These plugins should be able to handle complex files in all supported colorspaces. Ideally the project would also deliver a library to convert PSD/XF to/from Open Raster files.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Workspaces&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' A workspace is a loadable package of settings that finetune Krita for a particular purpose. A workspace could contain additional plugins (like an image browser plugin for batch operations) and a subset of resources. Example workspaces could be batch-editing of images, editing of animation sequences or painting or sketching.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' the user interface and framework to make packages of plugins and resources that users can switch between. Also extra plugins to extend krita in areas like batch processing that do not exist yet.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, artistic workflow&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Kipi and digikam plugins compatibility&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Kipi and digikam provide lots of interesting plugins for working with 8 and 16 bit RGBA images. It would be great to be able to re-use those plugins from within Krita.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Two plugins that load kipi and digikam filters into two new menus in the filter menu. Code to convert Krita layers to the digikam image representation and back, taking care of icc profiles and other niceties.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, artistic workflow&lt;br /&gt;
&lt;br /&gt;
==== Kivio ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' support for basic flowchart editing&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' In KOffice 1.6 Kivio provided tools and stencils for editing flowcharts. Flake already provides the the building blocks: shapes, glue points and a connector shape. Goal of the project is to recreate old functionality based on flake.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Import of the Kivio stencil format. A docker that allows to handle collections of stencils. Implementation of a connector tool, that can easily connect different shapes.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
===KDE PIM===&lt;br /&gt;
KDE PIM is the interest group working on applications related to personal information management, e.g. contacts, calendar, mails, etc.&lt;br /&gt;
&lt;br /&gt;
One of the current challenges is utilizing the new cross-desktop PIM infrastructure called [http://www.akonadi-project.org/ Akonadi].&lt;br /&gt;
&lt;br /&gt;
There are interesting projects on all levels of the software stack: libraries, application porting, new applications, access to online resources, etc.&lt;br /&gt;
&lt;br /&gt;
[http://pim.kde.org/ Website] - [http://techbase.kde.org/Projects/PIM Project Wiki] -  [https://mail.kde.org/mailman/listinfo/kde-pim Mailing list] - IRC channel: #kontact and #akonadi on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Akonadi Janitor Agent====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
An [[Development/Architecture/KDE4/Akonadi#Akonadi_Agents|Akonadi Agent]] is a service process for performing tasks on data provided through the Akonadi server.&lt;br /&gt;
&lt;br /&gt;
The task of a Janitor agent would be to keep the user's PIM data neatly organized, for example deleting news feed items which are above a certain age and not flagged, moving last week's mail to an archive, etc.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* An Akonadi Agent capable of managing actions on Akonadi collections triggered by various criteria&lt;br /&gt;
* At least fully working implementation of actions based on &amp;quot;Expire&amp;quot; criterias for mail, e.g. delete mail above certain age, move/copy to different collection, etc&lt;br /&gt;
* GUI for configuring actions and their trigger criteria.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Ideally would already have gone through the [[Development/Tutorials/Akonadi/Resources|Akonadi Resource Tutorial]] since Resources are a specialized form of agents and thus share some of the API and characteristics.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Kevin Krammer (kevin dot krammer at gmx dot at)&lt;br /&gt;
----&lt;br /&gt;
====Project: Alternative Akonadi Client Library====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Akonadi has a server/client like architecture where clients such as applications (but also resource) connect to a service and communicate with it through a suitable protocol.&lt;br /&gt;
&lt;br /&gt;
Currently this is implemented for KDE in library called libakonadi-kde, however it is desirable to have additional implementations to be suitable for other library stacks, e.g. GLib/GObject based ones.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* A non-KDE based, preferably GLib/GObject based, Akonadi client library which&lt;br /&gt;
** can connect to a running Akonadi server&lt;br /&gt;
** fetch Akonadi collections&lt;br /&gt;
** fetch Akonadi items&lt;br /&gt;
** receive Akonadi change notifications (D-Bus based)&lt;br /&gt;
&lt;br /&gt;
* A set of demo programs using the library which can&lt;br /&gt;
** recursively list (id and content MIME types) collections&lt;br /&gt;
** list (id and MIME type)oif items in a collection&lt;br /&gt;
** get the raw payload of an item&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Depends on the chosen language and toolstack, e.g. C/Vala and GLib/GObject knowledge for a GLib/GObject based implementation.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
----&lt;br /&gt;
====Project: Akonadi Consistency Checker====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Akonadi provides a structure of collections and items, similar to folders and files of a filesystem. Similarly the internal structures have to follow certain constraints which must not be violated. Nevertheless, this can happen as result of bugs, hardware failures, power loss and a million other reasons.&lt;br /&gt;
&lt;br /&gt;
Filesystem checks exist to detect and possibly fix such situations. Such functionality would also be desirable for Akonadi.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* A consistency checker (built into the Akonadi server or stand-alone) that performs an extensible set of checks on the internal data structures of the Akonadi server, such as:&lt;br /&gt;
** items belong to existing collections&lt;br /&gt;
** collections are child collections of existing collections&lt;br /&gt;
** the collection tree is non-cyclic&lt;br /&gt;
** every collections is owned by an existing resource&lt;br /&gt;
** collection sub-trees are owned by the same resource&lt;br /&gt;
** every item payload part belongs to an existing item&lt;br /&gt;
** content type constraints of collections are not violated&lt;br /&gt;
** ...&lt;br /&gt;
* each check should be accompanied with recovery code, such as moving orphaned items into a lost+found folder&lt;br /&gt;
* integration into Akonadiconsole&lt;br /&gt;
* integration into unit-tests&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt mandatory, SQL/database knowledge would be useful.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Volker Krause &amp;lt;vkrause@kde.org&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
====Project: Akonadi Resource for KMail local folders====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
KMail stores its mail in a folder hierachy where each folder can contain mails '''and''' further sub folders.&lt;br /&gt;
&lt;br /&gt;
While mails are stored either as mbox or maildir, additional index files are used to speed up message listing and to store message status and flags.&lt;br /&gt;
&lt;br /&gt;
The already existing Akonadi MailDir resource can handle the maildir aspects but cannot handle either mbox based folders nor the additional information stored in the index files.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* a set of classes, probably as a library, capable of&lt;br /&gt;
** recursively listing the KMail folder tree given a base directory&lt;br /&gt;
** reading mails from the mbox and maildir folders in the KMail folder tree&lt;br /&gt;
** reading KMail index files&lt;br /&gt;
* an Akonadi resource using these classes to provide read-only access to all mails currently handled by KMail. The resource should also be able to transfer the flags stored in KMail's index file to Akonadi.&lt;br /&gt;
* Writing a migrator, similar to the current KResource-&amp;gt;Akonadi migrator, that automatically reads the KMail config file and creates a Akonadi resource out of it. Optionally, depending on the overall progress, the migrator would also convert some of KMail's folder settings, like the folder icon or the expiry settings, to Akonadi collection attributes.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt mandatory, code analysis skills would be helpful regarding the handling of index files, refactoring skills if KMail's classes are to be extracted from KMail's code base (not required).&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Thomas McGuire &amp;lt;mcguire at kde dot org&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Improvments in KMail's HTML support====&lt;br /&gt;
'''Brief explanation:''' Improve the HTML support in KMail, especially making it possible to preserve the HTML format when replying or inline forwarding.&lt;br /&gt;
&lt;br /&gt;
While KMail's HTML support has been constantly improving, it still has some important bits missing and some minor bugs. The goal of this project would be to implement the missing features and do general bugfixing in the HTML support.&lt;br /&gt;
&lt;br /&gt;
One of the biggest missing features, with over 1500 votes on [https://bugs.kde.org/show_bug.cgi?id=86423 bugzilla], is the ability to preserve the HTML format when replying or forwarding, which is often an essential requirement in some enterprises.&lt;br /&gt;
&lt;br /&gt;
[http://websvn.kde.org/?view=rev&amp;amp;revision=911149 Recently], support for inline HTML images was added to KMail. This support needs a few improvements, like being able to put images in the signature or resizing the images.&lt;br /&gt;
&lt;br /&gt;
Currently, KMail relies on [http://doc.trolltech.com/4.4/qtextedit.html#html-prop QTextEdit::toHtml()] to generate the HTML source. This however is very weak, as QTextEdit has some bugs and generally produces HTML that is only equaled by MS Word in its ugliness. Stephen Kelly has started some work to make this output nicer, and to produce other forms of markup, like text/enriched. This is achived by creating so-called [http://websvn.kde.org:80/trunk/KDE/kdepimlibs/kpimidentities/richtextbuilders/ rich-text builders]. One goal would be to finish this work and integrate it into KMail.&lt;br /&gt;
&lt;br /&gt;
Comment by Thomas; QTextEdit html generation is not optimal due to html simply not supporting all QTextEdit features. Qt45 choose to export to ODF instead. Maybe KMail should try to leverage this instead?&lt;br /&gt;
&lt;br /&gt;
Other nice points would be to support the text/enriched format for reading or composing mails, and to support the text/flowed format when composing. Although this is not strictly HTML related, it would improve the experience for many people.&lt;br /&gt;
&lt;br /&gt;
Of course, your own ideas are very welcome as well&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* Option to preserve the HTML format when replying or forwarding&lt;br /&gt;
* Support inline images also in signatures&lt;br /&gt;
* Improve inline image support by allowing to scale the images&lt;br /&gt;
* Nicer HTML generation by completing and integrating the HTML builder from Stephen Kelly&lt;br /&gt;
* Various bugfixes in the HTML support&lt;br /&gt;
* Optionally, also support text/enriched as alternative to HTML (both reading and  composing). See [http://www.faqs.org/rfcs/rfc1896.html RFC 1896]. Composing support can also be based on Stephen's builders.&lt;br /&gt;
* Optionally, support text/flowed format for non-HTML mail ([http://www.faqs.org/rfcs/rfc3676.html RFC 3676])&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Moderate C++ and basic Qt knowledge mandatory&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Thomas McGuire &amp;lt;mcguire at kde dot org&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: import/export for filtering rules in Sieve format in KMail====&lt;br /&gt;
'''Brief explanation''' Add functionality to import/export of mail filtering rules in Sieve format in KMail.&lt;br /&gt;
&lt;br /&gt;
Sieve is a language for declaring mail filter rules on a mail server. It was developed as part of the Cyrus IMAP server, but was quickly spin off and turned into a standard (http://tools.ietf.org/html/rfc5228). There are quite a few servers that have support for Sieve, in various degrees of completeness. It is quickly gaining support. Clients that support it are KMail and Thunderbird.&lt;br /&gt;
&lt;br /&gt;
KMail already has support for talking to Sieve enabled servers and also has support for client side filters. These two rule sets seem to be separate. It would be nice if you could dump the rules you have in one client and able to either install them on a server, or load them into another client, if you want to access your mail from different machines, but don't want to reconfigure your mail clients over and over again, or to quickly reconfigure clients if you don't have a Sieve enabled server.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Successful import and export of a (subset) of mail filtering rules between various KMail instances.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge requisites'''&lt;br /&gt;
* C++&lt;br /&gt;
* knowledge of how mail works&lt;br /&gt;
&lt;br /&gt;
===KDE on Windows===&lt;br /&gt;
====Solid API backend====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The porting efforts to make KDE available across platforms do need some backends for system dependent tasks. One of the KDE libraries that bundles this is Solid.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
You implement a backend for the [http://solid.kde.org Solid API] using WINAPI.&lt;br /&gt;
It has to work with both MinGW and MSVC compilers. Not every function is required, but the basic functionality (network access, removable drives/harddisks and power) should be implemented.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Windows API and C++/Qt. You should be able to set up the [http://techbase.kde.org/Getting_Started/Build/KDE4/Windows development environment] yourself and be familiar with it.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Carlo Segato (brandon dot ml at gmail dot com) or Patrick Spendrin (ps_ml at gmx dot de)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KDE Games===&lt;br /&gt;
====Project: Mancala game====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Mancala is a family of board games played around the world, sometimes called &amp;quot;sowing&amp;quot; games, or &amp;quot;count-and-capture&amp;quot; games, which describes the game-play. Mancala games play a role in many African and some Asian societies comparable to that of chess in the West. The list of mancala games best known in the Western world includes Kalah and Oware. Other games are Congkak, Omweso, Ünee tugaluulakh, Bao, Sungka and Igisoro.&lt;br /&gt;
&lt;br /&gt;
The word mancala comes from the Arabic word naqala meaning literally &amp;quot;to move.&amp;quot; There is no one game with the name mancala; instead mancala is a type, or designation, of game. This word is used in Syria, Lebanon, and Egypt, but is not consistently applied to any one game.&lt;br /&gt;
&lt;br /&gt;
In the USA, however, &amp;quot;mancala&amp;quot; is often used as a synonym for the game Kalah.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The aim of this project is developing Mancala game with lively interface that is changeable depend on the culture user chose to play. For example, if  user choose Africa Culture, the interface will be a board drew on sand with several stones plus sounds of jungle, wild-animals...&lt;br /&gt;
&lt;br /&gt;
'''Contact me to get more details'''&lt;br /&gt;
Name: Mr. Phan Quoc Huy&lt;br /&gt;
&lt;br /&gt;
Student in University Of Science, Ho Chi Minh city, Viet Nam &lt;br /&gt;
&lt;br /&gt;
email: diepvien00thayh@gmail.com&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Anyone find this is an interesting project please feel free to contact me, I'm very willing to implement it for KDE4.&lt;br /&gt;
====Project: Kolf 2 landscape object====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Kolf 2 is the second incarnation of KDE's minigolf game. We are currently rewriting it from scratch to take advantage of the powerful technologies provided by Qt 4 and KDE 4.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The task in this project is to create an object (or multiple objects) that provide(s) landscape textures, slopes, puddles and sand bunkers.&lt;br /&gt;
&lt;br /&gt;
If you finish this task before the end of the summer, you can fill the remaining time by porting as much game objects from Kolf 1 to Kolf 2 as possible (e.g. windmills, floating blocks, signs or bumpers).&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++/Qt. Experiences in graphics programming with Qt will definitely help, as you are expected to implement 2D rendering for the landscape object.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Stefan Majewsky (majewsky at gmx dot net) &amp;amp;ndash; Please contact me to let me help you to improve your proposal.&lt;br /&gt;
&lt;br /&gt;
====Project: Kolf 2 editor interface====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The minigolf game Kolf provided an editor interface from the beginning, to allow the users to create custom courses. For Kolf 2, we are rewriting the game engine and can therefore not use the old editor code.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Your task would be to create an editor interface (may be embedded in the game, or a standalone application). A few basic parts are available, and the Kolf 2 engine supports generic methods to provide data to editor interfaces, and display editor overlays on the game view.&lt;br /&gt;
&lt;br /&gt;
If you finish the editor interface before the end of the summer, you can fill the remaining time by porting as much game objects from Kolf 1 to Kolf 2 as possible (e.g. windmills, floating blocks, signs or bumpers), or using your editor to put together some cool courses.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++/Qt. Experiences in model/view programming with Qt will be of good use.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Stefan Majewsky (majewsky at gmx dot net) &amp;amp;ndash; Please contact me to let me help you to improve your proposal.&lt;br /&gt;
&lt;br /&gt;
====Project: Parsek – advanced galaxy conquest client====&lt;br /&gt;
&lt;br /&gt;
[http://www.thousandparsec.net/wiki/Parsek Parsek] is a client for playing [http://en.wikipedia.org/wiki/4X 4X] (explore, expand, exploit and exterminate) galaxy conquest strategy games, which are created using [http://www.thousandparsec.net/ Thousand Parsec] framework. You can think of it as an advanced version of [http://games.kde.org/game.php?game=konquest Konquest].&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Parsek uses the existing [http://www.thousandparsec.net/tp/dev/documents/libtpproto-cpp/html/ C++ Thousand Parsec protocol library] to create a KDE 4 graphical game client. The client is then used to connect to any game server running any game created using Thousand Parsec framework. Some code (you can find it in [http://websvn.kde.org/trunk/playground/games/parsek/ playground/games/parsek]) is already written (to get object of the universe and messages) but you can't play the games yet. The student's task will be to bring Parsek at least to a state so that people would be able to play games with it.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' To be able to play games some features must be added: displaying a star-map, displaying object info in a nice way, displaying messages in a nice way, getting and displaying object orders, creating new orders. If there is some time left after before mentioned required features are implemented the student will work on additional optional features, for example: automatic discovery and display of game servers (on local network and/or from meta-server), game servers accounts manager, plug-in for game server administration, Plasma widget with overview and quick access to the games someone is playing, single-player wizard (to easily setup local server and AI clients)...&lt;br /&gt;
&lt;br /&gt;
'''Prerequisites:''' C++/Qt (experience with [http://doc.trolltech.com/4.5/model-view-programming.html model/view] and [http://doc.trolltech.com/4.5/graphicsview.html graphics view] programming is a plus), experience with similar 4X games (Stars!, Galactic Civilizations, Master of Orion, Space Empires, Spore, ...)&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Jure Repinc ([mailto:jlp_at_holodeck1_dot_com jlp at holodeck1 dot com]). Contact also on [irc://chat.freenode.net/#kdegames #kdegames]/[irc://chat.freenode.net/#tp #tp] channels on freenode.net (nickname JLP) and [https://mail.kde.org/mailman/listinfo/kde-games-devel kde-games-devel]/[http://www.thousandparsec.net/tp/mailman.php/listinfo/tp-devel tp-devel] mailing lists.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===kdelibs===&lt;br /&gt;
==== Project: DOM3 XPath Level 1 and/or DOM selectors API support in KHTML ====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Because JavaScript frameworks have popularized access to parts of documents using various query languages, direct browser support for such queries &lt;br /&gt;
has become fairly common. This project is about adding support for one (or two) of such languages to KHTML. Basic implementation of each is expected to be simple, but there may be some interesting optimization opportunities to explore. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Implementations of XPath 1 or DOM selectors API at DOM level with appropriate JavaScript bindings that are standard-compliant, written in simple &amp;amp; maintainable fashion, and perform reasonably well.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++, and some comfort with working with large codebases. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Maks Orlovich (maksim at kde dot org)&lt;br /&gt;
&lt;br /&gt;
===Solid===&lt;br /&gt;
====Project: UPnP support through Jolie====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Adding UPnP support to Solid would mean offering transparent UPnP support to every KDE application using the Solid API, keeping them clean from every UPnP implementation aspect.&lt;br /&gt;
At the present, the [http://www.jolie-lang.org/ Jolie language] is being integrated with Plasma by means of the [http://websvn.kde.org/branches/work/~ervin/sodep/ QtSodep] library, soon to offer higher levels of abstraction.&lt;br /&gt;
&lt;br /&gt;
The aim of this project would be to implement a UPnP protocol for Jolie, so that Solid could re-use the integration being made with QtSodep and gain UPnP support without having to worry about implementation details. Having a UPnP protocol implementation in Jolie would have other considerable consequences, like the possibility to act easily as a UPnP server or to compose and export existing UPnP services.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
*The creation of a &amp;quot;upnp&amp;quot; protocol in Jolie, supporting at least the Internet Gateway Device (IGD) and MediaServer profiles.&lt;br /&gt;
*The creation of a UPnP Jolie service for UPnP service discovery and monitoring.&lt;br /&gt;
*Extending libsolid to expose UPnP devices found on the network.&lt;br /&gt;
&lt;br /&gt;
'''Material Prerequisite:''' Having UPnP devices or software applications to test with. Most home routers support IGD, and there exists free software supporting the MediaServer profile ([http://mediatomb.cc/ mediatomb]).&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Understanding of the UPnP specifications, Java (for the development of the Jolie UPnP protocol) and basic knowledge of the Jolie language.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' ervin (ervin at kde dot org) fmontesi (famontesi at gmail dot com)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KWin===&lt;br /&gt;
&lt;br /&gt;
KDE's window manager&lt;br /&gt;
&lt;br /&gt;
[http://techbase.kde.org/Projects/KWin Techbase page] - [https://mail.kde.org/mailman/listinfo/kwin Mailinglist] - IRC channel: #kwin on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Window tabbing====&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Window tabbing is a feature that allows you to group multiple application windows together to cover the same space. It is identical to what is already available in any modern web browser except it applies the the window as a whole. Window managers that have this feature available include Fluxbox and Ion. This feature was [http://bugs.kde.org/show_bug.cgi?id=42023 originally requested] in 2002.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Understanding of the X window system and Xlib is a benefit but not required.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' Lucas Murray (lmurray undefinedfire com)&lt;br /&gt;
&lt;br /&gt;
====Project: Window tiling====&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Window tiling is a technique of displaying application windows side-by-side without overlap. The position, size and layout of the windows can either be specified by the user or determined automatically to best fit the screen. Examples of existing tiling window managers include Awesome, XMonad, Ion and Ratpoison. One of the main advantages of tiling is that is makes application windows easy to navigate solely by the keyboard. This feature was [http://bugs.kde.org/show_bug.cgi?id=59338 originally requested] in 2003.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* Users should be able tile existing floating windows on-the-fly with simple keyboard shortcuts or mouse gestures.&lt;br /&gt;
* It should also be possible to run the entire desktop environment entirely in tiled mode (Enabled by configuration settings). In this mode new window would be added to the tiling grid by default yet can be removed by the user if required.&lt;br /&gt;
* The final tiling system should not interfere in any way with the existing floating window management.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Understanding of the X window system and Xlib is a benefit but not required.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' Lucas Murray (lmurray undefinedfire com)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== digiKam ===&lt;br /&gt;
&lt;br /&gt;
Photo Management program&lt;br /&gt;
&lt;br /&gt;
[http://www.digikam.org digiKam project web site] - [https://mail.kde.org/mailman/listinfo/digikam-devel Mailinglist] - IRC channel: #digikam on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: High Dynamic Range (HDR) plugin====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' digiKam is an advanced digital photo management application for KDE, which makes importing and organizing digital photos a &amp;quot;snap&amp;quot;. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. digiKam has an Image Editor which has its own plugin subsystem with some common tools e.g. red eye correction or Gamma correction. Additional plugins are provided with the main application to process advanced corrections on image like color management, noise reduction, or special effects. digiKam image editor support 16 bits color depth image internally. The goal of this project is to create a new plugin dedicated to create [http://en.wikipedia.org/wiki/High_dynamic_range_imaging HDR image].&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should implement an HDR tool will mix two or more (nearly) identical images having different exposure into a new image representing a wider dynamic range, which is closer to human perception of a photographic scene. [http://en.wikipedia.org/wiki/Tone_mapping Tone-mapping method] must be used to create HDR images. An open-source implementation is already available at [http://zynaddsubfx.sourceforge.net/other/tonemapping this url] and can be re-used as well. There is an old [https://bugs.kde.org/show_bug.cgi?id=144593 feature request].&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' Gilles Caulier (caulier dot gilles at gmail dot com)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KDE Telepathy Integration===&lt;br /&gt;
The [http://telepathy.freedesktop.org Telepathy Framework] is a desktop independent framework for real-time communication, such as VoIP and Instant Messaging. The projects below are some ideas for integrating telepathy into KDE.&lt;br /&gt;
&lt;br /&gt;
If you want to know any more about Telepathy and KDE, drop by the irc channel #decibel and talk to '''grundleborg''', or use the mailing list decibel AT kde DOT org.&lt;br /&gt;
&lt;br /&gt;
====Project: Message Logging====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' The Telepathy Framework allows for components which can watch channels whilst a user is interacting with them through another application. A program could be created to log the content of text instant messages into an Akonadi collection.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should result in a telepathy watcher which is capable of logging the contents of text chats into an Akonadi collection. It should be possible to go off-the-record in a particular conversation from telepathy user interfaces and the logger should not save any messages in this situation. This project might also include modifying the Kopete logging plugin to use the same akonadi collection for logs, and making a migration tool from Kopete's old logging format to the new Akonadi collection.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt, some basic knowledge of the Telepathy Framework is an advantage, but not necessary if you have an interest in real-time communcation and are prepared to learn fast.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' George Goldberg (grundleborg at gmail dot com) IRC: grundleborg&lt;br /&gt;
&lt;br /&gt;
====Project: Telepathy Integration to any KDE application====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Provide some collaborative feature or instant messaging integration for your favourite KDE application.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should result in a collaborative feature  or instant messaging integration being added to the chosen KDE application. It should be complete enough to provide at least basic functionality to end users, with the possibility of further improvement after the summer of code period ends.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt, some basic knowledge of the Telepathy Framework is an advantage, but not necessary if you have an interest in real-time communcation and are prepared to learn fast.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' George Goldberg (grundleborg at gmail dot com) IRC: grundleborg. You should also discuss your idea with the development team of the application in which you would like to provide a Telepathy feature.&lt;br /&gt;
&lt;br /&gt;
====Project: Telepathy Plasma Integration====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Provide integration of presence and buddy information into plasma.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' You should provide multiple points of integration between presence and contact information and plasma. Plasmoids allowing the display and manipulation of your own presence information should be made available, building on the plasma applets and datengines already in existance for presence information. Plasma activities could also be made aware of presence, and the contacts plasmoid could be made aware of your buddies from Telepathy instant messaging accounts.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' George Goldberg (grundleborg at gmail dot com) IRC: grundleborg. You should also discuss your ideas with the plasma development team before making a proposal.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Nepomuk===&lt;br /&gt;
[http://nepomuk.kde.org Website] - [http://lists.semanticdesktop.org/mailman/listinfo/nepomuk-kde Mailing list] - IRC channel: #nepomuk-kde on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: A Context Sidebar====&lt;br /&gt;
'''Brief Explanation''':&lt;br /&gt;
The ideas is to have a sidebar on the desktop (see Plasma project above for example) which shows information about the resource in the current context. Examples include files or important emails from a specific person that sent the email I am currently reading. Or related information on a webpage I am currently browsing. Or the author information on a pdf I am reading. And so on.&lt;br /&gt;
The sidebar should pick up DBus signals that can be sent out by any application to change the current resource (this is just an idea).&lt;br /&gt;
&lt;br /&gt;
'''Expected Results''':&lt;br /&gt;
Creation of the sidebar and integration into at least two applications (like KMail or Okular) which will then update the resource in focus. It might also be good if the sidebar could monitor if the application that set the resource looses focus or is closed.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt/KDE/Plasma&lt;br /&gt;
&lt;br /&gt;
'''Mentor''': Sebastian Trueg (trueg at kde dot org)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Project: Saving and Loading of Documents via Meta-data====&lt;br /&gt;
'''Brief Explanation''':&lt;br /&gt;
Today we still save and load our documents using a file browser. We navigate through folder structures that we created and try to find the best spot for the document. Another way would be to store a document by specifying meta-data about it. We could for example set the type (not the mimetype but the actual type like it is a letter or an invoice or a holiday picture and so on) or set properties on the document like related projects, related persons, tags, and so on. The system would then store the document someplace (we don't care about that). Loading the document would work the same way: filter documents according to type, date, persons or any other property we might have chosen to describe it.&lt;br /&gt;
In KDE applications today can predefine the file extension. How about letting the application predefine a set of meta-data properties.&lt;br /&gt;
&lt;br /&gt;
'''Expected Results''':&lt;br /&gt;
A prototype for saving and loading documents via meta-data and at least one use case which is demoable.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt/KDE, knowledge on ontologies and RDF are very helpful&lt;br /&gt;
&lt;br /&gt;
'''Hints''':&lt;br /&gt;
One might think of a plugin system here that allows to suggest annotations to the user. Compare the annotation system already in [http://websvn.kde.org/trunk/playground/base/nepomuk-kde/annotationplugins/ playground] based on [http://websvn.kde.org/trunk/playground/base/nepomuk-kde/annotationplugins/annotation.h?revision=915514&amp;amp;view=markup Nepomuk::Annotation].&lt;br /&gt;
&lt;br /&gt;
'''Mentor''': Sebastian Trueg (trueg at kde dot org)&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Projects/Summer_of_Code/2009/Ideas</id>
		<title>Projects/Summer of Code/2009/Ideas</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Projects/Summer_of_Code/2009/Ideas"/>
				<updated>2009-02-24T15:37:29Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Project: CD Ripping */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Guidelines ==&lt;br /&gt;
===Information for Students===&lt;br /&gt;
&lt;br /&gt;
These ideas were contributed by our developers and users. They are sometimes vague or incomplete. If you wish to submit a proposal based on these ideas, you may wish to contact the developers and find out more about the particular suggestion you're looking at. &lt;br /&gt;
&lt;br /&gt;
Being accepted as a Google Summer of Code student is quite competitive. Accepted students typically have thoroughly researched the technologies of their proposed project and have been in frequent contact with potential mentors. Simply copying and pasting an idea here will not work. On the other hand, creating a completely new idea without first consulting potential mentors is unlikely to work out.&lt;br /&gt;
&lt;br /&gt;
When writing your proposal or asking for help from the general KDE community don't assume people are familiar with the ideas here. KDE is really big!&lt;br /&gt;
&lt;br /&gt;
If there is no specific contact given you can ask questions on the general KDE development list kde-devel@kde.org. See [http://www.kde.org/mailinglists/ the KDE mailing lists page] for information on available mailing lists and how to subscribe.&lt;br /&gt;
&lt;br /&gt;
===Adding a Proposal===&lt;br /&gt;
When adding an idea to this section, please try to include the following data:&lt;br /&gt;
:* if the application is not widely known, a description of what it does and where its code lives&lt;br /&gt;
:* a brief explanation&lt;br /&gt;
:* the expected results&lt;br /&gt;
:* pre-requisites for working on your project&lt;br /&gt;
:* if applicable, links to more information or discussions&lt;br /&gt;
:* mailing list or IRC channel for your application/library/module&lt;br /&gt;
:* your name and email address for contact (if you're willing to be a mentor)&lt;br /&gt;
&lt;br /&gt;
If you are not a developer but have a good idea for a proposal, get in contact with relevant developers first.&lt;br /&gt;
==Ideas==&lt;br /&gt;
===Plasma===&lt;br /&gt;
[http://plasma.kde.org Website] - [https://mail.kde.org/mailman/listinfo/panel-dev Mailing list] - IRC channel: #plasma on Freenode.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Project: Network Enabling Plasma::Service====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The Service should be able to parse WSDL files and let Plasmoids connect to the described Webservices as well as optionally announce itself to the local network over uPnp and/or zeroconf. Finally, a Service that announces itself and can send a widget over the wire to another Plasma instance would complete this project.&lt;br /&gt;
&lt;br /&gt;
====Project: Simple Media Center components====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Plasma could offer a Media center mode, where features a really simple ui to browse media files and plasmoids that shows the actual media. All should be operable with mouse, keyboard or a simple remote control. the work could consist in building the whole thing or just writing a plasmoid able to browse media files, that is the most important missing part.&lt;br /&gt;
Mockups for it by Nuno Pinheiro can be seen [http://img213.imageshack.us/img213/3200/image3231picturefz5.png here] and [http://img26.imageshack.us/img26/3407/image323musicoloectionck2.png here]&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
An applet to browse and thumbnail media files, like the first mockup and control the actual media viewing applets, like the media player applet or the picture frame applet. At this stage the functionality will be really minimum&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ and some familiarity with Qt especially QGraphicsView related classes.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Marco Martin (notmart a gmail dot org), or other Plasma developers. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Plasmate====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
PlasMate is an application that gives people a way to start creating scripted plasmoids without worrying about anything except making their bits. It hides the whole metadata.desktop thing, the package layout details, making a Plasmoid package (aka &amp;quot;zipping up the directory&amp;quot;), uploading content and version control system.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Working application that one can do the tasks described above, making it easy to create and distribute a scripted plasmoid.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ and familiarity with Qt (QWidgets and QGraphicsView related classes).&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Artur Duque de Souza (morpheuz a gmail dot org), or other Plasma developers. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Qt Kinetic + Plasma====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A layer over Qt Kinetic to provide a standardized set of &amp;quot;out of the box&amp;quot; &lt;br /&gt;
animations and bring them into libplasma. The work will be done with the Plasma developers to make this API as efficient as possible. The work will be based on Kinetic, the next framework for animations in Qt.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
We can kill Plasma::Animator class. The goal is to bring fancy effects/animations in Plasma to have one of the best desktop ever.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++, familiarity with QGraphicsView related classes and some familiarity with animations bits.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Alexis Ménard (alexis.menard at nokia dot com) or Artur Duque de Souza (morpheuz a gmail dot org). Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Eduactional layout====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A set of Containments and Plasmoids specifically designed for primary school &lt;br /&gt;
students.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A simplified panel containment that contains basic launchers and user feedback &lt;br /&gt;
for the student, a widget that allows teachers to provide context-specific &lt;br /&gt;
sets of applications and documents to the student (context being a combination &lt;br /&gt;
of the student logged in and the current class subject), a widget that &lt;br /&gt;
provides some basic teacher-&amp;gt;student communication and status (e.g. what the &lt;br /&gt;
current assignment is, how long the student has been logged in, etc) and &lt;br /&gt;
optionally some widgets that work with KDE edu apps.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Desktop dock====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A MacOS style dock containment.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A containment that provides a similar user experience to the MacOS dock: &lt;br /&gt;
application launchers that are also task bar entries when the application is &lt;br /&gt;
active and a separate area for widgets such as the trash, battery, etc.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Kdm frontend using plasma====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A log-in screen layout manager for KDM that uses libplasma.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A KDM screen that is rendered completely using Plasma. This means both using &lt;br /&gt;
libplasma in KDM for the log in screen as well as writing Plasmoids for &lt;br /&gt;
entering the user name and password, listing users, session switching, etc. &lt;br /&gt;
Some of these widgets already exist for the desktop shell, so in some cases &lt;br /&gt;
this will be simply integrating existing Plasmoids, but in other cases will &lt;br /&gt;
mean writing new ones from the ground up.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Raptor====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Raptor aims to deliver a new kind of launch menu system for KDE. It is designed with usability and beauty in mind.&lt;br /&gt;
Raptor-Menu does not try to be the final answer to the menu question, instead aspires to be the best answer we can give, merging many ideas form modern desktop launch menus.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
http://www.raptor-menu.org/&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: New Widget Explorer====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A new widget explorer that supports both our own widgets as well as others &lt;br /&gt;
more seamlessly.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A usable and pretty browser for widgets that allows a user to see an icon or &lt;br /&gt;
snapshot of the widget, select a widget to be placed in a containment, search &lt;br /&gt;
for a widget based on name/description, sort the widgets into categories, rate &lt;br /&gt;
widgets and provide ways to launch the online browsers and installers for both &lt;br /&gt;
native Plasmoids as well as third party tools such as Google Gadgets (which is &lt;br /&gt;
already supported in the Package class). All the required support &lt;br /&gt;
functionality already exists, this project is really about creating a &lt;br /&gt;
beautiful and dynamic user interface for looking through a widget catalog that &lt;br /&gt;
looks &amp;quot;Plasma&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Project: D-Bus Interface====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A comprehensive set of D-Bus interfaces for the plasma-desktop Plasma shell.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The D-Bus interface must provide access to the Corona (DestkopCorona class), &lt;br /&gt;
which in turn will list all existing Containments and allow Containments to be &lt;br /&gt;
added, removed, saved, etc.&lt;br /&gt;
&lt;br /&gt;
A D-Bus interface for each existing Containment will be made available as &lt;br /&gt;
well, which will provide a standard set of tools including listing, adding and &lt;br /&gt;
removing widgets as well as positioning and sizing for PanelContaiments. Ways &lt;br /&gt;
to control the wallpaper, if any, will also be provided in the per-Containment &lt;br /&gt;
D-Bus interface.&lt;br /&gt;
&lt;br /&gt;
In turn, a D-Bus interface for each widget representing its available &lt;br /&gt;
contextual actions will be provided dynamically upon request.&lt;br /&gt;
&lt;br /&gt;
Finally, the application D-Bus interface for things such as locking/unlocking &lt;br /&gt;
widgets will be designed and implemented.&lt;br /&gt;
&lt;br /&gt;
The result will be a Plasma that is fully accessible via D-Bus.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Security====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
A set of methods to define the existing security state of the Plasma &lt;br /&gt;
application, the security requirements of individual widgets, mechanisms to &lt;br /&gt;
respect those two sets of information and cryptographic signing of Plasmoid &lt;br /&gt;
packages.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A set of functionality descriptions will be enumerated (e.g. &amp;quot;Network access&amp;quot;, &lt;br /&gt;
&amp;quot;Local file system access&amp;quot;, etc.). Individual widgets will advertise which of &lt;br /&gt;
these functionality sets they require. &lt;br /&gt;
&lt;br /&gt;
The plasma-overlay shell (used on the screensaver) will have code added to it &lt;br /&gt;
to respect these settings and not run widgets that advertise they need things &lt;br /&gt;
that aren't safe to provide on a screensaver (due to it being locked to &lt;br /&gt;
prevent others from accessing the system).&lt;br /&gt;
&lt;br /&gt;
The plasma-desktop shell will gain the ability to be put into various lock down &lt;br /&gt;
states which will map to different sets of functionality. Part of this project &lt;br /&gt;
will be enumerate the various states, but that list must include &amp;quot;only load &lt;br /&gt;
trusted widgets&amp;quot;, &amp;quot;no external access&amp;quot;, &amp;quot;no local file system access&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The JavaScript engine will provide methods for each of the functionality sets &lt;br /&gt;
(e.g. a set of functions to access local files) which will be exported or not &lt;br /&gt;
based on the current Security state. This implies providing a security state &lt;br /&gt;
to the Corona which can then be passed on down to Applets and AppletScripts.&lt;br /&gt;
&lt;br /&gt;
Finally, GPG signing of Plasmoid packages will be implemented along with a way &lt;br /&gt;
of checking the validity of these at runtime.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ and some experience with security.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Plasma team. Contact at plasma-devel@kde.org or #plasma on freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Telepathy Integration====&lt;br /&gt;
&lt;br /&gt;
See [[#Project:_Telepathy_Plasma_Integration| here]] for more project details.&lt;br /&gt;
&lt;br /&gt;
===Amarok===&lt;br /&gt;
A KDE music manager and player.&lt;br /&gt;
&lt;br /&gt;
[http://amarok.kde.org Website] - [https://mail.kde.org/mailman/listinfo/amarok Mailing list] - IRC channel: #amarok on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: DLNA/UPnP Support====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Using the UPnP protocol users can, for example, share music from their Vista computer to a PS3. Amarok lacks any sort of UPnP support. Being able to act as a client or possibly a UPnP media server would be useful. In addition to that controlling a UPnP Media Renderer from within Amarok is possible with framework support.&lt;br /&gt;
&lt;br /&gt;
The [http://coherence.beebits.net/ Coherence server] would likely be used since it is also intended to be used by a KIO slave.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
*Using the Amarok Collection framework, create a plugin which allows Amarok to browse, search and play music off of a UPnP share. Playing music may use the UPnP KIO-slave, but more advanced functionality requires Amarok to handle this directly.&lt;br /&gt;
*Allow Amarok to share it's collection with other devices or control other devices via UPnP. This is secondary priority but it may be pretty easy with Coherence.&lt;br /&gt;
*Control UPnP Media Renderers (DMR: Digital Media Renderer device class in DLNA) from within Amarok.&lt;br /&gt;
&lt;br /&gt;
'''Material Prerequisite:''' Some UPnP devices or computers to test with. Good excuse to buy a PS3. If you live in Europe a Philips Streamium DMR can be borrowed.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Coherence uses Python and D-Bus but doesn't need to be hacked on in the scope of this project.&lt;br /&gt;
&lt;br /&gt;
And of course, understanding of UPnP networking and devices wouldn't hurt!&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Stecchino (bart.cerneels at kde dot org)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: New meta-applets for the Context View====&lt;br /&gt;
'''Brief Explanation:'''&lt;br /&gt;
The Context View (CV) is currently used to display multiple applets that expose various information. However, due to the fact that each applet displays a certain type of information from one data source, there is significant amount of wasted space, and it is hard to show much more than 3 different pieces of data at once.&lt;br /&gt;
&lt;br /&gt;
Meta-Applets are large applets that integrate date from multiple data sources in order to display more semantically related information coherently and efficiently. This could mean, for example, an applet that brings together lyrics, artist info, upcoming concerts, and related songs/artists. &lt;br /&gt;
&lt;br /&gt;
More info is available here [http://amarok.kde.org/wiki/Proposals/More_Contexual_Information on the amarok wiki]&lt;br /&gt;
&lt;br /&gt;
'''Expected Results:'''&lt;br /&gt;
Two or three (to be discussed with mentor in application writing process) applets that elegantly execute the ideas discussed above.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge prerequisite:'''&lt;br /&gt;
Knowledge of C++ is required, and some familiarity with Qt is helpful (especially QGraphicsView) but not necessary. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Leo Franchi (lfranchi AAAT kde DT org), or other Amarok developers. Contact at amarok@kde.org or #amarok on freenode.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
====Project: Code regression test suite, implemented with QtScript ====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Amarok currently has no automatic code regression testing (&amp;quot;unit testing&amp;quot;) in place at all. We very much need such a system in place (for as many components as possible), as we sometimes accidentally break certain components of the program by extending the code.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Code regression test suite for Amarok 2, implemented as one &amp;quot;Amarok-Script&amp;quot; (JavaScript), and internally split into multiple separate files and components, so that it would be possible to run arbitray tests (or the full suite) with very little effort, and no compiling, at any time. A requirement would also be testing of the collection scanning code (with test case collections), and testing of GUI correctness with the QTest library.&lt;br /&gt;
&lt;br /&gt;
Also see:&lt;br /&gt;
http://amarok.kde.org/wiki/Development/Scripting_HowTo_2.0&lt;br /&gt;
&lt;br /&gt;
A plus would be the generation of suitable statistics (possibly with document export), and possibly a visual representation of the data.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, KDE-Libs, QtScript (JavaScript), SVN, git, code testing.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
 Contact the amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Multilevel playlist sorting and sorting GUI ====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
In Amarok 2.1, the layout of the playlist will be very configurable, being able to show as much or as little information about each track as each user might wish. Currently however, it is lacking an advanced system for sorting in the playlist, something that many users comming from Amarok 1 are missing. While simple sorting is relatively easy to do (and has already been partly implemented) we would like to aim a bit higher with Amarok 2.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A proxy model allowing the tracks in the playlist to be sorted using an arbitrary number of &amp;quot;layered&amp;quot; sort criteria. for instance, a sort setup could be &amp;quot;artist-album-tracknumber&amp;quot; This would sort all tracks by artist, then sort the tracks from each artist by album, and finally the tracks from each album based on track number. Once this model is working, a GUI is needed for making this functionality easilly avaialble to the user. Ideally this gui should tie in well with the playlist layout and search/filter stuff. Also, all track navigators (the classes that determines the order of playback, such as normal, random, random album and so on) need to be updated to use and work correctly with the new proxy model.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, KDE-Libs, SVN/git.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Nikolaj Hald Nielsen &amp;lt;nhnFreespirit@gmail.com&amp;gt; or contact the amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Playlist and Collection synchronization====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Mediadevices and services can add tracks and playlists to Amarok. Synchronization would automatically copy over tracks between the main Amarok Collection and devices or services or even between each other, either for a single playlist or the complete collection.&lt;br /&gt;
An algorithm needs to be implemented that does this automatically in a fast and efficient way with minimal intervention needed by the user.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Playlists set up on both the local collection and a portable mediaplayer will get synchronized the moment the player is connected.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, KDE-Libs, SVN/git.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Bart Cerneels &amp;lt;bart.cerneels at kde dot org&amp;gt; or contact the amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
&lt;br /&gt;
====Project: CD Ripping====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Many users (eg, my girlfriend) expect their music player to rip CDs. Amarok has never had this feture. With [http://solid.kde.org Solid] it should be fairly easy to create a non-intrusive UI.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
An easy to use but unintrusive interface in Amarok to rip audio CDs into a variety of audio formats. Perhaps work with the media device developers to design a UI that will react to events such as &amp;quot;user inserts audio CD&amp;quot; or &amp;quot;user connects their iPod.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
'''Material Prerequisite:'''&lt;br /&gt;
Some audio CDs. You remember those shiny things you used to get at record stores?&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:'''&lt;br /&gt;
C++, Qt, kdelibs. Knowledge of how CD ripping and audio encoding works in Linux would be useful.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
Potentially one of several. Contact the Amarok mailing list or ask in our IRC channel #amarok&lt;br /&gt;
&lt;br /&gt;
===Phonon===&lt;br /&gt;
Abstraction library for sound and video support. Used by KDE notifications, Amarok, Dragon Player and Qt Software.&lt;br /&gt;
&lt;br /&gt;
[http://phonon.kde.org Website] - [https://mail.kde.org/mailman/listinfo/phonon-backends Mailing list] - IRC channel: #phonon on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Analyzer Support====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Applications such as Amarok and Dragon Player cannot have an analyzer or visualizations since they use Phonon which does not yet have the functionality to do it. The analyzer is the little bar graph thing which bounces around while music is playing. Users like it as its pretty and gives them a visual indication of their music playing. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
As this project is working on extending a library, it has three parts: the Phonon library itself, a Phonon backend, and an application. The Phonon library would need the new API calls. At least phonon-xine and preferably 1 or 2 other Phonon backends must then implement the new API. An application like Amarok or Dragon Player should be used to demonstrate the use of the new API.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Experience with Xine or GStreamer is probably useful.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Ian Monroe (contact on the [https://mail.kde.org/mailman/listinfo/amarok Amarok mailing list]) or possibly another Amarok or Phonon developer.&lt;br /&gt;
----&lt;br /&gt;
===Marble===&lt;br /&gt;
A desktop globe and map application. Also provides a map Qt Widget.&lt;br /&gt;
&lt;br /&gt;
[http://edu.kde.org/marble/ Website] - [https://mail.kde.org/mailman/listinfo/marble-devel Mailing list]&lt;br /&gt;
&lt;br /&gt;
====Project: Satellite navigation====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Satellite navigation devices have become widely used and the quality of openstreetmap data is becoming high, with some cities completely mapped already. Providing satellite navigation would be a useful desktop app for many as well as adding appeal for the use of KDE in embedded devices.&lt;br /&gt;
&lt;br /&gt;
It also opens the possibility to bringing many of the free software ideals to interaction with the real world such as collaborative/social POIs.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The project would aim at getting a basic satellite navigation application running. The most basic features required would be getting the current location from a GPS device and providing route calculation to a destination.&lt;br /&gt;
&lt;br /&gt;
The AndNav project (http://andnav.org) has already achieved something similar for Android so it could be a point of reference for how to use OpenStreetMap data to achieve this. A possible approach would be to use [http://developers.cloudmade.com/projects/show/vector-tiles vector tiles from Cloudmade].&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Experience with GPS devices under linux would be beneficial. Knowing java may also be of benefit in order to study the AndNav implementation.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' I (Alan Jones, skyphyr using gmail) am willing to mentor, but not having any GPS or Marble experience there is most likely somebody far more suited to undertake this role.&lt;br /&gt;
&lt;br /&gt;
Comment from a Marble Project guy: Alan, please get in touch with the Marble Project. Our mailing list is marble-devel@kde.org. We'd like to support this project if a student is willing to do it. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Add Time support to Marble====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Wouldn't it be great to be able to see the world at different times in Marble? Like having a slider which would give you the ability to browse through the time? Marble's internal datastructure is modelled after KML. But support for time-related tags is missing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* Having a GUI on the map and as a QWidget based dialog which allows people to &amp;quot;slide&amp;quot; through time.&lt;br /&gt;
* Implementation of the KML [http://code.google.com/apis/kml/documentation/kmlreference.html#timeprimitive &amp;lt;TimePrimitive&amp;gt;] and [http://code.google.com/apis/kml/documentation/kmlreference.html#timespan &amp;lt;TimeSpan&amp;gt;] tag: Creating the KML-handler and needed data classes for the GeoData parser. &lt;br /&gt;
* Having a central &amp;quot;internal&amp;quot; clock which the current view would be based on.&lt;br /&gt;
* Porting existing features (like the starry sky and the sun shading) over to the new class design.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Knowledge about KML is not necessary but would be appreciated.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Torsten Rahn / Patrick Spendrin.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KDevelop===&lt;br /&gt;
KDE-based Integrated Development Environment, specializing in c++ support, but including a powerful generic framework (definition use chain) which makes it possible to relatively easily support multiple different languages.&lt;br /&gt;
&lt;br /&gt;
[http://www.kdevelop.org Website] - [http://www.kdevelop.org/index.html?filename=mailinglist.html Mailing list] - IRC channel: #kdevelop on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: C++ Refactoring Support====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
C++ support in KDevelop is already highly advanced, often equalling or surpassing what the user and compiler understand about the code.  A few refactoring tools have been developed already, but they have been constructed in a crude fashion, generating code via string concatenation.&lt;br /&gt;
&lt;br /&gt;
This project would aim to create a new system to implement refactoring tools, and to create, test and deploy several advanced refactoring tools for c++.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
A library would be created to enable refactoring based on the c++ AST (abstract syntax tree).  A reverse parser (AST to code) already exists, but classes would be created to allow programatic manipulation of an AST.  Optionally this library would also cover a generic framework based on the duchain which would be re-usable by other languages and make refactoring plugins easier to develop and partially shareable between languages.&lt;br /&gt;
&lt;br /&gt;
See the [http://api.kde.org/4.x-api/kdevplatform-apidocs/language/codegen/html/index.html Code Generation Design] documents for the initial plan for this project.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Experience with parsers would be a bonus.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Hamish Rodda (Definition-Use chain code creator) rodda at kde/dot/org, possibly also David Nolden (DUChain guru)(to be confirmed)&lt;br /&gt;
----&lt;br /&gt;
=== KStars ===&lt;br /&gt;
KStars is a Desktop Planetarium for KDE. It displays a map of the sky and provides a lot of tools to learn astronomy, or to calculate and predict astronomical phenomena. See [[http://edu.kde.org/kstars|The KStars Homepage]] for more information.&lt;br /&gt;
&lt;br /&gt;
==== Project: Community Integration for KStars ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Amateur Astronomy (which is one of the important use-cases of KStars) is typically done in communities. KStars permits users to save their own observing logs. It would be nicer if the user could share his observing logs with other users and see other observers' logs within KStars. It would also be nice if KStars had a map (using MarbleWidget) to display various Astronomy-related establishments (like amateur associations, observatories, research institutes). Another possible idea could be an observing report generator that would generate a report based on observing logs, and at the user's will, share it / post it on the internet.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Implement some features that will make it easier for users to collaborate, as suggested above.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. Prior knowledge of KIO_HTTP will help.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: FITS Image Overlay on the sky map. ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' It would be great if a FITS image could be overlayed on the sky map so that the field drawn by KStars could be compared with the field in the FITS image. This would be of great benefit to observational astronomers, astrophotographers and comet / asteroid observers. An extension would be to download a DSS image using KStars' already existing tool and map it onto the sky map. The support of shapes like ds9 region, annotations on the sky, etc. could also be added.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Functionality to overlay a FITS image or a DSS image obtained through KStars on to the sky map.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. Prior knowledge of the FITS format and cfitsio library will help.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Tools for Eclipses ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. Currently, it can predict Solar Eclipses (using the Conjunctions tool), but cannot plot trajectory of shadows, or predict Lunar Eclipses.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' The project's primary goals are to include simulation and prediction (maybe using the existing Conjunction backend) of Lunar eclipses, and to create a tool to mark the trajectories of Solar and Lunar eclipse shadows on a map of the earth, including marking of totality, partial eclipse and annular eclipse. Something similar to this: [http://eclipse.gsfc.nasa.gov/SEmono/TSE2009/TSE2009iau/TSE2009-fig01.GIF]&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' A complete set of tools to deal with eclipses.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: KStars: Prettyfication ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. The display is interactive, but it could be made more beautiful. &lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' We often get good suggestions for making KStars look better. Choose any of the following ideas: realistic rendering of asteroids and comets (including tails!); texture-mapping of the sky (this would mostly allow a photorealistic Milky Way); texture-mapping of planets; realistic sky-lighting effects (i.e., sky is blue in the daytime, gets gradually darker and colorful at sunset). One could also think of using Qt-GL rendering optionally.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Successful implementation of any of these ideas to make KStars more beautiful. &lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Printable star charts ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. It already has a print feature, but the printed chart could be much better.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' A printed star chart should at least include a legend explaining the symbols, and provide some information on the location of the user, the time and date, etc. The user would ideally be able to annotate the chart in various ways. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Significant improvements to the printed star charts in KStars. &lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Basic programming skills, ability to quickly learn QPainter API. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Many Moons ====&lt;br /&gt;
'''Project Information:''' KStars is a desktop planetarium program for KDE. It currently includes Earth's moon and 4 of Jupiter's moons. &lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Generalize the JupiterMoons class to encapsulate any planet's Moons. The project will require some research to identify a public source of orbital data for planetary moons, most likely from a NASA webpage. &lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Implement moons for at least Mars, Jupiter, Saturn, and Pluto with the new system. &lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. The project doesn't require much contact with Qt/KDE APIs, and the existing JupiterMoons class can be used as a template. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Akarsh Simha &amp;lt;akarsh DOT simha AT kdemail DOT net&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Project: Support many catalogs ====&lt;br /&gt;
'''Project Information:''' KStars is a Desktop Planetarium for KDE. Currently KStars loads some star catalogs that are made available in a KStars native format.&lt;br /&gt;
&lt;br /&gt;
'''Brief Explanation:''' KStars currently loads Tycho-2 and parts of USNO NOMAD catalog of stars. These catalogs are required to be in KStars' native format which uses the Hirearcheal Triangular Mesh to index regions in the sky. Popular star catalogs like USNO A organize stars and divide the sky into regions differently. Most users of astronomy software typically have one of these popular catalogs downloaded, and it would be great if KStars could support them somehow. While ability to read the non-native catalogs straight off is desirable, tools to convert these catalogs into KStars' native format would also help.&lt;br /&gt;
&lt;br /&gt;
'''Expected Results:''' Implement support for at least the most popular catalogs like USNO-A2.0, Stellarium's Extra catalog, Cartes du Ciel's Tycho and Tycho-2 catalogs.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++. Ability to read documentation and quickly understand the existing code and ability to deal with binary files will help.&lt;br /&gt;
&lt;br /&gt;
=== Kalzium ===&lt;br /&gt;
&lt;br /&gt;
==== Project: Strigi integration ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:'''&lt;br /&gt;
The goal of this project is to integrate Strigi as backend behind the periodic table and the glossary (and possible other elements).&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The idea here is to have a GUI element that shows Strigi search results based on the element selected from the periodic table, or the item from the glossary, found on the users desktop. For element, this would include the elements name, and possible even the element symbol, if integration with last years Strigi-Chemistry GSoC project is achieved. For glossary items, a simple text search would suffice.&lt;br /&gt;
&lt;br /&gt;
Another idea is to make it possible to querry like this: &amp;quot;Give me all molecules with a molecularweigth of 123u and at least one Carbon atom&amp;quot;. For this we can use the [http://chem-file.sourceforge.net/ Chemical File Database] (or of course every other database, even those for [http://www.rcsb.org/pdb/home/home.do proteins].&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* provide GUI for Strigi search results for an element selected in the periodic table&lt;br /&gt;
* provide GUI for Strigi search results for an glossary item&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++, DBUS. Could be useful: Qt.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Undecided.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
==== Project: Kalzium beautification ====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:'''&lt;br /&gt;
Many parts of [http://edu.kde.org/kalzium Kalzium] could need a fresh up of the interface. For example, the main table should be written using Qt Model/View technique and for example use SVGs as a background. A first (uncomplete but working) code is already existing.&lt;br /&gt;
&lt;br /&gt;
At the same time, many dialogs are not as beautiful as they could be. This project could also include the creation of a &amp;quot;simplified Kalzium&amp;quot; mode in which some parts of the feature set are hidden; this would be good for schools.&lt;br /&gt;
&lt;br /&gt;
A third idea is to make more use of Plasma, for example improve the already written Plasmoids and/or extent Kalzium so that a Plasmoid could open a information dialog using Kalzium.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Depending on the chosen project for example a cleaned up codebase with an improved interface.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' Required: C++, Qt, possible Plasma, Debug. &lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Carsten Niehaus&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== KOffice ===&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' support for versioned OpenDocument files.&lt;br /&gt;
&lt;br /&gt;
'''Explanation:''' The OpenDocument specification doesn't include support for multiple versions of the same document in a single file. But that feature is supported by OpenOffice.org. The objective for this Summer of Code is to add support for that versioning system in KOffice. Since KOffice shares the OpenDocument loading/saving code, it should be possible to add this support in every KOffice application in one Summer of Code.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Being able to load a specific version of a file, and create/manage versions&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, excellent english reading skills.&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Add support for e-book formats to KOffice.&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:''' Add a new export for one or more formats that are specifically tuned for e-book devices.&lt;br /&gt;
&lt;br /&gt;
With the increased popularity of ebook readers there is going to be a need for tools to create ebook content. While most e-book devices can display PDF there are in fact a lot more formats in use. One such format is .epub, which allows reflowable content (unlike PDF). The format itself is based on XML and uses style sheets (CSS) to format content. There are few free software tools that can generate and manipulate this format and those that exist are restricted to command line.&lt;br /&gt;
&lt;br /&gt;
Since most people creating content will most likely want to use an office suite or word processor to make documents it makes sense to add an export option for this format to KOffice.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge requisites:'''&lt;br /&gt;
* C++&lt;br /&gt;
* XML&lt;br /&gt;
* CSS&lt;br /&gt;
&lt;br /&gt;
==== Flake ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' support missing ODF drawing shape feature&lt;br /&gt;
&lt;br /&gt;
'''Explanation:''' KOffice can already load and save most of the shapes that ODF defines. Still a few features are missing especially text on shapes, but also caption, title, description and the measure shape.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' The project should implement the mentioned features and it should be possible to load, save and easily edit them&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
==== KWord ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
==== KPresenter ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Powerpoint import.&lt;br /&gt;
&lt;br /&gt;
'''Explanation:''' From some years ago another gSoc project implemented the basis for powerpoint import, but it was never finished. So there is a good basis to start from. From a quick look it seems like styles support is the thing missing most to complete the work, however a thorough analysis of what is there and what is not needs to be done. And then the actual work needs to be done too, obviously&lt;br /&gt;
&lt;br /&gt;
==== Krita ====&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Sketch-pad interface for Krita&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Krita is a large and complex application built around a sophisticated painting engine. The goal of this project is to create a new interface around the Krita engine, specialized for quick sketching.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should implement a new interface around Krita, presenting the user a single-layer plus tracing paper interface with a single freehand sketching tool. Easy to use and graphic color and paint operation (brush, pencil, eraser etc.) interface elements must be designed and implemented.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Shader filters and generators for Krita&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Some initial work has already been done to make it possible to write filters in the OpenGL shading language. This project should take that initial code as a basis and implement a fully functioning plugin for Krita that allows filters and shaders to be executed on images in any colorspace.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' The plugin should have a finished user interface and make it possible to experiment with shader filters in an interactive way. Example filters must be implemented.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, OpenGL.&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Animation support&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' There is no support at all in Krita for animated images such as GIF or MNG or for working with images in an animation context, such as textures or backgrounds in applications like Blender. The applicant should first investigate user needs and use cases and then implement support in the user interface and in the import/export filters.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' A user-friendly way of working with animated images (i.e., not by making each frame a layer), but e.g. a docker that shows the the animation running in thumbnail format. Import/export filters for relevant file formats.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' PSD and Gimp plugins&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Krita is powerful enough to handle nearly all that the Gimp and Photoshop are capable of saving. This project is about creating dedicated file import/export filters that can handle as much of these file formats as possible, possibly through the use of existing libraries.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' 4 plugins: psd import/export and xcf import/export. These plugins should be able to handle complex files in all supported colorspaces. Ideally the project would also deliver a library to convert PSD/XF to/from Open Raster files.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Workspaces&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' A workspace is a loadable package of settings that finetune Krita for a particular purpose. A workspace could contain additional plugins (like an image browser plugin for batch operations) and a subset of resources. Example workspaces could be batch-editing of images, editing of animation sequences or painting or sketching.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' the user interface and framework to make packages of plugins and resources that users can switch between. Also extra plugins to extend krita in areas like batch processing that do not exist yet.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, artistic workflow&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' Kipi and digikam plugins compatibility&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Kipi and digikam provide lots of interesting plugins for working with 8 and 16 bit RGBA images. It would be great to be able to re-use those plugins from within Krita.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Two plugins that load kipi and digikam filters into two new menus in the filter menu. Code to convert Krita layers to the digikam image representation and back, taking care of icc profiles and other niceties.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++, artistic workflow&lt;br /&gt;
&lt;br /&gt;
==== Kivio ====&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
'''Project:''' support for basic flowchart editing&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' In KOffice 1.6 Kivio provided tools and stencils for editing flowcharts. Flake already provides the the building blocks: shapes, glue points and a connector shape. Goal of the project is to recreate old functionality based on flake.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' Import of the Kivio stencil format. A docker that allows to handle collections of stencils. Implementation of a connector tool, that can easily connect different shapes.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++&lt;br /&gt;
&lt;br /&gt;
===KDE PIM===&lt;br /&gt;
KDE PIM is the interest group working on applications related to personal information management, e.g. contacts, calendar, mails, etc.&lt;br /&gt;
&lt;br /&gt;
One of the current challenges is utilizing the new cross-desktop PIM infrastructure called [http://www.akonadi-project.org/ Akonadi].&lt;br /&gt;
&lt;br /&gt;
There are interesting projects on all levels of the software stack: libraries, application porting, new applications, access to online resources, etc.&lt;br /&gt;
&lt;br /&gt;
[http://pim.kde.org/ Website] - [http://techbase.kde.org/Projects/PIM Project Wiki] -  [https://mail.kde.org/mailman/listinfo/kde-pim Mailing list] - IRC channel: #kontact and #akonadi on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Akonadi Janitor Agent====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
An [[Development/Architecture/KDE4/Akonadi#Akonadi_Agents|Akonadi Agent]] is a service process for performing tasks on data provided through the Akonadi server.&lt;br /&gt;
&lt;br /&gt;
The task of a Janitor agent would be to keep the user's PIM data neatly organized, for example deleting news feed items which are above a certain age and not flagged, moving last week's mail to an archive, etc.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* An Akonadi Agent capable of managing actions on Akonadi collections triggered by various criteria&lt;br /&gt;
* At least fully working implementation of actions based on &amp;quot;Expire&amp;quot; criterias for mail, e.g. delete mail above certain age, move/copy to different collection, etc&lt;br /&gt;
* GUI for configuring actions and their trigger criteria.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Ideally would already have gone through the [[Development/Tutorials/Akonadi/Resources|Akonadi Resource Tutorial]] since Resources are a specialized form of agents and thus share some of the API and characteristics.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Kevin Krammer (kevin dot krammer at gmx dot at)&lt;br /&gt;
----&lt;br /&gt;
====Project: Alternative Akonadi Client Library====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Akonadi has a server/client like architecture where clients such as applications (but also resource) connect to a service and communicate with it through a suitable protocol.&lt;br /&gt;
&lt;br /&gt;
Currently this is implemented for KDE in library called libakonadi-kde, however it is desirable to have additional implementations to be suitable for other library stacks, e.g. GLib/GObject based ones.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* A non-KDE based, preferably GLib/GObject based, Akonadi client library which&lt;br /&gt;
** can connect to a running Akonadi server&lt;br /&gt;
** fetch Akonadi collections&lt;br /&gt;
** fetch Akonadi items&lt;br /&gt;
** receive Akonadi change notifications (D-Bus based)&lt;br /&gt;
&lt;br /&gt;
* A set of demo programs using the library which can&lt;br /&gt;
** recursively list (id and content MIME types) collections&lt;br /&gt;
** list (id and MIME type)oif items in a collection&lt;br /&gt;
** get the raw payload of an item&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Depends on the chosen language and toolstack, e.g. C/Vala and GLib/GObject knowledge for a GLib/GObject based implementation.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:'''&lt;br /&gt;
----&lt;br /&gt;
====Project: Akonadi Consistency Checker====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Akonadi provides a structure of collections and items, similar to folders and files of a filesystem. Similarly the internal structures have to follow certain constraints which must not be violated. Nevertheless, this can happen as result of bugs, hardware failures, power loss and a million other reasons.&lt;br /&gt;
&lt;br /&gt;
Filesystem checks exist to detect and possibly fix such situations. Such functionality would also be desirable for Akonadi.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* A consistency checker (built into the Akonadi server or stand-alone) that performs an extensible set of checks on the internal data structures of the Akonadi server, such as:&lt;br /&gt;
** items belong to existing collections&lt;br /&gt;
** collections are child collections of existing collections&lt;br /&gt;
** the collection tree is non-cyclic&lt;br /&gt;
** every collections is owned by an existing resource&lt;br /&gt;
** collection sub-trees are owned by the same resource&lt;br /&gt;
** every item payload part belongs to an existing item&lt;br /&gt;
** content type constraints of collections are not violated&lt;br /&gt;
** ...&lt;br /&gt;
* each check should be accompanied with recovery code, such as moving orphaned items into a lost+found folder&lt;br /&gt;
* integration into Akonadiconsole&lt;br /&gt;
* integration into unit-tests&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt mandatory, SQL/database knowledge would be useful.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Volker Krause &amp;lt;vkrause@kde.org&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
====Project: Akonadi Resource for KMail local folders====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
KMail stores its mail in a folder hierachy where each folder can contain mails '''and''' further sub folders.&lt;br /&gt;
&lt;br /&gt;
While mails are stored either as mbox or maildir, additional index files are used to speed up message listing and to store message status and flags.&lt;br /&gt;
&lt;br /&gt;
The already existing Akonadi MailDir resource can handle the maildir aspects but cannot handle either mbox based folders nor the additional information stored in the index files.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* a set of classes, probably as a library, capable of&lt;br /&gt;
** recursively listing the KMail folder tree given a base directory&lt;br /&gt;
** reading mails from the mbox and maildir folders in the KMail folder tree&lt;br /&gt;
** reading KMail index files&lt;br /&gt;
* an Akonadi resource using these classes to provide read-only access to all mails currently handled by KMail. The resource should also be able to transfer the flags stored in KMail's index file to Akonadi.&lt;br /&gt;
* Writing a migrator, similar to the current KResource-&amp;gt;Akonadi migrator, that automatically reads the KMail config file and creates a Akonadi resource out of it. Optionally, depending on the overall progress, the migrator would also convert some of KMail's folder settings, like the folder icon or the expiry settings, to Akonadi collection attributes.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt mandatory, code analysis skills would be helpful regarding the handling of index files, refactoring skills if KMail's classes are to be extracted from KMail's code base (not required).&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Thomas McGuire &amp;lt;mcguire at kde dot org&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: Improvments in KMail's HTML support====&lt;br /&gt;
'''Brief explanation:''' Improve the HTML support in KMail, especially making it possible to preserve the HTML format when replying or inline forwarding.&lt;br /&gt;
&lt;br /&gt;
While KMail's HTML support has been constantly improving, it still has some important bits missing and some minor bugs. The goal of this project would be to implement the missing features and do general bugfixing in the HTML support.&lt;br /&gt;
&lt;br /&gt;
One of the biggest missing features, with over 1500 votes on [https://bugs.kde.org/show_bug.cgi?id=86423 bugzilla], is the ability to preserve the HTML format when replying or forwarding, which is often an essential requirement in some enterprises.&lt;br /&gt;
&lt;br /&gt;
[http://websvn.kde.org/?view=rev&amp;amp;revision=911149 Recently], support for inline HTML images was added to KMail. This support needs a few improvements, like being able to put images in the signature or resizing the images.&lt;br /&gt;
&lt;br /&gt;
Currently, KMail relies on [http://doc.trolltech.com/4.4/qtextedit.html#html-prop QTextEdit::toHtml()] to generate the HTML source. This however is very weak, as QTextEdit has some bugs and generally produces HTML that is only equaled by MS Word in its ugliness. Stephen Kelly has started some work to make this output nicer, and to produce other forms of markup, like text/enriched. This is achived by creating so-called [http://websvn.kde.org:80/trunk/KDE/kdepimlibs/kpimidentities/richtextbuilders/ rich-text builders]. One goal would be to finish this work and integrate it into KMail.&lt;br /&gt;
&lt;br /&gt;
Other nice points would be to support the text/enriched format for reading or composing mails, and to support the text/flowed format when composing. Although this is not strictly HTML related, it would improve the experience for many people.&lt;br /&gt;
&lt;br /&gt;
Of course, your own ideas are very welcome as well&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* Option to preserve the HTML format when replying or forwarding&lt;br /&gt;
* Support inline images also in signatures&lt;br /&gt;
* Improve inline image support by allowing to scale the images&lt;br /&gt;
* Nicer HTML generation by completing and integrating the HTML builder from Stephen Kelly&lt;br /&gt;
* Various bugfixes in the HTML support&lt;br /&gt;
* Optionally, also support text/enriched as alternative to HTML (both reading and  composing). See [http://www.faqs.org/rfcs/rfc1896.html RFC 1896]. Composing support can also be based on Stephen's builders.&lt;br /&gt;
* Optionally, support text/flowed format for non-HTML mail ([http://www.faqs.org/rfcs/rfc3676.html RFC 3676])&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Moderate C++ and basic Qt knowledge mandatory&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Thomas McGuire &amp;lt;mcguire at kde dot org&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
====Project: import/export for filtering rules in Sieve format in KMail====&lt;br /&gt;
'''Brief explanation''' Add functionality to import/export of mail filtering rules in Sieve format in KMail.&lt;br /&gt;
&lt;br /&gt;
Sieve is a language for declaring mail filter rules on a mail server. It was developed as part of the Cyrus IMAP server, but was quickly spin off and turned into a standard (http://tools.ietf.org/html/rfc5228). There are quite a few servers that have support for Sieve, in various degrees of completeness. It is quickly gaining support. Clients that support it are KMail and Thunderbird.&lt;br /&gt;
&lt;br /&gt;
KMail already has support for talking to Sieve enabled servers and also has support for client side filters. These two rule sets seem to be separate. It would be nice if you could dump the rules you have in one client and able to either install them on a server, or load them into another client, if you want to access your mail from different machines, but don't want to reconfigure your mail clients over and over again, or to quickly reconfigure clients if you don't have a Sieve enabled server.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Successful import and export of a (subset) of mail filtering rules between various KMail instances.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge requisites'''&lt;br /&gt;
* C++&lt;br /&gt;
* knowledge of how mail works&lt;br /&gt;
&lt;br /&gt;
===KDE on Windows===&lt;br /&gt;
====Solid API backend====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The porting efforts to make KDE available across platforms do need some backends for system dependent tasks. One of the KDE libraries that bundles this is Solid.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
You implement a backend for the [http://solid.kde.org Solid API] using WINAPI.&lt;br /&gt;
It has to work with both MinGW and MSVC compilers. Not every function is required, but the basic functionality (network access, removable drives/harddisks and power) should be implemented.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Windows API and C++/Qt. You should be able to set up the [http://techbase.kde.org/Getting_Started/Build/KDE4/Windows development environment] yourself and be familiar with it.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Carlo Segato (brandon dot ml at gmail dot com) or Patrick Spendrin (ps_ml at gmx dot de)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KDE Games===&lt;br /&gt;
====Project: Kolf 2 landscape object====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Kolf 2 is the second incarnation of KDE's minigolf game. We are currently rewriting it from scratch to take advantage of the powerful technologies provided by Qt 4 and KDE 4.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
The task in this project is to create an object (or multiple objects) that provide(s) landscape textures, slopes, puddles and sand bunkers.&lt;br /&gt;
&lt;br /&gt;
If you finish this task before the end of the summer, you can fill the remaining time by porting as much game objects from Kolf 1 to Kolf 2 as possible (e.g. windmills, floating blocks, signs or bumpers).&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++/Qt. Experiences in graphics programming with Qt will definitely help, as you are expected to implement 2D rendering for the landscape object.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Stefan Majewsky (majewsky at gmx dot net) &amp;amp;ndash; Please contact me to let me help you to improve your proposal.&lt;br /&gt;
&lt;br /&gt;
====Project: Kolf 2 editor interface====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
The minigolf game Kolf provided an editor interface from the beginning, to allow the users to create custom courses. For Kolf 2, we are rewriting the game engine and can therefore not use the old editor code.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
Your task would be to create an editor interface (may be embedded in the game, or a standalone application). A few basic parts are available, and the Kolf 2 engine supports generic methods to provide data to editor interfaces, and display editor overlays on the game view.&lt;br /&gt;
&lt;br /&gt;
If you finish the editor interface before the end of the summer, you can fill the remaining time by porting as much game objects from Kolf 1 to Kolf 2 as possible (e.g. windmills, floating blocks, signs or bumpers), or using your editor to put together some cool courses.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++/Qt. Experiences in model/view programming with Qt will be of good use.&lt;br /&gt;
&lt;br /&gt;
'''Mentor:''' Stefan Majewsky (majewsky at gmx dot net) &amp;amp;ndash; Please contact me to let me help you to improve your proposal.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Solid===&lt;br /&gt;
====Project: UPnP support through Jolie====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Adding UPnP support to Solid would mean offering transparent UPnP support to every KDE application using the Solid API, keeping them clean from every UPnP implementation aspect.&lt;br /&gt;
At the present, the [http://www.jolie-lang.org/ Jolie language] is being integrated with Plasma by means of the [http://websvn.kde.org/branches/work/~ervin/sodep/ QtSodep] library, soon to offer higher levels of abstraction.&lt;br /&gt;
&lt;br /&gt;
The aim of this project would be to implement a UPnP protocol for Jolie, so that Solid could re-use the integration being made with QtSodep and gain UPnP support without having to worry about implementation details. Having a UPnP protocol implementation in Jolie would have other considerable consequences, like the possibility to act easily as a UPnP server or to compose and export existing UPnP services.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
*The creation of a &amp;quot;upnp&amp;quot; protocol in Jolie, supporting at least the Internet Gateway Device (IGD) and MediaServer profiles.&lt;br /&gt;
*The creation of a UPnP Jolie service for UPnP service discovery and monitoring.&lt;br /&gt;
*Extending libsolid to expose UPnP devices found on the network.&lt;br /&gt;
&lt;br /&gt;
'''Material Prerequisite:''' Having UPnP devices or software applications to test with. Most home routers support IGD, and there exists free software supporting the MediaServer profile ([http://mediatomb.cc/ mediatomb]).&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' Understanding of the UPnP specifications, Java (for the development of the Jolie UPnP protocol) and basic knowledge of the Jolie language.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' ervin (ervin at kde dot org) fmontesi (famontesi at gmail dot com)&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KWin===&lt;br /&gt;
&lt;br /&gt;
KDE's window manager&lt;br /&gt;
&lt;br /&gt;
[http://techbase.kde.org/Projects/KWin Techbase page] - [https://mail.kde.org/mailman/listinfo/kwin Mailinglist] - IRC channel: #kwin on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: Window tabbing====&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Window tabbing is a feature that allows you to group multiple application windows together to cover the same space. It is identical to what is already available in any modern web browser except it applies the the window as a whole. Window managers that have this feature available include Fluxbox and Ion. This feature was [http://bugs.kde.org/show_bug.cgi?id=42023 originally requested] in 2002.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Understanding of the X window system and Xlib is a benefit but not required.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' Lucas Murray (lmurray undefinedfire com)&lt;br /&gt;
&lt;br /&gt;
====Project: Window tiling====&lt;br /&gt;
&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Window tiling is a technique of displaying application windows side-by-side without overlap. The position, size and layout of the windows can either be specified by the user or determined automatically to best fit the screen. Examples of existing tiling window managers include Awesome, XMonad, Ion and Ratpoison. One of the main advantages of tiling is that is makes application windows easy to navigate solely by the keyboard. This feature was [http://bugs.kde.org/show_bug.cgi?id=59338 originally requested] in 2003.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:'''&lt;br /&gt;
* Users should be able tile existing floating windows on-the-fly with simple keyboard shortcuts or mouse gestures.&lt;br /&gt;
* It should also be possible to run the entire desktop environment entirely in tiled mode (Enabled by configuration settings). In this mode new window would be added to the tiling grid by default yet can be removed by the user if required.&lt;br /&gt;
* The final tiling system should not interfere in any way with the existing floating window management.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Prerequisite:''' C++ and Qt. Understanding of the X window system and Xlib is a benefit but not required.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' Lucas Murray (lmurray undefinedfire com)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Project: Window snapping====&lt;br /&gt;
'''Brief explanation:'''&lt;br /&gt;
Easy drag and drop for whole Windows:&lt;br /&gt;
http://lifehacker.com/5085657/aerosnap-brings-the-windows-7-snap-feature-to-xp-vista&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== digiKam ===&lt;br /&gt;
&lt;br /&gt;
Photo Management program&lt;br /&gt;
&lt;br /&gt;
[http://www.digikam.org digiKam project web site] - [https://mail.kde.org/mailman/listinfo/digikam-devel Mailinglist] - IRC channel: #digikam on Freenode.&lt;br /&gt;
&lt;br /&gt;
====Project: High Dynamic Range (HDR) plugin====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' digiKam is an advanced digital photo management application for KDE, which makes importing and organizing digital photos a &amp;quot;snap&amp;quot;. The photos are organized in albums which can be sorted chronologically, by folder layout or by custom collections. digiKam has an Image Editor which has its own plugin subsystem with some common tools e.g. red eye correction or Gamma correction. Additional plugins are provided with the main application to process advanced corrections on image like color management, noise reduction, or special effects. digiKam image editor support 16 bits color depth image internally. The goal of this project is to create a new plugin dedicated to create [http://en.wikipedia.org/wiki/High_dynamic_range_imaging HDR image].&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should implement an HDR tool will mix two or more (nearly) identical images having different exposure into a new image representing a wider dynamic range, which is closer to human perception of a photographic scene. [http://en.wikipedia.org/wiki/Tone_mapping Tone-mapping method] must be used to create HDR images. An open-source implementation is already available at [http://zynaddsubfx.sourceforge.net/other/tonemapping this url] and can be re-used as well. There is an old [https://bugs.kde.org/show_bug.cgi?id=144593 feature request].&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' Gilles Caulier (caulier dot gilles at gmail dot com)&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===KDE Telepathy Integration===&lt;br /&gt;
The [http://telepathy.freedesktop.org Telepathy Framework] is a desktop independent framework for real-time communication, such as VoIP and Instant Messaging. The projects below are some ideas for integrating telepathy into KDE.&lt;br /&gt;
&lt;br /&gt;
If you want to know any more about Telepathy and KDE, drop by the irc channel #decibel and talk to '''grundleborg''', or use the mailing list decibel AT kde DOT org.&lt;br /&gt;
&lt;br /&gt;
====Project: Message Logging====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' The Telepathy Framework allows for components which can watch channels whilst a user is interacting with them through another application. A program could be created to log the content of text instant messages into an Akonadi collection.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should result in a telepathy watcher which is capable of logging the contents of text chats into an Akonadi collection. It should be possible to go off-the-record in a particular conversation from telepathy user interfaces and the logger should not save any messages in this situation. This project might also include modifying the Kopete logging plugin to use the same akonadi collection for logs, and making a migration tool from Kopete's old logging format to the new Akonadi collection.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt, some basic knowledge of the Telepathy Framework is an advantage, but not necessary if you have an interest in real-time communcation and are prepared to learn fast.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' George Goldberg (grundleborg at gmail dot com) IRC: grundleborg&lt;br /&gt;
&lt;br /&gt;
====Project: Telepathy Integration to any KDE application====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Provide some collaborative feature or instant messaging integration for your favourite KDE application.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' This project should result in a collaborative feature  or instant messaging integration being added to the chosen KDE application. It should be complete enough to provide at least basic functionality to end users, with the possibility of further improvement after the summer of code period ends.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt, some basic knowledge of the Telepathy Framework is an advantage, but not necessary if you have an interest in real-time communcation and are prepared to learn fast.&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' George Goldberg (grundleborg at gmail dot com) IRC: grundleborg. You should also discuss your idea with the development team of the application in which you would like to provide a Telepathy feature.&lt;br /&gt;
&lt;br /&gt;
====Project: Telepathy Plasma Integration====&lt;br /&gt;
&lt;br /&gt;
'''Project Information:''' Provide integration of presence and buddy information into plasma.&lt;br /&gt;
&lt;br /&gt;
'''Expected results:''' You should provide multiple points of integration between presence and contact information and plasma. Plasmoids allowing the display and manipulation of your own presence information should be made available, building on the plasma applets and datengines already in existance for presence information. Plasma activities could also be made aware of presence, and the contacts plasmoid could be made aware of your buddies from Telepathy instant messaging accounts.&lt;br /&gt;
&lt;br /&gt;
'''Knowledge Pre-Requisite:''' C++/Qt&lt;br /&gt;
&lt;br /&gt;
'''Mentors:''' George Goldberg (grundleborg at gmail dot com) IRC: grundleborg. You should also discuss your ideas with the plasma development team before making a proposal.&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KChart</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KChart</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KChart"/>
				<updated>2009-01-25T21:41:23Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Charting Shape (fka. KChart) ===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
You can add a chart in any of the KOffice applications as it's one of the flake shapes. Just select it from the &amp;quot;Add Shape&amp;quot; toolbox and drag it into the document area.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
* By default, the kchart should be gruped. It is quite difficult to put it at good shape again. Tested in kpresenter. [[User:Jtamate|Jtamate]]&lt;br /&gt;
&lt;br /&gt;
* Some other options on Legend tabdon't work, for example Show Frame, and Position and Alignment. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KChart</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KChart</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KChart"/>
				<updated>2009-01-25T21:37:00Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Charting Shape (fka. KChart) ===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
You can add a chart in any of the KOffice applications as it's one of the flake shapes. Just select it from the &amp;quot;Add Shape&amp;quot; toolbox and drag it into the document area.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
* By default, the kchart should be gruped. It is quite difficult to put it at good shape again. Tested in kpresenter. [[User:Jtamate|Jtamate]]&lt;br /&gt;
&lt;br /&gt;
* Some options for Plot area don't work (Label, Show grid lines). Also some other options don't work, for example Show frame/Position and Alignment on Legend tab. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KChart</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KChart</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KChart"/>
				<updated>2009-01-25T21:32:30Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Testers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Charting Shape (fka. KChart) ===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
You can add a chart in any of the KOffice applications as it's one of the flake shapes. Just select it from the &amp;quot;Add Shape&amp;quot; toolbox and drag it into the document area.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
* By default, the kchart should be gruped. It is quite difficult to put it at good shape again. Tested in kpresenter. [[User:Jtamate|Jtamate]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter"/>
				<updated>2009-01-25T21:24:15Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===KPresenter===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
Application specific tips go here.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JustAnExample|JustAnExample]]||svn trunk r803492 || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]|| beta5 Kubuntu || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
* KPresenter crashes when selecting the &amp;quot;animation tool&amp;quot; from the default toolbar. See [http://pastebin.ca/1316419] for backtrace. [[User:Dtritscher|dtritscher]]&lt;br /&gt;
** It doesn't crash for me. Three dockers show: Click actions, Transitions, Shape animation. [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
* Kpresenter crashes with the kspread shape. I was doing a lot of things. I do not remember exactly what. See http://pastebin.com/m2cbc89f2 [[User:Jtamate|Jtamate]]&lt;br /&gt;
** For me table shape crashed when trying to select a sheet from the dropdown list. Here is the backtrace I get after adding another sheet and then trying to select it: http://pastebin.ca/1317888 You don't need to add any new sheet, trying to select existing selected one is enough for crash. [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
* Setting a large picture for background doesn't make the picture fit the slide size. Only part of the picture is shown. [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
* Double clicking on a placeholder for picture shows file selector dialog twice. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter"/>
				<updated>2009-01-25T21:23:47Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===KPresenter===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
Application specific tips go here.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JustAnExample|JustAnExample]]||svn trunk r803492 || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]|| beta5 Kubuntu || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
* KPresenter crashes when selecting the &amp;quot;animation tool&amp;quot; from the default toolbar. See [http://pastebin.ca/1316419] for backtrace. [[User:Dtritscher|dtritscher]]&lt;br /&gt;
** It doesn't crash for me. Three dockers show: Click actions, Transitions, Shape animation.&lt;br /&gt;
&lt;br /&gt;
* Kpresenter crashes with the kspread shape. I was doing a lot of things. I do not remember exactly what. See http://pastebin.com/m2cbc89f2 [[User:Jtamate|Jtamate]]&lt;br /&gt;
** For me table shape crashed when trying to select a sheet from the dropdown list. Here is the backtrace I get after adding another sheet and then trying to select it: http://pastebin.ca/1317888 You don't need to add any new sheet, trying to select existing selected one is enough for crash. [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
* Setting a large picture for background doesn't make the picture fit the slide size. Only part of the picture is shown. [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
* Double clicking on a placeholder for picture shows file selector dialog twice. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter"/>
				<updated>2009-01-25T21:19:16Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===KPresenter===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
Application specific tips go here.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JustAnExample|JustAnExample]]||svn trunk r803492 || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]|| beta5 Kubuntu || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
* KPresenter crashes when selecting the &amp;quot;animation tool&amp;quot; from the default toolbar. See [http://pastebin.ca/1316419] for backtrace. [[User:Dtritscher|dtritscher]]&lt;br /&gt;
** It doesn't crash for me. Three dockers show: Click actions, Transitions, Shape animation.&lt;br /&gt;
&lt;br /&gt;
* Kpresenter crashes with the kspread shape. I was doing a lot of things. I do not remember exactly what. See http://pastebin.com/m2cbc89f2 [[User:Jtamate|Jtamate]]&lt;br /&gt;
** For me table shape crashed when trying to select a sheet from the dropdown list. Here is the backtrace I get after adding another sheet and then trying to select it: http://pastebin.ca/1317888 You don't need to add any new sheet, trying to select existing selected one is enough for crash.&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter"/>
				<updated>2009-01-25T20:53:50Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===KPresenter===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
Application specific tips go here.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JustAnExample|JustAnExample]]||svn trunk r803492 || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]|| beta5 Kubuntu || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
* KPresenter crashes when selecting the &amp;quot;animation tool&amp;quot; from the default toolbar. See [http://pastebin.ca/1316419] for backtrace. [[User:Dtritscher|dtritscher]]&lt;br /&gt;
** It doesn't crash for me. Three dockers show: Click actions, Transitions, Shape animation.&lt;br /&gt;
&lt;br /&gt;
* Kpresenter crashes with the kspread shape. I was doing a lot of things. I do not remember exactly what. See http://pastebin.com/m2cbc89f2 [[User:Jtamate|Jtamate]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay2/KPresenter"/>
				<updated>2009-01-25T20:48:51Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Testers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===KPresenter===&lt;br /&gt;
&lt;br /&gt;
====Application specific tips====&lt;br /&gt;
Application specific tips go here.&lt;br /&gt;
&lt;br /&gt;
====Testers====&lt;br /&gt;
Please put your IRC nickname and KOffice svn revision number (or beta5) in the table if you are testing this app.&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KOffice svn revision number tested !! Testing details&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JustAnExample|JustAnExample]]||svn trunk r803492 || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]|| beta5 Kubuntu || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| SVN trunk r916636 || starting ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
====Bugs====&lt;br /&gt;
Please list all bugs found in the application below here. Remember to sign every comment you write on this wiki page with &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
* KPresenter crashes when selecting the &amp;quot;animation tool&amp;quot; from the default toolbar. See [http://pastebin.ca/1316419] for backtrace. [[User:Dtritscher|dtritscher]]&lt;br /&gt;
&lt;br /&gt;
* Kpresenter crashes with the kspread shape. I was doing a lot of things. I do not remember exactly what. See http://pastebin.com/m2cbc89f2 [[User:Jtamate|Jtamate]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Schedules/KDE4/4.2_Changelog</id>
		<title>Schedules/KDE4/4.2 Changelog</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Schedules/KDE4/4.2_Changelog"/>
				<updated>2008-11-27T22:16:49Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Games */ Another new game&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Workspace=&lt;br /&gt;
* policykit (probably beta2)&lt;br /&gt;
* Use knotify in kwrited&lt;br /&gt;
* option for full path in breadcrumb mode&lt;br /&gt;
* VI input mode in kwrite and kate&lt;br /&gt;
* PowerDevil&lt;br /&gt;
* kephal for better xrandr-support.&lt;br /&gt;
* Add ConsoleKit support to kdm&lt;br /&gt;
&lt;br /&gt;
==Plasma==&lt;br /&gt;
(see also plasma changelog)&lt;br /&gt;
* KRunner: Noun-Verb support&lt;br /&gt;
* Konqueror history runner&lt;br /&gt;
* Kate sessions runner&lt;br /&gt;
* Recent Documents runner&lt;br /&gt;
* Notifications and jobs in systemtray&lt;br /&gt;
* panel-&amp;gt;desktop dragging&lt;br /&gt;
* Improved Battery applet for Powerdevil&lt;br /&gt;
* Wallpaper plugins&lt;br /&gt;
* Python support&lt;br /&gt;
* Ruby support&lt;br /&gt;
* Plasma Popup Tips&lt;br /&gt;
* Taskbar grouping&lt;br /&gt;
* Weather Plasmoid&lt;br /&gt;
* Plasma On Screensaver&lt;br /&gt;
* Add New Widgets: Pluggable widget browser&lt;br /&gt;
* Activity&amp;lt;-&amp;gt;Virtual Desktop Affinity (no UI)&lt;br /&gt;
* Panel Autohide&lt;br /&gt;
* Keyboard Shortcut Config UI&lt;br /&gt;
* Save icon positioning in folderview&lt;br /&gt;
* Quicklaunch Plasmoid&lt;br /&gt;
* drop indicator in panel&lt;br /&gt;
* make the panel controller a bit more usable&lt;br /&gt;
* nicely draw the desktop toolbox when it's moved because of a panel&lt;br /&gt;
* Various widgets (TODO)&lt;br /&gt;
* Panel form factor support in the folderview applet, twitter, news, ...&lt;br /&gt;
* Improved folderview configuration&lt;br /&gt;
* Keyboard status applet&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==KWin==&lt;br /&gt;
* Move maximized windows between Xinerama screens&lt;br /&gt;
* Support for decoration shadows&lt;br /&gt;
* Implement _NET_WM_FULLSCREEN_MONITORS EWMH spec hint&lt;br /&gt;
* Compositing enabled by default&lt;br /&gt;
* Compositing self-check&lt;br /&gt;
* Global animation speed setting&lt;br /&gt;
* Motion dynamics&lt;br /&gt;
* Improved UI for selecting window/desktop switcher&lt;br /&gt;
* UI for assigning effects to screen edges&lt;br /&gt;
* Cube/cylinder/sphere effect&lt;br /&gt;
* Magic lamp minimize effect&lt;br /&gt;
* Animation in box switch effect&lt;br /&gt;
* Mouse interaction for cover switch Effect&lt;br /&gt;
* Thumbnail bar in the cover switch effect&lt;br /&gt;
* Improved snow effect&lt;br /&gt;
* Improved desktop grid&lt;br /&gt;
* New present window layout modes&lt;br /&gt;
* Invert only selected windows&lt;br /&gt;
* Unredirecting of fullscreen windows (flicker-- w/ bad video drivers)&lt;br /&gt;
&lt;br /&gt;
=Applications=&lt;br /&gt;
* KGet: support mms:// protocol??mms&lt;br /&gt;
* Kate: snippets plugin ported, ctags plugin, build plugin improved&lt;br /&gt;
* perldoc kioslave&lt;br /&gt;
* Lokalize: MDI interface improvements&lt;br /&gt;
* Gwenview: support for animated gif and mng&lt;br /&gt;
* Okular: support fax documents&lt;br /&gt;
* Konqueror: bookmarks page (+kioslave)&lt;br /&gt;
* Dolphin: previews in tooltips, zoom slider in statusbar&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Edu==&lt;br /&gt;
* KAlgebra: new parser / lexer, import for MathML presentation markup&lt;br /&gt;
* KBruch: UI improvements and merge of KPercentage functionality&lt;br /&gt;
* Python bindings to Marble widget classes&lt;br /&gt;
* KStars: Display millions of stars, many more&lt;br /&gt;
* KTurtle: color picker, command line, export image&lt;br /&gt;
* Parley: UI improvements&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
admin / utils / network&lt;br /&gt;
* system-config-printer-kde and printer-applet&lt;br /&gt;
* Improved support for LDAP (Microsoft Active Directory) in KRDC&lt;br /&gt;
* improved per host settings in KRDC&lt;br /&gt;
* Okteta: various UI improvements&lt;br /&gt;
* Ark: service menu and password support&lt;br /&gt;
* Ksnapshot: recording of window title, multiscreen improvements&lt;br /&gt;
&lt;br /&gt;
==PIM==&lt;br /&gt;
* Akregator: basic support for enclosures&lt;br /&gt;
* KJots: Importing notes from knowit&lt;br /&gt;
* KMail: Nicer attachment view&lt;br /&gt;
* KMail: New message list&lt;br /&gt;
* KNotes: Zeroconf support for sending notes on LAN &lt;br /&gt;
* Kontact: new planner summary&lt;br /&gt;
* Kontact: Drag and drop in free/busy view&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Games==&lt;br /&gt;
* Dragging jewels and untimes games in kdiamond&lt;br /&gt;
* Ksirk: jabber-based netgame finding, scrolling improvements, skins via GHNS, skins editor&lt;br /&gt;
* KGoldRunner: new levels&lt;br /&gt;
* KBlocks: sounds support&lt;br /&gt;
* New game: Killbots&lt;br /&gt;
* New game: Bomber&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Libs / development platform&lt;br /&gt;
* Phonon: VideoWidget snapshot function&lt;br /&gt;
* KHTML: Early domain name resolution (prefetch)&lt;br /&gt;
* KHTML: embedded search/find-as-you-type bar&lt;br /&gt;
* CMake: Reduced library link interface&lt;br /&gt;
* Eigen (how's that interesting?&lt;br /&gt;
* PyKDE: KCM and oder plugins support&lt;br /&gt;
* Various improvements in the Kross Ruby and Python engines&lt;br /&gt;
* New Kross engine: Falcon&lt;br /&gt;
* fish and sftp support on Windows&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NEEDINFO:&lt;br /&gt;
&lt;br /&gt;
* kpackagekit?&lt;br /&gt;
* QTScript improvements (which? mail@dipe.org)&lt;br /&gt;
* SVG support in KHTML (Vyacheslav Tokarev &amp;lt;tsjoker@gmail.com&amp;gt;)&lt;br /&gt;
* Support for CSS3 border-* properties (Fredrik Höglund and Maksim Orlovich &amp;lt;fredrik@kde.org&amp;gt;)&lt;br /&gt;
* support of Video/Audio elements (Germain Garand &amp;lt;germain@ebooksfrance.org&amp;gt;)&lt;br /&gt;
* kdeui: Rich text builders for KTextEdit, including BBCode, html, plain text markup, mediawiki and markdown output (Stephen Kelly &amp;lt;steveire@gmail.com&amp;gt;)&lt;br /&gt;
* NX support in krdc David Gross &amp;lt;gdavid.devel@gmail.com&amp;gt;&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_that_you_cant_do</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that you cant do</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_that_you_cant_do"/>
				<updated>2008-11-10T00:54:36Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs that you can't do */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs that you can't do===&lt;br /&gt;
If you have bugs in your month that you can't do, and no-one has been able to help you with on IRC, please list them here for someone else to have a look at.&lt;br /&gt;
*{{bug|70283}} - I'm not sure how to setup the test for this. [[User:fvilas|fvilas]] 18:10, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|76710}} - Don't have any encrypted mail in my inbox to test this. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2"/>
				<updated>2008-11-10T00:28:34Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* kmail */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This is the page for the triage part of the KDE PIM Bug  Day 2 which takes place on Sunday, November 9th 2008, but feel free to start early. The aim of this bug day is to organize as many of the KDE PIM applications' bugs as possible. Our targets for triage are bugs listed in [http://bugs.kde.org bugs.kde.org] under the products akregator, kaddressbook, kmail, knode, kontact and korganizer.&lt;br /&gt;
&lt;br /&gt;
'''The goal of this bug-day is to check if bugs filed against older version of KDE PIM still apply to the new latest version. If a bug is still reproducible our aim will be to find simple step-by-step solutions and/or testcases so it gets easier for the KDE PIM developers to find and fix those bugs.'''&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
You don't need any programming experience to help out with Triaging, but you will need a recent version of KDE, either svn trunk or the latest release from KDE 4.1.3. Information on setting up KDE from trunk can be [http://techbase.kde.org/Getting_Started/Build/KDE4 found here]. If you're having trouble installing KDE, feel free to drop by on #kde-bugs early to get some help.&lt;br /&gt;
&lt;br /&gt;
==General information==&lt;br /&gt;
* [http://techbase.kde.org/Contribute/Bugsquad This page] has useful information on how to not mis-mark bugs. In particular, &amp;quot;duplicates are hard&amp;quot;. Generally we don't want to claim things are duplicates when they aren't. Make sure you get '''approval from a developer''' before you mark something a duplicate. We don't want to create more work for the developers!&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;
==Preparations==&lt;br /&gt;
First of all, put your name and the version of KDE PIM you are testing with into the Sign-in section. Then read the descriptions of the various sections to file bugs in carefully.&lt;br /&gt;
&lt;br /&gt;
==Workflow==&lt;br /&gt;
# Select one of the batches of bugs you'd like to do and pick it by putting your name into the appropriate column.&lt;br /&gt;
# Execute the query to get the list of bugs and go through the bugs one by one.&lt;br /&gt;
## Read the bug description and the comments carefully and try to reproduce the bug.&lt;br /&gt;
## Post a comment on bugzilla explaining what you found out. Be sure to also put the version of KDE PIM you are testing with in the comment.&lt;br /&gt;
## Put the bug into the appropriate section and describe your findings here as well (eg. &amp;quot;Can't reproduce any longer&amp;quot; or &amp;quot;This bug is still reproducible for me&amp;quot;). If there's something special about a bug, you can prepend a little label like eg. '''crash'''. Please mark every bug with your IRC nickname. You can easily do that by appending &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
## Check if the bug's Version field is set properly. If not do one of the following:&lt;br /&gt;
### If the bug is reproducible, set the version field to the version of KDE PIM you are triaging with.&lt;br /&gt;
### If the bug is not reproducible, set the version field to the version the bug was reported with.&lt;br /&gt;
## Check if the bug's product and component are appropriate. Don't forget to look at the application specific hints. If the bug's product/component needs to be changed but you lack permissions, put it in the &amp;quot;Needs product/component change&amp;quot; section.&lt;br /&gt;
## If you lack bugzilla permissions to change the version field, additionally file the bug in the &amp;quot;needs version field change&amp;quot; section. Never change a version if it has already been set to a number!&lt;br /&gt;
## Mark the bug as triaged by adding the '''triaged''' keyword on the bug. Again if you lack the permissions to do so, additionally put it in the &amp;quot;Needs triaged keyword&amp;quot; section.&lt;br /&gt;
# If you're done with your batch, pick another one and start from the top :-)&lt;br /&gt;
&lt;br /&gt;
===Testcases===&lt;br /&gt;
Some bugs might have documents that expose the bugs attached, for some bugs you might be able to create documents that show the buggy behaviour. In both cases we have to add the '''testcase''' keyword. If you lack permissions to do so, additionally add the bug to the &amp;quot;Needs testcase keyword&amp;quot; section.&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 feature doesn't work, that is important. Let's keep track of them. &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 use the tag &amp;amp;lt;s&amp;amp;gt;...&amp;amp;lt;/s&amp;amp;gt; to mark a bug as done &amp;lt;s&amp;gt;like this&amp;lt;/s&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Hints==&lt;br /&gt;
* You can edit single sections of this page if you you check '''Enable section editing via edit links''' in your [[Special:Preferences|TechBase Preferences]].&lt;br /&gt;
* Sometimes you might encounter '''edit conflicts''' if several people are working on the wiki page at once. We can mostly avoid those by keeping notes of the bugs we encounter in a text editor and file several of them later at once (don't forget to save).&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;
==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 (or just beta2 if you're using that):&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KDE PIM version used for testing&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Lemma|Lemma]]||svn trunk r881868 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:jtamate|jtamate]]|| opensuse 4.1.72 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]||svn trunk r881890||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:opensourcecat|opensourcecat]]||svn trunk r881888||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]||Kubuntu 4.1.3||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]||svn trunk kdepim 881804||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Krop|Krop]]||svn trunk kdepim 881888||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gkiagia|gkiagia]]||svn trunk r881933||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:katastrophe|katastrophe]]||svn trunk 881393||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:fvilas|fvilas]]||Slackware 4.1.2||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Division of Labour==&lt;br /&gt;
Please choose a batch that is not already taken and then query bugs.kde.org for all bugs in that batch. 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;
If you have to leave before you can finish your batch, please put the last bug you triaged as well as if you're going to finish triaging in the table so others will know where you left off.&lt;br /&gt;
&lt;br /&gt;
The bugs presented on this page are only a selection of the bugs that need triaging. If you run out of bugs to do, please tell on IRC and we'll provide new batches.&lt;br /&gt;
&lt;br /&gt;
{{Warning| With these more recent bugs, if the report has been looked at by a developer (i.e. they cc'd themself or commented on it or posted a patch), and it seems like the issue is fixed, BUT the developer didn't close it, make sure the bug really can be closed. Often it can't.}}&lt;br /&gt;
&lt;br /&gt;
===kmail===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kmail is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
Additional information:&lt;br /&gt;
* KMail just added the new folder- and messagelist developed in one of this year's SoC project. If you find any bugs related to those lists, please let someone with a recent build of trunk who has the new views triage the bug.&lt;br /&gt;
::A list of known bugs of the SoC project can be found [[Projects/PIM/KMail_SoC_regressions|here]]. However, new bugs should not be reported there, they should go to bugzilla.&lt;br /&gt;
::Bug reports about the new message list or the new folder tree should be changed to the &amp;quot;new message list&amp;quot; or &amp;quot;new folder tree&amp;quot; component. When changing the component, please also reassign to the owner of the component, which is not kdepim-bugs but the SoC student.&lt;br /&gt;
::You need the newest version of qt-copy, otherwise you'll get random crashes, see [http://bugs.kde.org/show_bug.cgi?id=174065 bug 174065].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || [[User:Lemma|Lemma]] || done ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=91776&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=92308 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || [[User:Lemma|Lemma]] || done ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=37306&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=57193 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || [[User:fvilas|fvilas]] || done ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=57340&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=72311 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || [[User:JLP|JLP]] || done ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=73214&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=77059 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || [[User:Lemma|Lemma]] || working ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=77087&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=78750 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 6 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=79167&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=80177 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 7 || 10 ||[[User:opensourcecat|opensourcecat]]||done||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=80308&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=83415 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=83486&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=84687 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=84946&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=86157 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=86521&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=87932 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 11 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=88038&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=88950 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 12 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89045&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=89879 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 13 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=90091&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=90962 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 14 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=91047&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=91706 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===korganizer===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for korganizer is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || katastrophe || starting || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=32042&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=77072 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=78802&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=86096 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89418&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=93810 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=94101&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=98813 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=98998&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=102873 Query]                                                                                                                               &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 6 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=103095&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=106946 Query]                                                                                                                              &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 7 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=107003&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=108921 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=109158&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=110558 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=110648&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=112210 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=112234&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=114187 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===akregator===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for akregator is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=%255BBug+creation%255D&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || [[User:jtamate|jtamate]] || only one done || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=96796&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=111548 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || [[User:Dtritscher|dtritscher]] || done || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=111907&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=118485 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || [[User:Dtritscher|dtritscher]] || done || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=118907&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=123585 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=124052&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=129112 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=130697&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=136367 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===kaddressbook===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kaddressbook is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=68324&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=126850 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=127107&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=133381 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=133444&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=138679 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=138908&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=145272 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=145324&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=147917 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===knode===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for knode is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=33035&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=62537 Query]                                                                                                                                      &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=63888&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=73813 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=73851&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=78190 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=79057&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=88287 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89489&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=95917 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===kontact===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kontact is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=92813&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=114014 Query]                                                                                                                                  &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=114651&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=129258 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=129469&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=137106 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=137327&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=139740 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=139974&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=142657 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Bugs that need changes that require permissions ==&lt;br /&gt;
If you put a bug into this section, please be sure you additionally put it into the appropriate '''Completed Bugs''' section.&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as TRIAGED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as TESTCASE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing version field changed}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing productcomponent changed}}&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;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with test-cases}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with step-by-step instructions}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as INVALID}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as DUPLICATE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that should be WISHES}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing users with particular setups}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Non english locales}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing attention from KDEPim developers}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs awaiting feedback}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that you cant do}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/High profile}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs not related to KDEPim}}&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_needing_attention_from_KDEPim_developers</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing attention from KDEPim developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_needing_attention_from_KDEPim_developers"/>
				<updated>2008-11-10T00:26:10Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs needing attention from KDE PIM developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from KDE PIM developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behaviour is inteded, or if there's some other reason that it would be useful for a KDE PIM developer to take a look at. Make sure you indicate '''why''' the bug needs attention. A second common reason to put a bug here is if it has already been heavily commented on by the application's developer. In the latter case please only add bugs you can reproduce.&lt;br /&gt;
&lt;br /&gt;
{{Warning|Always defer policy decisions to developers.}}&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|91819}} - '''easy''' Don't set minimum kmmainwidget.cpp window size to make it smaller. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt; fixed [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|80995}} - It is not clear if this can be implemented or not. Can't call it &amp;quot;wish&amp;quot; because it is the normal behaviour with downloaded mail (pop3). [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|83038}} Devs have to check thath. [[User:Opensourcecat|Opensourcecat]] 13:10, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|37898}} - index files, corruption and compacting folders. plenty of discussion, seems to be fixed. maybe this could be closed. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|49310}} - bug about indices and manually moving mails in maildirs. probably resolved but a little unsure. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|51410}} - behaviour of the sign button when switching identities. maybe a policy issue. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|57192}} - Sticky identity overwrites identity if editing draft messages. Policy. Please clarify if this is a bug or a wish. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|75045}} - I don't have many mails with large photos, only large amounts of text mail which couldn't trigger this. [[User:JLP|JLP]]&lt;br /&gt;
*{{bug|77058}} - I don't have any faulty server to test with, all work fine for me. And by comment #5 I'd say this is not a bug, but developers should decide. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Non_english_locales</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Non english locales</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Non_english_locales"/>
				<updated>2008-11-09T21:43:39Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Non english locales */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Non english locales===&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{bug|75780}} - Needs someone with German locale. Maybe not even KDE PIM problem. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_with_step-by-step_instructions</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with step-by-step instructions</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_with_step-by-step_instructions"/>
				<updated>2008-11-09T21:35:56Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs with step-by-step instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with step-by-step instructions===&lt;br /&gt;
If the bug has proper step-by-step instructions to reproduce the bug it should go here. Actually most reproducible bugs should end up in this section.&lt;br /&gt;
&lt;br /&gt;
*{{bug|91820}} - '''crash''' Copying mails from one KMail window to another one doesn't work or even crashes. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|117878}} - still different icon sizes shown in akregator 1.3.3. [[User:Dtritscher|dtritscher]] 10:48, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114090}} - Akregator still shows Kontact icon and name in systray icon when embedded in Kontact- [[User:Dtritscher|dtritscher]] 10:55, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114397}} - When Akregator is embedded within kontact, it starts fetching feeds only after selecting Akregator in Kontact. [[User:Dtritscher|dtritscher]] 10:59, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|117478}} - Akregator still shows wrong relative links. [[User:Dtritscher|dtritscher]] 11:06, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|118484}} - Akregator 1.3.3 doesn't displays tooltips at all. [[User:Dtritscher|dtritscher]] 11:09, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|111908}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 11:38, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|117314}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 11:40, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81078}} - Kmail, inserting addresses containig characters to decode does'n work. [[User:Opensourcecat|Opensourcecat]] 12:00, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|121312}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 14:12, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|119724}} - Akregator 1.3.3 still shows this behaviour.&lt;br /&gt;
*{{bug|74938}} - Bug still present in KMail from SVN. [[User:JLP|JLP]]&lt;br /&gt;
*{{bug|37307}} - No means to print attachments. Still reproducible. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|41514}} - KMail's UI still freezes while long-running external filters are at work. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|56079}} - Maildir mails are stored using a ':', problem still reproducible. Shouldn't it be possible to completely replace that? [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|75673}} - KMail from SVN still starts maximized instead of minimized to system tray. [[User:JLP|JLP]]&lt;br /&gt;
*{{bug|75699}} - Even with the new messages list the wish is still valid. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_with_step-by-step_instructions</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with step-by-step instructions</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_with_step-by-step_instructions"/>
				<updated>2008-11-09T21:18:08Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs with step-by-step instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with step-by-step instructions===&lt;br /&gt;
If the bug has proper step-by-step instructions to reproduce the bug it should go here. Actually most reproducible bugs should end up in this section.&lt;br /&gt;
&lt;br /&gt;
*{{bug|91820}} - '''crash''' Copying mails from one KMail window to another one doesn't work or even crashes. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|117878}} - still different icon sizes shown in akregator 1.3.3. [[User:Dtritscher|dtritscher]] 10:48, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114090}} - Akregator still shows Kontact icon and name in systray icon when embedded in Kontact- [[User:Dtritscher|dtritscher]] 10:55, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114397}} - When Akregator is embedded within kontact, it starts fetching feeds only after selecting Akregator in Kontact. [[User:Dtritscher|dtritscher]] 10:59, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|117478}} - Akregator still shows wrong relative links. [[User:Dtritscher|dtritscher]] 11:06, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|118484}} - Akregator 1.3.3 doesn't displays tooltips at all. [[User:Dtritscher|dtritscher]] 11:09, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|111908}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 11:38, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|117314}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 11:40, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81078}} - Kmail, inserting addresses containig characters to decode does'n work. [[User:Opensourcecat|Opensourcecat]] 12:00, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|121312}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 14:12, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|119724}} - Akregator 1.3.3 still shows this behaviour.&lt;br /&gt;
*{{bug|74938}} - Bug still present in KMail from SVN. [[User:JLP|JLP]]&lt;br /&gt;
*{{bug|37307}} - No means to print attachments. Still reproducible. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|41514}} - KMail's UI still freezes while long-running external filters are at work. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|56079}} - Maildir mails are stored using a ':', problem still reproducible. Shouldn't it be possible to completely replace that? [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|75673}} - KMail from SVN still starts maximized instead of minimized to system tray. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_needing_users_with_particular_setups</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing users with particular setups</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_needing_users_with_particular_setups"/>
				<updated>2008-11-09T21:00:50Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs needing users with particular setups */&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;
&lt;br /&gt;
*{{bug|18247}} Needs someone with a configured proxy for use with akregator. [[User:Dtritscher|dtritscher]] 10:50, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|82679}} Needs uw imap server to test.[[User:Opensourcecat|Opensourcecat]] 13:00, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|80988}} - Needs special setup to test: old kmail and maildir mail archive. [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|65571}} - Needs disconnected IMAP where the server is readonly. [[User:fvilas|fvilas]] 18:28, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|75583}} - IMAP account needed. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_needing_attention_from_KDEPim_developers</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing attention from KDEPim developers</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_needing_attention_from_KDEPim_developers"/>
				<updated>2008-11-09T20:03:26Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs needing attention from KDE PIM developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs needing attention from KDE PIM developers===&lt;br /&gt;
Add bugs here if you need to find out whether the observed behaviour is inteded, or if there's some other reason that it would be useful for a KDE PIM developer to take a look at. Make sure you indicate '''why''' the bug needs attention. A second common reason to put a bug here is if it has already been heavily commented on by the application's developer. In the latter case please only add bugs you can reproduce.&lt;br /&gt;
&lt;br /&gt;
{{Warning|Always defer policy decisions to developers.}}&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|91819}} - '''easy''' Don't set minimum kmmainwidget.cpp window size to make it smaller. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt; fixed [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|80995}} - It is not clear if this can be implemented or not. Can't call it &amp;quot;wish&amp;quot; because it is the normal behaviour with downloaded mail (pop3). [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|83038}} Devs have to check thath. [[User:Opensourcecat|Opensourcecat]] 13:10, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|37898}} - index files, corruption and compacting folders. plenty of discussion, seems to be fixed. maybe this could be closed. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|49310}} - bug about indices and manually moving mails in maildirs. probably resolved but a little unsure. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|51410}} - behaviour of the sign button when switching identities. maybe a policy issue. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|57192}} - Sticky identity overwrites identity if editing draft messages. Policy. Please clarify if this is a bug or a wish. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|75045}} - I don't have many mails with large photos, only large amounts of text mail which couldn't trigger this. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_with_step-by-step_instructions</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with step-by-step instructions</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_with_step-by-step_instructions"/>
				<updated>2008-11-09T18:52:18Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs with step-by-step instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with step-by-step instructions===&lt;br /&gt;
If the bug has proper step-by-step instructions to reproduce the bug it should go here. Actually most reproducible bugs should end up in this section.&lt;br /&gt;
&lt;br /&gt;
*{{bug|91820}} - '''crash''' Copying mails from one KMail window to another one doesn't work or even crashes. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|117878}} - still different icon sizes shown in akregator 1.3.3. [[User:Dtritscher|dtritscher]] 10:48, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114090}} - Akregator still shows Kontact icon and name in systray icon when embedded in Kontact- [[User:Dtritscher|dtritscher]] 10:55, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114397}} - When Akregator is embedded within kontact, it starts fetching feeds only after selecting Akregator in Kontact. [[User:Dtritscher|dtritscher]] 10:59, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|117478}} - Akregator still shows wrong relative links. [[User:Dtritscher|dtritscher]] 11:06, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|118484}} - Akregator 1.3.3 doesn't displays tooltips at all. [[User:Dtritscher|dtritscher]] 11:09, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|111908}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 11:38, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|117314}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 11:40, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81078}} - Kmail, inserting addresses containig characters to decode does'n work. [[User:Opensourcecat|Opensourcecat]] 12:00, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|121312}} - Akregator 1.3.3 still shows this behaviour. [[User:Dtritscher|dtritscher]] 14:12, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|119724}} - Akregator 1.3.3 still shows this behaviour.&lt;br /&gt;
*{{bug|74938}} - Bug still present in KMail from SVN. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED"/>
				<updated>2008-11-09T17:20:10Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs to be marked as RESOLVED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs to be marked as RESOLVED===&lt;br /&gt;
Bugs that are no longer reproducible and have been fixed already go into this section. After they are double-checked they can be closed.&lt;br /&gt;
*{{bug|92051}} - Cursor resetting/view scrolling after spell-checking (and correction). works for me. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|92210}} - Message preview empty after receiving a new mail in the same folder. Can't reproduce, never saw this. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92307}} - Sometimes the message gets lost if moving from online imap to local folder, related to attachment-on-demand. Can't reproduce. [[User:Lemma|Lemma]] Closed as it was already confirmed working in 2006.&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80309}} - Bug gone. Does not apply to newer version at all. opensourcecat&amp;lt;/s&amp;gt; Can't reproduce either. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92012}} - Selecting messages in the messagelist using shift+end/shift+home works fine with the new views.&amp;lt;/s&amp;gt; (so obvious I closed right away) [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|116482}} - Can't reproduce that crash. [[User:Dtritscher|dtritscher]] 11:23, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114997}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 11:32, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81561}} - Bug gone. [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|120791}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 13:57, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|123584}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 14:27, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|60138}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:39, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|68976}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:52, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|72310}} - Seems resolved in KMail 1.10.1.  See bug comments for steps taken [[User:fvilas|fvilas]] 15:54, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|57341}} - Files on IMAP server show flags set correctly using KMail 1.10.1. [[User:fvilas|fvilas]] 16:32, 9 November 2008 (UTC)&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|73215}} - fixed in KDE 4.1.2 and SVN [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{bug|74852}} - fixed in SVN [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED"/>
				<updated>2008-11-09T17:19:41Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs to be marked as RESOLVED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs to be marked as RESOLVED===&lt;br /&gt;
Bugs that are no longer reproducible and have been fixed already go into this section. After they are double-checked they can be closed.&lt;br /&gt;
*{{bug|92051}} - Cursor resetting/view scrolling after spell-checking (and correction). works for me. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|92210}} - Message preview empty after receiving a new mail in the same folder. Can't reproduce, never saw this. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92307}} - Sometimes the message gets lost if moving from online imap to local folder, related to attachment-on-demand. Can't reproduce. [[User:Lemma|Lemma]] Closed as it was already confirmed working in 2006.&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80309}} - Bug gone. Does not apply to newer version at all. opensourcecat&amp;lt;/s&amp;gt; Can't reproduce either. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92012}} - Selecting messages in the messagelist using shift+end/shift+home works fine with the new views.&amp;lt;/s&amp;gt; (so obvious I closed right away) [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|116482}} - Can't reproduce that crash. [[User:Dtritscher|dtritscher]] 11:23, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114997}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 11:32, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81561}} - Bug gone. [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|120791}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 13:57, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|123584}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 14:27, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|60138}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:39, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|68976}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:52, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|72310}} - Seems resolved in KMail 1.10.1.  See bug comments for steps taken [[User:fvilas|fvilas]] 15:54, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|57341}} - Files on IMAP server show flags set correctly using KMail 1.10.1. [[User:fvilas|fvilas]] 16:32, 9 November 2008 (UTC)&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|73215}} - fixed in KDE 4.1.2 and SVN [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|74852} - fixed in SVN [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED"/>
				<updated>2008-11-09T17:05:44Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs to be marked as RESOLVED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs to be marked as RESOLVED===&lt;br /&gt;
Bugs that are no longer reproducible and have been fixed already go into this section. After they are double-checked they can be closed.&lt;br /&gt;
*{{bug|92051}} - Cursor resetting/view scrolling after spell-checking (and correction). works for me. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|92210}} - Message preview empty after receiving a new mail in the same folder. Can't reproduce, never saw this. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92307}} - Sometimes the message gets lost if moving from online imap to local folder, related to attachment-on-demand. Can't reproduce. [[User:Lemma|Lemma]] Closed as it was already confirmed working in 2006.&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80309}} - Bug gone. Does not apply to newer version at all. opensourcecat&amp;lt;/s&amp;gt; Can't reproduce either. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92012}} - Selecting messages in the messagelist using shift+end/shift+home works fine with the new views.&amp;lt;/s&amp;gt; (so obvious I closed right away) [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|116482}} - Can't reproduce that crash. [[User:Dtritscher|dtritscher]] 11:23, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114997}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 11:32, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81561}} - Bug gone. [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|120791}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 13:57, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|123584}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 14:27, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|60138}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:39, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|68976}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:52, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|72310}} - Seems resolved in KMail 1.10.1.  See bug comments for steps taken [[User:fvilas|fvilas]] 15:54, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|57341}} - Files on IMAP server show flags set correctly using KMail 1.10.1. [[User:fvilas|fvilas]] 16:32, 9 November 2008 (UTC)&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|73215}} - fixed in KDE 4.1.2 and SVN [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED"/>
				<updated>2008-11-09T17:05:21Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs to be marked as RESOLVED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs to be marked as RESOLVED===&lt;br /&gt;
Bugs that are no longer reproducible and have been fixed already go into this section. After they are double-checked they can be closed.&lt;br /&gt;
*{{bug|92051}} - Cursor resetting/view scrolling after spell-checking (and correction). works for me. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|92210}} - Message preview empty after receiving a new mail in the same folder. Can't reproduce, never saw this. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92307}} - Sometimes the message gets lost if moving from online imap to local folder, related to attachment-on-demand. Can't reproduce. [[User:Lemma|Lemma]] Closed as it was already confirmed working in 2006.&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80309}} - Bug gone. Does not apply to newer version at all. opensourcecat&amp;lt;/s&amp;gt; Can't reproduce either. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92012}} - Selecting messages in the messagelist using shift+end/shift+home works fine with the new views.&amp;lt;/s&amp;gt; (so obvious I closed right away) [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|116482}} - Can't reproduce that crash. [[User:Dtritscher|dtritscher]] 11:23, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114997}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 11:32, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81561}} - Bug gone. [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|120791}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 13:57, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|123584}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 14:27, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|60138}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:39, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|68976}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:52, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|72310}} - Seems resolved in KMail 1.10.1.  See bug comments for steps taken [[User:fvilas|fvilas]] 15:54, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|57341}} - Files on IMAP server show flags set correctly using KMail 1.10.1. [[User:fvilas|fvilas]] 16:32, 9 November 2008 (UTC)&lt;br /&gt;
&amp;lt;s&amp;gt;*{{bug|73215}} - fixed in KDE 4.1.2 and SVN [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs_to_be_marked_as_RESOLVED"/>
				<updated>2008-11-09T17:04:51Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs to be marked as RESOLVED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs to be marked as RESOLVED===&lt;br /&gt;
Bugs that are no longer reproducible and have been fixed already go into this section. After they are double-checked they can be closed.&lt;br /&gt;
*{{bug|92051}} - Cursor resetting/view scrolling after spell-checking (and correction). works for me. [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|92210}} - Message preview empty after receiving a new mail in the same folder. Can't reproduce, never saw this. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92307}} - Sometimes the message gets lost if moving from online imap to local folder, related to attachment-on-demand. Can't reproduce. [[User:Lemma|Lemma]] Closed as it was already confirmed working in 2006.&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80309}} - Bug gone. Does not apply to newer version at all. opensourcecat&amp;lt;/s&amp;gt; Can't reproduce either. [[User:Lemma|Lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{bug|92012}} - Selecting messages in the messagelist using shift+end/shift+home works fine with the new views.&amp;lt;/s&amp;gt; (so obvious I closed right away) [[User:Lemma|Lemma]]&lt;br /&gt;
*{{bug|116482}} - Can't reproduce that crash. [[User:Dtritscher|dtritscher]] 11:23, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|114997}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 11:32, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|81561}} - Bug gone. [[User:Opensourcecat|Opensourcecat]]&lt;br /&gt;
*{{bug|120791}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 13:57, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|123584}} - Couldn't reproduce with Akregator 1.3.3 [[User:Dtritscher|dtritscher]] 14:27, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|60138}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:39, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|68976}} - Can't reproduce with KMail 1.10.1 [[User:fvilas|fvilas]] 14:52, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|72310}} - Seems resolved in KMail 1.10.1.  See bug comments for steps taken [[User:fvilas|fvilas]] 15:54, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|57341}} - Files on IMAP server show flags set correctly using KMail 1.10.1. [[User:fvilas|fvilas]] 16:32, 9 November 2008 (UTC)&lt;br /&gt;
*{{bug|73215}} - fixed in KDE 4.1.2 and SVN [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2"/>
				<updated>2008-11-09T14:55:05Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* kmail */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This is the page for the triage part of the KDE PIM Bug  Day 2 which takes place on Sunday, November 9th 2008, but feel free to start early. The aim of this bug day is to organize as many of the KDE PIM applications' bugs as possible. Our targets for triage are bugs listed in [http://bugs.kde.org bugs.kde.org] under the products akregator, kaddressbook, kmail, knode, kontact and korganizer.&lt;br /&gt;
&lt;br /&gt;
'''The goal of this bug-day is to check if bugs filed against older version of KDE PIM still apply to the new latest version. If a bug is still reproducible our aim will be to find simple step-by-step solutions and/or testcases so it gets easier for the KDE PIM developers to find and fix those bugs.'''&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
You don't need any programming experience to help out with Triaging, but you will need a recent version of KDE, either svn trunk or the latest release from KDE 4.1.3. Information on setting up KDE from trunk can be [http://techbase.kde.org/Getting_Started/Build/KDE4 found here]. If you're having trouble installing KDE, feel free to drop by on #kde-bugs early to get some help.&lt;br /&gt;
&lt;br /&gt;
==General information==&lt;br /&gt;
* [http://techbase.kde.org/Contribute/Bugsquad This page] has useful information on how to not mis-mark bugs. In particular, &amp;quot;duplicates are hard&amp;quot;. Generally we don't want to claim things are duplicates when they aren't. Make sure you get '''approval from a developer''' before you mark something a duplicate. We don't want to create more work for the developers!&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;
==Preparations==&lt;br /&gt;
First of all, put your name and the version of KDE PIM you are testing with into the Sign-in section. Then read the descriptions of the various sections to file bugs in carefully.&lt;br /&gt;
&lt;br /&gt;
==Workflow==&lt;br /&gt;
# Select one of the batches of bugs you'd like to do and pick it by putting your name into the appropriate column.&lt;br /&gt;
# Execute the query to get the list of bugs and go through the bugs one by one.&lt;br /&gt;
## Read the bug description and the comments carefully and try to reproduce the bug.&lt;br /&gt;
## Post a comment on bugzilla explaining what you found out. Be sure to also put the version of KDE PIM you are testing with in the comment.&lt;br /&gt;
## Put the bug into the appropriate section and describe your findings here as well (eg. &amp;quot;Can't reproduce any longer&amp;quot; or &amp;quot;This bug is still reproducible for me&amp;quot;). If there's something special about a bug, you can prepend a little label like eg. '''crash'''. Please mark every bug with your IRC nickname. You can easily do that by appending &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
## Check if the bug's Version field is set properly. If not do one of the following:&lt;br /&gt;
### If the bug is reproducible, set the version field to the version of KDE PIM you are triaging with.&lt;br /&gt;
### If the bug is not reproducible, set the version field to the version the bug was reported with.&lt;br /&gt;
## Check if the bug's product and component are appropriate. Don't forget to look at the application specific hints. If the bug's product/component needs to be changed but you lack permissions, put it in the &amp;quot;Needs product/component change&amp;quot; section.&lt;br /&gt;
## If you lack bugzilla permissions to change the version field, additionally file the bug in the &amp;quot;needs version field change&amp;quot; section. Never change a version if it has already been set to a number!&lt;br /&gt;
## Mark the bug as triaged by adding the '''triaged''' keyword on the bug. Again if you lack the permissions to do so, additionally put it in the &amp;quot;Needs triaged keyword&amp;quot; section.&lt;br /&gt;
# If you're done with your batch, pick another one and start from the top :-)&lt;br /&gt;
&lt;br /&gt;
===Testcases===&lt;br /&gt;
Some bugs might have documents that expose the bugs attached, for some bugs you might be able to create documents that show the buggy behaviour. In both cases we have to add the '''testcase''' keyword. If you lack permissions to do so, additionally add the bug to the &amp;quot;Needs testcase keyword&amp;quot; section.&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 feature doesn't work, that is important. Let's keep track of them. &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 use the tag &amp;amp;lt;s&amp;amp;gt;...&amp;amp;lt;/s&amp;amp;gt; to mark a bug as done &amp;lt;s&amp;gt;like this&amp;lt;/s&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Hints==&lt;br /&gt;
* You can edit single sections of this page if you you check '''Enable section editing via edit links''' in your [[Special:Preferences|TechBase Preferences]].&lt;br /&gt;
* Sometimes you might encounter '''edit conflicts''' if several people are working on the wiki page at once. We can mostly avoid those by keeping notes of the bugs we encounter in a text editor and file several of them later at once (don't forget to save).&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;
==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 (or just beta2 if you're using that):&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KDE PIM version used for testing&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Lemma|Lemma]]||svn trunk r881868 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:jtamate|jtamate]]|| opensuse 4.1.72 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]||svn trunk r881890||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:opensourcecat|opensourcecat]]||svn trunk r881888||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Dtritscher|dtritscher]]||Kubuntu 4.1.3||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]||svn trunk kdepim 881804||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Krop|Krop]]||svn trunk kdepim 881888||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gkiagia|gkiagia]]||svn trunk r881933||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:katastrophe|katastrophe]]||svn trunk 881393||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:fvilas|fvilas]]||Slackware 4.1.2||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Division of Labour==&lt;br /&gt;
Please choose a batch that is not already taken and then query bugs.kde.org for all bugs in that batch. 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;
If you have to leave before you can finish your batch, please put the last bug you triaged as well as if you're going to finish triaging in the table so others will know where you left off.&lt;br /&gt;
&lt;br /&gt;
The bugs presented on this page are only a selection of the bugs that need triaging. If you run out of bugs to do, please tell on IRC and we'll provide new batches.&lt;br /&gt;
&lt;br /&gt;
{{Warning| With these more recent bugs, if the report has been looked at by a developer (i.e. they cc'd themself or commented on it or posted a patch), and it seems like the issue is fixed, BUT the developer didn't close it, make sure the bug really can be closed. Often it can't.}}&lt;br /&gt;
&lt;br /&gt;
===kmail===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kmail is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
Additional information:&lt;br /&gt;
* KMail just added the new folder- and messagelist developed in one of this year's SoC project. If you find any bugs related to those lists, please let someone with a recent build of trunk who has the new views triage the bug.&lt;br /&gt;
::A list of known bugs of the SoC project can be found [[Projects/PIM/KMail_SoC_regressions|here]]. However, new bugs should not be reported there, they should go to bugzilla.&lt;br /&gt;
::Bug reports about the new message list or the new folder tree should be changed to the &amp;quot;new message list&amp;quot; or &amp;quot;new folder tree&amp;quot; component. When changing the component, please also reassign to the owner of the component, which is not kdepim-bugs but the SoC student.&lt;br /&gt;
::You need the newest version of qt-copy, otherwise you'll get random crashes, see [http://bugs.kde.org/show_bug.cgi?id=174065 bug 174065].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || [[User:Lemma|Lemma]] || done ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=91776&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=92308 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || [[User:Lemma|Lemma]] || starting ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=37306&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=57193 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || [[User:fvilas|fvilas]] || starting ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=57340&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=72311 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || [[User:JLP|JLP]] || starting ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=73214&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=77059 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=77087&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=78750 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 6 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=79167&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=80177 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 7 || 10 ||[[User:opensourcecat|opensourcecat]]||done||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=80308&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=83415 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=83486&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=84687 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=84946&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=86157 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 || [[User:Krop|krop]] || starting ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=86521&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=87932 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 11 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=88038&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=88950 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 12 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89045&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=89879 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 13 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=90091&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=90962 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 14 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=91047&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=91706 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===korganizer===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for korganizer is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || katastrophe || starting || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=32042&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=77072 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=78802&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=86096 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89418&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=93810 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=94101&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=98813 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=98998&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=102873 Query]                                                                                                                               &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 6 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=103095&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=106946 Query]                                                                                                                              &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 7 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=107003&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=108921 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=109158&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=110558 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=110648&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=112210 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=112234&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=114187 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===akregator===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for akregator is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=%255BBug+creation%255D&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || [[User:jtamate|jtamate]] || only one done || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=96796&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=111548 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || [[User:Dtritscher|dtritscher]] || done || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=111907&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=118485 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || [[User:Dtritscher|dtritscher]] || done || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=118907&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=123585 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=124052&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=129112 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=130697&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=136367 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===kaddressbook===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kaddressbook is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=68324&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=126850 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=127107&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=133381 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=133444&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=138679 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=138908&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=145272 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=145324&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=147917 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===knode===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for knode is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=33035&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=62537 Query]                                                                                                                                      &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=63888&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=73813 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=73851&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=78190 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=79057&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=88287 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89489&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=95917 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===kontact===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kontact is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=92813&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=114014 Query]                                                                                                                                  &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=114651&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=129258 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=129469&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=137106 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=137327&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=139740 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=139974&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=142657 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Bugs that need changes that require permissions ==&lt;br /&gt;
If you put a bug into this section, please be sure you additionally put it into the appropriate '''Completed Bugs''' section.&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as TRIAGED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as TESTCASE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing version field changed}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing productcomponent changed}}&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;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with test-cases}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with step-by-step instructions}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as INVALID}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as DUPLICATE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that should be WISHES}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing users with particular setups}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Non english locales}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing attention from KDEPim developers}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs awaiting feedback}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that you cant do}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/High profile}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs not related to KDEPim}}&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2</id>
		<title>Contribute/Bugsquad/BugDays/KDEPimDay2</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KDEPimDay2"/>
				<updated>2008-11-09T09:48:17Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Sign-in */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
&lt;br /&gt;
This is the page for the triage part of the KDE PIM Bug  Day 2 which takes place on Sunday, November 9th 2008, but feel free to start early. The aim of this bug day is to organize as many of the KDE PIM applications' bugs as possible. Our targets for triage are bugs listed in [http://bugs.kde.org bugs.kde.org] under the products akregator, kaddressbook, kmail, knode, kontact and korganizer.&lt;br /&gt;
&lt;br /&gt;
'''The goal of this bug-day is to check if bugs filed against older version of KDE PIM still apply to the new latest version. If a bug is still reproducible our aim will be to find simple step-by-step solutions and/or testcases so it gets easier for the KDE PIM developers to find and fix those bugs.'''&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
You don't need any programming experience to help out with Triaging, but you will need a recent version of KDE, either svn trunk or the latest release from KDE 4.1.3. Information on setting up KDE from trunk can be [http://techbase.kde.org/Getting_Started/Build/KDE4 found here]. If you're having trouble installing KDE, feel free to drop by on #kde-bugs early to get some help.&lt;br /&gt;
&lt;br /&gt;
==General information==&lt;br /&gt;
* [http://techbase.kde.org/Contribute/Bugsquad This page] has useful information on how to not mis-mark bugs. In particular, &amp;quot;duplicates are hard&amp;quot;. Generally we don't want to claim things are duplicates when they aren't. Make sure you get '''approval from a developer''' before you mark something a duplicate. We don't want to create more work for the developers!&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;
==Preparations==&lt;br /&gt;
First of all, put your name and the version of KDE PIM you are testing with into the Sign-in section. Then read the descriptions of the various sections to file bugs in carefully.&lt;br /&gt;
&lt;br /&gt;
==Workflow==&lt;br /&gt;
# Select one of the batches of bugs you'd like to do and pick it by putting your name into the appropriate column.&lt;br /&gt;
# Execute the query to get the list of bugs and go through the bugs one by one.&lt;br /&gt;
## Read the bug description and the comments carefully and try to reproduce the bug.&lt;br /&gt;
## Post a comment on bugzilla explaining what you found out. Be sure to also put the version of KDE PIM you are testing with in the comment.&lt;br /&gt;
## Put the bug into the appropriate section and describe your findings here as well (eg. &amp;quot;Can't reproduce any longer&amp;quot; or &amp;quot;This bug is still reproducible for me&amp;quot;). If there's something special about a bug, you can prepend a little label like eg. '''crash'''. Please mark every bug with your IRC nickname. You can easily do that by appending &amp;lt;nowiki&amp;gt;~~~&amp;lt;/nowiki&amp;gt;.&lt;br /&gt;
## Check if the bug's Version field is set properly. If not do one of the following:&lt;br /&gt;
### If the bug is reproducible, set the version field to the version of KDE PIM you are triaging with.&lt;br /&gt;
### If the bug is not reproducible, set the version field to the version the bug was reported with.&lt;br /&gt;
## Check if the bug's product and component are appropriate. Don't forget to look at the application specific hints. If the bug's product/component needs to be changed but you lack permissions, put it in the &amp;quot;Needs product/component change&amp;quot; section.&lt;br /&gt;
## If you lack bugzilla permissions to change the version field, additionally file the bug in the &amp;quot;needs version field change&amp;quot; section. Never change a version if it has already been set to a number!&lt;br /&gt;
## Mark the bug as triaged by adding the '''triaged''' keyword on the bug. Again if you lack the permissions to do so, additionally put it in the &amp;quot;Needs triaged keyword&amp;quot; section.&lt;br /&gt;
# If you're done with your batch, pick another one and start from the top :-)&lt;br /&gt;
&lt;br /&gt;
===Testcases===&lt;br /&gt;
Some bugs might have documents that expose the bugs attached, for some bugs you might be able to create documents that show the buggy behaviour. In both cases we have to add the '''testcase''' keyword. If you lack permissions to do so, additionally add the bug to the &amp;quot;Needs testcase keyword&amp;quot; section.&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 feature doesn't work, that is important. Let's keep track of them. &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 use the tag &amp;amp;lt;s&amp;amp;gt;...&amp;amp;lt;/s&amp;amp;gt; to mark a bug as done &amp;lt;s&amp;gt;like this&amp;lt;/s&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
==Hints==&lt;br /&gt;
* You can edit single sections of this page if you you check '''Enable section editing via edit links''' in your [[Special:Preferences|TechBase Preferences]].&lt;br /&gt;
* Sometimes you might encounter '''edit conflicts''' if several people are working on the wiki page at once. We can mostly avoid those by keeping notes of the bugs we encounter in a text editor and file several of them later at once (don't forget to save).&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;
==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 (or just beta2 if you're using that):&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!IRC Nickname !! KDE PIM version used for testing&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Lemma|Lemma]]||svn trunk r881868 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:jtamate|jtamate]]|| opensuse 4.1.72 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]||svn trunk r881890||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Division of Labour==&lt;br /&gt;
Please choose a batch that is not already taken and then query bugs.kde.org for all bugs in that batch. 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;
If you have to leave before you can finish your batch, please put the last bug you triaged as well as if you're going to finish triaging in the table so others will know where you left off.&lt;br /&gt;
&lt;br /&gt;
The bugs presented on this page are only a selection of the bugs that need triaging. If you run out of bugs to do, please tell on IRC and we'll provide new batches.&lt;br /&gt;
&lt;br /&gt;
{{Warning| With these more recent bugs, if the report has been looked at by a developer (i.e. they cc'd themself or commented on it or posted a patch), and it seems like the issue is fixed, BUT the developer didn't close it, make sure the bug really can be closed. Often it can't.}}&lt;br /&gt;
&lt;br /&gt;
===kmail===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kmail is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
Additional information:&lt;br /&gt;
* KMail just added the new folder- and messagelist developed in one of this year's SoC project. If you find any bugs related to those lists, please let someone with a recent build of trunk who has the new views triage the bug.&lt;br /&gt;
::A list of known bugs of the SoC project can be found [[Projects/PIM/KMail_SoC_regressions|here]]. However, new bugs should not be reported there, they should go to bugzilla.&lt;br /&gt;
::Bug reports about the new message list or the new folder tree should be changed to the &amp;quot;new message list&amp;quot; or &amp;quot;new folder tree&amp;quot; component. When changing the component, please also reassign to the owner of the component, which is not kdepim-bugs but the SoC student.&lt;br /&gt;
::You need the newest version of qt-copy, otherwise you'll get random crashes, see [http://bugs.kde.org/show_bug.cgi?id=174065 bug 174065].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || [[User:Lemma|Lemma]] || starting ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=91776&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=92308 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=37306&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=57193 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=57340&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=72311 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=73214&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=77059 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=77087&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=78750 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 6 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=79167&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=80177 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 7 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=80308&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=83415 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=83486&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=84687 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=84946&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=86157 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=86521&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=87932 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 11 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=88038&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=88950 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 12 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89045&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=89879 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 13 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=90091&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=90962 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 14 || 10 || || ||  [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kmail&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=91047&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=91706 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===korganizer===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for korganizer is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=32042&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=77072 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=78802&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=86096 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89418&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=93810 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=94101&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=98813 Query]                                                                                                                                &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=98998&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=102873 Query]                                                                                                                               &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 6 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=103095&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=106946 Query]                                                                                                                              &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 7 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=107003&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=108921 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 8 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=109158&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=110558 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 9 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=110648&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=112210 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 10 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=korganizer&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=112234&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=114187 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===akregator===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for akregator is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=%255BBug+creation%255D&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || [[User:jtamate|jtamate]] || working || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=96796&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=111548 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=111907&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=118485 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=118907&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=123585 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=124052&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=129112 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=akregator&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=130697&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=136367 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===kaddressbook===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kaddressbook is [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=noop&amp;amp;type0-0-0=noop&amp;amp;value0-0-0= this one].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-&lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=68324&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=126850 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=127107&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=133381 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=133444&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=138679 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=138908&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=145272 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kaddressbook&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Reuse+same+sort+as+last+time&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=145324&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=147917 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===knode===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for knode is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=33035&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=62537 Query]                                                                                                                                      &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=63888&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=73813 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=73851&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=78190 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=79057&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=88287 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [http://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=knode&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=89489&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=95917 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===kontact===&lt;br /&gt;
&lt;br /&gt;
Information mostly for people organizing:&lt;br /&gt;
* The template query for kontact is [ this one].&lt;br /&gt;
* Check for [ untriaged bugs].&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Batch !! No of bugs !! IRC Nickname !! Status !! Query&lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 1 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=92813&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=114014 Query]                                                                                                                                  &lt;br /&gt;
|-                                                                                                                                                                                        &lt;br /&gt;
| 2 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=114651&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=129258 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 3 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=129469&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=137106 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 4 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=137327&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=139740 Query]&lt;br /&gt;
|-&lt;br /&gt;
| 5 || 10 || || || [https://bugs.kde.org/buglist.cgi?query_format=advanced&amp;amp;short_desc_type=allwordssubstr&amp;amp;short_desc=&amp;amp;product=kontact&amp;amp;long_desc_type=substring&amp;amp;long_desc=&amp;amp;bug_file_loc_type=allwordssubstr&amp;amp;bug_file_loc=&amp;amp;keywords_type=nowords&amp;amp;keywords=triaged&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;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;bugidtype=include&amp;amp;bug_id=&amp;amp;votes=&amp;amp;chfieldfrom=&amp;amp;chfieldto=Now&amp;amp;chfieldvalue=&amp;amp;cmdtype=doit&amp;amp;order=Bug+Number&amp;amp;field0-0-0=bug_id&amp;amp;type0-0-0=greaterthan&amp;amp;value0-0-0=139974&amp;amp;field0-1-0=bug_id&amp;amp;type0-1-0=lessthan&amp;amp;value0-1-0=142657 Query]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Bugs that need changes that require permissions ==&lt;br /&gt;
If you put a bug into this section, please be sure you additionally put it into the appropriate '''Completed Bugs''' section.&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as TRIAGED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as TESTCASE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing version field changed}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing productcomponent changed}}&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;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as RESOLVED}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with test-cases}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs with step-by-step instructions}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as INVALID}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs to be marked as DUPLICATE}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that should be WISHES}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing users with particular setups}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Non english locales}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs needing attention from KDEPim developers}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs awaiting feedback}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs that you cant do}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/High profile}}&lt;br /&gt;
&lt;br /&gt;
{{:Contribute/Bugsquad/BugDays/KDEPimDay2/Bugs not related to KDEPim}}&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay1/Bugs_to_be_marked_as_RESOLVED</id>
		<title>Contribute/Bugsquad/BugDays/KOfficeDay1/Bugs to be marked as RESOLVED</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KOfficeDay1/Bugs_to_be_marked_as_RESOLVED"/>
				<updated>2008-10-27T13:12:01Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs to be marked as RESOLVED */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs to be marked as RESOLVED===&lt;br /&gt;
Bugs that are no longer reproducible and have been fixed already go into this section. After they are double-checked they can be closed.&lt;br /&gt;
&lt;br /&gt;
* {{Bug|157379}} - koffice 2 alpha 6 keyboard shortcut ctrl-shift-f doesn't go to fullscreen [[User:Hum|Hum]]&lt;br /&gt;
* {{Bug|158995}} - Kword won't continue highlighting to the next page in document [[User:Hum|Hum]]&lt;br /&gt;
* {{Bug|158996}} - kword won't let me highlight and copy out of to paste into any other programs. [[User:Hum|Hum]] 2008-10-26 21:43:12&lt;br /&gt;
* {{Bug|158723}} - Crash in KWView::selectionChanged while futzing around with flakes. [[User:Hum|Hum]] 2008-10-26 20:55:50&lt;br /&gt;
* {{Bug|148274}} - The dialog is completly redesigned and should fit on any screen now. [[User:Dtritscher|dtritscher]] 10:25, 26 October 2008 (UTC)&lt;br /&gt;
* {{Bug|147888}} - Settings are loaded fine in Beta2 [[User:Dtritscher|dtritscher]] 10:37, 26 October 2008 (UTC)&lt;br /&gt;
* {{Bug|148122}} - Fixed in 2.0beta2 [[User:Dtritscher|dtritscher]] 10:46, 26 October 2008 (UTC)&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|127907}} - the cimg restoration doesn't work yet (still needs to be fixed according to cmake). [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** WONTFIX by boud as the filter will is too high maintenance to be kept currently.&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|128632}} - can't find screenshot tool. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** WONTFIX by boud as the screenshot tool will not return in Krita2.&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|127443}} - unsure, looks fixed but Boudewijn should know best. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** FIXED&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|136103}} - infinite loop on corrupted icm profile. can't reproduce any longer. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** FIXED&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|137239}} - could be WONTFIXED as the preview mentioned is not coming back for Krita2. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt; WONTFIX&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|140794}} - Opening a specific .ps file crashes krita. No longer reproducible. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt; FIXED&lt;br /&gt;
* {{Bug|142846}} - Mouse wheel should scroll, not zoom by default. Already implemented. [[User:Lemma|Lemma]]&lt;br /&gt;
* {{Bug|161469}} - No crash with 2.0beta2 [[User:Dtritscher|dtritscher]] 13:21, 26 October 2008 (UTC)&lt;br /&gt;
* {{Bug|38715}} - Proposed a simple patch to fix this issue, not applied yet. [[User:Lemma|Lemma]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|108053}} - Left open by accident. [[User:Lemma|Lemma]]&amp;lt;/s&amp;gt; WONTFIX&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|162876}} - Works fine here. [[User:Dtritscher|dtritscher]] 15:30, 26 October 2008 (UTC)&amp;lt;/s&amp;gt; WORKSFORME&lt;br /&gt;
* {{Bug|164625}} - Works fine here. [[User:Dtritscher|dtritscher]] 15:45, 26 October 2008 (UTC)&lt;br /&gt;
** Reopened, it doesn't crash but the layer isn't removed on undo [[User:Slangkamp|Slangkamp]]&lt;br /&gt;
* {{Bug|158429}} - Works fine here. [[User:Dtritscher|dtritscher]] 15:51, 26 October 2008 (UTC)&lt;br /&gt;
* {{Bug|169736}} - Works fine here. [[User:Dtritscher|dtritscher]] 17:12, 26 October 2008 (UTC)&lt;br /&gt;
* &amp;lt;s&amp;gt;{{bug|156839}} - unable to reproduce [[User:M4v|m4v]]&amp;lt;/s&amp;gt; FIXED by Boud&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|159624}} - highlighting works fine [[User:Gkiagia|gkiagia]]&amp;lt;/s&amp;gt; FIXED by TZander&lt;br /&gt;
* {{Bug|167007}} - I have played with the paragraph tool and i have not been able to reproduce any crash. [[User:Med|Med]]&lt;br /&gt;
* {{Bug|167101}} - I have been unable to reproduce the crash. [[User:Med|Med]]&lt;br /&gt;
* {{Bug|167492}} - I have been unable to reproduce the bug. [[User:Med|Med]]&lt;br /&gt;
* {{Bug|161678}} - Using dbus, it works fine [[User:Gkiagia|gkiagia]]&lt;br /&gt;
* {{Bug|161762}} - Can't reproduce that [[User:Gkiagia|gkiagia]]&lt;br /&gt;
*{{bug|171818}} - can't reproduce, reporter says it so as well. [[User:M4v|m4v]]&lt;br /&gt;
*{{bug|172593}} - unable to reproduce, either beta2 or 1.6.3. [[User:M4v|m4v]]&lt;br /&gt;
*{{Bug|122604}} - works for me [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{bug|172646}} - seems fixed in trunk. [[User:M4v|m4v]]&lt;br /&gt;
*{{bug|104968}} - checked with Slovenian locale, seems fixed in trunk [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Further_Information</id>
		<title>Development/Further Information</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Further_Information"/>
				<updated>2008-06-08T14:57:49Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* English */ PDF of C++ GUI Programming with Qt 4, 1st edition is available for free download&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:I18n/Language Navigation Bar|Development/Further Information}}&lt;br /&gt;
== Web Sites ==&lt;br /&gt;
* [http://www.KDE.org KDE Home]&lt;br /&gt;
* [http://dot.kde.org KDE Dot News]&lt;br /&gt;
* [http://www.planetkde.org Planet KDE]&lt;br /&gt;
&lt;br /&gt;
==Blogs==&lt;br /&gt;
&lt;br /&gt;
== Books ==&lt;br /&gt;
Below are a list of books associated with KDE 4 development.  These may be specific to applications, using the Qt Toolkit, or specifically KDE 4 books.&lt;br /&gt;
&lt;br /&gt;
===KDE 4 Development Books===&lt;br /&gt;
&lt;br /&gt;
[mailto:manishchaks@gmail.com Manish Chakravarty ] from [http://kde.in KDE India] is working on a KDE 4 programming book. &lt;br /&gt;
The scheduled release date is the the 15th of August 2007&lt;br /&gt;
&lt;br /&gt;
===Qt 4 Development Books===&lt;br /&gt;
&lt;br /&gt;
==== English ====&lt;br /&gt;
&lt;br /&gt;
'''[http://www.qt4-book.com/ The Book of Qt 4: The Art of Building Qt Applications] by Daniel Molkentin'''&lt;br /&gt;
&lt;br /&gt;
Daniel Molkentin, author of this book, is a core developer of KDE. He uses practical examples to explain Qt characteristics like the signal slot concept and its event system. He guides the reader through developing applications both with and without Qt's graphical GUI builder &amp;quot;Qt Designer.&amp;quot; Topics covered include: tools needed to create dialog boxes; steps to follow when developing a GUI-based application; layout; how to visualize data using Qt's &amp;quot;model-view concept&amp;quot;; the QtSql model; the graphics library; as well as how to work with XML, databases, threads, and debugging. The book also includes lots of useful hints on how to use Qt's own datatypes, containers and algorithms and how to develop user-friendly applications.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/Book-Qt-Art-Building-Applications/dp/1593271476 Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.apress.com/book/view/1590598318 Foundations of Qt Development] by Johan Thelin'''&lt;br /&gt;
&lt;br /&gt;
'''[http://www.phptr.com/bookstore/product.asp?isbn=0131879057&amp;amp;rl=1 An Introduction to Design Patterns in C++ with Qt 4] by Alan Ezust, Paul Ezust'''&lt;br /&gt;
&lt;br /&gt;
Now, with the help of An Introduction to Design Patterns in C++ with Qt 4.1, you can master C++ and design patterns together, using the world's #1 open source framework for cross-platform development: Qt 4.1. This complete tutorial and reference assumes no previous knowledge of C, C++, objects, or patterns. You'll walk through every core concept, one step at a time, learning through an extensive collection of Qt 4.1-tested examples and exercises. Learn objects fast: classes, inheritance, polymorphism, and more. Master powerful design patterns, from Iterator and Visitor to Abstract Factory and Facade. Discover efficient high-level programming techniques utilizing libraries, generics, and containers. Build graphical applications using Qt widgets, models, and views.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0131879057 Amazon]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available on-line at [http://cartan.cas.suffolk.edu/moin/OopDocbook?page=index.html Suffolk University] (free registration required)&lt;br /&gt;
&lt;br /&gt;
'''[http://www.phptr.com/bookstore/product.asp?isbn=0131872494&amp;amp;rl=1 C++ GUI Programming with Qt 4] by Jasmin Blanchette, Mark Summerfield'''&lt;br /&gt;
&lt;br /&gt;
The only official best-practice guide to Qt 4.1 Programming. Using C++ GUI Programming with Qt 4 you'll discover the most effective Qt 4 programming patterns and techniques as you master key technologies ranging from Qt's model/view architecture to Qt's powerful new 2D paint engine. The authors provide readers with unparalleled insight into Qt's event model and layout system. Then, using realistic examples, they introduce superior techniques for everything from basic GUI development to advanced database and XML integration.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0131872494 Amazon]&lt;br /&gt;
&lt;br /&gt;
Free download is available from [http://www.qtrac.eu/C++-GUI-Programming-with-Qt-4-1st-ed.zip Mark Summerfield's web page] (ZIP with PDF, 5.5 MiB)&lt;br /&gt;
&lt;br /&gt;
'''[http://phptr.com/title/0131240722 C++ GUI Programming with Qt 3]'''&lt;br /&gt;
&lt;br /&gt;
The first official Trolltech guide to Qt 3.2 programming written by Trolltech software engineer Jasmin Blanchette and Trolltech's documentation manager Mark Summerfield, with a foreword by Matthias Ettrich, Trolltech lead developer and founder of the KDE project. The book teaches every facet of Qt 3 programming, ranging from basic user interfaces and layout managers to 2D/3D graphics, drag-and-drop, signaling, networking, XML, database integration, even internationalization and multithreading. The book in PDF format and sources can be downloaded from linked publisher's page.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0131240722 Amazon]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Available on-line at: [http://www.phptr.com/content/images/0131240722/downloads/blanchette_book.pdf Prentice-Hall] (free PDF download)&lt;br /&gt;
&lt;br /&gt;
'''[http://www.pragmaticprogrammer.com/titles/ctrubyqt/ Rapid GUI Development with QtRuby]'''&lt;br /&gt;
&lt;br /&gt;
See how to use the powerful Qt3 library to create cross-platform GUI applications for Linux and OS X in Ruby. Covers installation, basic and advanced programming, event models, and Korundum. A must if you want to develop software with QtRuby/Korundum.&lt;br /&gt;
&lt;br /&gt;
'''[http://www.charlesriver.com/Books/BookDetail.aspx?productID=114877 Open Source Game Development: Qt Games for KDE, PDA's, and Windows]'''&lt;br /&gt;
&lt;br /&gt;
This book provides beginning and intermediate game programmers with a step-by-step resource to desktop game programming. The reader is introdcuded into the development of a desktop game application using Qt3/Qt4/Qtopia/KDE as development platform. Desktop game relevant topics such as pathfinding, AI, sound, 2D and 3D graphics and network programming are introduced in the scope of Qt and KDE. All topics are accompanied by plenty of source code examples in the book and on the companion CD-ROM.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/1584504064 Amazon]&lt;br /&gt;
&lt;br /&gt;
==== German ====&lt;br /&gt;
&lt;br /&gt;
[https://www.opensourcepress.de/index.php?26&amp;amp;backPID=15&amp;amp;tt_products=23 Qt 4: Einführung in die Applikationsentwicklung von Daniel Molkentin]&lt;br /&gt;
&lt;br /&gt;
===C++ Programming Books===&lt;br /&gt;
&lt;br /&gt;
==== English ====&lt;br /&gt;
&lt;br /&gt;
'''A Complete Guide to Programming in C++'''&lt;br /&gt;
&lt;br /&gt;
Suited for both complete novices and advanced users of C++. Takes a clear and logical approach using uncluttered English and purposeful examples. With examples and website content, it represents great value for the money and is highly recommended as both a tutorial for students and newcomers to C++ and a dip-in guide for more advanced practitioners. This book teaches you the C++ STL in a natural way while learning C++, while many others relegate the STL to an appendix.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/gp/product/0763718173 Amazon]&lt;br /&gt;
&lt;br /&gt;
'''Problem Solving, Abstraction, and Design Using C++'''&lt;br /&gt;
&lt;br /&gt;
This book presents introductory programming material. Only the features of C++ that are appropriate to introductory concepts are introduced. Object-oriented concepts are presented. Abstraction is stressed throughout the book and pointers are presented in a gradual and gentle fashion for easier learning.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/0201612771/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html Thinking in C++]'''&lt;br /&gt;
&lt;br /&gt;
The effective presentation, along with dozens of helpful code examples, make this book a standout. The text first sets the stage for using C++ with a tour of what object-oriented programming is all about, as well as the software design life cycle. The author then delves into every aspect of C++, from basic keywords and programming principles to more advanced topics, like function and operator overloading, virtual inheritance, exception handling, namespaces, and templates. C++ is a complex language, and the author covers a lot of ground using today's Standard C++, but without getting bogged down in excessive detail.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ISBN=0139798099/ Amazon]&amp;lt;br /&amp;gt;&lt;br /&gt;
Available via: [http://www1.fatbrain.com/FindItNow/Services/home.cl?from=YGY567&amp;amp;store=1 Fatbrain]&lt;br /&gt;
&lt;br /&gt;
'''Accelerated C++: Practical Programming by Example'''&lt;br /&gt;
&lt;br /&gt;
If you don't have a lot of time, but still want to learn the latest in C++, you don't have to learn C first. You might learn more by digging into current language features and classes from the very beginning. That's the approach that's offered by Accelerated C++, a text that delves into more advanced C++ features like templates and Standard Template Library (STL) collection classes early on. This book arguably can get a motivated beginning programmer into C++ more quickly than other available tutorials.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/020170353X/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''Effective C++: 50 Specific Ways to Improve Your Programs and Design'''&lt;br /&gt;
&lt;br /&gt;
Highly recommended by KDE core developers! It is not a book on syntax, so this should not be the 1st C++ book that you read -- but it should *definitely* be the 2nd! An absolutely terrific book focusing on basic C++ and object-oriented programming techniques. A crucial book for anyone new to C++ to read.&lt;br /&gt;
&lt;br /&gt;
2nd Edition Available via: [http://www.amazon.com/exec/obidos/ASIN/0201924889/ Amazon]&amp;lt;br /&amp;gt; &lt;br /&gt;
3rd Edition Available via: [http://www.amazon.com/exec/obidos/ASIN/0321334876/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''More Effective C++: 35 New Ways to Improve Your Programs and Designs''' &lt;br /&gt;
&lt;br /&gt;
From the author of the indispensable Effective C++, here are 35 new ways to improve your programs and designs. Drawing on years of experience, Meyers explains how to write software that is more effective: more efficient, more robust, more consistent, more portable, and more reusable. In short, how to write C++ software that's just plain better. For programmers at the intermediate level and above.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/020163371X/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''C++ FAQs''' &lt;br /&gt;
&lt;br /&gt;
This book answers all the questions one can imagine about C++. The author explains the reasoning and principals behind good OO design in a simple and well informed manner. See also the free online [http://www.parashift.com/c++-faq-lite/ C++ FAQ LITE]. If you like the online lite version, you will be ecstatic about the printed book version because it covers much more.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/0201589583/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''[http://www.icce.rug.nl/documents/cplusplus/cplusplus.html C++ Annotations]'''&lt;br /&gt;
&lt;br /&gt;
This online book is intended for knowledgeable users of C who would like to make the transition to C++. It is a guide for C++ programming courses given at the University of Groningen, Netherlands. As such, the book is not a complete C++ handbook. Rather, it serves as an addition to other documentation sources.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/020163371X/ Amazon]&lt;br /&gt;
&lt;br /&gt;
'''The C++ Programming Language'''&lt;br /&gt;
&lt;br /&gt;
By Bjarne Stroustrup, the creator of C++. This book is not for people who do not have programming experience in C++ already. This is not a ground up tutorial on how to program in C++, and it is not a fast read. What this book is, however, is probably the best reference book on C++ in existance.&lt;br /&gt;
&lt;br /&gt;
Available via: [http://www.amazon.com/exec/obidos/ASIN/0201700735/ Amazon]&lt;br /&gt;
&lt;br /&gt;
===Other Books===&lt;br /&gt;
&lt;br /&gt;
'''[http://doc.trolltech.com/guibooks.html Books on GUI design]'''&lt;br /&gt;
&lt;br /&gt;
Trolltech's recommendations of books about GUI design.&lt;br /&gt;
&lt;br /&gt;
===Historic===&lt;br /&gt;
'''[http://developer.kde.org/documentation/books/kde-2.0-development/index.html KDE 2.0 Development]'''&lt;br /&gt;
&lt;br /&gt;
A 540 page book available online and in print. Covers KParts, DCOP, aRts, KDevelop, licensing, introductory programming, and other topics. The [http://kde20development.andamooka.org support site] has the full text in various formats along with community annotation and discussion of KDE development. This book is as close to an Official Book by the KDE Project as possible. All authors and technical editors are KDE developers.&lt;br /&gt;
&lt;br /&gt;
== IRC Channels ==&lt;br /&gt;
In general, IRC channels mentioned here are available on FreeNode. Connect to irc.kde.org, and check these channels out for further information.&lt;br /&gt;
&lt;br /&gt;
*KDE User Channel - [irc://irc.kde.org:6667/kde #kde]&lt;br /&gt;
*KDE Development - [irc://irc.kde.org:6667/kde-devel #kde-devel]&lt;br /&gt;
*Phonon - [irc://irc.kde.org:6667/phonon #phonon]&lt;br /&gt;
*Decibel - [irc://irc.kde.org:6667/decibel #decibel]&lt;br /&gt;
*Solid - [irc://irc.kde.org:6667/solid #solid]&lt;br /&gt;
*Plasma - [irc://irc.kde.org:6667/plasma #plasma]&lt;br /&gt;
*KDE EDU - [irc://irc.kde.org:6667/kdeedu #kdeedu]&lt;br /&gt;
*KDE Games - [irc://irc.kde.org:6667/kdegames #kdegames]&lt;br /&gt;
*KDE PIM - [irc://irc.kde.org:6667/kontact #kontact]&lt;br /&gt;
*KDevelop IDE - [irc://irc.kde.org:6667/kdevelop #kdevelop]&lt;br /&gt;
*Amarok - [irc://irc.kde.org:6667/kdevelop #amarok]&lt;br /&gt;
&lt;br /&gt;
== Newsgroups ==&lt;br /&gt;
== Forums ==&lt;br /&gt;
== Events ==&lt;br /&gt;
== Courses and Certifications ==&lt;br /&gt;
== Audio and Video Casts ==&lt;br /&gt;
== Source Code Repositories ==&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Projects/Documentation/KDE4</id>
		<title>Projects/Documentation/KDE4</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Projects/Documentation/KDE4"/>
				<updated>2008-05-27T11:36:44Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Step */ Adding myself for Object Info documentation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= KDE 4 Documentation Tasks =&lt;br /&gt;
The following task list is broken down by experience as closely as possible. It is recommended that you join #kde-docs on IRC (Freenode) and coordinate with the other members as to not create any problems or duplicate work. Currently the channel is quite slow and quiet.&lt;br /&gt;
&lt;br /&gt;
If you choose to work on any of the following documents, please add your name, IRC name, and email address for communication purposes.&lt;br /&gt;
&lt;br /&gt;
If you haven't yet subscribed to the KDE Documentation mailing list, please do so now at https://mail.kde.org/mailman/listinfo/kde-doc-english and say hello. Maybe provide a little bit of information as well as your experience.&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' Please use the [[#EBN|English Breakfast Network]] while working on documentation.&lt;br /&gt;
&lt;br /&gt;
== Beginner ==&lt;br /&gt;
=== EBN ===&lt;br /&gt;
EBN, or the [http://www.englishbreakfastnetwork.org English Breakfast Network], is a utility that both developers and documentation writers use to make sure they have created perfection for KDE. For documentation, there is are 2 utilities which will make your work easier:&lt;br /&gt;
# [http://www.englishbreakfastnetwork.org/sanitizer/?component=kde-4.x Documentation Sanitizer] - this utility within the EBN scours the trunk of the subversion repository checking the format of the documentation, discovering typos, grammar, markup, and more. This is a perfect utility for beginners looking to contribute as this tool pretty much tells you how to fix the issues.&lt;br /&gt;
# [http://www.englishbreakfastnetwork.org/sanitizer/just-in-time.php Just In Time] - this utility allows you to check your code/documentation and it will provide the same information that the sanitizer above produces. Use this before committing your patches or committing to subversion.&lt;br /&gt;
&lt;br /&gt;
=== KGet ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdenetwork&lt;br /&gt;
* '''Status:''' Needs updating&lt;br /&gt;
* '''Info:''' KGet documentation is currently written for the KDE 3 release. The documentation needs to be updated to match the KDE 4 release.&lt;br /&gt;
* '''Document writer:''' ''jjesse (jjesse at gmail dot com) Jonathan Jesse''&lt;br /&gt;
&lt;br /&gt;
=== KColorEdit ===&lt;br /&gt;
* '''Location:''' trunk/extragear/graphics&lt;br /&gt;
* '''Status:''' Needs updating and new material&lt;br /&gt;
* '''Info:''' Should be a fairly straight forward process with the updating and new material addition.&lt;br /&gt;
* '''Document writer:''' ''TimS on IRC, or via the mailing list.''&lt;br /&gt;
&lt;br /&gt;
=== Gwenview ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdegraphics&lt;br /&gt;
* '''Status:''' Needs updating&lt;br /&gt;
* '''Info:''' Documentation is based on the KDE 3 release, needs to be updated to match the KDE 4 release.&lt;br /&gt;
* '''Document writer:''' ''Henry de Valence: hdevalence (at) gmail (dot) com''&lt;br /&gt;
&lt;br /&gt;
== Intermediate ==&lt;br /&gt;
=== Dolphin ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdebase/apps&lt;br /&gt;
* '''Status:''' Needs updating and new material&lt;br /&gt;
* '''Info:''' Dolphin documentation hasn't been updated since 2006. This would require quite a bit of work.&lt;br /&gt;
* '''Document writer:''' ''David Edmundson''&lt;br /&gt;
&lt;br /&gt;
=== Kalzium ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdeedu&lt;br /&gt;
* '''Status:''' Needs updating and new material&lt;br /&gt;
* '''Info:''' Many parts of the Kalzium document needs to be updated and there are yet many parts that haven't been documented.&lt;br /&gt;
* '''Document writer:''' ''Karthik Periagaram (karthikp on IRC, karthikp AT gatech DOT edu)''&lt;br /&gt;
&lt;br /&gt;
=== Parley ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdeedu&lt;br /&gt;
* '''Status:''' Needs updating and new material&lt;br /&gt;
* '''Info:''' There are quite a bit of KDE 3 and KVocTrain references still in the documentation.&lt;br /&gt;
* '''Document writer:''' ''Stephanie Whiting stephaniewhiting on IRC, stephaniewhiting03@gmail.com''&lt;br /&gt;
&lt;br /&gt;
=== Step ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdeedu/doc/step&lt;br /&gt;
* '''Status:''' Examples need to be documented, a template is started as examples.docbook - Index.docbook can be improved.&lt;br /&gt;
* '''Info:''' You need to be good in Physics - coordinate with annma&lt;br /&gt;
* '''Document writer:'''&lt;br /&gt;
** Object Info: [[User:JLP|Jure Repinc]]&lt;br /&gt;
&lt;br /&gt;
== Advanced ==&lt;br /&gt;
=== kdelibs ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdelibs&lt;br /&gt;
* '''Status:''' Needs a lot of work&lt;br /&gt;
* '''Info:''' There is a TODO file located in trunk/KDE/kdelibs/doc/ - refer to this for more information.&lt;br /&gt;
* '''Document writer:''' ''Richard Johnson (nixternal) &amp;lt;nixternal AT kubuntu DOT org&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
=== System Settings ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdebase/workspace&lt;br /&gt;
* '''Status:''' Needs a lot of work&lt;br /&gt;
* '''Info:''' Refer to http://lists.kde.org/?l=kde-devel&amp;amp;m=120612209307666&amp;amp;w=2 for the work that needs to be completed.&lt;br /&gt;
* '''Document writer:''' ''Richard Johnson (nixternal) &amp;lt;nixternal AT kubuntu DOT org&amp;gt;''&lt;br /&gt;
** '''Joystick''' nosrednaekim on IRC - DONE&lt;br /&gt;
** '''SplashScreen''' annma - DONE&lt;br /&gt;
** '''About Me''' nosrednaekim on IRC&lt;br /&gt;
** '''Fonts''' to update - annma - DONE&lt;br /&gt;
** '''Icons''' to update - annma&lt;br /&gt;
** '''Window Decoration''' to update - annma - DONE&lt;br /&gt;
** '''System Settings''' convert from KControl - nixternal - DONE&lt;br /&gt;
** '''Appearance -&amp;gt; All''' to update - nixternal&lt;br /&gt;
&lt;br /&gt;
=== KMail ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdepim&lt;br /&gt;
* '''Status:''' Needs a lot of updating and new material&lt;br /&gt;
* '''Info:''' Check with Allen Winter (winterz) on IRC&lt;br /&gt;
* '''Document writer:''' ''insert your contact information here''&lt;br /&gt;
&lt;br /&gt;
=== KOrganizer ===&lt;br /&gt;
* '''Location:''' trunk/KDE/kdepim&lt;br /&gt;
* '''Status:''' Needs a lot of updating and new material&lt;br /&gt;
* '''Info:''' Check with Allen Winter (winterz) on IRC&lt;br /&gt;
* '''Document writer:''' ''insert your contact information here''&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Languages/Smoke</id>
		<title>Development/Languages/Smoke</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Languages/Smoke"/>
				<updated>2008-05-05T13:45:07Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''SMOKE''' is a introspective wrapper around the Qt and KDE frameworks.&lt;br /&gt;
The legend says it stands for '''S'''cripting '''M'''eta '''O'''bject '''K'''ompiler '''E'''ngine&lt;br /&gt;
&lt;br /&gt;
Not only does it provide wrappers for every function in every class,&lt;br /&gt;
but it also contains meta-information allowing queries of what&lt;br /&gt;
functions are available and their arguments and return-types.&lt;br /&gt;
&lt;br /&gt;
All classes, all methods, with all arguments, along with various flags&lt;br /&gt;
reflecting staticness, virtuality, etc. are stored into&lt;br /&gt;
cross-referencing arrays for fast lookups. One can thus read (and call) the whole&lt;br /&gt;
Qt API by simply reading/searching these arrays.&lt;br /&gt;
&lt;br /&gt;
The main purpose of SMOKE is to make it possible to write bindings from&lt;br /&gt;
scripting languages to Qt and KDE - with an emphasis on ease of use and flexibility.&lt;br /&gt;
&lt;br /&gt;
You can find out more about SMOKE by checking out the &lt;br /&gt;
[http://websvn.kde.org/trunk/KDE/kdebindings/ kdebindings module] of KDE's SVN.&lt;br /&gt;
&lt;br /&gt;
At the time of writing, both the [[Development/Languages/Perl|Perl bindings]], [[Development/Languages/Ruby|Ruby bindings]] and [[Development/Languages/QtSharp|C# bindings]] are known to use it, you might find valuable usage information there.&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Languages/Smoke</id>
		<title>Development/Languages/Smoke</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Languages/Smoke"/>
				<updated>2008-05-05T13:44:36Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''SMOKE''' is a introspective wrapper around the Qt and KDE frameworks.&lt;br /&gt;
The legend says it stands for '''S'''cripting '''M'''eta '''O'''bject '''K'''ompiler '''E'''ngine&lt;br /&gt;
&lt;br /&gt;
Not only does it provide wrappers for every function in every class,&lt;br /&gt;
but it also contains meta-information allowing queries of what&lt;br /&gt;
functions are available and their arguments and return-types.&lt;br /&gt;
&lt;br /&gt;
All classes, all methods, with all arguments, along with various flags&lt;br /&gt;
reflecting staticness, virtuality, etc. are stored into&lt;br /&gt;
cross-referencing arrays for fast lookups. One can thus read (and call) the whole&lt;br /&gt;
Qt API by simply reading/searching these arrays.&lt;br /&gt;
&lt;br /&gt;
The main purpose of SMOKE is to make it possible to write bindings from&lt;br /&gt;
scripting languages to Qt and KDE - with an emphasis on ease of use and flexibility.&lt;br /&gt;
&lt;br /&gt;
You can find out more about SMOKE by checking out the &lt;br /&gt;
[http://websvn.kde.org/trunk/KDE/kdebindings/ kdebindings module] of KDE's SVN.&lt;br /&gt;
&lt;br /&gt;
At the time of writing, both the [[Development/Languages/Perl|Perl bindings]], [[Development/Languages/Ruby|Ruby bindings]] and [[Development/Languages/C#|C# bindings]] are known to use it, you might find valuable usage information there.&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Languages/Perl</id>
		<title>Development/Languages/Perl</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Languages/Perl"/>
				<updated>2008-05-05T13:05:19Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: Added category Perl&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perl is a powerful and versatile high-level programming language. You can find out more about the language itself on the [http://www.perl.org/ Perl Mongers website].&lt;br /&gt;
&lt;br /&gt;
You can read more about [http://qt-apps.org/content/show.php/Perl+Qt4?content=69748 Perl bindings for Qt 4] and [http://klv.lg.ua/~vadim/perlqt4/ download Perl Qt4].&lt;br /&gt;
&lt;br /&gt;
Complete object-oriented bindings for Qt 3, based on [[Development/Languages/Smoke|SMOKE]], are available on the [http://perlqt.sourceforge.net/ PerlQt project page].&lt;br /&gt;
&lt;br /&gt;
Those bindings provide virtual functions overloading, custom slots and signals, and Rapid Application Development (RAD) through puic, a Qt Designer compatible user interface compiler.&lt;br /&gt;
&lt;br /&gt;
[[Category:Perl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Languages/Perl</id>
		<title>Development/Languages/Perl</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Languages/Perl"/>
				<updated>2008-05-05T13:03:56Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: Added some information about Perl bindings for Qt 4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Perl is a powerful and versatile high-level programming language. You can find out more about the language itself on the [http://www.perl.org/ Perl Mongers website].&lt;br /&gt;
&lt;br /&gt;
You can read more about [http://qt-apps.org/content/show.php/Perl+Qt4?content=69748 Perl bindings for Qt 4] and [http://klv.lg.ua/~vadim/perlqt4/ download Perl Qt4].&lt;br /&gt;
&lt;br /&gt;
Complete object-oriented bindings for Qt 3, based on [[Development/Languages/Smoke|SMOKE]], are available on the [http://perlqt.sourceforge.net/ PerlQt project page].&lt;br /&gt;
&lt;br /&gt;
Those bindings provide virtual functions overloading, custom slots and signals, and Rapid Application Development (RAD) through puic, a Qt Designer compatible user interface compiler.&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Development/Languages/Python</id>
		<title>Development/Languages/Python</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Development/Languages/Python"/>
				<updated>2008-05-05T12:31:39Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: Fixed links to PyQt and PyKDE&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{note| PyKDE 4 is in development. See below for details.PyQt4 is finished and can be found [http://www.riverbankcomputing.co.uk/pyqt/index.php here]}} &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Abstract==&lt;br /&gt;
The PyKDE4 bindings will be made using [http://www.riverbankcomputing.co.uk/sip/ SIP]. &lt;br /&gt;
&lt;br /&gt;
==Status==&lt;br /&gt;
&lt;br /&gt;
As of 1-Sep-07 PyKDE code is essentially complete, except for Phonon module support. The package is now in KDE's subversion repository in /trunk/KDE/kdebindings/python/pykde4/. Current work is on examples, docs, and related tools (pykdeuic, etc.) Anyone wishing to work on either example code or test code should contact Jim Bublitz - jbublitz@nwinternet.com.&lt;br /&gt;
&lt;br /&gt;
==Further reading==&lt;br /&gt;
*[http://www.riverbankcomputing.com/mailman/listinfo/pyqt PyQt and PyKDE mailing list]&lt;br /&gt;
*[http://www.riverbankcomputing.co.uk/software/pyqt/intro PyQt Homepage]&lt;br /&gt;
*[http://www.riverbankcomputing.co.uk/software/pykde/intro PyKDE Homepage]&lt;br /&gt;
*[http://www.diotavelli.net/PyQtWiki The PyQt and PyKDE community Wiki]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Python]]&lt;/div&gt;</summary>
		<author><name>JLP</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-21T00:51:47Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs with test-cases Added */&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|128768}} - Test case. (Link to web page). 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;br /&gt;
*{{Bug|140107}} - Still present in 3.5.9 and trunk. testcase already present. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140644}} - Still present in 3.5.9 and trunk. testcase already present. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140842}} - Still present in 3.5.9 and trunk. testcase already present. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141122}} - Still present in 3.5.9 and trunk, testcase already present (label added). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141846}} - Still present in 3.5.9. Slightly different but related, incorrect behaviour in trunk. Testcase modified and readded. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|98856}} - password form filled with a default value is blanked clicking back, testcase added. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|99043}} - Double GET request on particular JS image loading with testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|99824}} - CSS interpreter doesn't works on specific testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|141920}} - testcase present (label added), still reproducible in 3.5.9 and trunk.&lt;br /&gt;
*{{Bug|138950}} - Javascript for scrolling doesn't work. Reproducible in 3.5.9 and trunk. [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|127487}} - still present in 4.0.3, js coding error on page but renders correct in Firefox. Testcase added - needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127734}} - still present in 4.0.3, has testcase and is already marked [testcase] in bz. [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|127742}} - still present in 4.0.3, has testcase already - needs to be marked [testcase] in bz. [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|133749}} - Confirmed in trunk, test case is already there and marked. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|133827}} - Confirmed in trunk, test case already there and is marked (not really sure though if this actually a bug). [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|133967}} - Confirmed in trunk (was confirmed already in 4.0.3, comment #5). Test case already there, needs to be marked, also in the related {{Bug|160568}}. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|136830}} - anchor href bug confirmed. Testcase confirmed. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|136957}} - onclick() not triggered on &amp;quot;option&amp;quot; element (with testcase) [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137133}} - Problems with history setted from JS. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|143819}} - Testcase available, reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|143972}} - Testcase available, (with some differences, see BKO) reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144308}} - Testcase available, reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|137408}} - Bug with testcase. JS doesn't work correctly . [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137511}} - css style on elements on select box are not rendered. I've added a testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137606}} - CSS rendering problem. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137098}} - The website has been changed but the testcase is still valid. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|161090}} - user-defined stylesheets are ignored in trunk. added testcase and label. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|137890}} - Testcase confirmed on trunk (JS and mouse-over issue). [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|136278}} - Testcase added. Confirmed on trunk [[User:Philrod|Philrod]]&lt;br /&gt;
*{{Bug|135739}} - Testcase added. Confirmed on trunk and in 3.5.9 [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-20T23:40:16Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Division of Labour */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Warning|&lt;br /&gt;
This page is now archived for reference by the developers. Please do not add information on newly triaged bugs to it.}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done ({{Bug|93235}} by [[User:Finex|FiNeX]])||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 355)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93235}} - On trunk scaling down the font size reduce the line-height. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95307}} - Testcase is there, added to summary. Bug still valid in Konqueror 4. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|115293}} - Added testcase. Bug reproducible. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Added testcase. Bug reproducible: selecting text on a fixed textarea don't make the textarea scroll. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|70350}} - existing testcase. CSS stylesheets. still bug [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85609}} - testcase existing and labeled. Still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|118933}} - JS problem with proxyRender. Testcase reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81739}} - test case already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** test case tag already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81875}} - test case added. broken in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82014}} - test case and tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**still broken in 3.5.9 and trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107321}} - Bug reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. Anyway the page is not perfect, there are still some rendering problem, probably related to the JS. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118459}} - Printing problem confirmed on specific page. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - The page on the example is completely broken. Anyway the website has been (fortunatly) updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118842}} - Bug confirmed even on trunk (search on lufthansa website doesn't work) [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118890}} - Ford website car builder doesn't work. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (major) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still an issue in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Bug still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
** still reproductible in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
** actually they do have buttons for me but the behaviour has changed (see the HTML toolbar). However it's fixed for trunk as the maximize-button no longer gets disabled. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
** I can still reproduce this partly in 3.5.9.&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
** This bug is still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
**Maybe. The testcase seems to render the same in iceweasl as in konq, but I'm not sure SadEagle agrees all is well in the comments. [[User:Blauzahl|Blauzahl]] &lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
** still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - Cannot reproduce on trunk. The mouse icon over the mail address is displayed correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - Cannot reproduce the rendering problem. The first example is correct, the second test address is unreachable. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118646}} - Cannot reproduce the rendering problem on trunk. It has been reproduced on 4.0.3 instead. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118671}} - Bug fixed in KDE 3.5.8 and KDE 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118860}} - Sites displayed correctly in UTF8 (with jap). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118886}} - Set focus on frames is working now. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81187}} - fixed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82420}} - fixed in trunk but still in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|117949}} - fixed in trunk but still in 3.5.9. [[User:Edulix|Edulix]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|92274}} - &amp;lt;s&amp;gt;Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;requested a current example or testcase. [[User:Grundleborg|Grundleborg]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**gathered an old version using archive.org which seems to render correctly. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==Bugs no longer present in 3.5.9 and 4.x==&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug is no longer present in 3.5.9 and 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;
*&amp;lt;s&amp;gt;{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** Set to remind in case problems occur with a smaller CPU than mine [[User:lemma|lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]] can't reproduce in 3.5.9 [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]] wrapping in 3.5.9, so I consider this fixed [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma.&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Working on 3.5.9 as well. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt; REMIND&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Recovered the old page from archive.org and attached that address. Works in 3.5.9 as well as trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh&amp;lt;/s&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|160385}} - Fixed in 4.02&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;this fix has already been backported. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Fixed for 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|95274}} - either this is fixed in 3.5.9 and trunk, or my test-case is invalid. Please can someone check the testcase is valid before closing this one. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;also fixed in 3.5.9 [[User:Grundleborg|Grundleborg]] &amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
**I agree with lemma. This bug is clealy an issue with the web site, not with konqueror. (just look at the source of the test-case to see why!) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
**oops! looks like the bug number here is wrong?! [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot;. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; since the example site no longer works. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
**not sure I understand coolo's comment. Is it enough to explain the bug, or not? can someone else take a look please. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**I agree with Finex, and he's already changed it :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**reporter says site no longer triggers bug, so can not test it. closed as remind. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|81185}} The bug cannot be reproduced (website was updated). Closed as REMIND.&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
* {{Bug|70365}} I really want to close this with REMIND. game controls under flash? flash stuff has changed so much.... [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* {{Bug|70855}} - I should just close this as INVALID, as the site is long gone, but I like Brazilians, so maybe when I'm awake, I'll go back and use REMIND. I'm not doing this right now, because the 404 has an interesting rendering error which I should probably file a bug on if I knew what to call it. (blue line thick in konq, thin in ice weasel) http://www.in.gov.br/imprensa/index.html [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
Opps! That's the wrong number, but I'll find it. :)&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&amp;lt;/s&amp;gt;[[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
** Duplicate of {{Bug|57485}}, asked frederikh&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**have tested on current ebay site using 4.0.3 and added instructions to reproduce. couldn't see an easy way of creating a standalone testcase. [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
** Testcase added, no Yahoo account needed now, needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
**Tested and unable to reproduce in 4.0.3 here.  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
** I guess someone with a slow CPU (orig. reporter had around 1GHz) should recheck this on 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81628}} - needs someone who understands about arabic/RTL text etc... [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh,&amp;lt;s&amp;gt; if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt; I love it when devs fix my bugs![[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|79369}} - Custom konqueror stylesheet doesn't work. The bug cannot be reproduced! [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**however, there is a test-case and this still renders differently to other browsers. I don't know, though, which browser is correct, so this needs to be looked at by konq devs. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81168}} - don't know whether there is a bug here or what? SadEagle - over to you :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70525}} - heh, bugzilla for bookmarks. apparently this is to go into regression testing, has it already? &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|120644}} - &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt;, testcase attached [[User:Blauzahl|Blauzahl]] [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|71363}} - who do we render as today? sounds like this is a policy thing [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|66583}} and {{Bug|124050}} have been marked duplicate. However I doubt they really are. Might be policy. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|67148}} Still present in 3.5.9 and trunk. Actually I think this might be about policy and (if so) could be considered INVALID. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
** I can confirm this bug. On 3.5.9 it still behaves as described in the bug. On trunk it behaves just the opposite. [[User:lemma|lemma]]&lt;br /&gt;
** This might actually be a policy thing. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|90213}} - &amp;lt;s&amp;gt;Still needing a testcase. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** involves a dynamically created, ill-formed form.&lt;br /&gt;
** created a simple testcase which works fine on 3.5.9 and trunk. needs checking if the testcase is valid. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|59698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**asked if this can still be reproduced. Will give 30 days, then close. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** has reportedly been fixed on trunk. depending on if it also works in 3.5.9 we have to change the resolution (already closed). [[User:lemma|lemma]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
**can't get that site to load either. requested feedback. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
*{{Bug|118761}} - The bug seems fixed. But I'm waiting for an answer for confirmation. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
** Original site no longer available. The original reporter is trying to get it back. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
** The sites have changed. As the the reporter mentioned several sites I posted a comment to ask for other sites he's observing high CPU. Probably could be set to REMIND soon. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
** Posted a comment asking if this is still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|82216}} example site no longer accessible. requested a testcase or new sample site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|161056}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
*{{Bug|160945}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
**now listed as konqueror-general so shouldn't be included in todays triage anyway. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
** I don't think so, since it affects view-&amp;gt;image in a web page. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120476}}, {{Bug|121401}} - not sure what to do since there are no &amp;quot;access keys&amp;quot; in Konqueror 4. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**These were just reimplemented, and I suspect it is different code. (blauzahl)&lt;br /&gt;
**will test next time I svn up. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70447}} - this is STUPID and i want to close it with INVALID or turn it to WISHLIST and then mark it INVALID; why does anybody care about mouse behaviour? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</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-20T23:27:47Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&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;br /&gt;
*{{Bug|133028}} - Resolved in trunk, still present in 3.5.9 [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|104781}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138231}} - not present in 3.5.x and trunk&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138351}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138605}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138785}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138807}} - Resolved in trunk and 3.5.9&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138828}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138898}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|98571}} - Empty row in XHTML rendered correctly. Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|140850}} - Resolved in trunk and 3.5.9. Added testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139675}} - Resolved in trunk, still present in 3.5.9. testcase already present [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139783}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139917}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140051}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140611}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140692}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141079}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141647}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140643}} - Resolved in trunk, still present in 3.5.9 (&amp;lt;b&amp;gt;crash&amp;lt;/b&amp;gt;). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|98975}} - konqueror in trunk doesn't crash anymore rendering the table on the testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|99987}} - Javascript problem solved on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|142218}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142182}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142181}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142046}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|100234}} - textarea use a lot of CPU. Cannot confirm on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|100274}} - Bug not reproducible on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|135000}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|135005}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|127487}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128128}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128156}} - not present in 4.0.3, still an issue in 3.5.7 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128232}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|133470}} - resolved in trunk, still present in 3.5.8; JS debugger crash is well known according to DxSadEagle [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|142424}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|132428}} - Resolved in trunk, needs 3.5.9 testing. Buggy area is now the content of the &amp;quot;Now Playing&amp;quot; field [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|132549}} - Resolved in trunk and 3.5.9. [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|133887}} - Resolved in trunk (dialog box in test case shows &amp;quot;event.type=DOMContentLoaded&amp;quot; as expected). Bug still there in 3.5.8, don't have 3.5.9 here. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|136622}} - JS popup window right behaviour ok trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|143719}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|143809}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144669}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144720}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|137228}} - Website has been changed. Bug no more reproducible. [[User:finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|137252}} - Konqueror doesn't crash anymore on the specified website while searching. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95866}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|95613}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|137876}} - Hotmail login is working correctly. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137877}} - Attachment problem on hotmail fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137972}} - Bug fixed in trunk (CSS rendering problem). [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|145215}} - Bug fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|144940}} - Crash not reproducible in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95508}} - can't see this bug anymore in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|145269}} - Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|145267}} - Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95497}} - can't see this bug anymore in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|135603}} - I don't see this in trunk. Suspect the site has changed, to be honest. [[User:Philrod|Philrod]]&lt;br /&gt;
*{{Bug|95327}} - resolved in trunk r799198, still present in 3.5.9 - [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_step-by-step_instructions</id>
		<title>Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs with step-by-step instructions</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/KonquerorDay2/Bugs_with_step-by-step_instructions"/>
				<updated>2008-04-20T23:14:26Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs with step-by-step instructions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Bugs with step-by-step instructions===&lt;br /&gt;
&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|98486}} - Bug reproduced in trunk. The kdewallet data overwrite user typed data. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|116406}} - Bug reproduced in trunk. Seems to be due to at least two unrelated problems in Konqueror. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|100586}} - Bug reproduced in trunk. Already had good instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|102088}} - Bug present in 4.0.3. Already had instructions. [[User:Batika|Batika]]&lt;br /&gt;
*{{Bug|127025}} - still present in 4.0.3, causes crash (marked as crash in bz already) new backtrace attached. Has instructions but couldn't easily create standalone testcase [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|139560}} - still present in 3.5.9 and trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140545}} - still present in 3.5.9 and trunk. Slightly different behaviour on KDE 4.x depending on the flash animation being played (changes on reload/different pages). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141677}} - still present in 3.5.9 and trunk. Behaves alightly different in trunk but still erroneous. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|98631}} - Javascript popup &amp;quot;ASK&amp;quot; policy doesn't work correctly. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|141824}} - still present in 3.5.9 and trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|156647}} - Confirmed and added backtrace in 4.0.3.  Had instructions already.    - alexrudd&lt;br /&gt;
*{{Bug|133979}} - Confirmed in trunk (was confirmed already in 4.0.3, comment #7). Instructions already there. In addition to the &amp;quot;old&amp;quot; bug, the page is rendered incorrectly in KDE 4. Maybe one should change the bug summary or file a new bug to reflect this. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|137348}} - Link not followed on italian popular webmail (libero.it). [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|143948}} - Bug is reproducible in 3.5.9 and trunk. Already had simple instructions. Should probably be refiled as a Java Script Bug. [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144753}} - Bug is reproducible in 3.5.9 and trunk. Already had simple instructions. [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|137839}} - Rendering problem confirmed (JS menu). [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|139476}} - Confirmed in trunk and 3.5.9. Might be a javascript bug. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|161094}} - Confirmed in trunk, working in 3.5.9 (possible regression). Strange error displaying hebrew letters as raw utf-8. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140051}} - Confirmed in trunk, working in 3.5.9 (possible regression). Printing problems. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141751}} - Confirmed in trunk and 3.5.9. blauzahl reported it was working in trunk when setting the user-agent to IE6 on XP but that didn't work for others. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|95364}} - still present in 3.5.9, also not quite right in trunk. [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</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-20T22:46:21Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&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;br /&gt;
*{{Bug|133028}} - Resolved in trunk, still present in 3.5.9 [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|104781}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138231}} - not present in 3.5.x and trunk&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138351}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138605}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138785}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138807}} - Resolved in trunk and 3.5.9&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138828}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138898}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|98571}} - Empty row in XHTML rendered correctly. Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|140850}} - Resolved in trunk and 3.5.9. Added testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139675}} - Resolved in trunk, still present in 3.5.9. testcase already present [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139783}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139917}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140051}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140611}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140692}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141079}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141647}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140643}} - Resolved in trunk, still present in 3.5.9 (&amp;lt;b&amp;gt;crash&amp;lt;/b&amp;gt;). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|98975}} - konqueror in trunk doesn't crash anymore rendering the table on the testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|99987}} - Javascript problem solved on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|142218}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142182}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142181}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142046}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|100234}} - textarea use a lot of CPU. Cannot confirm on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|100274}} - Bug not reproducible on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|135000}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|135005}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|127487}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128128}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128156}} - not present in 4.0.3, still an issue in 3.5.7 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128232}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|133470}} - resolved in trunk, still present in 3.5.8; JS debugger crash is well known according to DxSadEagle [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|142424}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|132428}} - Resolved in trunk, needs 3.5.9 testing. Buggy area is now the content of the &amp;quot;Now Playing&amp;quot; field [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|132549}} - Resolved in trunk and 3.5.9. [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|133887}} - Resolved in trunk (dialog box in test case shows &amp;quot;event.type=DOMContentLoaded&amp;quot; as expected). Bug still there in 3.5.8, don't have 3.5.9 here. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|136622}} - JS popup window right behaviour ok trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|143719}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|143809}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144669}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144720}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|137228}} - Website has been changed. Bug no more reproducible. [[User:finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|137252}} - Konqueror doesn't crash anymore on the specified website while searching. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95866}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|95613}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|137876}} - Hotmail login is working correctly. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137877}} - Attachment problem on hotmail fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137972}} - Bug fixed in trunk (CSS rendering problem). [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|145215}} - Bug fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|144940}} - Crash not reproducible in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95508}} - can't see this bug anymore in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|145269}} - Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|145267}} - Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95497}} - can't see this bug anymore in trunk. - [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</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-20T22:33:26Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&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;br /&gt;
*{{Bug|133028}} - Resolved in trunk, still present in 3.5.9 [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|104781}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138231}} - not present in 3.5.x and trunk&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138351}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138605}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138785}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138807}} - Resolved in trunk and 3.5.9&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138828}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138898}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|98571}} - Empty row in XHTML rendered correctly. Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|140850}} - Resolved in trunk and 3.5.9. Added testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139675}} - Resolved in trunk, still present in 3.5.9. testcase already present [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139783}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139917}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140051}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140611}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140692}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141079}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141647}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140643}} - Resolved in trunk, still present in 3.5.9 (&amp;lt;b&amp;gt;crash&amp;lt;/b&amp;gt;). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|98975}} - konqueror in trunk doesn't crash anymore rendering the table on the testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|99987}} - Javascript problem solved on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|142218}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142182}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142181}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142046}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|100234}} - textarea use a lot of CPU. Cannot confirm on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|100274}} - Bug not reproducible on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|135000}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|135005}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|127487}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128128}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128156}} - not present in 4.0.3, still an issue in 3.5.7 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128232}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|133470}} - resolved in trunk, still present in 3.5.8; JS debugger crash is well known according to DxSadEagle [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|142424}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|132428}} - Resolved in trunk, needs 3.5.9 testing. Buggy area is now the content of the &amp;quot;Now Playing&amp;quot; field [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|132549}} - Resolved in trunk and 3.5.9. [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|133887}} - Resolved in trunk (dialog box in test case shows &amp;quot;event.type=DOMContentLoaded&amp;quot; as expected). Bug still there in 3.5.8, don't have 3.5.9 here. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|136622}} - JS popup window right behaviour ok trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|143719}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|143809}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144669}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144720}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|137228}} - Website has been changed. Bug no more reproducible. [[User:finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|137252}} - Konqueror doesn't crash anymore on the specified website while searching. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95866}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|95613}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|137876}} - Hotmail login is working correctly. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137877}} - Attachment problem on hotmail fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137972}} - Bug fixed in trunk (CSS rendering problem). [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|145215}} - Bug fixed on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|144940}} - Crash not reproducible in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95508}} - can't see this bug anymore in trunk. - [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</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-20T21:48:09Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&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;br /&gt;
*{{Bug|133028}} - Resolved in trunk, still present in 3.5.9 [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|104781}} - Resolved in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138231}} - not present in 3.5.x and trunk&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138351}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138605}} - Resolved in trunk, still present in 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138785}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|138807}} - Resolved in trunk and 3.5.9&amp;lt;/s&amp;gt; [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138828}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|138898}} - Resolved in trunk and 3.5.9 [[User:Bram85|Bram85]]&lt;br /&gt;
*{{Bug|98571}} - Empty row in XHTML rendered correctly. Bug fixed in trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|140850}} - Resolved in trunk and 3.5.9. Added testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139675}} - Resolved in trunk, still present in 3.5.9. testcase already present [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139783}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|139917}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140051}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140611}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140692}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141079}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|141647}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|140643}} - Resolved in trunk, still present in 3.5.9 (&amp;lt;b&amp;gt;crash&amp;lt;/b&amp;gt;). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|98975}} - konqueror in trunk doesn't crash anymore rendering the table on the testcase. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|99987}} - Javascript problem solved on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|142218}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142182}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142181}} - Resolved in trunk, still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|142046}} - Resolved in trunk and 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|100234}} - textarea use a lot of CPU. Cannot confirm on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|100274}} - Bug not reproducible on trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|135000}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|135005}} - Resolved in trunk (r796129) [[User:Philrod|PhilTrunk]]&lt;br /&gt;
*{{Bug|127487}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128128}} - not present in 4.0.3, or 3.5.7 - think can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128156}} - not present in 4.0.3, still an issue in 3.5.7 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|128232}} - not present in 4.0.3, or 3.5.7 - can be closed [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|133470}} - resolved in trunk, still present in 3.5.8; JS debugger crash is well known according to DxSadEagle [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|142424}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|132428}} - Resolved in trunk, needs 3.5.9 testing. Buggy area is now the content of the &amp;quot;Now Playing&amp;quot; field [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|132549}} - Resolved in trunk and 3.5.9. [[User:Mzanetti|Mzanetti]]&lt;br /&gt;
*{{Bug|133887}} - Resolved in trunk (dialog box in test case shows &amp;quot;event.type=DOMContentLoaded&amp;quot; as expected). Bug still there in 3.5.8, don't have 3.5.9 here. [[User:Frank78ac|Frank78ac]]&lt;br /&gt;
*{{Bug|136622}} - JS popup window right behaviour ok trunk. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|143719}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|143809}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144669}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|144720}} - Not reproducible for me in trunk and 3.5.9 [[User:mutlu_inek|mutlu_inek]]&lt;br /&gt;
*{{Bug|137228}} - Website has been changed. Bug no more reproducible. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|137252}} - Konqueror doesn't crash anymore on the specified website while searching. [[User:finex|FiNeX]]&lt;br /&gt;
*{{Bug|95866}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|95613}} - fixed in trunk. - [[User:JLP|JLP]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-20T21:39:33Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */ moving new checked bugs to bug day 2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Warning|&lt;br /&gt;
This page is now archived for reference by the developers. Please do not add information on newly triaged bugs to it.}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done ({{Bug|93235}} by [[User:Finex|FiNeX]])||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || started ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 355)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93235}} - On trunk scaling down the font size reduce the line-height. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95307}} - Testcase is there, added to summary. Bug still valid in Konqueror 4. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|115293}} - Added testcase. Bug reproducible. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Added testcase. Bug reproducible: selecting text on a fixed textarea don't make the textarea scroll. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|70350}} - existing testcase. CSS stylesheets. still bug [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85609}} - testcase existing and labeled. Still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|118933}} - JS problem with proxyRender. Testcase reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81739}} - test case already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** test case tag already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81875}} - test case added. broken in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82014}} - test case and tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**still broken in 3.5.9 and trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107321}} - Bug reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. Anyway the page is not perfect, there are still some rendering problem, probably related to the JS. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118459}} - Printing problem confirmed on specific page. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - The page on the example is completely broken. Anyway the website has been (fortunatly) updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118842}} - Bug confirmed even on trunk (search on lufthansa website doesn't work) [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118890}} - Ford website car builder doesn't work. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (major) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still an issue in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Bug still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
** still reproductible in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
** actually they do have buttons for me but the behaviour has changed (see the HTML toolbar). However it's fixed for trunk as the maximize-button no longer gets disabled. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
** I can still reproduce this partly in 3.5.9.&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
** This bug is still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
**Maybe. The testcase seems to render the same in iceweasl as in konq, but I'm not sure SadEagle agrees all is well in the comments. [[User:Blauzahl|Blauzahl]] &lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
** still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - Cannot reproduce on trunk. The mouse icon over the mail address is displayed correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - Cannot reproduce the rendering problem. The first example is correct, the second test address is unreachable. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118646}} - Cannot reproduce the rendering problem on trunk. It has been reproduced on 4.0.3 instead. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118671}} - Bug fixed in KDE 3.5.8 and KDE 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118860}} - Sites displayed correctly in UTF8 (with jap). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118886}} - Set focus on frames is working now. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81187}} - fixed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82420}} - fixed in trunk but still in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|117949}} - fixed in trunk but still in 3.5.9. [[User:Edulix|Edulix]]&amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bugs no longer present in 3.5.9 and 4.x==&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug is no longer present in 3.5.9 and 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;
*&amp;lt;s&amp;gt;{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** Set to remind in case problems occur with a smaller CPU than mine [[User:lemma|lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]] can't reproduce in 3.5.9 [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]] wrapping in 3.5.9, so I consider this fixed [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma.&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Working on 3.5.9 as well. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt; REMIND&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Recovered the old page from archive.org and attached that address. Works in 3.5.9 as well as trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh&amp;lt;/s&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|160385}} - Fixed in 4.02&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;this fix has already been backported. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Fixed for 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|95274}} - either this is fixed in 3.5.9 and trunk, or my test-case is invalid. Please can someone check the testcase is valid before closing this one. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;also fixed in 3.5.9 [[User:Grundleborg|Grundleborg]] &amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
**I agree with lemma. This bug is clealy an issue with the web site, not with konqueror. (just look at the source of the test-case to see why!) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
**oops! looks like the bug number here is wrong?! [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot;. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; since the example site no longer works. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
**not sure I understand coolo's comment. Is it enough to explain the bug, or not? can someone else take a look please. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**I agree with Finex, and he's already changed it :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**reporter says site no longer triggers bug, so can not test it. closed as remind. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|81185}} The bug cannot be reproduced (website was updated). Closed as REMIND.&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
* {{Bug|70365}} I really want to close this with REMIND. game controls under flash? flash stuff has changed so much.... [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* {{Bug|70855}} - I should just close this as INVALID, as the site is long gone, but I like Brazilians, so maybe when I'm awake, I'll go back and use REMIND. I'm not doing this right now, because the 404 has an interesting rendering error which I should probably file a bug on if I knew what to call it. (blue line thick in konq, thin in ice weasel) http://www.in.gov.br/imprensa/index.html [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
Opps! That's the wrong number, but I'll find it. :)&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&amp;lt;/s&amp;gt;[[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
** Duplicate of {{Bug|57485}}, asked frederikh&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**have tested on current ebay site using 4.0.3 and added instructions to reproduce. couldn't see an easy way of creating a standalone testcase. [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
** Testcase added, no Yahoo account needed now, needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
**Tested and unable to reproduce in 4.0.3 here.  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
** I guess someone with a slow CPU (orig. reporter had around 1GHz) should recheck this on 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81628}} - needs someone who understands about arabic/RTL text etc... [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh,&amp;lt;s&amp;gt; if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt; I love it when devs fix my bugs![[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|79369}} - Custom konqueror stylesheet doesn't work. The bug cannot be reproduced! [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**however, there is a test-case and this still renders differently to other browsers. I don't know, though, which browser is correct, so this needs to be looked at by konq devs. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81168}} - don't know whether there is a bug here or what? SadEagle - over to you :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70525}} - heh, bugzilla for bookmarks. apparently this is to go into regression testing, has it already? &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|120644}} - &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt;, testcase attached [[User:Blauzahl|Blauzahl]] [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|71363}} - who do we render as today? sounds like this is a policy thing [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|66583}} and {{Bug|124050}} have been marked duplicate. However I doubt they really are. Might be policy. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|67148}} Still present in 3.5.9 and trunk. Actually I think this might be about policy and (if so) could be considered INVALID. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
** I can confirm this bug. On 3.5.9 it still behaves as described in the bug. On trunk it behaves just the opposite. [[User:lemma|lemma]]&lt;br /&gt;
** This might actually be a policy thing. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|5698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90213}} - Still needing a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**asked if this can still be reproduced. Will give 30 days, then close. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92274}} - Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&lt;br /&gt;
**requested a current example or testcase. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
**can't get that site to load either. requested feedback. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
*{{Bug|118761}} - The bug seems fixed. But I'm waiting for an answer for confirmation. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
** Original site no longer available. The original reporter is trying to get it back. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
** The sites have changed. As the the reporter mentioned several sites I posted a comment to ask for other sites he's observing high CPU. Probably could be set to REMIND soon. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
** Posted a comment asking if this is still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|82216}} example site no longer accessible. requested a testcase or new sample site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|161056}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
*{{Bug|160945}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
**now listed as konqueror-general so shouldn't be included in todays triage anyway. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
** I don't think so, since it affects view-&amp;gt;image in a web page. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120476}}, {{Bug|121401}} - not sure what to do since there are no &amp;quot;access keys&amp;quot; in Konqueror 4. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**These were just reimplemented, and I suspect it is different code. (blauzahl)&lt;br /&gt;
**will test next time I svn up. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70447}} - this is STUPID and i want to close it with INVALID or turn it to WISHLIST and then mark it INVALID; why does anybody care about mouse behaviour? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-20T21:38:16Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Warning|&lt;br /&gt;
This page is now archived for reference by the developers. Please do not add information on newly triaged bugs to it.}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done ({{Bug|93235}} by [[User:Finex|FiNeX]])||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || started ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 355)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93235}} - On trunk scaling down the font size reduce the line-height. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95307}} - Testcase is there, added to summary. Bug still valid in Konqueror 4. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|115293}} - Added testcase. Bug reproducible. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Added testcase. Bug reproducible: selecting text on a fixed textarea don't make the textarea scroll. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|70350}} - existing testcase. CSS stylesheets. still bug [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85609}} - testcase existing and labeled. Still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|118933}} - JS problem with proxyRender. Testcase reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81739}} - test case already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** test case tag already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81875}} - test case added. broken in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82014}} - test case and tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**still broken in 3.5.9 and trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107321}} - Bug reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. Anyway the page is not perfect, there are still some rendering problem, probably related to the JS. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118459}} - Printing problem confirmed on specific page. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - The page on the example is completely broken. Anyway the website has been (fortunatly) updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118842}} - Bug confirmed even on trunk (search on lufthansa website doesn't work) [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118890}} - Ford website car builder doesn't work. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (major) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still an issue in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Bug still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
** still reproductible in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
** actually they do have buttons for me but the behaviour has changed (see the HTML toolbar). However it's fixed for trunk as the maximize-button no longer gets disabled. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
** I can still reproduce this partly in 3.5.9.&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
** This bug is still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
**Maybe. The testcase seems to render the same in iceweasl as in konq, but I'm not sure SadEagle agrees all is well in the comments. [[User:Blauzahl|Blauzahl]] &lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
** still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - Cannot reproduce on trunk. The mouse icon over the mail address is displayed correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - Cannot reproduce the rendering problem. The first example is correct, the second test address is unreachable. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118646}} - Cannot reproduce the rendering problem on trunk. It has been reproduced on 4.0.3 instead. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118671}} - Bug fixed in KDE 3.5.8 and KDE 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118860}} - Sites displayed correctly in UTF8 (with jap). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118886}} - Set focus on frames is working now. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81187}} - fixed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82420}} - fixed in trunk but still in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|117949}} - fixed in trunk but still in 3.5.9. [[User:Edulix|Edulix]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|95866}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|95613}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
==Bugs no longer present in 3.5.9 and 4.x==&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug is no longer present in 3.5.9 and 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;
*&amp;lt;s&amp;gt;{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** Set to remind in case problems occur with a smaller CPU than mine [[User:lemma|lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]] can't reproduce in 3.5.9 [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]] wrapping in 3.5.9, so I consider this fixed [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma.&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Working on 3.5.9 as well. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt; REMIND&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Recovered the old page from archive.org and attached that address. Works in 3.5.9 as well as trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh&amp;lt;/s&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|160385}} - Fixed in 4.02&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;this fix has already been backported. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Fixed for 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|95274}} - either this is fixed in 3.5.9 and trunk, or my test-case is invalid. Please can someone check the testcase is valid before closing this one. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;also fixed in 3.5.9 [[User:Grundleborg|Grundleborg]] &amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
**I agree with lemma. This bug is clealy an issue with the web site, not with konqueror. (just look at the source of the test-case to see why!) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
**oops! looks like the bug number here is wrong?! [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot;. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; since the example site no longer works. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
**not sure I understand coolo's comment. Is it enough to explain the bug, or not? can someone else take a look please. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**I agree with Finex, and he's already changed it :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**reporter says site no longer triggers bug, so can not test it. closed as remind. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|81185}} The bug cannot be reproduced (website was updated). Closed as REMIND.&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
* {{Bug|70365}} I really want to close this with REMIND. game controls under flash? flash stuff has changed so much.... [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* {{Bug|70855}} - I should just close this as INVALID, as the site is long gone, but I like Brazilians, so maybe when I'm awake, I'll go back and use REMIND. I'm not doing this right now, because the 404 has an interesting rendering error which I should probably file a bug on if I knew what to call it. (blue line thick in konq, thin in ice weasel) http://www.in.gov.br/imprensa/index.html [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
Opps! That's the wrong number, but I'll find it. :)&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&amp;lt;/s&amp;gt;[[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
** Duplicate of {{Bug|57485}}, asked frederikh&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**have tested on current ebay site using 4.0.3 and added instructions to reproduce. couldn't see an easy way of creating a standalone testcase. [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
** Testcase added, no Yahoo account needed now, needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
**Tested and unable to reproduce in 4.0.3 here.  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
** I guess someone with a slow CPU (orig. reporter had around 1GHz) should recheck this on 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81628}} - needs someone who understands about arabic/RTL text etc... [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh,&amp;lt;s&amp;gt; if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt; I love it when devs fix my bugs![[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|79369}} - Custom konqueror stylesheet doesn't work. The bug cannot be reproduced! [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**however, there is a test-case and this still renders differently to other browsers. I don't know, though, which browser is correct, so this needs to be looked at by konq devs. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81168}} - don't know whether there is a bug here or what? SadEagle - over to you :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70525}} - heh, bugzilla for bookmarks. apparently this is to go into regression testing, has it already? &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|120644}} - &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt;, testcase attached [[User:Blauzahl|Blauzahl]] [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|71363}} - who do we render as today? sounds like this is a policy thing [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|66583}} and {{Bug|124050}} have been marked duplicate. However I doubt they really are. Might be policy. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|67148}} Still present in 3.5.9 and trunk. Actually I think this might be about policy and (if so) could be considered INVALID. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
** I can confirm this bug. On 3.5.9 it still behaves as described in the bug. On trunk it behaves just the opposite. [[User:lemma|lemma]]&lt;br /&gt;
** This might actually be a policy thing. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|5698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90213}} - Still needing a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**asked if this can still be reproduced. Will give 30 days, then close. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92274}} - Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&lt;br /&gt;
**requested a current example or testcase. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
**can't get that site to load either. requested feedback. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
*{{Bug|118761}} - The bug seems fixed. But I'm waiting for an answer for confirmation. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
** Original site no longer available. The original reporter is trying to get it back. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
** The sites have changed. As the the reporter mentioned several sites I posted a comment to ask for other sites he's observing high CPU. Probably could be set to REMIND soon. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
** Posted a comment asking if this is still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|82216}} example site no longer accessible. requested a testcase or new sample site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|161056}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
*{{Bug|160945}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
**now listed as konqueror-general so shouldn't be included in todays triage anyway. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
** I don't think so, since it affects view-&amp;gt;image in a web page. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120476}}, {{Bug|121401}} - not sure what to do since there are no &amp;quot;access keys&amp;quot; in Konqueror 4. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**These were just reimplemented, and I suspect it is different code. (blauzahl)&lt;br /&gt;
**will test next time I svn up. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70447}} - this is STUPID and i want to close it with INVALID or turn it to WISHLIST and then mark it INVALID; why does anybody care about mouse behaviour? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-20T20:55:38Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Warning|&lt;br /&gt;
This page is now archived for reference by the developers. Please do not add information on newly triaged bugs to it.}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done ({{Bug|93235}} by [[User:Finex|FiNeX]])||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || started ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| done ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 355)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93235}} - On trunk scaling down the font size reduce the line-height. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95307}} - Testcase is there, added to summary. Bug still valid in Konqueror 4. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|115293}} - Added testcase. Bug reproducible. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Added testcase. Bug reproducible: selecting text on a fixed textarea don't make the textarea scroll. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|70350}} - existing testcase. CSS stylesheets. still bug [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85609}} - testcase existing and labeled. Still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|118933}} - JS problem with proxyRender. Testcase reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81739}} - test case already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** test case tag already present [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81875}} - test case added. broken in trunk and 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82014}} - test case and tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**still broken in 3.5.9 and trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107321}} - Bug reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. Anyway the page is not perfect, there are still some rendering problem, probably related to the JS. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118459}} - Printing problem confirmed on specific page. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - The page on the example is completely broken. Anyway the website has been (fortunatly) updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118842}} - Bug confirmed even on trunk (search on lufthansa website doesn't work) [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118890}} - Ford website car builder doesn't work. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (major) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 (minor) [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still an issue in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Bug still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
** still in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
** still reproductible in 3.5.9 [[User:lemma|lemma]]&lt;br /&gt;
** actually they do have buttons for me but the behaviour has changed (see the HTML toolbar). However it's fixed for trunk as the maximize-button no longer gets disabled. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
** I can still reproduce this partly in 3.5.9.&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
** This bug is still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
**Maybe. The testcase seems to render the same in iceweasl as in konq, but I'm not sure SadEagle agrees all is well in the comments. [[User:Blauzahl|Blauzahl]] &lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
** still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
** Still present in 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - Cannot reproduce on trunk. The mouse icon over the mail address is displayed correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118471}} - Cannot reproduce the rendering problem. The first example is correct, the second test address is unreachable. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118646}} - Cannot reproduce the rendering problem on trunk. It has been reproduced on 4.0.3 instead. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118671}} - Bug fixed in KDE 3.5.8 and KDE 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118860}} - Sites displayed correctly in UTF8 (with jap). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118886}} - Set focus on frames is working now. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81187}} - fixed in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**Still present in 3.5.9 [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82420}} - fixed in trunk but still in 3.5.9. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|117949}} - fixed in trunk but still in 3.5.9. [[User:Edulix|Edulix]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|95866}} - fixed in trunk. - [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
==Bugs no longer present in 3.5.9 and 4.x==&lt;br /&gt;
If a bug is reported against a version of KDE before 4.0, but the bug is no longer present in 3.5.9 and 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;
*&amp;lt;s&amp;gt;{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]] [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** Set to remind in case problems occur with a smaller CPU than mine [[User:lemma|lemma]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]] works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]] can't reproduce in 3.5.9 [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]] wrapping in 3.5.9, so I consider this fixed [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;works in 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma.&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Working on 3.5.9 as well. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;also working in 3.5.9. [[User:lemma|lemma]]&amp;lt;/s&amp;gt; REMIND&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Recovered the old page from archive.org and attached that address. Works in 3.5.9 as well as trunk. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh&amp;lt;/s&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|160385}} - Fixed in 4.02&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;this fix has already been backported. [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**&amp;lt;s&amp;gt;Fixed for 3.5.9 as well [[User:lemma|lemma]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|95274}} - either this is fixed in 3.5.9 and trunk, or my test-case is invalid. Please can someone check the testcase is valid before closing this one. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
** &amp;lt;s&amp;gt;also fixed in 3.5.9 [[User:Grundleborg|Grundleborg]] &amp;lt;/s&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
**I agree with lemma. This bug is clealy an issue with the web site, not with konqueror. (just look at the source of the test-case to see why!) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
**oops! looks like the bug number here is wrong?! [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot;. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**closed as &amp;quot;remind&amp;quot; since the example site no longer works. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
**not sure I understand coolo's comment. Is it enough to explain the bug, or not? can someone else take a look please. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**I agree with Finex, and he's already changed it :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&amp;lt;/s&amp;gt;&lt;br /&gt;
**reporter says site no longer triggers bug, so can not test it. closed as remind. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* &amp;lt;s&amp;gt;{{Bug|81185}} The bug cannot be reproduced (website was updated). Closed as REMIND.&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
* {{Bug|70365}} I really want to close this with REMIND. game controls under flash? flash stuff has changed so much.... [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* {{Bug|70855}} - I should just close this as INVALID, as the site is long gone, but I like Brazilians, so maybe when I'm awake, I'll go back and use REMIND. I'm not doing this right now, because the 404 has an interesting rendering error which I should probably file a bug on if I knew what to call it. (blue line thick in konq, thin in ice weasel) http://www.in.gov.br/imprensa/index.html [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
Opps! That's the wrong number, but I'll find it. :)&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&amp;lt;/s&amp;gt;[[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt; {{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
** Duplicate of {{Bug|57485}}, asked frederikh&amp;lt;/s&amp;gt; [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**have tested on current ebay site using 4.0.3 and added instructions to reproduce. couldn't see an easy way of creating a standalone testcase. [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
** Testcase added, no Yahoo account needed now, needs marking as [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
**Tested and unable to reproduce in 4.0.3 here.  [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
** I guess someone with a slow CPU (orig. reporter had around 1GHz) should recheck this on 3.5.9. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|81628}} - needs someone who understands about arabic/RTL text etc... [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh,&amp;lt;s&amp;gt; if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&amp;lt;/s&amp;gt; I love it when devs fix my bugs![[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|79369}} - Custom konqueror stylesheet doesn't work. The bug cannot be reproduced! [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**however, there is a test-case and this still renders differently to other browsers. I don't know, though, which browser is correct, so this needs to be looked at by konq devs. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|81168}} - don't know whether there is a bug here or what? SadEagle - over to you :). [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70525}} - heh, bugzilla for bookmarks. apparently this is to go into regression testing, has it already? &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt; [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|120644}} - &amp;lt;b&amp;gt;css&amp;lt;/b&amp;gt;, testcase attached [[User:Blauzahl|Blauzahl]] [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|71363}} - who do we render as today? sounds like this is a policy thing [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|66583}} and {{Bug|124050}} have been marked duplicate. However I doubt they really are. Might be policy. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|67148}} Still present in 3.5.9 and trunk. Actually I think this might be about policy and (if so) could be considered INVALID. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
** I can confirm this bug. On 3.5.9 it still behaves as described in the bug. On trunk it behaves just the opposite. [[User:lemma|lemma]]&lt;br /&gt;
** This might actually be a policy thing. [[User:lemma|lemma]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|5698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90213}} - Still needing a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
**asked if this can still be reproduced. Will give 30 days, then close. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92274}} - Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&lt;br /&gt;
**requested a current example or testcase. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
**can't get that site to load either. requested feedback. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
*{{Bug|118761}} - The bug seems fixed. But I'm waiting for an answer for confirmation. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
** Original site no longer available. The original reporter is trying to get it back. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
** The sites have changed. As the the reporter mentioned several sites I posted a comment to ask for other sites he's observing high CPU. Probably could be set to REMIND soon. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
** Posted a comment asking if this is still reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|82216}} example site no longer accessible. requested a testcase or new sample site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|161056}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
*{{Bug|160945}} There's really not much information and I can't reproduce it. [[User:Edulix|Edulix]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
**now listed as konqueror-general so shouldn't be included in todays triage anyway. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
** I don't think so, since it affects view-&amp;gt;image in a web page. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120476}}, {{Bug|121401}} - not sure what to do since there are no &amp;quot;access keys&amp;quot; in Konqueror 4. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**These were just reimplemented, and I suspect it is different code. (blauzahl)&lt;br /&gt;
**will test next time I svn up. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|70447}} - this is STUPID and i want to close it with INVALID or turn it to WISHLIST and then mark it INVALID; why does anybody care about mouse behaviour? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-07T12:40:40Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs with test-cases Added */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Warning|&lt;br /&gt;
This page is now archived for reference by the developers. Please do not add information on newly triaged bugs to it.}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done up to+including {{Bug|80771}}, someone else can do the rest as have to stop now. ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done ({{Bug|93235}} by [[User:Finex|FiNeX]])||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || started ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| working (done up till {{Bug|118406}}) ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done - #120476 left (no more access keys in kde4 ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| {{Bug|121401}} left. No access keys in KDE4.||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
(Total bugs 355)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails, can't add testcase tag, needs version change [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93235}} - On trunk scaling down the font size reduce the line-height. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95307}} - Testcase is there, added to summary. Bug still valid in Konqueror 4. - [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67148}} - testcase added, works in 3.5.7 and in trunk - can be marked as resolved.  annma&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85609}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&lt;br /&gt;
*{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma&lt;br /&gt;
*{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86727}} - testcase work in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87150}} - testcase already existing (needs label). works in trunk. probably a previous error in the page that has been fixed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87357}} - testcase work in trunk. the site mentioned as original testcase no longer sports the feature that provoked the bug. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87562}} - works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119944}} The bug was resolved by the website [[User:krop|krop]]&lt;br /&gt;
*{{Bug|160385}} - Fixed in 4.02&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92274}} - Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
* {{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
* {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|86794}} - encompasses two bugs of which the first one seems fixed, the second seems to be a duplicate of {{Bug|57995}}. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh, if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|79369}} - Custom konqueror stylesheet doesn't work. The bug cannot be reproduced! [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - The page which should have a problem is outdated. Needed an exact testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Cannot reproduce the bug because the page is &amp;quot;not found&amp;quot;. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115293}} - Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107321}} - Testcase needed because the original website has been changed. (bug against navigating with &amp;quot;back&amp;quot;). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|5698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90213}} - Still needing a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-07T09:29:27Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs needing attention from Konqueror developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| Skipped {{Bug|79369}} need more testing||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done up to+including {{Bug|80771}}, someone else can do the rest as have to stop now. ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done, can somebody take {{Bug|93235}}||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || started ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-02 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-03 || 20&lt;br /&gt;
|-&lt;br /&gt;
|2005-04 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-07 || 10&lt;br /&gt;
|-&lt;br /&gt;
|2005-08 || 10&lt;br /&gt;
|-&lt;br /&gt;
|2005-09 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-11 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| working (done up till {{Bug|118406}}) ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done - #120476 left (no more access keys in kde4 ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| {{Bug|121401}} left. No access keys in KDE4.||&lt;br /&gt;
|-&lt;br /&gt;
|2006-03 || 17&lt;br /&gt;
|-&lt;br /&gt;
|2006-04 || 19&lt;br /&gt;
|-&lt;br /&gt;
|2006-05 || 20&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&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&lt;br /&gt;
|-&lt;br /&gt;
|2007-08 || 12&lt;br /&gt;
|-&lt;br /&gt;
|2007-09 || 9&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 972)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails, can't add testcase tag, needs version change [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67148}} - testcase added, works in 3.5.7 and in trunk - can be marked as resolved.  annma&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85609}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&lt;br /&gt;
*{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma&lt;br /&gt;
*{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86727}} - testcase work in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87150}} - testcase already existing (needs label). works in trunk. probably a previous error in the page that has been fixed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87357}} - testcase work in trunk. the site mentioned as original testcase no longer sports the feature that provoked the bug. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87562}} - works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119944}} The bug was resolved by the website [[User:krop|krop]]&lt;br /&gt;
*{{Bug|160385}} - Fixed in 4.02&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92274}} - Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
* {{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
* {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|86794}} - encompasses two bugs of which the first one seems fixed, the second seems to be a duplicate of {{Bug|57995}}. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh, if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - The page which should have a problem is outdated. Needed an exact testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Cannot reproduce the bug because the page is &amp;quot;not found&amp;quot;. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115293}} - Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107321}} - Testcase needed because the original website has been changed. (bug against navigating with &amp;quot;back&amp;quot;). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|5698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90213}} - Still needing a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-07T09:28:41Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs needing attention from Konqueror developers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Gtoth|sim0nx]]|| svn trunk r793287||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|FiNeX]]|| Skipped {{Bug|79369}} need more testing||&lt;br /&gt;
|-&lt;br /&gt;
|2004-02 || 10 || [[User:Njg234908|Njg234908]] || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-03 || 14 || matt__ || done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-04 || 11 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-05 || 14 || [[User:Grundleborg|Grundleborg]] || done up to+including {{Bug|80771}}, someone else can do the rest as have to stop now. ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-06 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-07 || 8 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-08 || 11 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2004-09 || 16 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-10 || 8  ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-11 || 12 || kirun || done, can somebody take {{Bug|93235}}||&lt;br /&gt;
|-&lt;br /&gt;
|2004-12 || 13 || [[User:JLP|JLP]] || started ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-01 || 11 || [[User:Gtoth|sim0nx]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-02 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-03 || 20&lt;br /&gt;
|-&lt;br /&gt;
|2005-04 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-05 || 23 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-06 || 22 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-07 || 10&lt;br /&gt;
|-&lt;br /&gt;
|2005-08 || 10&lt;br /&gt;
|-&lt;br /&gt;
|2005-09 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-10 || 20 ||[[User:Finex|FiNeX]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2005-11 || 16&lt;br /&gt;
|-&lt;br /&gt;
|2005-12 || 21 ||[[User:Finex|FiNeX]]|| working (done up till {{Bug|118406}}) ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-01 || 13 ||[[User:krop|krop]]|| done - #120476 left (no more access keys in kde4 ||&lt;br /&gt;
|-&lt;br /&gt;
|2006-02 || 13 ||[[User:krop|krop]]|| {{Bug|121401}} left. No access keys in KDE4.||&lt;br /&gt;
|-&lt;br /&gt;
|2006-03 || 17&lt;br /&gt;
|-&lt;br /&gt;
|2006-04 || 19&lt;br /&gt;
|-&lt;br /&gt;
|2006-05 || 20&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&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&lt;br /&gt;
|-&lt;br /&gt;
|2007-08 || 12&lt;br /&gt;
|-&lt;br /&gt;
|2007-09 || 9&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 972)&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
&lt;br /&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;
*{{Bug|19921}} - test case was already there but wasn't marked. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|32563}} - testcase added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79492}} - testcase already present. Bug still reproducible [[User:Finex|Finex]]&lt;br /&gt;
**seconded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug still reproducible: Saving the file of the testcase will start Kget which save an empty file [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|79813}} - testcase already present. Added on the subject. Bug (?) still reproducible. Is it really a bug? It should be checked if a valid email address could contain a &amp;quot;#&amp;quot; char [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|80432}} - testcase already present (even on subject). Bug still reproducible. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|54844}} - simple (!) testcase added. Bug still reproducible but minor. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**[testcase] tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|54696}} - testcase already present (even on subject). Bug still reproducible. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56118}} - testcase already present (even on subject). Was actually two different bugs (partly fixed), maybe rename to make the issue clearer. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version and title changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|55946}} - testcase already present (even on subject). Still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** confirmed and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|37007}} - added a testcase and [testcase] tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|53885}} - Added an admittedly simple testcase. It might be disputable if this is actually a bug, a wish or deemed as correct behaviour. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
** see also {{Bug|47320}} - similar [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
** testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57819}} - Old testcases no longer valid. Added a new testcase. Bug still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57360}} - Some testcases seem to work on trunk, others not. name-anchors seem more likely to work than id-anchors. Needs version change [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added and version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49441}} - test case uploaded [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50688}} - testcase copy uploaded. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57485}} - added a simpler testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|57995}} - readded testcase (already labeled). still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|51202}} - test case still fails. added testcase tag [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59492}} - css test suite case; last test fails, can't add testcase tag, needs version change [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|58111}} - testcase already there (needs label), still reproducible in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|58432}} - added new testcase, still reproducible in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60867}} - uploaded testcase as attachment. Still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|62072}} - testcase was already there (needs label), still present in trunk. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63048}} - testcase was already there (needs label), still present in trunk. Needs version change. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61176}} - testcase tag added. still in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61417}} - testcase tag added. still present in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64705}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65722}} - testcase tag added, still present in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|66781}} - new testcase added by lemma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67353}} - new testcase added by annma.&lt;br /&gt;
**testcase tag added, version changed [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83916}} - testcase already there (needs label), could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84217}} - testcase (needs label), confirmed, could probably be made a wish. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added, version updated. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83755}} - testcase (already has label), confirmed. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|82930}} - testcase (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
**is it possible to create a narrowed down testcase for this? maybe I'll have a go at it :) [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83326}} - testcase (needs label), confirmed, needs recheck if I actually understood the problem. Needs version. [[User:lemma|lemma]]&lt;br /&gt;
**looks OK to me. testcase tag added, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83880}} - testcase (already has label), still minor issues. [[User:lemma|lemma]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92885}} - testcase already present (needs label), confirmed.&lt;br /&gt;
**testcase tag added. confirmed on trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|92699}} - testcase added, needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**version changed and testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|93747}} - existing testcase (attached), needs label, confirmed [[User:kirun|kirun]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|84498}} - testcase already present, confirmed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85774}} - testcase already present (needs label), confirmed. [[User:lemma|lemma]]&lt;br /&gt;
** needs a minimal testcase not tied to a separate site. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68391}} - testcase already present, confirmed. annma&lt;br /&gt;
**added testcase tag, version changed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76489}} - testcase already present, confirmed, suggested patch already attached, matt__&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76676}} - testcase already present, confirmed. matt__&lt;br /&gt;
**added confirmed comment, and version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77833}} - testcase already present. animated gif no longer animates at all, if you save the file and then open it in iceweasel it works fine. matt__&lt;br /&gt;
**added comment and testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|74569}} - 2 testcases already present and marked as [testcase]. 1st worked ok for me but 2nd partially reproduced problem. [[User:Njg234908|Njg234908]]&lt;br /&gt;
**updated version. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68429}} - added testcase, confirmed but low priority. annma&lt;br /&gt;
**added testcase tag. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - Bug (with testcase) reproduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78331}} - test case already given. matt__&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|78725}} - test case already given. matt__&lt;br /&gt;
**needs more investigation. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|68876}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|69091}} - test case already given, not fixed in Konqueror 4.0.68. annma&lt;br /&gt;
**version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|120458}} - Testcase already present, confirmed in trunk. [[User:krop|krop]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|89251}} - Bug confirmed on trunk (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89607}} - Bug confirmed (with testcase). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74607}} - testcase added. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|75422}} - already has testcase. confirmed. Possible patch also contained in bug report. needs to be marked [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|87094}} - already has testcase. confirmed. needs version attached. [[User:lemma|lemma]]&lt;br /&gt;
**confirmed. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
**testcase tag added. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|76122}} - already has testcase, confirmed in 4.0.3. needs marking [testcase] [[User:Njg234908|Njg234908]]&lt;br /&gt;
**testcase tag added, version set. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|104977}} - Found different JS problems on the webpage, them are different from the problems reported. Confirmed the problem on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105505}} - Bug confirmed on the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94867}} - Testcases are there on the linked page - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105776}} - Bug partially confirmed. Added the testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93013}} - testcase is any frames site, added new suggestion, confirmed [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|90602}} - Testcase valid on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92142}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92228}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113776}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114615}} - Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114941}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96935}} - Testcase confirmed. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115325}} - Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|120644}} Testcase already present, the bug still exists in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106663}} - Testcase confirmed. Moreover a new problem is introduced on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106674}} - SVG rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106749}} - Problem while rendering a textarea on a form. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106785}} - Problem iterating CSS rules from JS. Two testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106806}} - Set/get CSS attribute from Javascript. With testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|96312}} - The bug is about websites being marked as secured (lock icon closed) but the site not or only partially being secure. The bug is still present in 3.5.9, but secured websites aren't displayed at all as being secure or not in konqi, at least not for me. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107275}} - Javascript issue with testcase. What is the correct behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107336}} - Table rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107463}} - Table rendering problem with Javascript. Testcase added. [[User:Finex|FiNeX]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|107705}} - Iframe rendering problem. Testcase added. [[User:Finex|FiNeX]]&amp;lt;/s&amp;gt;&lt;br /&gt;
*{{Bug|107862}} - GET/POST header refresh problem. Testcase added [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117626}} - CSS rendering problem. Testcase confirmed. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Bugs with step-by-step instructions==&lt;br /&gt;
If you have provided step by step instructions on how to reproduce a bug, please list the bug here.&lt;br /&gt;
&lt;br /&gt;
*{{Bug|80067}} - For reproduce the bug go to google.com, type some text on the search field, press &amp;quot;TAB&amp;quot; and &amp;quot;SPACE&amp;quot; quickly. The search will not be started. [[User:Finex|Finex]]&lt;br /&gt;
*{{Bug|51649}} - reproduced using instructions. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|61710}} - instructions to reproduce. Would be good if someone could figure out how to make a testcase out of it. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65528}} - instructions tag added, since easy steps to reproduce. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|105846}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106407}} - Bug confirmed on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106469}} - The flash applet is loaded right (using a valid user-agent), but the image above is not refreshed clicking on the &amp;quot;NEXT&amp;quot; button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115182}} - The preload seems ok. But the page on the right is not rendered correctly when you click directly on pages. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97167}} - Added new url to test the bug on...still present in trunk [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107209}} - Bug reproduced in trunk. Tabs opened with JS doesn't activate konqueror tab actions. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108077}} - Bottom frame is not rendered when the website is loaded. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117569}} - Google analytics is still not well rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118104}} - konqueror trunk doesn't crash on a alert message in a specific webpage. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118406}} - Still rendering problems on the webpage (differents from the initial report). Added a screenshot. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
*{{Bug|31575}} - seems to be fixed in svn trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|79207}} - cannot reproduce in svn trunk, the select box is working as expected [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|160082}} - works in 4.0.2, reported in 3.5.9 with '''backtrace''' [[User:Blauzahl|Blauzahl]] 03:31, 4 April 2008 (CEST)&lt;br /&gt;
*{{Bug|52801}} - Performance improved. Not valid on 4.0.3 [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|54985}} - works in trunk, both testcases mentioned work fine here [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55260}} - works in trunk, simple testcase added to confirm. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|56354}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|55912}} - testcase works in 3.5.9 and trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|39703}} - can't reproduce in trunk [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|48341}} - seems to be fixed from the test-case included [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|49523}} - included test case works fine [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|63139}} - testcase works in trunk but exposes another possible bug which I'm going to file separately. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|62481}} - seems to work fine in trunk. new testcase to confirm added (needs label?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|63112}} - seemed to be more of a wishlist item, however fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|64382}} - test case tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|64635}} - testcase tag added, can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|56188}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|66583}} - can't reproduce in trunk. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|67148}} - testcase added, works in 3.5.7 and in trunk - can be marked as resolved.  annma&lt;br /&gt;
*{{Bug|82737}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|120315}} - Can't reproduce in trunk. [[User:krop|krop]]&lt;br /&gt;
*{{Bug|84512}} - testcase works in trunk, probably due to Qt4. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85609}} - testcase works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|92685}} - bug asks for wrapping, testcase now makes scrollbar which seems OK [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|92937}} - neither of the sites listed give me high CPU [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|77454}} - seems to be fixed (e.g. 'annoying' behaviour gone!). matt__&lt;br /&gt;
*{{Bug|74352}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|74471}} - unable to reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|77966}} - testcase works in trunk. matt__&lt;br /&gt;
*{{Bug|87562}} - Cannot reproduce on Konqueror 4 because the &amp;quot;enlarge&amp;quot; and &amp;quot;shrink&amp;quot; actions haven't a button. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87150}} - Website address changed. Tested the new  (?) address (http://europa.eu/index_fr.htm) which is working. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - The website now is rendered quite well because there are no layers  (the bug was about &amp;quot;layers&amp;quot; on webpages). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|77924}} - after discussion on irc we decided this was the right place for this bug. matt__&lt;br /&gt;
*{{Bug|78046}} - test case appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|86794}} - Bug fixed (on both KDE3.5.8 and trunk) but the report was left open. It should be closed.  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86727}} - Not reproducible on trunk (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93078}} - Can't reproduce, new tests added [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|78285}} - testcase appears to be working in trunk. matt__&lt;br /&gt;
*{{Bug|68574}} - testcase appears to be working in trunk: no difference with Firefox for ex. annma&lt;br /&gt;
*{{Bug|80754}} - added a testcase. seems to be fixed in trunk though. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|119326}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|119721}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|119824}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|120124}} - Resolved in trunk [[User:krop|krop]]&lt;br /&gt;
*{{Bug|88801}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|88851}} - Cannot reproduce. Bug fixed on both KDE 3.5 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89231}} - Bug not reproducible on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89373}} - Bug fixed since 3.5. It should be closed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90035}} - Performance problem not present in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|74709}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|74877}} - can't reproduce in 4.0.3 [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|86671}} - seems fixed in trunk but only part is checkable to no-longer existant external testcase. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86727}} - testcase work in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86938}} - added new testcase (needs label). Seems to be fixed in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87150}} - testcase already existing (needs label). works in trunk. probably a previous error in the page that has been fixed. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87357}} - testcase work in trunk. the site mentioned as original testcase no longer sports the feature that provoked the bug. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87562}} - works in trunk. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|119944}} The bug was resolved by the website [[User:krop|krop]]&lt;br /&gt;
*{{Bug|160385}} - Fixed in 4.02&lt;br /&gt;
*{{Bug|94755}} - messages do show in Konqueror 4 (svn r794088) and probably also in 3.5.9 - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|76053}} - can't reproduce in 4.0.3, possibly needs testing with different colour schemes though [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|105327}} - The bug seems solved on 4.0.3. It needs to be verified. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105358}} - The page is correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|95028}} - No crash here. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105959}} - Konqueror doesn't crash. But I've no real player installed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106330}} - Fixed on trunk. Tried the testcase. The event is called on the onload() of animated gif. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106367}} - The website seems to be ok. The navigation is not slow. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106386}} - Testcase not reproducible on trunk. The bug is fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92186}} - The first website is no more valid. The second one is correct. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114212}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114386}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114636}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114828}} - Konqueror now doesn't use lot of CPU. The bug is probably fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115101}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115102}} - Cannot reproduce on KDE4. It has been fixed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115323}} - Fixed on both 3.5.8 and trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121224}} Testcase already present, bug resolved in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|121266}} Testcase already present, wish granted in trunk. [[User:krop|krop]]&lt;br /&gt;
* {{Bug|97355}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
* {{Bug|97621}} - Fixed on both 3.5.9 and trunk. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|106748}} - The page now is rendered better. I wasn't able to reproduce the rendering problems reported initially. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107061}} - The webpage is rendered correctly. It was reported a CSS rendering problem. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|122696}} - Resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122052}} - Testcase already present - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|69646}} - popup menu disabled after http request dispatch closed with worksforme  (it worked for last commenter, and if I understand them correctly, works fine now) confirmed by fredrikh [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
* &amp;lt;s&amp;gt; {{Bug|160268}} - nspluginviewer crash under 3.5.8 not specific report anyway&amp;lt;/s&amp;gt; fredrikh agrees. Great pathological website though: www.canal13.cl [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|107904}} - Cannot reproduce on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108116}} - Konqueror load the website without using a lot of CPU. Maybe the website now is better, or maybe even konqueror is better. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|108156}} - The website is correctly rendered on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117776}} - Konqueror in trunk is rendering the table on the webpage correctly. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118190}} - The webpage pointed seems to be correctly rendered. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121665}} - Testcase added - The bug is resolved in konq4 [[User:krop|krop]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as RESOLVED==&lt;br /&gt;
Bugs filed against KDE 4 (ie, only very recent ones) that can no longer be reproduced should be listed here. Bugs filed against earlier versions of KDE that can no longer be reproduced should be listed in the section above.&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|159325}} - Seems to be OK with kdelibs: r793701, kdebase: r793720 - [[User:JLP|JLP]]&amp;lt;/s&amp;gt; REPORT CLOSED [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as INVALID==&lt;br /&gt;
Bugs which are no longer valid go here. A link to the bug and why it qualifies as invalid should be provided.&lt;br /&gt;
&lt;br /&gt;
Some examples of when a bug should be closed as INVALID:&lt;br /&gt;
*The reported behavior is not a bug&lt;br /&gt;
*The bug is completely unrelated to KDE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*{{Bug|59815}} - Closed with REMIND per SadEagle's instructions [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|85783}} - testcase renders the same in 3.5.9, trunk, FF2, IE6/7, probably an error in the page. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|85688}} - testcase (needs to be labeled), one part of the bug has been fixed, the other is not checkable due to the external testcase being unavailable. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|87357}} - Bug not reproducible: website changed and no informations about the problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|94675}} - Can't reproduce, it looks like site changed. New one appears to work fine. - [[User:JLP|JLP]]&lt;br /&gt;
*{{Bug|105123}} - It seems that the bug is no more applicable because the website has changed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106281}} - Cannot reproduce the problem because the example testsite has been updated. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92183}} - The webpage is not accessible anymore. What should we do with this bug? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92274}} - Website changed. Cannot reproduce the bug anymore. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114415}} - This is a WISH. Severity changed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115027}} - Konqueror now render the page correctly. Maybe because the page is changed. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121668}} - Need to be marked as invalid [[User:krop|krop]]&lt;br /&gt;
* {{Bug|119944}} The bug cannot be reproduced (website was updated) [[User:krop|krop]]&lt;br /&gt;
* {{Bug|122671}} - No answer from the reporter / Testcase cannot be verified (site is down). [[User:krop|krop]]&lt;br /&gt;
&lt;br /&gt;
This list is not exhaustive. If you feel a bug is invalid for any other reason, be sure to list it here, mentioning why you think it is invalid.&lt;br /&gt;
&lt;br /&gt;
==Bugs to be marked as DUPLICATE==&lt;br /&gt;
Duplicates found should be placed here with a link to the bug which you think it is a duplicate of.&lt;br /&gt;
&lt;br /&gt;
* {{Bug|160268}} - Flash crash in 3.5.8 that was fixed in 3.5.9&lt;br /&gt;
&lt;br /&gt;
* {{Bug|122123}} - Duplicate of {{Bug|36912}} [[User:krop|krop]]&lt;br /&gt;
* {{Bug|117934}} - Maybe this is a dup of {{Bug|48302}}. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|55087}} - the reporter was using a PIII 500MHz, I'm on a Q6600. Moving the mouse as reported uses quite some CPU (&amp;gt;32% on 3.5.9, &amp;lt;27% on trunk) but someone with an older CPU should see if this is still an issue. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|60652}} - needs someone with an ebay account to create a simple test-case so non-ebay account holders can reproduce the bug. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|77030}} - needs someone who can read hindi (Devanagari script) to check this one - possibly fixed in trunk. matt__&lt;br /&gt;
*{{Bug|77246}} - needs someone with a Yahoo! ID. matt__&lt;br /&gt;
*{{Bug|77592}} - needs someone with Java. matt__&lt;br /&gt;
*{{Bug|78210}} - needs someone with a gay.com account. matt__&lt;br /&gt;
*{{Bug|86794}} - encompasses two bugs of which the first one seems fixed, the second seems to be a duplicate of {{Bug|57995}}. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|74286}} - font face issue - needs a setup with no MS Fonts installed and fontconfig set to replace missing fonts... [[User:Njg234908|Njg234908]]&lt;br /&gt;
*{{Bug|105538}} - Bug on BIDI rendering text. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106244}} - Need to be tested by someone which has an account to the website. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113811}} - Need testing by someone with an account on dresdner-privat.de. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|114849}} - Need to be tested on particular hours/days. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106742}} - The problem seems being reproducible even on KDE4. Need to be tested by someone with a blogger.com account. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Non english locales==&lt;br /&gt;
Bugs requiring non-English locales should be listed here, along with the locale they require.&lt;br /&gt;
*{{Bug|79356}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52685}} - need testing with JP locale. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86938}} - Need testing with charset different from ISO-8859-1. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89484}} - Problem confirmed on Thai charset (testcase included). [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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|79897}} - Bug with complete testcases. Firefox 3b5 behavior is like konqueror (on KDE3 and KDE4). Actually konqueror is respecting standard. Emulate IE breaking them is not a good idea. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80285}} - On this report is proposed to split on certain condition long lines without spaces. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|52665}} - Issue about XML mime. Need some attention. A lot of testcase are still valid. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92670}} - DOCTYPE bug, looks related to {{Bug|52665}} and {{Bug|71813}} [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|53175}} - Question about JS which test the browser. How should konqueror be identified? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|47320}} - no idea what to do about this one... probably best to do nothing [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
**see also {{Bug|53885}} [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|40116}} - can't figure out what's going on here. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|50815}} - not sure if this is intended behavior or not? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|60956}} - carewolf: what to do about this bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|59803}} - Icky XSLTProcessor and browser specific stuff. [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|65516}} - don't know about this one. test case wraps in both konq and firefox. Don't know what the correct behavior is. [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65606}} - should this bug be closed as per the last comment, or is the _new stuff really a bug? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|65673}} - behavior is still the same as firefox. Should it be changed? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|83284}} - testcase (needs label), confirmed, needs checking what the default behaviour should be.&lt;br /&gt;
*{{Bug|85712}} - external testcase, too slow to check the bug. If this concerns META Refresh is there another way to test this? [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|88377}} - Need some attention: is this a kmail or a konqueror bug? Is kmail using khtml for rendering html emails? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86671}} - The websites which were reported to make konqueror crash are changed/closed. There is no testcase or specific instruction. Instead there are about 20 duplicate of the bug. (maybe some dups are not real dups says [[User:Grundleborg|Grundleborg]] on IRC)  [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|80771}} - problem seems to be much less severe on KDE4, perhaps the bad JS code is responsible for the CPU use? [[User:Grundleborg|Grundleborg]]&lt;br /&gt;
*{{Bug|88817}} - Cannot reproduce because the first website is not reachable and gmail interface (see comment #8) is quite unusable with konqueror trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89382}} - Seems fixed on 3.5. Cannot reproduce on trunk because pressing &amp;quot;CTRL&amp;quot; access keys are not displayed. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89838}} - Need some attention by developers. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90019}} - Printing problem which is not applicabile in trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|87178}} - External testcase is no longer reachable. The bug is about layers (Netscape 4.0). Basic tests with layers work and a larger testcase might be difficult to acquire. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|106302}} - From comments it seems that the problem could be of ghostscript and not a konqueror one. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|93239}} - default shortcut masks this, but behaviour is inconsistent between fields [[User:kirun|kirun]]&lt;br /&gt;
*{{Bug|105852}} - Bug not reproducible on trunk because the find dialog will close after the search. Is this a wanted behavior? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90686}} - Is this bug still valid for kde 4. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113905}} - The bug cannot be tested because konqueror cannot render the form (regression???). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|115120}} - The bug is about the focus on links but konqueror 4 seems having some problem with them. [[User:Finex|FiNeX]]&lt;br /&gt;
* {{Bug|121458}} - Need review from Germain - added w3.org. link [[User:krop|krop]]&lt;br /&gt;
*{{Bug|106669}} - Need attention by developers. There is no testcase, bub maybe a useful backtrace? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|98132}} - Bug is about images being cached and displayed as broken even after having been added to the given location. Based on the comments I'm not sure whether this really is a bug... [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|98214}} - &amp;quot;div style margin not rendered properly&amp;quot;, when div-width is set to 100%, border isn't rendered.... this bug needs developer attention because the problem is still present, but firefox renders it exactly the same way [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|97245}} - username/password from wallet only filled in after page completely loaded ... looks like a &amp;quot;feature request&amp;quot; not really like a bug. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|108208}} - Charset related problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|117903}} - Konqueror in trunk render the page better than 3.5.8. Is this better enough? (chinese webpage translated with google). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|118013}} - Question about caching. How should konqueror behave? [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|92703}} - html form scrolling can someone fix this? [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*&amp;lt;s&amp;gt;{{Bug|70072}} careful here, if you do find with right-click menu it is fine; closed with WORKSFORME&amp;lt;/s&amp;gt; otoh, if you do it with control-f it doesn't work, this is a &amp;lt;b&amp;gt;regression&amp;lt;/b&amp;gt;, so i opened {{Bug|160490}} stupid web forms! [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug95177}} - The original bug report is OK but there is some stuff further in comments that make Konqueror 4 crash. - [[User:JLP|JLP]]&lt;br /&gt;
&lt;br /&gt;
==High Profile==&lt;br /&gt;
*{{Bug|93648}} - Affects Hotmail. Related to javascript. Probably WISH as it relates to the implementation of the non-standard window.showModalDialog(). testcase added to the bug. [http://developer.mozilla.org/en/docs/DOM:window.showModalDialog  Testcase] [[User:kirun|kirun]]&lt;br /&gt;
&lt;br /&gt;
==Needs more information==&lt;br /&gt;
*{{Bug|55870}} - The URL (k-state) given by the original reporter is offline. According to archive.org the menu consisted of an image map which works flawless in 3.5.9 and trunk. The second URL (mplayer) looks the same in Firefox. It seems this problem is not reproducible. [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|86747}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|89999}} - Need some more infos. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|86747}} - External testcase is no longer reachable. Bug is too unspecific to be reproduced by other means (INVALID?). [[User:lemma|lemma]]&lt;br /&gt;
*{{Bug|105108}} - There is a patch for KDE4, asked if it has been applied on trunk. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105140}} - It is not clear what is the real problem. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105250}} - This bug needs more info. I've asked on the report a testcase because the old one is not available. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|105723}} - The page which should have a problem is outdated. Needed an exact testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|106391}} - Example webpage not reachable. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|113907}} - Cannot reproduce the bug because the page is &amp;quot;not found&amp;quot;. Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97765}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|96296}} - Website which make konqueror crash is no more reachable. There are no infos and testcases. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|115293}} - Asked a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|97077}} - Testcase described but test website no longer reachable. I've asked the reporter to verify the bug and if possible upload the files which baused the problem. [[User:Gtoth|sim0nx]]&lt;br /&gt;
*{{Bug|107321}} - Testcase needed because the original website has been changed. (bug against navigating with &amp;quot;back&amp;quot;). [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|107430}} - Javascript/doctype rendering problem. I've asked some more informations. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&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;
&lt;br /&gt;
*{{Bug|5698}} - I can't reproduce this from the old links given. teve could at one point. (nyt js popup bug) [[User:Blauzahl|Blauzahl]]&lt;br /&gt;
*{{Bug|90308}} - Need feedback. [[User:Finex|FiNeX]]&lt;br /&gt;
*{{Bug|90213}} - Still needing a testcase. [[User:Finex|FiNeX]]&lt;br /&gt;
&lt;br /&gt;
==Bugs not related to today==&lt;br /&gt;
*{{Bug|160394}} - KSSL related&lt;br /&gt;
* {{Bug|70079}} - khtml image part behavior, minor, is this part dolphin by now? [[User:Blauzahl|Blauzahl]]&lt;/div&gt;</summary>
		<author><name>JLP</name></author>	</entry>

	<entry>
		<id>http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08</id>
		<title>Contribute/Bugsquad/BugDays/06APR08</title>
		<link rel="alternate" type="text/html" href="http://techbase.kde.org/Contribute/Bugsquad/BugDays/06APR08"/>
				<updated>2008-04-06T17:07:53Z</updated>
		
		<summary type="html">&lt;p&gt;JLP: /* Bugs no longer present in 4.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Introduction==&lt;br /&gt;
This triage day will run from 0:00 UTC - 23:59 UTC on April 6th 2008. 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;
==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 r793457||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Blauzahl|Blauzahl]]|| svn branches/KDE/4.0  r793901 ||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Finex|FiNeX]]|| svn trunk r793368||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:lemma|lemma]]|| svn trunk r793971||&lt;br /&gt;
|-&lt;br /&gt;
|krop|| svn trunk r793966||&lt;br /&gt;
|-&lt;br /&gt;
|annma|| svn trunk r793777||&lt;br /&gt;
|-&lt;br /&gt;
|kirun|| 4.0.3 kubuntu||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:Njg234908|Njg234908]]|| 4.0.3 opensuse||&lt;br /&gt;
|-&lt;br /&gt;
|matt__|| svn trunk r793709||&lt;br /&gt;
|-&lt;br /&gt;
|[[User:JLP|JLP]]|| svn trunk r794088||&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;
|pre 2003|| 20 ||[[User:Grundleborg|Grundleborg]]||done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-01 || 4 ||[[User:Finex|FiNeX]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-02 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-03 || 6 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-04 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-05 || 3 ||[[User:lemma|lemma]]|| done||&lt;br /&gt;
|-&lt;br /&gt;
|2003-06 || 5 ||[[User:blauzahl|blauzahl]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-07 || 6 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-08 || 5 ||[[User:lemma|lemma]]|| done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-09 || 3 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-10 || 8 || [[User:Grundleborg|Grundleborg]] || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-11 || 12 || annma || done ||&lt;br /&gt;
|-&lt;br /&gt;
|2003-12 || 13 || [[User:Blauzahl|Blauzahl]] || starting ||&lt;br /&gt;
|-&lt;br /&gt;
|2004-01 || 13 ||[[User:Finex|Finex]]|| Skipped {{Bug|79369}} need more testing||&lt;br /&gt;
|-&l