|
| This Week... |
|
Amarok 2 reached cue sheet feature parity with Amarok 1.4, a first draft of a playlist layout config editor, and various other improvements across Amarok. C# bindings for Phonon. Beginnings of an effort to deliver a working debugger for KDevelop 4.0. Write support added to kio_svn. A Kross scripting backend, and Postgres support is added to Kamala. An initial D-Bus interface added to parts of Marble. Further development work on KHotKeys and the LionMail widget. Text-to-speech support added to the Translatoid Plasmoid, and a new Plasma widget: Fortunoid (fortune quotes). Continued improvements to Sonnet and KWin. Progress on the Virtuoso backend for NEPOMUK. Basic support for importing for SVG patterns in Karbon. Work on porting KControl and Konversation to KDE 4. Initial import of the "Peg-E" game, a "Google data Akonadi resource", KDE 4 versions of the SLP KIO-slave and Filelight, and "plasma2jolie". The Nuvola iconset moves back to kdeartwork from an unmaintained state. Eigen 2.0.0 is tagged for release.
|
Michael Pyne tells the story of a recent potential security issue in KDE, and steps taken to remedy it:
|
First off, before saying how what I'm doing fixes the problem, we have to determine what exactly the problem is.
Recently a blogger who goes by the name "foobar" posted an article called "How to write a Linux virus in 5 easy steps", discussing vulnerabilities with the current handling of .desktop files. .desktop files are used in KDE, GNOME, and other environments complying with the freedesktop.org Desktop Entry Specification. They handle such diverse tasks as application launching, internet protocol handlers for KDE, desktop and panel/taskbar icons, and even plugins. These files provide some information regarding other files. For example, KDE executable files don't have icons embedded within them, so the information on what icon to use is contained in the associated .desktop file.
.desktop files are used for many things but one use in particular is of concern: launching applications. .desktop files can be used to launch a program, which is normally used to good purpose. But what if someone were to send you a .desktop file with a nice KSirtet icon that ran a malicious program and told you it was a game? Would you run it by mistake? Would a new Linux user run it by mistake?
The traditional defense against this has been requiring executable programs on POSIX systems to have an "executable" attribute set before the system would run it. .desktop files have never used the "executable" attribute, and desktop environments including KDE and GNOME do not enforce that rule. This was actually discussed on a shared desktop development list in 2006 but no action came of it. Now I figured it was time to change that.
So, the idea here is to bring .desktop file security up to the same level of other POSIX executables. This won't defend a user who blindly follows instructions from getting cracked, just as executable bits don't defend against that for malicious Perl or Python scripts.
My work has been in several areas:
- Requiring .desktop files to be executable before they launch a program.
- Changing KDE to make new Link to Applications correctly executable.
- Drafting ideas to allow current KDE users to safely upgrade.
- Drafting ideas to allow current .desktop files to be fixed.
1 and 2 are easy enough. What was harder was thinking about how to add security without breaking existing systems. The result was to add a couple of exceptions to allow launching programs:
- If the .desktop file is owned by root, allow. This exception covers most desktop environment files (such as a KDE installation to /usr). This is possible since a user unwittingly saving a trojan .desktop file won't be able to save it as root without additional action. (Remember, we're only defending against "click-through" cracking).
- If the .desktop file is installed in a standard KDE location, allow. This is required to allow users to install KDE to their home directory without root permissions. This is allowable because although it is possible to tell a user to navigate to a certain spot and save their file, users competent enough to run their own KDE in ~/ should not fall for it. Users not running a self-KDE will not be able to save into the KDE installation directory without additional action.
The "standard KDE location" used to be a more fine-grained exception protecting the standard KDE application and service directories, and protecting the shared XDG application store. The initial implementation left out an exception required for autostarted services however, and so the exception was broaded out to .desktop files installed for KDE (XDG applications will still be allowed).
There is still the issue of what to do with custom launchers already created. After enabling the security there is no guaranteed way for KDE to tell apart user-created shortcuts from user-downloaded trojans. So, it was decided to add a method to explain what's going on and automatically fix the shortcut if necessary. (Other methods explored included an upgrade script which would "+x" (add the executable bit to) detected .desktop files automatically, but doing a thourough search would take awhile and have to start from /, not $HOME to accurately detect them all. In addition if the user already had trojans they'd be marked executable too!).
The dialog box used has gone through a few revisions:
It was recognized that this was not optimal however. The text was so long that the user was likely to simply click "Continue" and be done with it. Finally after some discussion with Celeste Lyn Paul and Tom Albers, Tom managed to reach into the root of the issue (does the user think they're running a program or not?), which led to the following mockup, which will probably be much closer to the final product after the design is worked up:
This will hopefully allow the user the opportunity to make a more informed decision without feeling they need to simply click "Continue", without breaking all of their existing program shortcuts. If the user chooses to continue then the service is automatically made executable to prevent the dialog from popping up again for the same .desktop file.
There is more to do of course. Alexander Larsson is working on the same issue with GNOME and has implemented code to show a generic icon and the actual filename for .desktop files that are not executable in Nautilus, and I'll probably see to it that the same thing happens in KDE to prevent deceptive .desktop files from causing confusion or damage. In addition, testing still needs to be done to make sure nothing else was inadvertently broken by adding more security. But this is a good start to restoring customary levels of security to KDE users.
|
|
|
| Statistics |
|
| Contents |
|
|
Bug Fixes |
Features |
Optimise |
Security |
Other |
|
Accessibility |
|
|
|
|
|
|
Development Tools |
|
|
|
|
|
|
Educational |
|
|
|
|
|
|
Graphics |
|
|
|
|
|
|
KDE-Base |
|
|
|
|
|
|
KDE-PIM |
|
|
|
|
|
|
Office |
|
|
|
|
|
|
Konqueror |
|
|
|
|
|
|
Multimedia |
|
|
|
|
|
|
Networking Tools |
|
|
|
|
|
|
User Interface |
|
|
|
|
|
|
Utilities |
|
|
|
|
|
|
Games |
|
|
|
|
|
|
Other |
|
|
|
|
|
|
There are 138 selections this week.
|
|
Bug Fixes |
|
Games |
|
Mathias Kraus committed changes in /trunk/playground/games/granatier/src:
|
the player doesn't moves into walls anymore and moves smooth around corners.each direction is managed separately.
it should be possible to merge it into at least right/left and up/down but after three days hacking I'm happy it works without bugs.
will do it sometime else. |
|
|
|
|
|
|
Graphics |
|
Andi Clemens committed changes in /trunk/extragear/graphics/digikam:
|
Fix saveViewState() for folderviews with CheckListItems, like TAlbumListView and TagFilterView.
With current implementation, we are not able to have one common loadViewState() and saveViewState() method, so we need to re-implement them in TAlbumListView and TagFilterView. This is not nice because we have duplicate code now, but since we are going to switch to ModelView concept next release, it would be a waste of time to create a new common interface or abstract class now.
We can not call virtual methods in constructors / destructors, so every view inherited from FolderView needs to call saveViewState() in its own destructor instead. |
|
|
|
|
|
|
KDE-Base |
|
Will Stephenson committed changes in /trunk/playground/base/plasma/applets/networkmanager:
|
Make openVPN + x509 + password work again. Was sending the value of the settings "secrets" field as a 3rd map layer keyed to "secrets" like every other setting. In fact the value of the vpn settings' VpnSecrets members is sent as is in the 'vpn' key of the 2nd layer map.
No thanks to the undocumented sh1t that is the NM settings interface. |
|
|
|
|
|
|
Shaun Reich committed a change to /trunk/KDE/kdebase/apps/dolphin/src/settings/navigationsettingspage.cpp:
|
Changed group config reference pertaining to the "kcminputrc" file. The Navigation page setting of whether to use single/double click navigation now saves itself properly, instead of insisting on using single-click. :)
P.S. Bear in mind that the setting still does not apply itself until a restart of Dolphin. |
|
|
|
|
|
|
David Faure committed changes in /trunk/KDE/kdelibs/kdeui/widgets:
|
Better fix for 65877, which doesn't require disabling "Tab means Down" in the completion box (#167135 says some people like that :-).
I think I found a solution that makes everyone happy: if there's only one entry then Tab autoselects the first entry and completes again, allowing to use it like a shell for local files:
/hom<tab>dfau<tab>Docu<tab> for /home/dfaure/Documents.
If there's more than one entry, then Tab does "Down" as before. |
|
|
|
|
|
|
|
|
Dario Freddi committed changes in /trunk/KDE/kdebase/workspace:
|
Applying Jacopo's patch, and removing generation of (now) useless kscreensaver interface. This should solve every kind of problems with DPMS. I will backport to 4.2 soon |
|
|
|
|
|
|
Maksim Orlovich committed changes in /branches/KDE/4.2/kdelibs:
|
|
Google maps seems to wants the DOM objects' prototypes' constructor properties to point to something other than the default Object constructor. Make them point to the Node pseudoctor for now. Probably want to give it more distinct values later on, but that's better done w/autogen. |
|
|
|
|
|
|
Maksim Orlovich committed changes in /branches/KDE/4.2/kdelibs/khtml:
|
Some fixes for our stylesheets collection to fix http://www.webtoolkit.eu/wt:
1) Make sure that we create a stylesheet object even for empty <style> elements 2) Keep track of dirtiness of stylesheets list separately from that of the style selector, and make sure to rebuild it if the collection is accessed. While I am at it, instead of having confusingly similarly named recalcStyleSelector and rebuildStyleSelector, have rebuildStyleSelector and rebuildStyleSheetList, the difference between which should be evident. Also make them private. (Though updateStyleSelector is not renamed, so things aren't 100% clear, still) |
|
|
|
|
|
|
KDE-PIM |
|
Thomas McGuire committed changes in /trunk/KDE/kdepim/kmail:
|
setTooltip -> setHelpText
This makes the status tips actually appear in the status bar. However, this doesn't work in KMail standalone (or in KOrganizer standalone), anybody got an idea why?
You'll need an up-to-date kdelibs for this. |
|
|
|
|
|
|
|
|
Michael Pyne committed changes in /trunk/KDE/kdemultimedia/juk:
|
Two bugfixes:
1. Don't allow JuK to shutdown until Phonon has definitely returned to StoppedState to prevent some backends from crashing on shutdown.
2. Delay system tray creation until after the collection list has been loaded from the cache. If we're trying to create the system tray before this process then half the time we end up freezing all of Plasma until the cache finally loads, which is especially noticable on initial KDE startup.
I will give this a few days of testing in /trunk and will then probably backport both. |
|
|
|
|
|
|
|
|
|
|
|
|
Features |
|
|
|
|
|
Nickolai Shaforostoff committed changes in /trunk/KDE/kdesdk/lokalize/src:
|
implement note editing for gettext po format. years ago custom comments were being stripped during msgmerge (ran by scripty). if I'm not misktaken, this is no more the case.
also wrap note setting into qundocommand to have edit history |
|
|
|
|
|
|
|
|
|
|
Mickael Marchand committed changes in /trunk/KDE/kdesdk/kioslave/svn:
|
Here comes write support for kio_svn (taken from "svnput" hack)
* big fat WARNING *
ok so now you can do: kwrite svn+ssh://user@host/home/user/myrepos/myfile.txt and when you save it creates automatically a commit for you.
BUT: you really can break other people work when working in team, there is NO single safety check to ensure you are not erasing a just-committed version by someone else. So use with real care.
on the other hand, it's just great for your own small repository where you write some book/article/small code.
for some reason I could not understand, kwrite keeps saving remotely even when the file has not been changed (I mean press save twice, it will actually do 2 commits to the repository ... I don't know what I missed there, if anybody knows, I am interested to find a way to stop that behavior)
PS: please don't test with KDE's SVN or I will be hated ;) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Mathias Soeken committed changes in /trunk/KDE/kdegraphics/kruler:
|
With Qt 4.5 we can create real ARGB translucent widgets. Now kruler can be made transparent, but with painting the scale fully opaque. This makes it more the ruler feeling! |
|
|
|
|
|
|
|
|
Lucas Murray committed changes in /trunk/KDE/kdebase/workspace/kwin:
|
Extracted mouse polling out of the composite timer to allow effects to detect mouse movement and modifier key changes even when KWin is idle.
As the track mouse effect requires polling to always be active disablingit by default to prevent wasting CPU usage in the default install. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lucas Murray committed changes in /branches/KDE/4.2/kdebase/workspace/kwin/effects:
|
Backport: Use the opacity of the window that a taskbar thumbnail is displayed on when displaying the thumbnail.
This allows thumbnails to fade in and out with the Plasma tooltip for example instead of always being opaque. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lucas Murray committed changes in /trunk/KDE/kdebase/workspace/kwin:
|
Added support for inter-effect communication through the use of proxy classes. Example code has been added to present windows and desktop grid, if this code is not to be used by KDE 4.3 it should be removed and added to a test effect instead. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
KDE-PIM |
|
Dmitry Ivanov committed changes in /trunk/playground/pim/krss:
|
Nepomuk tag provider implementation: - tested manually and basically works - as Nepomuk lacks support for resource monitoring the provider can't detect when a tag has been added/modified/deleted. It can only detect changes made by the application itself. - it allocates a new Nepomuk resource for a feed/item when a Nepomuk tag gets attached to this feed/item - it breaks FeedListModel because the signals from Akonadi and the Nepomuk tag provider (when deleting a tag) arrive unordered (the fix is coming)
Not recommended until Nepomuk gets support for resource monitoring. Bugs and spaghetti code included. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Nikolaj Hald Nielsen committed changes in /trunk/extragear/multimedia/amarok/src:
|
The bulk of a pretty big refactoring, moving all the file layout specific enums and methods into the dialog ( perhaps it should really go into a new class to keep ui and logic a bit more separated... ).
This allows me to start using the Tokens, and related classes for a new playlist layout editor.
Needs cleanup and regression testing/fixing |
|
|
|
|
|
|
Nikolaj Hald Nielsen committed changes in /trunk/extragear/multimedia/amarok/src:
|
First draft of a playlist layout config editor. It is currently working, but missing a lot of features suppored by the playlst rendering, such as individual element sizes and layouts, so it is not super usable yet.
I also cannot save layouts, but it will load the setup of the selected layout (click the "edit" icon in the layout selection combobox to activate it) and pressing the preview button will make the playlist display the currently defined layout.
Lots of work to be done on this one still, so no bug reports just yet please! |
|
|
|
|
|
|
|
|
Nikolaj Hald Nielsen committed changes in /trunk/extragear/multimedia/amarok/src:
|
First (well, second, but the first one working well enough to commit) attempt at a gui for setting the individual sizes of elements in the playlist editor.
If left at 0 (the default) elements will auto size.
When dragging the slider, it will not allow the total width of all items to go above 100%, so it might be necessary to make another element smaller before making a gven element larger. |
|
|
|
|
|
|
Nikolaj Hald Nielsen committed changes in /trunk/extragear/multimedia/amarok/src:
|
|
Add basic save support to the Playlist::LayoutManager. For now, pressing Ok will save the current layouts as "userTest". Now comes the hard part with figuring out how to distinguish between default ( non editable ) and user layouts and how to distinquish between editing an exsting layout an creating a new one, and possibly cloning a default one if only slight modifications are desired. Also add the year token! |
|
|
|
|
|
|
|
|
Bart Cerneels committed changes in /trunk/extragear/multimedia/amarok/src:
|
Implement rename for groups.
This was very difficult since I turn a tree structure into a flat model and back to a tree model in the proxy.I might turn SQL playlists into a flat structure by removing the playlist_groups table and adding the column label to playlists, just like in SQL podcasts. |
|
|
|
|
|
|
|
|
Bart Cerneels committed changes in /trunk/extragear/multimedia/amarok/src/playlist/view/listview:
|
Add PUD to The Playlist. By making the PUD contain all the actions that would otherwise be only accesible from the contextmenu it becomes a perfect alternative for touchscreens.
This will also allow dragging from The Playlist with the convenience of the PUD.
This is far from a perfect commit.
I will attempt to fix what is broken and cleanup later this week.
The Playlist is not really my speciality so might need some help. |
|
|
|
|
|
|
|
|
Jesse Lee Zamora committed changes in /trunk/playground/multimedia/lintv:
|
This enhances the input selection in LinTV.
* When mplayer starts, it detects which inputs are avaibile on the current TV tuner. * When LinTV starts, it selects the last selected input when LinTV was closed. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Kévin Ottens committed changes in /branches/work/~ervin/sodep/tests:
|
Provide a more complete automated test which basically does the following: - starts metaservice - loads two services - call them and check the replies - unloads the services - stop metaservice |
|
|
|
|
|
|
|
|
|
|
|
|
Optimise |
|
KDE-Base |
|
Germain Garand committed a change to /trunk/KDE/kdelibs/khtml/khtmlview.cpp:
|
prevent smooth scrolling from taking too much time when resources are scarce.
we monitor the smooth scrolling time, and stop decelerating if it happens to be too far behind schedule.
that way the total scrolling time shouldn't exceed ~twice the default scrolling time (2*140ms) in the worst situation. |
|
|
|
|
|
|
User Interface |
|
Michael Pyne committed changes in /trunk/KDE/kdeartwork/kscreensaver/kdesavers/asciiquarium:
|
The new Qt 4.5 raster graphics system has *horrible* performance with this screensaver, so try to do the painting in a more uniformly performant manner.
This seems to make the X11 engine very slightly slower but it makes the raster engine *much* faster (and OpenGL still works...).
Will backport due to the extreme amount of slowdown experienced.
Major changes are to use Source composition mode in a lot of spots to avoid using alpha-blended bitBlts. In addition the back buffer is always full blitted to the window, the dirty regions are ignored now. |
|
|
|
|
|
|
|
|
Other |
|
Educational |
|
Akarsh Simha committed changes in /trunk/KDE/kdeedu/kstars/kstars:
|
Applying Alexey Khudiakov's patch, making usability improvements to the FOV Editor:
+ Telescope eyepiece apparent fields are now measured in Degrees instead of arcminutes. + Make the Eyepiece tab default
Thanks Alexey! |
|
|
|
|
|
|
|
|
Shashank Singh committed changes in /trunk/KDE/kdeedu/marble/src/plugins/render/twitter:
|
This will at least make twitter plugina valid plugin, and marble will load it without complaining though i have commented most of the code in plugin... and twitter plugin is itself commented in CmakeLists.txt of src/plugin/render
...i am still working on reviving this plugin :) |
|
|
|
|
|
|
Shashank Singh committed changes in /trunk/KDE/kdeedu/marble/src/plugins/render/twitter:
|
commitng some stable working structure...
i will change json parser as early as possible and use twitlib [code.google.com/p/twitlib] instead of my own library for twitter interaction but that sadly would cause us to lose unicode support...
so i think i need to ponder more on this issue :) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
KDE-Base |
|
Sebastian Sauer committed a change to /trunk/KDE/kdebase/workspace/kcontrol/access/kaccess.cpp:
|
activating e.g. SlowKeys cause someone pressed the shift-key for >=8 seconds is rather destructive (I spend last hours to figure out how to disable it again, grrr).
So, let's choose the 'No'-buttoon per default to prevent ugly situations if ppl (like me) tend to just get right of modal dialogs asap without reading what they like me to do. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Lucas Murray committed changes in /trunk/KDE/kdebase/workspace/kwin/effects:
|
Remove the fade effect dependency from the highlight window effect by implementing the fade internally.
Fixes some fading bugs and will make off-screen window highlighting easier to implement whenever I get around to doing it. |
|
|
|
|
|
|
Peter Penz committed changes in /trunk/KDE/kdelibs/kfile:
|
Up to now when selecting the protocol combo of the URL navigator around 50 (!) protocols have been listed as top level menu items.
To fix this, the protocols have been categorized into several groups.
Rarely used protocols have been moved into sub menus.
The current groups are a rough suggestion, any input for improving the groups is welcome :-) |
|
|
|
|
|
|
|
|
Lucas Murray committed changes in /trunk/KDE/kdebase/workspace/kwin/lib:
|
Change motion dynamics algorithm and class structure. Animations are now smoother and less "bouncy" than before and produce the same result at any framerate.
The Motion1D and Motion2D classes are now available andreplace the Motion<T> template for external use. |
|
|
|
|
|
|
|
|
Sebastian Trueg committed changes in /branches/soprano/experimental/backends/virtuoso:
|
Finally the Virtuoso backend works nearly 100%. At least it is in a state where it can actually be used. There are still some hacks in it, some of which will hopefully be resolved once I get the necessary information or Virtuoso is improved. |
|
|
|
|
|
|
|
|
Martin Gräßlin committed changes in /trunk/KDE/kdebase/workspace/kwin/effects/cube:
|
Merge in the first changes from cube git branch (http://github.com/mgraesslin/kwin/tree/cube):
* Code restructuring and clean-up * Use of glLists to store the rotation and painting of the cube. That way things are only calculated when something changed. Painting the cube is still required in each frame as it would break all other effects. * Use face culling to paint the cube in the correct sequence. * Move loading of all settings to cube effect. In preparation of getting rid of cylinder and sphere classes
Known regression: cylinder and sphere caps are partly broken. |
|
|
|
|
|
|
|
|
Rob Scheepmaker committed changes in /trunk/KDE/kdelibs/plasma:
|
Qt4.5 hit qt-copy, and layouts behave properly now! Let's remove the layout bug workaround hacks from extenders. This improves behavior a lot. :) |
|
|
|
|
|
|
|
|
|
|
Lucas Murray committed changes in /trunk/KDE/kdebase/workspace/kwin/effects/highlightwindow:
|
Started writing code that would display a thumbnail of a window in the middle of the screen if it was offscreen when the highlight window effect was activated.
After getting half way through it however I determined that it was a useless feature so instead of deleting the code that was already written I am just commenting it out.
If anyone can find a purpose for this please let me know your ideas. |
|
|
|
|
|
|
|
|
|
|
Stephen Kelly committed changes in /trunk/KDE/kdepim/kjots:
|
Make it possible to build kjots without the kontact plugin.
This disables the build of the kontact plugin so that kdepim and build dependancies are not required. |
|
|
|
|
|
|
Multimedia |
|
Mark Kretschmann committed a change to /trunk/extragear/multimedia/amarok/src/widgets/MainToolbar.cpp:
|
Increase the width of the volume slider widget by a factor of 2x, as discussed with Leinir and nhnFreespirit.
Reasoning: For use with touch screens, the precision of the shorter volume slider was insufficient. E.g. it was impossible to select 1%; instead it jumped directly from 0% to 4%.
It would have been possible to increase the length as a special customization for touch screens, but we discussed on IRC that this change might also be beneficial for Amarok proper, so I'm committing it directly to trunk. |
|
|
|
|
|
|
Nikolaj Hald Nielsen committed changes in /trunk/extragear/multimedia/amarok/src/playlist:
|
Remove the StackedWidget from the playlist as there are curently no alternate playlist view implementations (that works or are developed on) and the new configurable playlist likely preempts most of the reasons for adding one.
If anyone later wants to do one, feel free to revert this commit. |
|
|
|
|
|
|
|
|
Jeff Mitchell committed changes in /trunk/extragear/multimedia/amarok/src:
|
NOTE: I *know* this messes up the PUD. This will eventually be fixed.
Start to refactor the PUD a bit to make calculating geometry much easier. Instead of using SVG sizes to calculate item sizes, use a svgElmenRect which can be programatically set and (eventually) scale the SVG to fit.
This simplifies a lot of logic.
However until I am done the PUD graphics are a bit borked (though they do work). |
|
|
|
|
|
|
|
|
Pino Toscano committed changes in /branches/work/konvi-kde4/src:
|
remove old custom implementation of bookmark menu, dated back to a custom konsole implementation started on 2002 (!)
KBookmarkMenu is quite fine now |
|
|
|
|
|
|
Eli MacKenzie committed changes in /branches/work/konvi-kde4/src:
|
Work around the fact that QPlainTextDocumentLayout::hitTest is useless.
This ressurects some code from the kde3 version.
The custom browser code is untested, saveLinkAs is missing, and the popup menus are probably broken. |
|
|
|
|
|
|
Friedrich W. H. Kossebau committed changes in /trunk/playground/network:
|
Import of the slp kioslave (service:/ and slp:/), ported to KDE 4 based on the version 0.4.1 for KDE 3
This kioslave has been developed by Adrian Schröter in a SUSE repository before.
This is a 1:1 port of the code and the features. I have started a large refactoring, to fix some things (different behaviour for stat, get, list, ...) and make the code to my likings, but that version is currently broken and needs more time to be fixed.
So all people being happy with the KDE3 version should be happy with this version for now (modulo bugs introduced by the port, as I have no SLP system set up to check).
But Adrian wants to test (and fix) this code in a heavily SLP burdened network, triggered by this commit :)
In the long run support for the SLP system might be merged with the one for the Bonjour system, becoming abstracted behind a wrapper (KDE 4, the happy layer system). Will see. |
|
|
|
|
|
|
|
|
|
|
Thomas Zander committed changes in /trunk/koffice:
|
Change default in KWord to be that we show the outlines of the frames. In the 1.x time we got several requests to turn it off (it was confusing) but now I've seen and heard from more people getting confused because its not visible where the borders are.There probably is no perfect solution, but on is certainly pleasing more than off. |
|
|
|
|
|
|
|
|
Gael Guennebaud committed changes in /trunk/kdesupport/eigen2/unsupported:
|
add unsupported/ directory with a first contribution from myself: a header file providing support for adolc's adouble type in forward mode. (adolc is an automatic differentiation library) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|