From fae65940e8688806b47020f41410540d3caa9bdf Mon Sep 17 00:00:00 2001 From: Darrell Anderson Date: Sun, 4 Nov 2012 01:30:58 -0600 Subject: [PATCH] Fix references to user profile directory. --- cervisia/cervisia.1.in | 2 +- cervisia/cervisia.pod | 2 +- doc/kbabel/preferences.docbook | 2 +- doc/scripts/tdesvn-build/index.docbook | 4 ++-- kbabel/datatools/regexp/main.cc | 2 +- kbabel/datatools/regexp/regexplist.xml | 2 +- umbrello/umbrello/configurable.h | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/cervisia/cervisia.1.in b/cervisia/cervisia.1.in index b60c2f3c..d16748e6 100644 --- a/cervisia/cervisia.1.in +++ b/cervisia/cervisia.1.in @@ -200,7 +200,7 @@ Sets the geometry of the main window .IX Header "FILES" \&\fI_KDECONFDIR_/cervisiarc\fR \- global configuration file .Sp -\&\fI$HOME/.kde/share/config/cervisiarc\fR \- user-specific configuration file +\&\fI$HOME/.trinity/share/config/cervisiarc\fR \- user-specific configuration file .SH "SEE ALSO" .IX Header "SEE ALSO" \&\fI_KDEHTMLDIR_/en/cervisia/index.html\fR diff --git a/cervisia/cervisia.pod b/cervisia/cervisia.pod index 940ba8e0..bbdbe23a 100644 --- a/cervisia/cervisia.pod +++ b/cervisia/cervisia.pod @@ -88,7 +88,7 @@ Sets the geometry of the main window F<_KDECONFDIR_/cervisiarc> - global configuration file -F<$HOME/.kde/share/config/cervisiarc> - user-specific configuration file +F<$HOME/.trinity/share/config/cervisiarc> - user-specific configuration file =head1 SEE ALSO diff --git a/doc/kbabel/preferences.docbook b/doc/kbabel/preferences.docbook index 5058feac..7e8291bd 100644 --- a/doc/kbabel/preferences.docbook +++ b/doc/kbabel/preferences.docbook @@ -957,7 +957,7 @@ with ispell when using ISO-8859-1.) Here you can set location of the file for ignored words. Click on the folder icon to the right of the edit box. The default is - $HOME/.kde/share/apps/kbabel/spellignores, + $HOME/.trinity/share/apps/kbabel/spellignores, where $HOME is your home folder. diff --git a/doc/scripts/tdesvn-build/index.docbook b/doc/scripts/tdesvn-build/index.docbook index c14eccb4..d9c58333 100644 --- a/doc/scripts/tdesvn-build/index.docbook +++ b/doc/scripts/tdesvn-build/index.docbook @@ -279,10 +279,10 @@ If you are not using a dedicated user, set a different $TDEHOME f new environment in your .bash_profile: -export TDEHOME="${HOME}/.kde-svn" +export TDEHOME="${HOME}/.tde-svn" # Create it if needed -[ ! -e ~/.kde-svn ] && mkdir ~/.kde-svn +[ ! -e ~/.tde-svn ] && mkdir ~/.tde-svn diff --git a/kbabel/datatools/regexp/main.cc b/kbabel/datatools/regexp/main.cc index eca0be81..7d3c3120 100644 --- a/kbabel/datatools/regexp/main.cc +++ b/kbabel/datatools/regexp/main.cc @@ -110,7 +110,7 @@ bool RegExpTool::run( const TQString& command, void* data, const TQString& datat void RegExpTool::loadExpressions() { // TODO: Change file path - TQFile file( TQDir::homeDirPath() + "/.kde/share/apps/kbabel/regexplist.xml" ); + TQFile file( TQDir::homeDirPath() + "/.trinity/share/apps/kbabel/regexplist.xml" ); TQDomDocument doc; if ( ! file.open( IO_ReadOnly ) ) { diff --git a/kbabel/datatools/regexp/regexplist.xml b/kbabel/datatools/regexp/regexplist.xml index 1cd0b23d..72f647cb 100644 --- a/kbabel/datatools/regexp/regexplist.xml +++ b/kbabel/datatools/regexp/regexplist.xml @@ -10,7 +10,7 @@ ... - Right now the file should be copied to ~/.kde/share/apps/kbabel/regexplist.xml. I'm sorry this cannot be configured but hope it will in the future. By the time if you need another location you have to modify the source code (main.cc) + Right now the file should be copied to ~/.trinity/share/apps/kbabel/regexplist.xml. I'm sorry this cannot be configured but hope it will in the future. By the time if you need another location you have to modify the source code (main.cc) You'll see in the example that most expressions start with '(^| |\\t)+' and then a word. This is to ensure it _is_ a word. Using the usual expressions to ensure we pick up a whole word doesn't work for the catalan language. Anyway, if you need to match a tab be sure you use the '\\t' expression. diff --git a/umbrello/umbrello/configurable.h b/umbrello/umbrello/configurable.h index e26c4e87..df6bf7d8 100644 --- a/umbrello/umbrello/configurable.h +++ b/umbrello/umbrello/configurable.h @@ -80,7 +80,7 @@ public: * The configure interface is required to be implemented by all subclasses * of this class. It is expected that configuration implementations all * understand how to attain their session configuration file. These files - * are stored in ~/.kde/share/config. What actions are taken with the + * are stored in ~/.trinity/share/config. What actions are taken with the * configuration class are defined by implementing classes. */ virtual bool configure() = 0;