aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-04-26Convert the "messages" targets of kdebase into Messages.sh scriptsNicolas Goutte
svn path=/trunk/KDE/kdebase/kioslave/; revision=512183
2014-04-26"messages" targets: do not use _SOURCES variablesNicolas Goutte
svn path=/trunk/KDE/kdebase/kdesu/; revision=511503
2014-04-26readBoolEntry->readEntryLaurent Montel
svn path=/trunk/KDE/kdebase/khelpcenter/; revision=493850
2014-04-26SVN_SILENT Correcting the encoding in KDE source codeThiago Macieira
svn path=/trunk/KDE/kdebase/khelpcenter/; revision=485906
2014-04-26Compile without qt3supportLaurent Montel
svn path=/trunk/KDE/kdebase/src/kreadconfig/; revision=470530
2014-04-26ByeBye Q3CStringLaurent Montel
svn path=/trunk/KDE/kdebase/src/kreadconfig/; revision=456190
2014-04-26svn merge svn+ssh://coolo@svn.kde.org/home/kde/trunk/KDE/kdebase@438057 ↵Stephan Kulow
svn+ssh://coolo@svn.kde.org/home/kde/branches/work/kde4/kdebase . I couldn't resolve one kicker conflict that results from different development directions, so I rely on Aaron to sort it out - the file is commited with conflicts svn path=/trunk/KDE/kdebase/kioslave/; revision=439627
2014-04-26Always pick up kiosk restrictions. The hassle of a command line switch is ↵Waldo Bastian
not worth the 20ms that you save. BUG: 96512 svn path=/trunk/kdebase/src/kreadconfig/; revision=380871
2014-04-26master david says: stay closer to what it actually does. Still keeping the ↵Daniel Molkentin
deeper sense in the help svn path=/trunk/kdebase/src/kreadconfig/; revision=380175
2014-04-26merging (and therefore kiok functions) used to be disabled by default. This ↵Daniel Molkentin
new switch "merged" will enable merging. This happens both in order to maintain the speed for the common case and in order to not break backward compatibility. CCMAIL:tackat@kde.org svn path=/trunk/kdebase/src/kreadconfig/; revision=380173
2014-04-26Handle "path" as distinct typeWaldo Bastian
svn path=/trunk/kdebase/src/kreadconfig/; revision=361006
2014-04-26Fix mem leak (delete config before close application)Laurent Montel
svn path=/trunk/kdebase/src/kreadconfig/; revision=268830
2014-04-26Fix mem leak (delete config before to close application)Laurent Montel
svn path=/trunk/kdebase/src/kreadconfig/; revision=268828
2014-04-26kwriteconfig by Luis Pedro Coelho <luis_pedro@netcabo.pt> A little brother ↵Waldo Bastian
for kreadconfig. svn path=/trunk/kdebase/src/kreadconfig/; revision=208341
2014-04-26Use KCmdLineLastOptionLaurent Montel
svn path=/trunk/kdebase/kstart/; revision=202148
2014-04-26some AM_ prefixing to make automake happyHarri Porten
svn path=/trunk/kdebase/kioslave/; revision=196876
2014-04-26* Add support for files other than kdeglobals * Better not create a ↵Waldo Bastian
KApplication since that starts kdeinit svn path=/trunk/kdebase/src/kreadconfig/; revision=190568
2014-04-26- oops, reverting AM_LDFLAGS back to LDFLAGS, as David found out that ↵Simon Hausmann
automake 1.5 doesn't support AM_LDFLAGS :-( Sorry, I thought it's a no-brainer, but apparently it isn't :-( svn path=/trunk/kdebase/kioslave/; revision=182707
2014-04-26- LDFLAGS -> AM_LDFLAGS, as automake 1.7 says that LDFLAGS is a variable the ↵Simon Hausmann
user can override svn path=/trunk/kdebase/kioslave/; revision=182704
2014-04-26CVSSILENT: fixincludesDirk Mueller
svn path=/trunk/kdebase/khelpcenter/; revision=129081
2014-04-26adding missing i18n()Lukáš Tinkl
svn path=/trunk/kdebase/src/kreadconfig/; revision=124261
2014-04-26- no need for explicit qt_no_compat/qt_clean_namespace here (it's already in ↵Simon Hausmann
configure.in.in) svn path=/trunk/kdebase/src/kreadconfig/; revision=111837
2014-04-26output the path correctly Just got a wrong path to my Trash (translated, of ↵Lukáš Tinkl
course!) svn path=/trunk/kdebase/src/kreadconfig/; revision=102605
2014-04-26w/o cout from iostream.h RH really can use the latest and greatest gcc for ↵Harri Porten
this utility. svn path=/trunk/kdebase/src/kreadconfig/; revision=79637
2014-04-26- no need to link against kdeui (kdecore is sufficient) - specify ↵Simon Hausmann
allowStyles = false and GUIEnabled = false at the KApplication constructor, to save startup time and ressources svn path=/trunk/kdebase/src/kreadconfig/; revision=79151
2014-04-26Don't apply our settings to GTK if the user didn't want it.Bernhard Rosenkraenzer
svn path=/trunk/kdebase/src/kreadconfig/; revision=78898
2014-04-26Use KF5_INCLUDE_INSTALL_DIR and KF5_INSTALL_TARGETS_DEFAULT_ARGSAlex Merry
This is instead of INCLUDE_INSTALL_DIR and INSTALL_TARGETS_DEFAULT_ARGS, which will lose the "KF5" suffix from the include path.
2014-04-11Rewrite kiosk documentationAlex Merry
A lot of kiosk stuff is actually in other frameworks, from the point of view of applications, but KConfig provides the core functionality. Make the docs here describe KConfig's role, rather than KIO's or KXMLGui's. REVIEW: 117486
2014-04-02The "trailing semicolon" requirement was relaxed yesterday.David Faure
http://standards.freedesktop.org/desktop-entry-spec/1.1/ar01s03.html
2014-04-01fixed mingw buildPatrick von Reth
2014-03-28guard gcc-specific things with Q_CC_GNU to avoid problems elsewhereDavid Faure
2014-03-28Fix repeated typo in 'override'David Faure
2014-03-28Stop re-loading values inside KCoreConfigSkeleton::save().Matthew Dawson
The extra load of values in KCoreConfigSkeleton is not documented anywhere that it happens, and in normal circumstances re-loading new values isn't expecterd during a save operation. Update various mentions of readConfig/writeConfig to read/save. Update documentation to match the new names of functions. Rename writeConfig() to save() and usrWriteConfig() to usrSave() Rename functions to match the new naming conventions. Also create old deprecated instances of both functions to ensure that old code continues to operate correctly. Also make save() non-virtual, for the same reasons read() is now non-virtual. Rename usrReadConfig to usrRead, to be consistent with the new name for readConfig. Rename usrReadConfig to usrRead, and mark the former as deprecated. To maintain compatibility, usrRead still calls usrReadConfig in its default implementation. usrReadConfig remains empty. REVIEW: 117010
2014-03-25Use the full path for kconf_update when running itAlex Merry
It is not on $PATH, so we cannot just expect QProcess to find it. REVIEW: 117023
2014-03-25Export the location of kconf_update in CMakeAlex Merry
This is for the benefit of kded, which needs to run this binary. REVIEW: 117023
2014-03-25Remove kde3 compatibility code for "DocPath" in desktop filesAlex Merry
LXR suggests nothing still sets that (everything is X-DocPath now). REVIEW: 117003
2014-03-24Rename the kconfig_compiler_kf5 target to kconfig_compilerAlex Merry
Just because the executable has the "_kf5" suffix, that does not mean the target should have it. This is ugly API, and will be unnecessary porting effort for KF6. REVIEW: 116995
2014-03-24Update docs for KDesktopFile::isAuthorizedDesktopFile()Alex Merry
The fact that it changed in KDE 4.3 is not so relevant any more. REVIEW: 116962
2014-03-24Remove unhelpful commentsAlex Merry
These lines of code do not really require any justification. REVIEW: 116962
2014-03-24Better comment for why KDesktopFile::readPath uses readEntryAlex Merry
REVIEW: 116962
2014-03-24Remove old kdelibs4 codeAlex Merry
All this ifdef'd-out code just makes it hard to see what's going on. REVIEW: 116962
2014-03-23Rename readConfig() to load(), to make it clear it's loading from disk.David Faure
As discussed with Matthew Dawson in review 116461.
2014-03-23Revert addition of DelayedParsing, not needed after all.David Faure
2014-03-23Make readConfig() non-virtual anymore, it's not useful.David Faure
Apps can reimplement usrReadConfig() or the readConfig() in every item instead.
2014-03-23Remove unnecessary debug outputDavid Faure
2014-03-23Add KCoreConfigSkeleton::read() which doesn't call reparseConfiguration.David Faure
Call it from generated singletons, since the constructor creates a KConfig from a filename, which already loads from disk. This removes the need for using DelayedParsing. REVIEW: 116845
2014-03-23KStandardDirs -> QStandardPaths in apidoxAlex Merry
2014-03-13KCoreConfigSkeleton: delay parsing until the call to readConfig()David Faure
2014-03-13Normalize vars to avoid odd bugs: QT_REQUIRED_VERSION => REQUIRED_QT_VERSIONAurélien Gâteau
2014-03-01make comment less confusingDavid Faure