mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
removed all upd cruft
This commit is contained in:
parent
9cc09a56bf
commit
e0b7d38f81
13 changed files with 0 additions and 101 deletions
|
@ -77,6 +77,5 @@ else (WIN32)
|
|||
install( FILES applications.menu DESTINATION ${SYSCONF_INSTALL_DIR}/xdg/menus )
|
||||
endif (WIN32)
|
||||
install( FILES kdedmodule.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
||||
install( FILES kded.upd DESTINATION ${DATA_INSTALL_DIR}/kconf_update )
|
||||
|
||||
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
# Migrating kdirwatch poll interval from kdedrc to kdeglobals
|
||||
Id=kde3.0
|
||||
File=kdedrc,kdeglobals
|
||||
Group=General,DirWatch
|
||||
Key=PollInterval
|
||||
Key=NFSPollInterval
|
||||
|
|
@ -185,11 +185,6 @@ install( FILES help.protocol ghelp.protocol DESTINATION ${SERVICES_INSTALL_DIR
|
|||
|
||||
install(PROGRAMS ${CMAKE_CURRENT_BINARY_DIR}/checkXML DESTINATION ${BIN_INSTALL_DIR} )
|
||||
|
||||
if(NOT WIN32)
|
||||
install( FILES kio_help.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
install( PROGRAMS move_kio_help_cache.sh DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
endif(NOT WIN32)
|
||||
|
||||
macro(INSTALL_CUSTOMIZE_DIR _expr _directory)
|
||||
FILE(GLOB _file_CUST "${_expr}" )
|
||||
foreach(_curentfile ${_file_CUST})
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
# Move kio_help cache from $KDEHOME/share/apps/kio_help/cache to $KDEHOME/cache-$HOST/kio_help
|
||||
Id=kde3_2
|
||||
Script=move_kio_help_cache.sh,sh
|
|
@ -1,6 +0,0 @@
|
|||
#!/bin/sh
|
||||
|
||||
bas=`kde4-config --localprefix`share/apps/kio_help
|
||||
mv "$bas/cache" "`kde4-config --path cache`kio_help"
|
||||
rmdir "$bas"
|
||||
exit 0
|
|
@ -281,10 +281,6 @@ kde4_add_ui_files(kio_LIB_SRCS
|
|||
kssl/certificateparty.ui
|
||||
)
|
||||
|
||||
install(FILES kssl/ksslcertificatemanager.upd
|
||||
kssl/ksslcertificatemanager.upd.sh
|
||||
DESTINATION ${DATA_INSTALL_DIR}/kconf_update)
|
||||
|
||||
kde4_add_library(kio ${LIBRARY_TYPE} ${kio_LIB_SRCS})
|
||||
|
||||
target_link_libraries(kio ${KDE4_KDEUI_LIBS} ${ZLIB_LIBRARY} ${QT_QTNETWORK_LIBRARY} ${QT_QTXML_LIBRARY} ${QT_QTSVG_LIBRARY} ${X11_LIBRARIES} ${KIO_EXTRA_LIBS})
|
||||
|
@ -306,9 +302,6 @@ set_target_properties(kio PROPERTIES VERSION ${KDE_NON_GENERIC_LIB_VERSION}
|
|||
########### install files ###############
|
||||
install(TARGETS kio EXPORT kdelibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
install( PROGRAMS useragent.pl proxytype.pl DESTINATION ${KCONF_UPDATE_INSTALL_DIR} )
|
||||
|
||||
|
||||
install( FILES data.protocol DESTINATION ${SERVICES_INSTALL_DIR} )
|
||||
install( FILES
|
||||
application.desktop
|
||||
|
@ -325,7 +318,6 @@ install( FILES
|
|||
kfile/kiofilemodule.desktop
|
||||
DESTINATION ${SERVICETYPES_INSTALL_DIR} )
|
||||
|
||||
install( FILES kioslave.upd DESTINATION ${DATA_INSTALL_DIR}/kconf_update )
|
||||
install( FILES
|
||||
kio/kio_export.h
|
||||
kio/accessmanager.h
|
||||
|
|
|
@ -1,18 +0,0 @@
|
|||
# Hello world
|
||||
Id=kde2.2/r1
|
||||
File=kioslaverc,kio_httprc
|
||||
Group=Cache Settings,
|
||||
Key=MaxCacheSize
|
||||
Key=MaxCacheAge
|
||||
Key=UseCache
|
||||
File=kioslaverc
|
||||
Group=Browser Settings/UserAgent,UserAgent
|
||||
AllKeys
|
||||
Id=kde2.2/r2
|
||||
File=kioslaverc,kio_httprc
|
||||
Group=UserAgent
|
||||
Script=useragent.pl,perl
|
||||
Id=kde2.2/r3
|
||||
File=kioslaverc
|
||||
Group=Proxy Settings
|
||||
Script=proxytype.pl,perl
|
|
@ -1,5 +0,0 @@
|
|||
# KConfigGroup cannot handle arbitrary binary data as group names.
|
||||
# As fixing this right would be quite hard, and the data is not very valuable,
|
||||
# we'll simply wipe the config file.
|
||||
Id=kde4.2
|
||||
Script=ksslcertificatemanager.upd.sh,sh
|
|
@ -1,2 +0,0 @@
|
|||
#!/bin/sh
|
||||
rm `kde4-config --localprefix`/share/config/ksslcertificatemanager
|
|
@ -1,11 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
# the script is called with interpreter, so don't worry about the path
|
||||
|
||||
while(<>)
|
||||
{
|
||||
$useproxy = 1 if /UseProxy=true/;
|
||||
$usepac = 1 if /Proxy Config Script=.*\S/;
|
||||
}
|
||||
printf ("# DELETE UseProxy\n");
|
||||
$proxytype = $useproxy ? ($usepac ? 2 : 1) : 0;
|
||||
print "ProxyType=$proxytype\n" if $proxytype;
|
|
@ -47,8 +47,6 @@ install(TARGETS kded_kcookiejar DESTINATION ${PLUGIN_INSTALL_DIR} )
|
|||
|
||||
install( FILES domain_info DESTINATION ${DATA_INSTALL_DIR}/khtml )
|
||||
install( FILES kcookiejar.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kded )
|
||||
install( FILES kcookiescfg.upd DESTINATION ${DATA_INSTALL_DIR}/kconf_update )
|
||||
install( PROGRAMS kcookiescfg.pl DESTINATION ${DATA_INSTALL_DIR}/kconf_update )
|
||||
install( FILES ${CMAKE_CURRENT_BINARY_DIR}/org.kde.KCookieServer.xml DESTINATION ${DBUS_INTERFACES_INSTALL_DIR} )
|
||||
|
||||
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
#!/usr/bin/perl
|
||||
|
||||
while(<>) {
|
||||
$treatAllAsSessionCookies = 1 if (/IgnoreExpirationDate=true/);
|
||||
}
|
||||
|
||||
printf("# DELETE IgnoreExpirationDate\n");
|
||||
if ($treatAllAsSessionCookies) {
|
||||
printf("# DELETE CookieGlobalAdvice\n");
|
||||
printf("CookieGlobalAdvice=AcceptForSession\n");
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
# Update for old cookie config files, if present
|
||||
Id=kde2.2/b1
|
||||
File=kcookiejarrc
|
||||
Group=Browser Settings/HTTP,Cookie Policy
|
||||
|
||||
# Update cookies config file...
|
||||
Id=kde3.1/cvs
|
||||
File=kcookiejarrc
|
||||
Group=<default>,Cookie Dialog
|
||||
Key=DefaultRadioButton,PreferredPolicy
|
||||
Key=ShowCookieDetails
|
||||
Group=Cookie Policy
|
||||
Key=AcceptTempCookies,AcceptSessionCookies
|
||||
Key=AutoAcceptSessionCookies,AcceptSessionCookies
|
||||
Key=RejectCrossDomain,RejectCrossDomainCookies
|
||||
Key=IgnoreCookieExpirationDate,IgnoreExpirationDate
|
||||
|
||||
# Update cookies config file...
|
||||
Id=kde4.10/git
|
||||
File=kcookiejarrc
|
||||
Group=Cookie Policy
|
||||
Script=kcookiescfg.pl,perl
|
Loading…
Add table
Reference in a new issue