From: Martin Mares Date: Wed, 9 Jul 2014 09:49:49 +0000 (+0200) Subject: Merge commit '700824d3e9bce9219819e4e5096ab94da301d44b' from branch bernard/master X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=76b57b9c9a4a9f531e164018da62650624cdc900;hp=700824d3e9bce9219819e4e5096ab94da301d44b;p=moe.git Merge commit '700824d3e9bce9219819e4e5096ab94da301d44b' from branch bernard/master --- diff --git a/eval/eval.cf b/eval/eval.cf index 826f308..3d3bb16 100644 --- a/eval/eval.cf +++ b/eval/eval.cf @@ -56,7 +56,7 @@ EXT_c_COMP='/usr/bin/gcc -std=gnu99 -O2 -g -o $EXE $EXTRA_CFLAGS $SRC -lm' EXTRA_CFLAGS= # C++ -EXT_cpp_COMP='/usr/bin/g++ -O2 -g -o $EXE $EXTRA_CXXFLAGS $SRC -lm' +EXT_cpp_COMP='/usr/bin/g++ -std=gnu++11 -O2 -g -o $EXE $EXTRA_CXXFLAGS $SRC -lm' EXTRA_CXXFLAGS= # Pascal diff --git a/mop/admin/mo-back-grab.sh b/mop/admin/mo-back-grab.sh index 5fa7181..bfdf71c 100755 --- a/mop/admin/mo-back-grab.sh +++ b/mop/admin/mo-back-grab.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Find all submits in the local copy of contestants' home directories # (as created by mo-backup) and copy them to solutions/. diff --git a/mop/admin/mo-back-status.sh b/mop/admin/mo-back-status.sh index 1a51fb5..5c4088f 100755 --- a/mop/admin/mo-back-status.sh +++ b/mop/admin/mo-back-status.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Find all submits in the local copy of contestants' home directories # (as created by mo-backup) and print their status. diff --git a/mop/admin/mo-backup.sh b/mop/admin/mo-backup.sh index df05392..9f85532 100755 --- a/mop/admin/mo-backup.sh +++ b/mop/admin/mo-backup.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # A trivial script to back up contestants' home directories. if [ -z "$1" ] ; then diff --git a/mop/project/templater.pl b/mop/project/templater.pl new file mode 100755 index 0000000..c745cfd --- /dev/null +++ b/mop/project/templater.pl @@ -0,0 +1,222 @@ +#!/usr/bin/perl +use strict; +use warnings; +use Glib qw(TRUE FALSE); +use Gtk2 -init; + +my ($where,$taskdir,$home)=('/mo/public/templater/','/mo/templates/',$ENV{'HOME'}); +my @tasks = map { s#.*/##; $_ } (glob "$taskdir/*"); +my $contestName = "MO-P"; + +sub create_template($$$$) { + my ($path,$task,$name,$ext)=@_; + return "Project cannot be created!" unless -d $path; + return "Specified project already exist!" if -d "$path/$name"; + mkdir "$path/$name" or return "Can not create project directory!"; + my %files = ( + c => { + "$where/template-c.cbp" => "$task.cbp", + "$where/template.layout" => "$task.layout", + "$taskdir/$task/$task.c" => "$task.c", + }, + cpp => { + "$where/template-cpp.cbp" => "$task.cbp", + "$where/template.layout" => "$task.layout", + "$taskdir/$task/$task.cpp" => "$task.cpp", + }, + pas => { + "$where/template-pas.lpi" => "${task}.lpi", + "$taskdir/$task/$task.pas" => "$task.pas", + } + ); + my $files = $files{$ext} // die "Unknown ext $ext\n"; + while (my ($file, $target) = each %$files) { + $target="$path/$name/$target"; + # FUJ! S tímhle by se něco mělo dělat. + system("sed 's#fILENAMe#$name#; + s#fILENAMEEXt#$name.$ext#; + s#tASk#$task#; + s#tASKEXt#$task.$ext#; + s#pATHFILENAMe#$path/$name/$name#; + s#pATHFILENAMEEXt#$path/$name/$name.$ext#; + ' < '$file' > '$target'"); + } + return ""; +} + +sub open_project($) { + my ($p)=@_; + my $cmd; + my @files = glob "$home/$p/*.cbp"; + if (@files) { + $cmd = 'codeblocks'; + } else { + $cmd = 'lazarus-ide'; + @files = ((glob "$home/$p/*.lpi"), (glob "$home/$p/*.pas")); + } + print("@files\n"); + system("$cmd @files &"); +} + +sub existing_projects($) { + my ($lopen_data,$lang)=@_; + foreach ((glob "$home/*/*.cbp"), (glob "$home/*/*.lpi")) { + my ($name, $task) = m#.*/(.*?)/(.*)(\.lpi|\.cbp)#; + print "$name $task\n"; + $lang=-f "$home/$name/$task.c" ? 'C' : -f "$home/$name/$task.cpp" ? 'C++' : -f "$home/$name/$task.pas" ? 'Pascal' : ''; + $lopen_data->set($lopen_data->append, 0, "$1", 1, $lang); + } +} + +sub main_window() { + my $retcode=''; + + my $w=Gtk2::Window->new('toplevel'); + $w->signal_connect('destroy' => sub { $retcode='quit' unless length $retcode; Gtk2->main_quit; }); + $w->set_default_icon_from_file("$where/templater.xpm"); + $w->set_position('center'); + $w->set_default_size(600,-1); + $w->set_title("$contestName project management"); + my $b=Gtk2::VBox->new(FALSE,0); + $b->set_border_width(10); + $w->add($b); + + my $fnew=Gtk2::Frame->new("Create new $contestName contest project"); + my $xnew=Gtk2::HBox->new(FALSE,0); + $xnew->set_border_width(10); + my $inew=Gtk2::Image->new_from_file("$where/templater.xpm"); + my $bnew=Gtk2::Button->new_with_label("Create new $contestName contest project"); + $bnew->signal_connect('clicked' => sub { $retcode='new'; $w->destroy; }); + $xnew->pack_start($inew,FALSE,TRUE,10); + $xnew->pack_start($bnew,TRUE,TRUE,10); + $fnew->add($xnew); + $b->pack_start($fnew,FALSE,TRUE,10); + + my $fopen=Gtk2::Frame->new("Open existing $contestName contest project"); + my $yopen=Gtk2::VBox->new(FALSE,0); $yopen->set_border_width(5); + my $xopen=Gtk2::HBox->new(FALSE,0); $xopen->set_border_width(5); + my $lopen_data=Gtk2::ListStore->new(('Glib::String','Glib::String')); + existing_projects($lopen_data); + my $lopen=Gtk2::TreeView->new_with_model($lopen_data); + my $lopen_c1=Gtk2::TreeViewColumn->new_with_attributes('Project name',Gtk2::CellRendererText->new, text=>0); + my $lopen_c2=Gtk2::TreeViewColumn->new_with_attributes('Language',Gtk2::CellRendererText->new, text=>1); + $lopen_c1->set_expand(TRUE); $lopen->append_column($lopen_c1); $lopen->append_column($lopen_c2); + my $iopen=Gtk2::Image->new_from_file("$where/templater.xpm"); + my $bopen=Gtk2::Button->new_with_label("Open existing $contestName contest project"); + $bopen->signal_connect('clicked' => sub { open_project $lopen_data->get(scalar($lopen->get_selection->get_selected),0), + $w->destroy; }); + $bopen->set_sensitive(FALSE); + $lopen->signal_connect('row-activated' => sub { $bopen->clicked }); + $lopen->get_selection->set_mode('single'); + $lopen->get_selection->signal_connect('changed' => sub { $bopen->set_sensitive(TRUE) } ); + $xopen->pack_start($iopen,FALSE,TRUE,10); + $xopen->pack_start($bopen,TRUE,TRUE,10); + $yopen->pack_start($lopen,TRUE,TRUE,5); + $yopen->pack_start($xopen,FALSE,TRUE,5); + $fopen->add($yopen); + $b->pack_start($fopen,TRUE,TRUE,10); + + my $bquit=Gtk2::Button->new_from_stock('gtk-quit'); + $bquit->signal_connect('clicked' => sub { $w->destroy; }); + $b->pack_start($bquit,FALSE,TRUE,5); + + $w->show_all; + Gtk2->main; + $retcode; +} + +sub message($$$) { + my $m=Gtk2::MessageDialog->new($_[0], 'modal', $_[2], 'ok', $_[1]); + $m->run; + $m->destroy; + 1 +} + +sub new_window() { + my $retcode=''; + + my $w=Gtk2::Window->new('toplevel'); + $w->signal_connect('destroy' => sub { $retcode='quit' unless length $retcode; Gtk2->main_quit; }); + $w->set_default_icon_from_file("$where/templater.xpm"); + $w->set_position('center'); + $w->set_default_size(500,-1); + $w->set_title("Create new $contestName project"); + + my $b=Gtk2::VBox->new(FALSE,0); + $b->set_border_width(10); + $w->add($b); + + my $flang=Gtk2::Frame->new('Choose project language'); + my $xlang=Gtk2::HBox->new(FALSE,0); + $xlang->set_border_width(10); + my $r_c=Gtk2::RadioButton->new_with_label(undef, 'C'); + my $r_cpp=Gtk2::RadioButton->new_with_label($r_c->get_group(), 'C++'); + my $r_pas=Gtk2::RadioButton->new_with_label($r_c->get_group(), 'Pascal'); + $r_c->set_active(TRUE); + $xlang->pack_start($r_c,TRUE,TRUE,5); + $xlang->pack_start($r_cpp,TRUE,TRUE,5); + $xlang->pack_start($r_pas,TRUE,TRUE,5); + $flang->add($xlang); + $b->pack_start($flang,FALSE,TRUE,10); + + my $ftask=Gtk2::Frame->new('Choose task'); + my $xtask=Gtk2::HBox->new(FALSE,0); + $xtask->set_border_width(10); + my $group; + my $task = $tasks[0]; + for my $t (@tasks) { + my $rb=Gtk2::RadioButton->new_with_label($group, $t); + $rb->signal_connect(clicked => sub { + $task = $t; + }); + unless ($group) { + $rb->set_active(TRUE); + $group=$rb->get_group(); + } + $xtask->pack_start($rb,TRUE,TRUE,5); + } + $ftask->add($xtask); + $b->pack_start($ftask,FALSE,TRUE,10); + + my $fprj=Gtk2::Frame->new('Enter project name'); + my $eprj=Gtk2::Entry->new; + $fprj->add($eprj); + $b->pack_start(Gtk2::HBox->new(),TRUE,TRUE,0); + $b->pack_start($fprj,FALSE,TRUE,10); + + my $xcreate=Gtk2::HBox->new(FALSE,0); + $xcreate->set_border_width(10); + my $icreate=Gtk2::Image->new_from_file("$where/templater.xpm"); + my $bcreate=Gtk2::Button->new_from_stock('gtk-new'); + my $qcreate=Gtk2::Button->new_from_stock('gtk-cancel'); + $bcreate->signal_connect('clicked' => sub { + my $p=$eprj->get_text; $p =~ s/^\s*//; $p =~ s/\s*$//; + if ($p =~ /\W/) { + message($w, 'Sorry, but be nice with the project name!', 'error'); + return; + } + if (not length $p) { + message($w, 'No project name specified!', 'error'); + return; + } + my $ret=create_template $home, $task, $p, ($r_c->get_active ? 'c' : $r_cpp->get_active ? 'cpp' : 'pas'); + length $ret and message($w,$ret,'error') and return; + open_project $p; + $retcode='new'; + $w->destroy; + }); + $qcreate->signal_connect('clicked' => sub { $w->destroy; }); + $xcreate->pack_start($icreate,FALSE,TRUE,10); + $xcreate->pack_start($bcreate,TRUE,TRUE,10); + $xcreate->pack_start($qcreate,TRUE,TRUE,10); + $b->pack_start(Gtk2::HBox->new(),TRUE,TRUE,0); + $b->pack_start($xcreate,FALSE,TRUE,10); + + $w->show_all; + Gtk2->main; + $retcode; +} + +while (main_window eq 'new') { + new_window eq 'quit' or exit 0; +} diff --git a/mop/project/templater/template-c.cbp b/mop/project/templater/template-c.cbp new file mode 100644 index 0000000..5fe4fbf --- /dev/null +++ b/mop/project/templater/template-c.cbp @@ -0,0 +1,49 @@ + + + + + + diff --git a/mop/project/templater/template-cpp.cbp b/mop/project/templater/template-cpp.cbp new file mode 100644 index 0000000..51dd58f --- /dev/null +++ b/mop/project/templater/template-cpp.cbp @@ -0,0 +1,49 @@ + + + + + + diff --git a/mop/project/templater/template-pas.lpi b/mop/project/templater/template-pas.lpi new file mode 100644 index 0000000..51220d2 --- /dev/null +++ b/mop/project/templater/template-pas.lpi @@ -0,0 +1,95 @@ + + + + + + + + + + + + + <ResourceType Value="res"/> + <UseXPManifest Value="True"/> + </General> + <i18n> + <EnableI18N LFM="False"/> + </i18n> + <VersionInfo> + <StringTable ProductVersion=""/> + </VersionInfo> + <BuildModes Count="1"> + <Item1 Name="Default" Default="True"/> + </BuildModes> + <PublishOptions> + <Version Value="2"/> + <IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/> + <ExcludeFileFilter Value="*.(bak|ppu|o|so);*~;backup"/> + </PublishOptions> + <RunParams> + <local> + <FormatVersion Value="1"/> + <LaunchingApplication PathPlusParams="/usr/bin/rxvt-unicode -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/> + </local> + </RunParams> + <RequiredPackages Count="1"> + <Item1> + <PackageName Value="LCL"/> + </Item1> + </RequiredPackages> + <Units Count="1"> + <Unit0> + <Filename Value="tASk.pas"/> + <IsPartOfProject Value="True"/> + <ComponentName Value="Form1"/> + <ResourceBaseClass Value="Form"/> + <UnitName Value="tASk"/> + </Unit0> + </Units> + </ProjectOptions> + <CompilerOptions> + <Version Value="11"/> + <Target> + <Filename Value="tASk"/> + </Target> + <SearchPaths> + <IncludeFiles Value="$(ProjOutDir)"/> + <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> + </SearchPaths> + <Parsing> + <SyntaxOptions> + <SyntaxMode Value="fpc"/> + <CStyleOperator Value="False"/> + <CPPInline Value="False"/> + <UseAnsiStrings Value="False"/> + </SyntaxOptions> + </Parsing> + <CodeGeneration> + <Checks> + <IOChecks Value="True"/> + <RangeChecks Value="True"/> + </Checks> + </CodeGeneration> + <Other> + <WriteFPCLogo Value="False"/> + <CompilerMessages> + <MsgFileName Value=""/> + </CompilerMessages> + <CompilerPath Value="$(CompPath)"/> + </Other> + </CompilerOptions> + <Debugging> + <Exceptions Count="3"> + <Item1> + <Name Value="EAbort"/> + </Item1> + <Item2> + <Name Value="ECodetoolError"/> + </Item2> + <Item3> + <Name Value="EFOpenError"/> + </Item3> + </Exceptions> + </Debugging> +</CONFIG> diff --git a/mop/project/templater/template.layout b/mop/project/templater/template.layout new file mode 100644 index 0000000..96dcbd6 --- /dev/null +++ b/mop/project/templater/template.layout @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocks_layout_file> + <ActiveTarget name="Debug" /> + <File name="tASKEXt" open="1" top="0" tabpos="1"> + <Cursor position="0" topLine="0" /> + </File> +</CodeBlocks_layout_file> diff --git a/mop/project/templater/templater.xpm b/mop/project/templater/templater.xpm new file mode 100644 index 0000000..348a956 --- /dev/null +++ b/mop/project/templater/templater.xpm @@ -0,0 +1,295 @@ +/* XPM */ +static char *kdevelop[] = { +/* columns rows colors chars-per-pixel */ +"32 32 257 2", +" c #000000", +". c #04040C", +"X c #000D00", +"o c #0B0B0E", +"O c #0D0D10", +"+ c #071700", +"@ c #001A00", +"# c #131316", +"$ c #14141A", +"% c #19191D", +"& c #1B1B24", +"* c #1F1F2C", +"= c #15152A", +"- c #002B00", +"; c #003E00", +": c #0A3000", +"> c #153D03", +", c #212126", +"< c #22222C", +"1 c #2C2C35", +"2 c #2D2D3B", +"3 c #34343F", +"4 c #373748", +"5 c #383844", +"6 c #004F00", +"7 c #005600", +"8 c #015900", +"9 c #095C00", +"0 c #164A02", +"q c #195502", +"w c #006500", +"e c #006C00", +"r c #404047", +"t c #40404A", +"y c gray29", +"u c #424252", +"i c #484852", +"p c #4A4A5C", +"a c #535355", +"s c #54545C", +"d c #5C5C5D", +"f c #5C5C6B", +"g c #5B5B71", +"h c #636363", +"j c #63636C", +"k c #6B6B6B", +"l c #686776", +"z c #70707C", +"x c #7C7C7C", +"c c #747474", +"v c #727283", +"b c #7D7C8C", +"n c #79778C", +"m c #7B7B93", +"M c #7F7FBF", +"N c #0A8A04", +"B c #029B00", +"V c #079906", +"C c #108F0A", +"Z c #118D00", +"A c #189207", +"S c #1F9C1C", +"D c #0DA400", +"F c #07A300", +"G c #14A301", +"H c #1DAD01", +"J c #1DA91B", +"K c #29911F", +"L c #298E28", +"P c #309A29", +"I c #20AD00", +"U c #23A716", +"Y c #2AB300", +"T c #2EB802", +"R c #27B601", +"E c #39AC01", +"W c #33B902", +"Q c #3CB200", +"! c #37B716", +"~ c #2AA920", +"^ c #30AA2C", +"/ c #30A828", +"( c #34B027", +") c #3BC102", +"_ c #439A3E", +"` c #40A71D", +"' c #42BC05", +"] c #5ABB0E", +"[ c #47A726", +"{ c #4EBD35", +"} c #46B63C", +"| c #58A82C", +" . c #78B93D", +".. c #69B42A", +"X. c #49B449", +"o. c #50BB4C", +"O. c #5BBF54", +"+. c #5FBE58", +"@. c #55BB51", +"#. c #61AF4E", +"$. c #64B440", +"%. c #62BD5C", +"&. c #72B544", +"*. c #77B46F", +"=. c #4DCA01", +"-. c #48C408", +";. c #4BC31C", +":. c #54CE07", +">. c #54CB1C", +",. c #5ED700", +"<. c #68D800", +"1. c #75C91A", +"2. c #7DD610", +"3. c #6AC714", +"4. c #6CD233", +"5. c #71D634", +"6. c #7AE200", +"7. c #61C252", +"8. c #72C35C", +"9. c #7BD541", +"0. c #6DC46B", +"q. c #65C463", +"w. c #75C96C", +"e. c #73C76F", +"r. c #73C672", +"t. c #7CC878", +"y. c #84CD27", +"u. c #89CB36", +"i. c #81EA15", +"p. c #87F000", +"a. c #90EC18", +"s. c #98F90D", +"d. c #80E136", +"f. c GreenYellow", +"g. c #ABFF24", +"h. c #A6F832", +"j. c #8DC949", +"k. c #8ADF4D", +"l. c #95C85B", +"z. c #83C47F", +"x. c #91C577", +"c. c #8CE245", +"v. c #9BEF43", +"b. c #9FE960", +"n. c #A3CB7B", +"m. c #A3E276", +"M. c #B0F263", +"N. c #BCF678", +"B. c #838383", +"V. c #83838B", +"C. c #8A8A8A", +"Z. c #8A8A9D", +"A. c #848497", +"S. c #90909E", +"D. c #9A9A9B", +"F. c #929293", +"G. c #8E8DA4", +"H. c #9494A3", +"J. c #9A9AAC", +"K. c #9594A7", +"L. c #9E9EB2", +"P. c #A9A8AD", +"I. c #A5A3B9", +"U. c #AEABB3", +"Y. c #ABABBB", +"T. c #A6A5BA", +"R. c #B2AEBE", +"E. c #B1B1B1", +"W. c #ACAAC0", +"Q. c #AAA5C1", +"!. c #B2B2C4", +"~. c #B6B4CA", +"^. c #BCBBCB", +"/. c #BEBCD1", +"(. c #85CE85", +"). c #89CF89", +"_. c #8CCD85", +"`. c #89D086", +"'. c #8AD089", +"]. c #87D082", +"[. c #96C588", +"{. c #97C295", +"}. c #92D293", +"|. c #A8C596", +" X c #A7DE93", +".X c #AACFA1", +"XX c #A6D0A0", +"oX c #A7D1A8", +"OX c #A4DAA4", +"+X c #A7DDA8", +"@X c #AAD3A5", +"#X c #A8DBA8", +"$X c #B3D0A1", +"%X c #B3DEB2", +"&X c #B0D5B0", +"*X c #BDF288", +"=X c #AFE2AE", +"-X c #B4E5B4", +";X c #C3BFD6", +":X c #C7F2A5", +">X c #D6FBB1", +",X c #C3C2C5", +"<X c #C0C0CD", +"1X c #C4C9CA", +"2X c #C8C8C9", +"3X c #C4C4D2", +"4X c #CBCAD6", +"5X c #CBCBD9", +"6X c #C8C4D6", +"7X c #C2D9C5", +"8X c #CCDCC6", +"9X c #CBDCCE", +"0X c #CED4D6", +"qX c #CFDBD0", +"wX c #D0CDDE", +"eX c #D1DDCD", +"rX c #D2D1D5", +"tX c #D3D3DD", +"yX c #D8D8DB", +"uX c #D5D3E4", +"iX c #D9D4E6", +"pX c #DBDBE4", +"aX c #DDDBEB", +"sX c #C0E6C0", +"dX c #CCE9C8", +"fX c #DAE2DC", +"gX c #D5E1D5", +"hX c #D6F1D6", +"jX c #DEF2DE", +"kX c #DEE0E3", +"lX c #E4DEEE", +"zX c #E1DFE4", +"xX c #E6FFC8", +"cX c #E3FDC0", +"vX c #E9F6DD", +"bX c #E2E2E5", +"nX c #E4E2EA", +"mX c #E8E5ED", +"MX c #EAEAEE", +"NX c #E0EAE0", +"BX c #EAE3F2", +"VX c #ECEBF1", +"CX c #EEECF8", +"ZX c #E4F4E4", +"AX c #EBF5EB", +"SX c #EAF8EA", +"DX c #F2EDF8", +"FX c #F9FFEF", +"GX c #F5FDEA", +"HX c #F2F2F5", +"JX c #F6F6F9", +"KX c #F4FAF3", +"LX c #F7FDF8", +"PX c #F9F5FC", +"IX c #FAFCF7", +"UX c #FDFCFD", +"YX c None", +/* pixels */ +"YXYXYX# B. YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX", +"YXYX A.UXV.v z YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX", +"YXYXYX1 Y.pXpXpXb & YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX", +"YXYXYXYXk nXUXUXMXJ.4 = S.b YXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYXYX", +"YXYXYXYXf MXUXUXUXUX!.J.BXK.- e e w 8 9 - YXYXYXYXYXYXYXYXYXYXYX", +"YXYXYXYX. H.JXUXUXMXnXJX{.L C ^ X.X.( K N 8 @ YXYXYXYXYXYXYXYXYX", +"YXYXYXYXYX1 <XUXMXBXfX_ P `.hXSXLXLXKXSX-Xq.C ; YXYXYXYXYXYXYX", +"YXYXYXYXYX f 5XnXgXK %.hXSXZXjXjXjXjXjXAXSX=X^ 6 YXYXYXYXYXYX", +"YXYXYXYXYXYX$ ~.AXP %.dXsXsXsXsXsXsXsXsXsXsXdX=XU ; YXYXYXYXYXYX", +"YXYXYXYXYXYXa PX*.U #X#XOXOXOXOXOXOXOXOXOXOXOX%Xt.C @ YXYXYXYXYX", +"YXYXYXYXYXYXP.kXA @.}.).].].`.).`.].`.`.'.'.).).].J 9 YXYXYXYX", +"YXM I.J.J.G.lX[.B X.r.0.z.oX7X9X7X&X`.w.w.r.e.r.0.J Z + YXYXYXYX", +"f <X<X4XyXtXVX#.B ^ @.[.pXJXUXUXUXUXMXoX7.7.7.+.@.V G : YXYXYXYX", +"s JXUXUXUXnXbX[ B V (.mXPXJXJXUXUXHXmXlXXX{ { } ( B H 0 YXYXYXYX", +"s UXUXUXUXnXkX` D ~ rXDXJXHXMXyX,XE.P.zXBX8.! ! H D I q YXYXYX", +"a aXHXUXUXnXbX[ D z.VXMXrXU.F.B.B.x D.mXBX.XW Y I G R 0 YXYXYX", +"$ i l A.Y.~.aX .I $XU.k h h h k k h E.MXlXeX' W Y I T > YXYXYXYX", +"YX . $ u aXx.Y %X6Xa y d d h d h rXMXMXfX-.W W W E + YXYXYXYX", +"YXYXYXYXYX R.dXQ XUXrXc d k c k F.HXMXDX8X=.-.;.) | n * YXYXYX", +"YXYXYXYXYXYXs DX&.9.UXUXbXC.c x x 2XIXHXPXm.:.5.>.' |.~.$ YXYXYX", +"YXYXYXYXYXYX1 6XeX] :XUXUXMXD.C.D.HXUXUXvXc.k.5.=.&.wXv YXYXYX", +"YXYXYXYXYX J.<XpX$X3.>XUXUXUX,XrXIXUXGX*Xb.5.<...1XT.L.t YXYXYX", +"YXYXYXYXYXk tXJX5XiX$X1.M.xXIXLXKXFXcXN.v.i.<. .1XQ.<XtXA.. YXYX", +"YXYXYXYX3 ~.HXUXJX5XuXeXj.2.a.h.f.g.s.p.6.1.[.rXQ.^.VXnX~.p YX", +"YXYXYX H.MXUXJXUXnXK.I.aX9Xn.j.y.y.u.l.|.0X/.G.!.bXmXkXpXG.& YX", +"YXYXYX z nXUXJX5Xb 2 o 5 G.;X5X6X3X6X3XQ.l & % v W.tXnXpXJ.* YX", +"YXYXYXYX f tXY.p o YX b ^.3X^.^.G.< YX 3 A./.L.3XH.o ", +"YXYXYXYXYX 4 < YXYXYXYXj iXHXHXnXA.. YXYXYXYXYXo u 2 H.aX1 ", +"YXYXYXYXYXYX YXYXYXYXYXYX5 3XMXMXwXg YXYXYXYXYXYX # 3 ", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYX< Y.HXHX3X4 YXYXYXYXYXYXYXYXYX YX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYX. Z.3X<XK.& YXYXYXYXYXYXYXYXYXYXYXYX", +"YXYXYXYXYXYXYXYXYXYXYXYXYXYX & , & & . YXYXYXYXYXYXYXYXYXYXYXYX" +}; diff --git a/mop/score/Makefile b/mop/score/Makefile index 336e996..db1fb75 100644 --- a/mop/score/Makefile +++ b/mop/score/Makefile @@ -2,7 +2,6 @@ # (c) 2008 Martin Mares <mj@ucw.cz> DIRS+=mop/score -PROGS+=$(addprefix $(o)/mop/score/,mo-score-mop mo-score-mop-formatted) +PROGS+=$(addprefix $(o)/mop/score/,mo-score-mop) -$(o)/mop/score/mo-score-mop-formatted: $(s)/mop/score/mo-score-mop-formatted.sh $(o)/mop/score/mo-score-mop: $(s)/mop/score/mo-score-mop.sh diff --git a/mop/score/listina.ftr b/mop/score/listina.ftr deleted file mode 100644 index 3e38439..0000000 --- a/mop/score/listina.ftr +++ /dev/null @@ -1,3 +0,0 @@ -}}} - -\bye diff --git a/mop/score/listina.hdr b/mop/score/listina.hdr deleted file mode 100644 index 460ff42..0000000 --- a/mop/score/listina.hdr +++ /dev/null @@ -1,30 +0,0 @@ -\language=\czech -\frenchspacing -\font\head=csr12 scaled \magstephalf -\font\hexx=csti12 -\font\xxit=csti10 -\def\xit{\xxit\kern-0.1em\relax} -\let\hb=\relax -\parindent=0pt -\nopagenumbers - -\centerline{\head Výsledková listina ústøedního kola 58. roèníku MO kategorie P} -\bigskip -\centerline{\hexx 25. -- 27. bøezna 2009 v Plzni} -\bigskip -\bigskip - -\hrule -\bigskip - -\centerline{\vbox{\halign{% -#\hfil &~~~~#\hfil &~~~ #\hfil &~~~~#\hfil&\quad -\hfil # ~& -\hfil # ~~& -\hfil # ~~& -\hfil # ~& -\hfil # ~& \kern1em -\hb\quad\hfil # \cr -\noalign{\bigskip\bigskip\hbox{\xit Vítìzové}\bigskip} -%\noalign{\bigskip\bigskip\hbox{\xit Úspì¹ní øe¹itelé}\bigskip} -%\noalign{\bigskip\bigskip\hbox{\xit Ostatní úèastníci}\bigskip} diff --git a/mop/score/mo-score-mop-formatted.sh b/mop/score/mo-score-mop-formatted.sh deleted file mode 100755 index 44e956b..0000000 --- a/mop/score/mo-score-mop-formatted.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -mop/mo-score-mop 3 2 policie rybka | column -c120 -ts" " | cstocs il2 ascii diff --git a/mop/score/mo-score-mop.sh b/mop/score/mo-score-mop.sh index 44944a5..d7aca2e 100755 --- a/mop/score/mo-score-mop.sh +++ b/mop/score/mo-score-mop.sh @@ -1,63 +1,27 @@ #!/usr/bin/perl - +use strict; +use warnings; use List::Util qw(min); -$tex = 0; -$usage = "Usage: mo-score-mop [--tex] theoretical_tasks_nr praxis_tasks_nr task1 task2 ..."; -while (($arg = $ARGV[0]) =~ /^--([a-z]+)$/) { - shift @ARGV; - $var = "\$$1"; - if (!eval "defined $var") { die $usage; } - eval "$var = 1;"; -} -@ARGV >=2 || die $usage; -$theory=shift @ARGV; -$praxis=shift @ARGV; -@ARGV >= $praxis || die $usage; -$pos_delim=$tex ? '--' : '-'; +@ARGV or die "Usage: mo-score-mop task1 task2 ..."; print STDERR "Scanning contestants... "; open (CT, "bin/mo-get-users --full |") || die "Cannot get list of contestants"; +my %users = (); while (<CT>) { chomp; - ($u,$f) = split /\t/; - ($u eq "somebody") && next; - $users{$u}=$f; + my ($u, $f) = split /\t/; + $u =~ /^mo/ or next; + $users{$u}=$f; } close CT; print STDERR 0+keys %users, "\n"; -print STDERR "Scanning teoretical results... "; -if (open (EX, "teorie.txt")) { - while (<EX>) { - chomp; - (/^$/ || /^#/) && next; - @a = split /\ *\t\ */; - $u = shift @a; - defined $users{$u} || die "Unknown user $u"; - $names{$u} = shift @a; - $forms{$u} = shift @a; - $addresses{$u} = "{". (shift @a) ."}"; - $i=0; - while (@a) { $tasks{$u}{$i} = shift @a;$i++; } - } - close EX; - print STDERR "OK\n"; -} else {die "none, cannot find file teorie.txt!\n";} - print STDERR "Scanning task results... "; -$need_tasks = join("|", @ARGV); -foreach $u (keys %users) { - opendir (D, "testing/$u") or next; - foreach $t (readdir(D)) { - $t =~ /^\./ && next; - $t =~ /$need_tasks/ || next; - - $t_num=$praxis; - for (my $t_num2=0;$t_num2<@ARGV;$t_num2++) {if ($t eq $ARGV[$t_num2]) {$t_num=$t_num2;}} - $t_num+=$theory; - - $tt = "testing/$u/$t/points"; +my %tasks = (); +for my $u (keys %users) { + for my $t (@ARGV) { + my $tt = "testing/$u/$t/points"; -f $tt || next; print STDERR "$u/$t "; open (X, $tt) || die "Unable to open $tt"; @@ -76,76 +40,15 @@ foreach $u (keys %users) { close X; for my $g (keys %groups) { - $tasks{$u}{$t_num} += $groups{$g}; + $tasks{$u}{$t} += $groups{$g}; } } - closedir D; } print STDERR "OK\n"; -print STDERR "Creating table template... "; -@body = ('','$names{$u}','$forms{$u}','$addresses{$u}'); -for ($a=0;$a<$theory+$praxis;$a++) {push @body,"\$tasks{\$u}{$a}";} -print STDERR "OK\n"; - -print STDERR "Filling in results... "; -@table = (); -foreach $u (keys %users) { - next unless defined $names{$u}; # don't show any user not defined in teorie.txt - $row = []; - $row_index=0; - $row_sum=0; - foreach my $c (@body) { - $c =~ s/\$(\d+)/\$\$row[$1]/g; - $x = eval $c; - push @$row, (defined $x ? $x : '-'); - if ($row_index>3) { - if ((defined $x) && ($x>0)) {$row_sum+=$x;} - } - $row_index++; - } - push @$row, $row_sum; - push @table, $row; -} -print STDERR "OK\n"; - -print STDERR "Sorting... "; -$sortcol = @{$table[0]} - 1; -$namecol = 1; -@table = sort { - my $p, $an, $bn; - $p = $$b[$sortcol] <=> $$a[$sortcol]; - ($an = $$a[$namecol]) =~ s/(\S+)\s+(\S+)/$2 $1/; - ($bn = $$b[$namecol]) =~ s/(\S+)\s+(\S+)/$2 $1/; - $p ? $p : ($an cmp $bn); -} @table; -$i=0; -while ($i < @table) { - $j = $i; - while ($i < @table && ${$table[$i]}[$sortcol] == ${$table[$j]}[$sortcol]) { - $i++; - } - if ($i == $j+1) { - ${table[$j]}[0] = "$i."; - } else { - ${table[$j]}[0] = $j+1 . '.' . $pos_delim . $i . "."; - $j_old=$j; - $j++; - while ($j < $i) { ${table[$j++]}[0] = $j_old+1 . '.' . $pos_delim . $i . "."; }; - } +print STDERR "Generating output... "; +for my $u (sort keys %users) { + print join("\t", $u, $users{$u}, map { $tasks{$u}{$_} // '-' } @ARGV), "\n"; } print STDERR "OK\n"; -if ($tex) { - open HDR,"listina.hdr" or die "Cannot open file listina.hdr with TeX template!"; - while (<HDR>) {print; } - close HDR; - - foreach $r (@table) { print join('&',@$r), "\\cr\n";} - - open FTR,"listina.ftr" or die "Cannot open file listina.ftr with TeX template!"; - while (<FTR>) {print; } - close FTR; -} else { - foreach $r (@table) { print join("\t",@$r), "\n"; } -} diff --git a/mop/score/teorie.txt b/mop/score/teorie.txt deleted file mode 100644 index f1b78e1..0000000 --- a/mop/score/teorie.txt +++ /dev/null @@ -1,29 +0,0 @@ -mo01 Karolína Bure¹ová 6/8 G Èeská Lípa 0 2 7 -mo02 Milan Cejnar 8/8 G Turnov 5 4 5 -mo03 Petr Èermák 7/8 G Kladno 4 10 7 -mo04 Vlastimil Dort 7/8 G ©pitálská, Praha 9 5 10 6 -mo05 Franti¹ek Hejl 6/6 G Jana Nerudy, Praha 1 4 5 7 -mo06 Martin Holeèek 7/8 G Mikulá¹ské nám., Plzeò 4 9 7 -mo07 Ondøej Holý 8/8 G Josefa Ressela, Chrudim 6 10 7 -mo08 Hynek Jemelík 2/4 G tø. Kpt. Jaro¹e, Brno 5 10 6 -mo09 David Kla¹ka 7/8 G tø. Kpt. Jaro¹e, Brno 7 10 6 -mo10 Miroslav Klimo¹ 4/4 G M. Koperníka, Bílovec 5 10 7 -mo11 Michal Koutný 8/8 G Tøebíè 2 10 4 -mo12 Karel Král 7/8 Podkru¹nohorské G, Most 5 2 7 -mo13 Luká¹ Kripner 7/8 G T. G. Masaryka, Litvínov 4 10 7 -mo14 Vojtìch Kudrnáè 8/8 G Turnov 4 2 3 -mo15 Jan Matìjka 8/8 G Jírovcova, Èeské Budìjovice 5 2 6 -mo16 Antoník Novák 3/4 G Arabská, Praha 6 5 2 4 -mo17 Jitka Novotná 4/4 G M. Koperníka, Bílovec 4 10 7 -mo18 Martin Patera 3/4 G Arabská, Praha 6 2 1 7 -mo19 Ondøej Pelech 6/6 G Jana Nerudy, Praha 1 5 2 7 -mo20 Libor Plucnar 6/6 G Petra Bezruèe, Frýdek-Místek 4 10 7 -mo21 Jan Polá¹ek 6/8 G Turnov 6 2 7 -mo23 Jiøí Setnièka 4/6 G Èakovice, Praha 9 2 2 7 -mo24 Alexander Slávik 8/8 G Brno-Øeèkovice 5 2 7 -mo25 Karel Tesaø 3/4 VO© a SP©E Plzeò 1 10 7 -mo26 Jan Tichý 4/4 G Pardubice 2 0 3 -mo27 Pavel Veselý 4/4 G Strakonice 6 6 7 -mo28 Tomá¹ Vítek 3/4 G Arabská, Praha 6 2 1 4 -mo29 David Vondrák 7/8 G Pardubice 4 1 4 -mo30 Martin Zikmund 5/8 G Turnov 4 2 1 diff --git a/mop/score/vysledky.tex b/mop/score/vysledky.tex deleted file mode 100644 index 8b412e1..0000000 --- a/mop/score/vysledky.tex +++ /dev/null @@ -1,63 +0,0 @@ -\language=\czech -\frenchspacing -\font\head=csr12 scaled \magstephalf -\font\hexx=csti12 -\font\xxit=csti10 -\def\xit{\xxit\kern-0.1em\relax} -\let\hb=\relax -\parindent=0pt -\nopagenumbers - -\centerline{\head Výsledková listina ústøedního kola 56. roèníku MO kategorie P} -\bigskip -\centerline{\hexx 21. -- 24. bøezna 2007 ve Zlínì} -\bigskip -\bigskip - -\hrule -\bigskip - -\centerline{\vbox{\halign{% -#\hfil &~~#\hfil &\quad #\hfil &~~#\hfil&\quad -\hfil # & -\hfil # & -\hfil # & \kern0.4em -\hfil # & -\hfil # & \kern1em -\hb\quad\hfil # \cr -\noalign{\bigskip\bigskip\hbox{\xit Vítìzové}\bigskip} -%\noalign{\bigskip\bigskip\hbox{\xit Úspì¹ní øe¹itelé}\bigskip} -%\noalign{\bigskip\bigskip\hbox{\xit Ostatní úèastníci}\bigskip} -1.&Josef Pihera&8/8&{G Máchova, Strakonice}&7&4&10&15&15&51\cr -2.&Pavel Klavík&8/8&{G J. Ressla, Chrudim}&0&4&10&15&12&41\cr -3.&Roman Smr¾&7/8&{G E. Krásnohorské, Praha}&6&3&10&0&13&32\cr -4.&Miroslav Klimo¹&2/4&{G M. Koperníka, Bílovec}&9&9&10&2&0&30\cr -5.&Luká¹ Lánský&3/4&{G J. K. Tyla, Hradec Králové}&3&5&10&0&0&18\cr -6.&Pavel Motloch&6/6&{G P. Bezruèe, Frýdek-Místek}&0&7&10&0&0&17\cr -7.&Jakub Kaplan&3/4&{G J. K. Tyla, Hradec Králové}&5&3&1&7&0&16\cr -8.&Martin Pokorný&4/4&{G Arabská, Praha}&3&2&9&1&-&15\cr -9.&Martin Milata&8/8&{G Hladnovská, Ostrava}&0&2&8&0&4&14\cr -10.&Libor Peltan&7/8&{G Èeská, Èeské Budìjovice}&0&0&10&3&-&13\cr -11.&Ondøej Piálek&4/4&{G Masarykovo nám., Tøebíè}&7&1&1&0&3&12\cr -12.&Petr Dluho¹&8/8&{Mendelovo G, Opava}&0&0&10&0&1&11\cr -13.&Petr Kratochvíl&4/4&{G Sázavská, Svìtlá nad Sázavou}&1&1&6&1&-&9\cr -14.&Pavel John&4/4&{G Arabská, Praha}&0&1&7&-&0&8\cr -15.&Marek Scholle&8/8&{G Da¹ická, Pardubice}&6&1&0&0&-&7\cr -16.&Ondøej Bouda&8/8&{G Tø. Kpt. Jaro¹e, Brno}&1&3&0&2&0&6\cr -17.&Tomá¹ Toufar&3/4&{G M. Koperníka, Bílovec}&0&3&0&2&0&5\cr -18.--19.&Tomá¹ Pøaslièák&7/8&{GOA Nádra¾ní, Sedlèany}&0&3&1&-&0&4\cr -18.--19.&Martin Ve¹krna&4/4&{G Vídeòská, Brno}&0&3&1&-&-&4\cr -20.--25.&Jakub Balhar&6/6&{G J. Nerudy, Praha}&1&1&1&-&0&3\cr -20.--25.&Roman Diba&3/4&{VO© a SP©E Plzeò}&0&0&1&2&-&3\cr -20.--25.&Filip Dìchtìrenko&8/8&{G J. Masaryka, Jihlava}&0&1&1&0&1&3\cr -20.--25.&Matìj Korvas&8/8&{G J. Seiferta, Praha}&0&2&1&-&0&3\cr -20.--25.&Tomá¹ Køen&4/4&{G Ch. Dopplera, Praha}&0&3&0&-&-&3\cr -20.--25.&Michal Pavelèík&8/8&{G J. A. Komenského, Uherský Brod}&0&0&0&0&3&3\cr -26.--28.&Zuzana Bure¹ová&8/8&{Masarykovo G, Plzeò}&0&1&1&0&-&2\cr -26.--28.&Michal Novák&8/8&{G Tø. Kpt. Jaro¹e, Brno}&0&0&2&-&-&2\cr -26.--28.&Libor Plucnar&4/6&{G P. Bezruèe, Frýdek-Místek}&0&1&1&0&-&2\cr -29.&Roman Øíha&7/8&{G Zlatá stezka, Prachatice}&0&1&0&-&0&1\cr -30.&Michal Minaøík&4/4&{G F. X. ©aldy, Liberec}&0&0&0&-&-&0\cr -}}} - -\bye diff --git a/mop/score/vysledky.txt b/mop/score/vysledky.txt deleted file mode 100644 index fdbe89c..0000000 --- a/mop/score/vysledky.txt +++ /dev/null @@ -1,30 +0,0 @@ -1. Josef Pihera 8/8 {G Machova, Strakonice} 7 4 10 15 15 51 -2. Pavel Klavik 8/8 {G J. Ressla, Chrudim} 0 4 10 15 12 41 -3. Roman Smrz 7/8 {G E. Krasnohorske, Praha} 6 3 10 0 13 32 -4. Miroslav Klimos 2/4 {G M. Kopernika, Bilovec} 9 9 10 2 0 30 -5. Lukas Lansky 3/4 {G J. K. Tyla, Hradec Kralove} 3 5 10 0 0 18 -6. Pavel Motloch 6/6 {G P. Bezruce, Frydek-Mistek} 0 7 10 0 0 17 -7. Jakub Kaplan 3/4 {G J. K. Tyla, Hradec Kralove} 5 3 1 7 0 16 -8. Martin Pokorny 4/4 {G Arabska, Praha} 3 2 9 1 - 15 -9. Martin Milata 8/8 {G Hladnovska, Ostrava} 0 2 8 0 4 14 -10. Libor Peltan 7/8 {G Ceska, Ceske Budejovice} 0 0 10 3 - 13 -11. Ondrej Pialek 4/4 {G Masarykovo nam., Trebic} 7 1 1 0 3 12 -12. Petr Dluhos 8/8 {Mendelovo G, Opava} 0 0 10 0 1 11 -13. Petr Kratochvil 4/4 {G Sazavska, Svetla nad Sazavou} 1 1 6 1 - 9 -14. Pavel John 4/4 {G Arabska, Praha} 0 1 7 - 0 8 -15. Marek Scholle 8/8 {G Dasicka, Pardubice} 6 1 0 0 - 7 -16. Ondrej Bouda 8/8 {G Tr. Kpt. Jarose, Brno} 1 3 0 2 0 6 -17. Tomas Toufar 3/4 {G M. Kopernika, Bilovec} 0 3 0 2 0 5 -18.-19. Tomas Praslicak 7/8 {GOA Nadrazni, Sedlcany} 0 3 1 - 0 4 -18.-19. Martin Veskrna 4/4 {G Videnska, Brno} 0 3 1 - - 4 -20.-25. Jakub Balhar 6/6 {G J. Nerudy, Praha} 1 1 1 - 0 3 -20.-25. Roman Diba 3/4 {VOS a SPSE Plzen} 0 0 1 2 - 3 -20.-25. Filip Dechterenko 8/8 {G J. Masaryka, Jihlava} 0 1 1 0 1 3 -20.-25. Matej Korvas 8/8 {G J. Seiferta, Praha} 0 2 1 - 0 3 -20.-25. Tomas Kren 4/4 {G Ch. Dopplera, Praha} 0 3 0 - - 3 -20.-25. Michal Pavelcik 8/8 {G J. A. Komenskeho, Uhersky Brod} 0 0 0 0 3 3 -26.-28. Zuzana Buresova 8/8 {Masarykovo G, Plzen} 0 1 1 0 - 2 -26.-28. Michal Novak 8/8 {G Tr. Kpt. Jarose, Brno} 0 0 2 - - 2 -26.-28. Libor Plucnar 4/6 {G P. Bezruce, Frydek-Mistek} 0 1 1 0 - 2 -29. Roman Riha 7/8 {G Zlata stezka, Prachatice} 0 1 0 - 0 1 -30. Michal Minarik 4/4 {G F. X. Saldy, Liberec} 0 0 0 - - 0 diff --git a/mop/template/.bash_logout b/mop/template/.bash_logout deleted file mode 100644 index 5b4f8bb..0000000 --- a/mop/template/.bash_logout +++ /dev/null @@ -1 +0,0 @@ -clear diff --git a/mop/template/.codeblocks/default.conf b/mop/template/.codeblocks/default.conf new file mode 100644 index 0000000..5514213 --- /dev/null +++ b/mop/template/.codeblocks/default.conf @@ -0,0 +1,935 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> +<CodeBlocksConfig version="1"> + <!-- application info: + svn_revision: 0 + build_date: Jun 1 2012, 08:44:00 + gcc_version: 4.7.0 + Linux + Unix Unicode --> + <app> + <locale> + <CATALOGNUM int="39" /> + <DOMAIN1> + <str> + <![CDATA[BrowseTracker]]> + </str> + </DOMAIN1> + <DOMAIN2> + <str> + <![CDATA[Autosave]]> + </str> + </DOMAIN2> + <DOMAIN3> + <str> + <![CDATA[IncrementalSearch]]> + </str> + </DOMAIN3> + <DOMAIN4> + <str> + <![CDATA[FilesExtensionHandler]]> + </str> + </DOMAIN4> + <DOMAIN5> + <str> + <![CDATA[MouseSap]]> + </str> + </DOMAIN5> + <DOMAIN6> + <str> + <![CDATA[ClassWizard]]> + </str> + </DOMAIN6> + <DOMAIN7> + <str> + <![CDATA[CB_Koders]]> + </str> + </DOMAIN7> + <DOMAIN8> + <str> + <![CDATA[AStylePlugin]]> + </str> + </DOMAIN8> + <DOMAIN9> + <str> + <![CDATA[RegExTestbed]]> + </str> + </DOMAIN9> + <DOMAIN10> + <str> + <![CDATA[ToDoList]]> + </str> + </DOMAIN10> + <DOMAIN11> + <str> + <![CDATA[ProjectsImporter]]> + </str> + </DOMAIN11> + <DOMAIN12> + <str> + <![CDATA[BYOGames]]> + </str> + </DOMAIN12> + <DOMAIN13> + <str> + <![CDATA[Profiler]]> + </str> + </DOMAIN13> + <DOMAIN14> + <str> + <![CDATA[Valgrind]]> + </str> + </DOMAIN14> + <DOMAIN15> + <str> + <![CDATA[Exporter]]> + </str> + </DOMAIN15> + <DOMAIN16> + <str> + <![CDATA[Cccc]]> + </str> + </DOMAIN16> + <DOMAIN17> + <str> + <![CDATA[SymTab]]> + </str> + </DOMAIN17> + <DOMAIN18> + <str> + <![CDATA[CodeCompletion]]> + </str> + </DOMAIN18> + <DOMAIN19> + <str> + <![CDATA[EnvVars]]> + </str> + </DOMAIN19> + <DOMAIN20> + <str> + <![CDATA[HeaderFixup]]> + </str> + </DOMAIN20> + <DOMAIN21> + <str> + <![CDATA[cbKeyBinder]]> + </str> + </DOMAIN21> + <DOMAIN22> + <str> + <![CDATA[cbDragScroll]]> + </str> + </DOMAIN22> + <DOMAIN23> + <str> + <![CDATA[CppCheck]]> + </str> + </DOMAIN23> + <DOMAIN24> + <str> + <![CDATA[AutoVersioning]]> + </str> + </DOMAIN24> + <DOMAIN25> + <str> + <![CDATA[copystrings]]> + </str> + </DOMAIN25> + <DOMAIN26> + <str> + <![CDATA[wxSmith]]> + </str> + </DOMAIN26> + <DOMAIN27> + <str> + <![CDATA[wxSmithMime]]> + </str> + </DOMAIN27> + <DOMAIN28> + <str> + <![CDATA[ScriptedWizard]]> + </str> + </DOMAIN28> + <DOMAIN29> + <str> + <![CDATA[OpenFilesList]]> + </str> + </DOMAIN29> + <DOMAIN30> + <str> + <![CDATA[CodeStat]]> + </str> + </DOMAIN30> + <DOMAIN31> + <str> + <![CDATA[Compiler]]> + </str> + </DOMAIN31> + <DOMAIN32> + <str> + <![CDATA[wxSmithContribItems]]> + </str> + </DOMAIN32> + <DOMAIN33> + <str> + <![CDATA[HexEditor]]> + </str> + </DOMAIN33> + <DOMAIN34> + <str> + <![CDATA[CodeSnippets]]> + </str> + </DOMAIN34> + <DOMAIN35> + <str> + <![CDATA[HelpPlugin]]> + </str> + </DOMAIN35> + <DOMAIN36> + <str> + <![CDATA[ThreadSearch]]> + </str> + </DOMAIN36> + <DOMAIN37> + <str> + <![CDATA[Debugger]]> + </str> + </DOMAIN37> + <DOMAIN38> + <str> + <![CDATA[lib_finder]]> + </str> + </DOMAIN38> + <DOMAIN39> + <str> + <![CDATA[wxSmithAui]]> + </str> + </DOMAIN39> + </locale> + <environment> + <aui /> + </environment> + <main_frame> + <layout> + <DEFAULT> + <str> + <![CDATA[Code::Blocks default]]> + </str> + </DEFAULT> + <LEFT_BLOCK_SELECTION int="0" /> + <BOTTOM_BLOCK_SELECTION int="0" /> + <MAXIMIZED bool="1" /> + <view1> + <NAME> + <str> + <![CDATA[Code::Blocks default]]> + </str> + </NAME> + <DATA> + <str> + <![CDATA[layout2|name=ManagementPane;caption=Management;state=2099196;dir=4;layer=1;row=0;pos=0;prop=100000;bestw=200;besth=600;minw=100;minh=100;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=MessagesPane;caption=Logs & others;state=2099196;dir=3;layer=0;row=0;pos=0;prop=100000;bestw=800;besth=150;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=MainToolbar;caption=Main Toolbar;state=2108156;dir=1;layer=10;row=0;pos=0;prop=100000;bestw=326;besth=31;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=MainPane;caption=;state=768;dir=5;layer=0;row=0;pos=0;prop=100000;bestw=20;besth=20;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=ScriptConsole;caption=Scripting console;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=355;besth=101;minw=100;minh=100;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=363;floath=125|name=IncrementalSearchToolbar;caption=IncrementalSearch Toolbar;state=2108156;dir=1;layer=10;row=2;pos=0;prop=100000;bestw=358;besth=31;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=DefMimeHandler_HTMLViewer;caption=HTML viewer;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=350;besth=250;minw=150;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=350;floath=250|name=TodoListPanev2.0.0;caption=Todo list;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=352;besth=94;minw=352;minh=94;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=352;floath=94|name=CodeCompletionToolbar;caption=Code completion Toolbar;state=2108156;dir=1;layer=10;row=0;pos=337;prop=100000;bestw=844;besth=31;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=OpenFilesPane;caption=Open files list;state=2099198;dir=4;layer=1;row=0;pos=0;prop=100000;bestw=150;besth=100;minw=50;minh=50;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=100;floath=150|name=CompilerToolbar;caption=Compiler Toolbar;state=2108156;dir=1;layer=10;row=2;pos=369;prop=100000;bestw=385;besth=31;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=CodeSnippetsPane;caption=CodeSnippets;state=2099199;dir=4;layer=1;row=0;pos=0;prop=100000;bestw=300;besth=400;minw=30;minh=40;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=300;floath=400|name=MANViewer;caption=Man/Html pages viewer;state=2099198;dir=2;layer=0;row=0;pos=0;prop=100000;bestw=320;besth=240;minw=240;minh=160;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=320;floath=240|name=ThreadSearchToolbar;caption=ThreadSearch Toolbar;state=2108156;dir=1;layer=10;row=2;pos=765;prop=100000;bestw=239;besth=31;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|name=DisassemblyPane;caption=Disassembly;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=350;besth=250;minw=150;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=350;floath=250|name=CPURegistersPane;caption=CPU Registers;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=350;besth=250;minw=150;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=350;floath=250|name=CallStackPane;caption=Call stack;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=150;besth=150;minw=150;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=450;floath=150|name=WatchesPane;caption=Watches;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=150;besth=250;minw=150;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=150;floath=250|name=BreakpointsPane;caption=Breakpoints;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=350;besth=250;minw=150;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=350;floath=250|name=ExamineMemoryPane;caption=Memory;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=450;besth=250;minw=350;minh=150;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=450;floath=250|name=ThreadsPane;caption=Running threads;state=2099199;dir=4;layer=0;row=0;pos=0;prop=100000;bestw=350;besth=75;minw=250;minh=75;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=450;floath=75|name=DebuggerToolbar;caption=Debugger Toolbar;state=2124540;dir=1;layer=10;row=2;pos=1015;prop=100000;bestw=250;besth=31;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1|dock_size(4,1,0)=202|dock_size(3,0,0)=169|dock_size(1,10,0)=33|dock_size(5,0,0)=22|dock_size(1,10,2)=33|]]> + </str> + </DATA> + </view1> + </layout> + </main_frame> + <dialog_placement /> + <VERSION> + <str> + <![CDATA[10.05-r0]]> + </str> + </VERSION> + <SHOW_TIPS bool="0" /> + <NEXT_TIP int="1" /> + <RECENT_FILES> + <astr /> + </RECENT_FILES> + <RECENT_PROJECTS> + <astr> + <s> + <![CDATA[/home/testuser/test/zizalky.cbp]]> + </s> + </astr> + </RECENT_PROJECTS> + </app> + <security> + <TRUSTED_SCRIPTS> + <ssmap /> + </TRUSTED_SCRIPTS> + </security> + <project_manager> + <file_groups> + <group0> + <NAME> + <str> + <![CDATA[Sources]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.c;*.cpp;*.cc;*.cxx;]]> + </str> + </MASK> + </group0> + <group1> + <NAME> + <str> + <![CDATA[D Sources]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.d;]]> + </str> + </MASK> + </group1> + <group2> + <NAME> + <str> + <![CDATA[Fortran Sources]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.f;*.f77;*.f90;*.f95;]]> + </str> + </MASK> + </group2> + <group3> + <NAME> + <str> + <![CDATA[Java Sources]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.java;]]> + </str> + </MASK> + </group3> + <group4> + <NAME> + <str> + <![CDATA[Headers]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.h;*.hpp;*.hh;*.hxx;]]> + </str> + </MASK> + </group4> + <group5> + <NAME> + <str> + <![CDATA[ASM Sources]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.asm;*.s;*.ss;*.s62;]]> + </str> + </MASK> + </group5> + <group6> + <NAME> + <str> + <![CDATA[Resources]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.res;*.xrc;*.rc;]]> + </str> + </MASK> + </group6> + <group7> + <NAME> + <str> + <![CDATA[Scripts]]> + </str> + </NAME> + <MASK> + <str> + <![CDATA[*.script;]]> + </str> + </MASK> + </group7> + </file_groups> + </project_manager> + <message_manager /> + <editor> + <colour_sets> + <default /> + </colour_sets> + <incremental_search /> + <folding /> + <eol /> + <caret /> + <gutter /> + <margin /> + <selection /> + <HIGHLIGHT_CARET_LINE_COLOUR> + <colour r="255" g="255" b="160" /> + </HIGHLIGHT_CARET_LINE_COLOUR> + <default_encoding /> + <ZOOM int="0" /> + <auto_complete> + <entry1> + <NAME> + <str> + <![CDATA[ifei]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[if (|)\n{\n\t\n}\nelse if ()\n{\n\t\n}\nelse\n{\n\t\n}]]> + </str> + </CODE> + </entry1> + <entry2> + <NAME> + <str> + <![CDATA[nowl]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$NOW_L]]> + </str> + </CODE> + </entry2> + <entry3> + <NAME> + <str> + <![CDATA[forb]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[for (|; ; )\n{\n\t\n}]]> + </str> + </CODE> + </entry3> + <entry4> + <NAME> + <str> + <![CDATA[ife]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[if (|)\n{\n\t\n}\nelse\n{\n\t\n}]]> + </str> + </CODE> + </entry4> + <entry5> + <NAME> + <str> + <![CDATA[todayu]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$TODAY_UTC]]> + </str> + </CODE> + </entry5> + <entry6> + <NAME> + <str> + <![CDATA[nowlu]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$NOW_L_UTC]]> + </str> + </CODE> + </entry6> + <entry7> + <NAME> + <str> + <![CDATA[wdu]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$WEEKDAY_UTC]]> + </str> + </CODE> + </entry7> + <entry8> + <NAME> + <str> + <![CDATA[tday]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$TDAY]]> + </str> + </CODE> + </entry8> + <entry9> + <NAME> + <str> + <![CDATA[while]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[while (|)\n\t;]]> + </str> + </CODE> + </entry9> + <entry10> + <NAME> + <str> + <![CDATA[guard]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[#ifndef $(Guard token)\n#define $(Guard token)\n\n|\n\n#endif // $(Guard token)\n]]> + </str> + </CODE> + </entry10> + <entry11> + <NAME> + <str> + <![CDATA[today]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$TODAY]]> + </str> + </CODE> + </entry11> + <entry12> + <NAME> + <str> + <![CDATA[for]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[for (|; ; )\n\t;]]> + </str> + </CODE> + </entry12> + <entry13> + <NAME> + <str> + <![CDATA[if]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[if (|)\n\t;]]> + </str> + </CODE> + </entry13> + <entry14> + <NAME> + <str> + <![CDATA[now]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$NOW]]> + </str> + </CODE> + </entry14> + <entry15> + <NAME> + <str> + <![CDATA[tdayu]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$TDAY_UTC]]> + </str> + </CODE> + </entry15> + <entry16> + <NAME> + <str> + <![CDATA[whileb]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[while (|)\n{\n\t\n}]]> + </str> + </CODE> + </entry16> + <entry17> + <NAME> + <str> + <![CDATA[class]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[class $(Class name)|\n{\n\tpublic:\n\t\t$(Class name)();\n\t\t~$(Class name)();\n\tprotected:\n\t\t\n\tprivate:\n\t\t\n};\n]]> + </str> + </CODE> + </entry17> + <entry18> + <NAME> + <str> + <![CDATA[switch]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[switch (|)\n{\n\tcase :\n\t\tbreak;\n\n\tdefault:\n\t\tbreak;\n}\n]]> + </str> + </CODE> + </entry18> + <entry19> + <NAME> + <str> + <![CDATA[struct]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[struct |\n{\n\t\n};\n]]> + </str> + </CODE> + </entry19> + <entry20> + <NAME> + <str> + <![CDATA[ifb]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[if (|)\n{\n\t\n}]]> + </str> + </CODE> + </entry20> + <entry21> + <NAME> + <str> + <![CDATA[nowu]]> + </str> + </NAME> + <CODE> + <str> + <![CDATA[$NOW_UTC]]> + </str> + </CODE> + </entry21> + </auto_complete> + </editor> + <tools /> + <code_completion> + <PARSER_DEFAULTS_CHANGED bool="1" /> + <PARSER_FOLLOW_LOCAL_INCLUDES bool="1" /> + <PARSER_FOLLOW_GLOBAL_INCLUDES bool="1" /> + <WANT_PREPROCESSOR bool="1" /> + <TOKEN_REPLACEMENTS> + <ssmap> + <_GLIBCXX_BEGIN_NAMESPACE> + <![CDATA[+namespace]]> + </_GLIBCXX_BEGIN_NAMESPACE> + <_GLIBCXX_BEGIN_NAMESPACE_TR1> + <![CDATA[-namespace tr1 {]]> + </_GLIBCXX_BEGIN_NAMESPACE_TR1> + <_GLIBCXX_BEGIN_NESTED_NAMESPACE> + <![CDATA[+namespace]]> + </_GLIBCXX_BEGIN_NESTED_NAMESPACE> + <_GLIBCXX_END_NAMESPACE> + <![CDATA[}]]> + </_GLIBCXX_END_NAMESPACE> + <_GLIBCXX_END_NAMESPACE_TR1> + <![CDATA[}]]> + </_GLIBCXX_END_NAMESPACE_TR1> + <_GLIBCXX_END_NESTED_NAMESPACE> + <![CDATA[}]]> + </_GLIBCXX_END_NESTED_NAMESPACE> + <_GLIBCXX_STD> + <![CDATA[std]]> + </_GLIBCXX_STD> + <_STD_BEGIN> + <![CDATA[-namespace std {]]> + </_STD_BEGIN> + <_STD_END> + <![CDATA[}]]> + </_STD_END> + </ssmap> + </TOKEN_REPLACEMENTS> + <SPLITTER_POS int="250" /> + </code_completion> + <plugins> + <TRY_TO_ACTIVATE> + <str> + <![CDATA[]]> + </str> + </TRY_TO_ACTIVATE> + </plugins> + <autosave /> + <mime_types /> + <todo_list> + <USERS> + <astr> + <s> + <![CDATA[testuser]]> + </s> + </astr> + </USERS> + <TYPES> + <astr> + <s> + <![CDATA[TODO]]> + </s> + <s> + <![CDATA[@todo]]> + </s> + <s> + <![CDATA[\todo]]> + </s> + <s> + <![CDATA[FIXME]]> + </s> + <s> + <![CDATA[@fixme]]> + </s> + <s> + <![CDATA[\fixme]]> + </s> + <s> + <![CDATA[NOTE]]> + </s> + <s> + <![CDATA[@note]]> + </s> + <s> + <![CDATA[\note]]> + </s> + </astr> + </TYPES> + </todo_list> + <byogames /> + <envvars> + <sets> + <default /> + </sets> + </envvars> + <wxsmith> + <RES_PANEL_SPLIT int="-1" /> + </wxsmith> + <compiler> + <build_progress /> + <SETTINGS_VERSION> + <str> + <![CDATA[0.0.2]]> + </str> + </SETTINGS_VERSION> + <DEFAULT_COMPILER> + <str> + <![CDATA[gcc]]> + </str> + </DEFAULT_COMPILER> + <sets> + <gcc> + <NAME> + <str> + <![CDATA[GNU GCC Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr]]> + </str> + </MASTER_PATH> + </gcc> + <icc> + <NAME> + <str> + <![CDATA[Intel C/C++ Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/opt/intel/cc/9.0]]> + </str> + </MASTER_PATH> + </icc> + <sdcc> + <NAME> + <str> + <![CDATA[SDCC Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr/local/bin]]> + </str> + </MASTER_PATH> + </sdcc> + <tcc> + <NAME> + <str> + <![CDATA[Tiny C Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr]]> + </str> + </MASTER_PATH> + </tcc> + <gdc> + <NAME> + <str> + <![CDATA[GDC D Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr]]> + </str> + </MASTER_PATH> + </gdc> + <dmd> + <NAME> + <str> + <![CDATA[Digital Mars D Compiler]]> + </str> + </NAME> + <INCLUDE_DIRS> + <str> + <![CDATA[/usr/lib/phobos;]]> + </str> + </INCLUDE_DIRS> + <LIBRARY_DIRS> + <str> + <![CDATA[/usr/lib;]]> + </str> + </LIBRARY_DIRS> + <LIBRARIES> + <str> + <![CDATA[pthread;m;phobos;]]> + </str> + </LIBRARIES> + <MASTER_PATH> + <str> + <![CDATA[/usr]]> + </str> + </MASTER_PATH> + </dmd> + <armelfgcc> + <NAME> + <str> + <![CDATA[GNU ARM GCC Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr]]> + </str> + </MASTER_PATH> + </armelfgcc> + <avrgcc> + <NAME> + <str> + <![CDATA[GNU AVR GCC Compiler]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr]]> + </str> + </MASTER_PATH> + </avrgcc> + <ppcgcc> + <NAME> + <str> + <![CDATA[GNU GCC Compiler for PowerPC]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr/local/ppc]]> + </str> + </MASTER_PATH> + </ppcgcc> + <tricoregcc> + <NAME> + <str> + <![CDATA[GNU GCC Compiler for TriCore]]> + </str> + </NAME> + <MASTER_PATH> + <str> + <![CDATA[/usr/local/tricore]]> + </str> + </MASTER_PATH> + </tricoregcc> + </sets> + </compiler> + <gcv> + <sets> + <default /> + </sets> + <ACTIVE> + <str> + <![CDATA[default]]> + </str> + </ACTIVE> + </gcv> + <help_plugin> + <BASE_FONT_SIZE int="10" /> + </help_plugin> + <ThreadSearch> + <MATCHWORD bool="1" /> + <STARTWORD bool="0" /> + <MATCHCASE bool="1" /> + <REGEX bool="0" /> + <HIDDENSEARCH bool="1" /> + <RECURSIVESEARCH bool="1" /> + <CTXMENUINTEGRATION bool="1" /> + <USEDEFAULTVALUES bool="1" /> + <SHOWSEARCHCONTROLS bool="1" /> + <SHOWDIRCONTROLS bool="0" /> + <SHOWCODEPREVIEW bool="1" /> + <DELETEPREVIOUSRESULTS bool="1" /> + <DISPLAYLOGHEADERS bool="1" /> + <DRAWLOGLINES bool="0" /> + <SHOWPANEL bool="0" /> + <SCOPE int="2" /> + <DIRPATH> + <str> + <![CDATA[]]> + </str> + </DIRPATH> + <MASK> + <str> + <![CDATA[*.cpp;*.c;*.h]]> + </str> + </MASK> + <SPLITTERPOSN int="284" /> + <SPLITTERMODE int="2" /> + <VIEWMANAGERTYPE int="0" /> + <LOGGERTYPE int="0" /> + <FILESORTING int="0" /> + <SEARCHPATTERNS> + <astr /> + </SEARCHPATTERNS> + </ThreadSearch> + <debugger /> + <lib_finder> + <stored_results /> + </lib_finder> + <scripting> + <startup_scripts /> + </scripting> + <an_dlg /> +</CodeBlocksConfig> diff --git a/mop/template/.gtkrc-2.0 b/mop/template/.gtkrc-2.0 deleted file mode 100644 index 6dc40c0..0000000 --- a/mop/template/.gtkrc-2.0 +++ /dev/null @@ -1 +0,0 @@ -include "/usr/share/themes/Clearlooks/gtk-2.0/gtkrc" diff --git a/mop/template/.kde/share/apps/kabc/std.vcf b/mop/template/.kde/share/apps/kabc/std.vcf deleted file mode 100644 index e69de29..0000000 diff --git a/mop/template/.kde/share/apps/kabc/std.vcf__0 b/mop/template/.kde/share/apps/kabc/std.vcf__0 deleted file mode 100644 index e69de29..0000000 diff --git a/mop/template/.kde/share/apps/kate/externaltools b/mop/template/.kde/share/apps/kate/externaltools deleted file mode 100644 index 15d48d0..0000000 --- a/mop/template/.kde/share/apps/kate/externaltools +++ /dev/null @@ -1,2 +0,0 @@ -[Global] -version=1 diff --git a/mop/template/.kde/share/apps/kate/sessions/default.katesession b/mop/template/.kde/share/apps/kate/sessions/default.katesession deleted file mode 100644 index 23edbc2..0000000 --- a/mop/template/.kde/share/apps/kate/sessions/default.katesession +++ /dev/null @@ -1,53 +0,0 @@ -[Document 0] -Bookmarks= -Encoding= -Highlighting=None -Indentation Mode=0 -URL= - -[General] -Name=Default Session - -[MainWindow0] -Active ViewSpaceContainer=0 -Height 1024=480 -Kate-MDI-H-Splitter=200,676,200 -Kate-MDI-Sidebar-0-Splitter=1,1 -Kate-MDI-Sidebar-1-Splitter= -Kate-MDI-Sidebar-2-Splitter= -Kate-MDI-Sidebar-3-Splitter=1,1 -Kate-MDI-Sidebar-Style=3 -Kate-MDI-Sidebar-Visible=true -Kate-MDI-ToolView-kate_console-Persistent=false -Kate-MDI-ToolView-kate_console-Position=3 -Kate-MDI-ToolView-kate_console-Sidebar-Position=1 -Kate-MDI-ToolView-kate_console-Visible=false -Kate-MDI-ToolView-kate_filelist-Persistent=false -Kate-MDI-ToolView-kate_filelist-Position=0 -Kate-MDI-ToolView-kate_filelist-Sidebar-Position=0 -Kate-MDI-ToolView-kate_filelist-Visible=false -Kate-MDI-ToolView-kate_fileselector-Persistent=false -Kate-MDI-ToolView-kate_fileselector-Position=0 -Kate-MDI-ToolView-kate_fileselector-Sidebar-Position=1 -Kate-MDI-ToolView-kate_fileselector-Visible=false -Kate-MDI-ToolView-kate_greptool-Persistent=false -Kate-MDI-ToolView-kate_greptool-Position=3 -Kate-MDI-ToolView-kate_greptool-Sidebar-Position=0 -Kate-MDI-ToolView-kate_greptool-Visible=false -Kate-MDI-V-Splitter=150,395,200 -ViewSpaceContainers=1 -Width 1280=700 - -[MainWindow0:ViewSpaceContainer-0:] -Active Viewspace=0 -Splitters=false - -[MainWindow0:ViewSpaceContainer-0:-ViewSpace 0] -Active View= -Count=1 - -[Open Documents] -Count=1 - -[Open MainWindows] -Count=1 diff --git a/mop/template/.kde/share/apps/katepart/katepartui.rc b/mop/template/.kde/share/apps/katepart/katepartui.rc deleted file mode 100644 index 78e70fa..0000000 --- a/mop/template/.kde/share/apps/katepart/katepartui.rc +++ /dev/null @@ -1,129 +0,0 @@ -<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> -<kpartgui version="40" name="KatePartView" > - <MenuBar> - <Menu noMerge="1" name="file" > - <text>&File</text> - <Action group="save_merge" name="file_save" /> - <Action group="save_merge" name="file_save_as" /> - <Action group="revert_merge" name="file_reload" /> - <Action group="print_merge" name="file_print" /> - <Separator group="print_merge" /> - <Action group="print_merge" name="file_export_html" /> - </Menu> - <Menu noMerge="1" name="edit" > - <text>&Edit</text> - <Action group="edit_undo_merge" name="edit_undo" /> - <Action group="edit_undo_merge" name="edit_redo" /> - <Separator group="edit_undo_merge" /> - <Action group="edit_paste_merge" name="edit_cut" /> - <Action group="edit_paste_merge" name="edit_copy" /> - <Action group="edit_paste_merge" name="edit_copy_html" /> - <Action group="edit_paste_merge" name="edit_paste" /> - <Separator group="edit_paste_merge" /> - <Action group="edit_select_merge" name="edit_select_all" /> - <Action group="edit_select_merge" name="edit_deselect" /> - <Action group="edit_select_merge" name="set_verticalSelect" /> - <Separator group="edit_select_merge" /> - <Action group="edit_select_merge" name="set_insert" /> - <Separator group="edit_select_merge" /> - <Action group="edit_find_merge" name="edit_find" /> - <Action group="edit_find_merge" name="edit_find_next" /> - <Action group="edit_find_merge" name="edit_find_prev" /> - <Action group="edit_find_merge" name="edit_replace" /> - <Separator group="edit_find_merge" /> - <Action group="edit_find_merge" name="go_goto_line" /> - </Menu> - <Menu noMerge="1" name="view" > - <text>&View</text> - <Action group="view_operations" name="switch_to_cmd_line" /> - <Separator group="view_operations" /> - <Action group="view_operations" name="view_schemas" /> - <Separator group="view_operations" /> - <Action group="view_operations" name="view_dynamic_word_wrap" /> - <Action group="view_operations" name="dynamic_word_wrap_indicators" /> - <Action group="view_operations" name="view_word_wrap_marker" /> - <Separator group="view_operations" /> - <Action group="view_operations" name="view_border" /> - <Action group="view_operations" name="view_line_numbers" /> - <Action group="view_operations" name="view_scrollbar_marks" /> - <Separator group="view_operations" /> - <Action group="view_operations" name="view_folding_markers" /> - <Menu group="view_operations" name="codefolding" > - <text>&Code Folding</text> - <Action group="view_operations" name="folding_toplevel" /> - <Action group="view_operations" name="folding_expandtoplevel" /> - <Action group="view_operations" name="folding_collapselocal" /> - <Action group="view_operations" name="folding_expandlocal" /> - </Menu> - <Separator group="view_operations" /> - </Menu> - <Action name="bookmarks" /> - <Menu noMerge="1" name="tools" > - <text>&Tools</text> - <Action group="tools_operations" name="tools_toggle_write_lock" /> - <Separator group="tools_operations" /> - <Action group="tools_operations" name="set_filetype" /> - <Action group="tools_operations" name="set_highlight" /> - <Action group="tools_operations" name="tools_indentation" /> - <Action group="tools_operations" name="set_encoding" /> - <Action group="tools_operations" name="set_eol" /> - <Separator group="tools_operations" /> - <Action group="tools_operations" name="tools_spelling" /> - <Action group="tools_operations" name="tools_spelling_from_cursor" /> - <Action group="tools_operations" name="tools_spelling_selection" /> - <Separator group="tools_operations" /> - <Action group="tools_operations" name="tools_indent" /> - <Action group="tools_operations" name="tools_unindent" /> - <Action group="tools_operations" name="tools_cleanIndent" /> - <Action group="tools_operations" name="tools_align" /> - <Separator group="tools_operations" /> - <Action group="tools_operations" name="tools_comment" /> - <Action group="tools_operations" name="tools_uncomment" /> - <Separator group="tools_operations" /> - <Action group="tools_operations" name="tools_uppercase" /> - <Action group="tools_operations" name="tools_lowercase" /> - <Action group="tools_operations" name="tools_capitalize" /> - <Separator group="tools_operations" /> - <Action group="tools_operations" name="tools_join_lines" /> - <Action group="tools_operations" name="tools_apply_wordwrap" /> - </Menu> - <Menu noMerge="1" name="settings" > - <text>&Settings</text> - <Action group="configure_merge" name="set_confdlg" /> - </Menu> - </MenuBar> - <Menu noMerge="0" name="ktexteditor_popup" > - <Action group="popup_operations" name="edit_undo" /> - <Action group="popup_operations" name="edit_redo" /> - <Separator group="popup_operations" /> - <Action group="popup_operations" name="edit_cut" /> - <Action group="popup_operations" name="edit_copy" /> - <Action group="popup_operations" name="edit_paste" /> - <Separator group="popup_operations" /> - <Action group="popup_operations" name="edit_select_all" /> - <Action group="popup_operations" name="edit_deselect" /> - <Separator group="popup_operations" /> - <Action group="popup_operations" name="bookmarks" /> - <Separator group="popup_operations" /> - </Menu> - <ToolBar noMerge="1" name="mainToolBar" > - <text>Main Toolbar</text> - <Action group="file_operations" name="file_save" /> - <Action group="file_operations" name="file_save_as" /> - <Action group="print_merge" name="file_print" /> - <Action group="edit_operations" name="edit_undo" /> - <Action group="edit_operations" name="edit_redo" /> - <Action group="edit_operations" name="edit_cut" /> - <Action group="edit_operations" name="edit_copy" /> - <Action group="edit_operations" name="edit_paste" /> - <Action group="find_operations" name="edit_find" /> - <Action group="zoom_operations" name="incFontSizes" /> - <Action group="zoom_operations" name="decFontSizes" /> - </ToolBar> - <ActionProperties> - <Action shortcut="" name="view_folding_markers" /> - <Action shortcut="" name="view_line_numbers" /> - <Action shortcut="" name="view_dynamic_word_wrap" /> - <Action shortcut="" name="switch_to_cmd_line" /> - </ActionProperties> -</kpartgui> diff --git a/mop/template/.kde/share/apps/kcookiejar/cookies b/mop/template/.kde/share/apps/kcookiejar/cookies deleted file mode 100644 index 861ff38..0000000 --- a/mop/template/.kde/share/apps/kcookiejar/cookies +++ /dev/null @@ -1,3 +0,0 @@ -# KDE Cookie File v2 -# -# Host Domain Path Exp.date Prot Name Sec Value diff --git a/mop/template/.kde/share/apps/kdesktop/IconPositions b/mop/template/.kde/share/apps/kdesktop/IconPositions deleted file mode 100644 index 90ab3c4..0000000 --- a/mop/template/.kde/share/apps/kdesktop/IconPositions +++ /dev/null @@ -1,125 +0,0 @@ -[IconPosition::MO-P project IDE.desktop] -Xabs=375 -Xabs_1280x1024=375 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::MO-P submit.desktop] -Xabs=387 -Xabs_1280x1024=387 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::FPC doc] -Xabs=1203 -Xabs_1280x1024=1203 -Yabs=231 -Yabs_1280x1024=231 - -[IconPosition::FPC func index] -Xabs=1108 -Xabs_1280x1024=1108 -Yabs=231 -Yabs_1280x1024=231 - -[IconPosition::Home.desktop] -Xabs=23 -Xabs_1280x1024=23 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::KDevelop project.desktop] -Xabs=559 -Xabs_1280x1024=559 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::Libc doc] -Xabs=1202 -Xabs_1280x1024=1202 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::Libc func index] -Xabs=1107 -Xabs_1280x1024=1107 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::Libc++ doc] -Xabs=1100 -Xabs_1280x1024=1100 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::Mc.desktop] -Xabs=23 -Xabs_1280x1024=23 -Yabs=231 -Yabs_1280x1024=231 - -[IconPosition::STL doc] -Xabs=1203 -Xabs_1280x1024=1203 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::Submit CPSPC solution.desktop] -Xabs=463 -Xabs_1280x1024=463 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::Submit.desktop] -Xabs=477 -Xabs_1280x1024=477 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::X-Debian-Apps-Tools-mc.desktop] -Xabs=23 -Xabs_1280x1024=23 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::X-Debian-XShells-konsole.desktop] -Xabs=20 -Xabs_1280x1024=20 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::emacs21.desktop] -Xabs=740 -Xabs_1280x1024=740 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::gvim.desktop] -Xabs=738 -Xabs_1280x1024=738 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::kate.desktop] -Xabs=842 -Xabs_1280x1024=842 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::konsole.desktop] -Xabs=20 -Xabs_1280x1024=20 -Yabs=123 -Yabs_1280x1024=123 - -[IconPosition::kwrite.desktop] -Xabs=842 -Xabs_1280x1024=842 -Yabs=15 -Yabs_1280x1024=15 - -[IconPosition::trash.desktop] -Xabs=1206 -Xabs_1280x1024=1206 -Yabs=879 -Yabs_1280x1024=879 diff --git a/mop/template/.kde/share/apps/kdevabbrev/templates/templates b/mop/template/.kde/share/apps/kdevabbrev/templates/templates deleted file mode 100644 index 42fa1f9..0000000 --- a/mop/template/.kde/share/apps/kdevabbrev/templates/templates +++ /dev/null @@ -1,50 +0,0 @@ -<!DOCTYPE Templates> -<Templates> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="if( | ){ -} else { -}" name="ife" description="if else" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="private|" name="pr" description="private" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="while( | ){ -}" name="whileb" description="while statement" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="public|" name="pu" description="public" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="switch( | ){ -}" name="switchb" description="switch statement" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="protected|" name="pro" description="protected" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="for( |; ; ){ -}" name="forb" description="for statement" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="class | { -public: -};" name="classd" description="class declaration" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="struct | { -};" name="structd" description="struct declaration" /> - <Template suffixes="C++ (h,H,hh,hxx,hpp,inl,tlh,c,C,cc,cpp,c++,cxx,m,mm,M)" code="if( | ){ -}" name="ifb" description="if statement" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="if ( | ) then -begin -end -else -begin -end;" name="ife" description="if else" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="while ( | ) do -begin -end;" name="whileb" description="while statement" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="private|" name="pr" description="private" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="public|" name="pu" description="public" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="case ( | ) of -end;" name="caseb" description="case statement" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="protected|" name="pro" description="protected" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="for | := to do -begin -end;" name="forb" description="for statement" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="|= class() -public -private -protected -end;" name="classd" description="class declaration" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="|= record -end;" name="recordd" description="record declaration" /> - <Template suffixes="Pascal (p,pp,pas,dpr)" code="if ( | ) then -begin -end;" name="ifb" description="if statement" /> - <Template suffixes="HTML (html)" code="<table><tr><td>|</td></tr></table>" name="tab" description="table" /> -</Templates> diff --git a/mop/template/.kde/share/apps/kdevcppsupport/newclass/cpp_header b/mop/template/.kde/share/apps/kdevcppsupport/newclass/cpp_header deleted file mode 100644 index 3952210..0000000 --- a/mop/template/.kde/share/apps/kdevcppsupport/newclass/cpp_header +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef $HEADERGUARD$ -#define $HEADERGUARD$ - -$INCLUDEBASEHEADER$ - -$NAMESPACEBEG$ - -$DOC$ -$TEMPLATE$ -class $CLASSNAME$$INHERITANCE$ -{ -$QOBJECT$ -public: -$CONSTRUCTORDECLARATIONS$ - -$PUBLICDECLARATIONS$ - -$PUBLICSLOTS$ - -$PROTECTEDDECLARATIONS$ - -$PROTECTEDSLOTS$ - -$PRIVATEDECLARATIONS$ - -$PRIVATESLOTS$ -}; - -$NAMESPACEEND$ - -#endif diff --git a/mop/template/.kde/share/apps/kdevcppsupport/newclass/cpp_source b/mop/template/.kde/share/apps/kdevcppsupport/newclass/cpp_source deleted file mode 100644 index eeeb1ea..0000000 --- a/mop/template/.kde/share/apps/kdevcppsupport/newclass/cpp_source +++ /dev/null @@ -1,9 +0,0 @@ -#include "$HEADER$" - -$NAMESPACEBEG$ - -$CONSTRUCTORDEFINITIONS$ - -$DEFINITIONS$ - -$NAMESPACEEND$ diff --git a/mop/template/.kde/share/apps/kdevcppsupport/newclass/gtk_header b/mop/template/.kde/share/apps/kdevcppsupport/newclass/gtk_header deleted file mode 100644 index c44bff3..0000000 --- a/mop/template/.kde/share/apps/kdevcppsupport/newclass/gtk_header +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef $HEADERGUARD$ -#define $HEADERGUARD$ - -#include <sys/types.h> -#include <sys/stat.h> -#include <unistd.h> -#include <string.h> - -#include <gdk/gdk.h> -#include <gtk/gtk.h> - -$DOC$ -typedef struct td_test { -/* TODO: put your data here */ -} $CLASSNAME$, *$CLASSNAME$Ptr; - - -$CLASSNAME$* $CLASSNAME$_new(void); -void $CLASSNAME$_delete($CLASSNAME$* self); -gboolean $CLASSNAME$_init($CLASSNAME$* self); -void $CLASSNAME$_end($CLASSNAME$* self); - - -#endif diff --git a/mop/template/.kde/share/apps/kdevcppsupport/newclass/gtk_source b/mop/template/.kde/share/apps/kdevcppsupport/newclass/gtk_source deleted file mode 100644 index aa5f05e..0000000 --- a/mop/template/.kde/share/apps/kdevcppsupport/newclass/gtk_source +++ /dev/null @@ -1,35 +0,0 @@ -#include "$HEADER$" - -$CLASSNAME$* $CLASSNAME$_new(void) -{ - $CLASSNAME$* self; - self = g_new($CLASSNAME$, 1); - if(NULL != self) - { - if(!$CLASSNAME$_init(self)) - { - g_free(self); - self = NULL; - } - } - return self; -} - -void $CLASSNAME$_delete($CLASSNAME$* self) -{ - g_return_if_fail(NULL != self); - $CLASSNAME$_end(self); - g_free(self); -} - -gboolean $CLASSNAME$_init($CLASSNAME$* self) -{ - /* TODO: put init code here */ - - return TRUE; -} - -void $CLASSNAME$_end($CLASSNAME$* self) -{ - /* TODO: put deinit code here */ -} diff --git a/mop/template/.kde/share/apps/kdevcppsupport/newclass/objc_header b/mop/template/.kde/share/apps/kdevcppsupport/newclass/objc_header deleted file mode 100644 index 9213782..0000000 --- a/mop/template/.kde/share/apps/kdevcppsupport/newclass/objc_header +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef _$HEADERGUARD$_ -#define _$HEADERGUARD$_ - -$INCLUDEBASEHEADER$ -#include <Foundation/NSObject.h> - -$DOC$ -@interface $CLASSNAME$ : $BASECLASS$ -@end - -#endif diff --git a/mop/template/.kde/share/apps/kdevcppsupport/newclass/objc_source b/mop/template/.kde/share/apps/kdevcppsupport/newclass/objc_source deleted file mode 100644 index 298e941..0000000 --- a/mop/template/.kde/share/apps/kdevcppsupport/newclass/objc_source +++ /dev/null @@ -1,4 +0,0 @@ -#include "$HEADER$" - -@implementation $CLASSNAME$ -@end diff --git a/mop/template/.kde/share/apps/kdevcustomproject/kdevcustomproject.rc b/mop/template/.kde/share/apps/kdevcustomproject/kdevcustomproject.rc deleted file mode 100644 index 8c8e8d8..0000000 --- a/mop/template/.kde/share/apps/kdevcustomproject/kdevcustomproject.rc +++ /dev/null @@ -1,34 +0,0 @@ -<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd"> -<kpartgui version="7" name="KDevCustomProject" > - <MenuBar> - <Menu name="project" > - <Action name="repopulate_project" /> - <Action name="addnewfiles_project" /> - </Menu> - <Menu name="build" > - <Action name="build_build" /> - <Action name="build_buildactivetarget" /> - <Action name="build_compilefile" /> - <Action name="build_target" /> - <Action name="build_install" /> - <Action name="build_installactivetarget" /> - <Action name="build_make_environment" /> - <Action name="build_clean" /> - <Separator/> - <Action name="build_execute" /> - </Menu> - </MenuBar> - <ToolBar noMerge="1" name="buildToolBar" > - <Action group="build_operations" name="build_build" /> - <Action group="build_operations" name="build_buildactivetarget" /> - <Action group="build_operations" name="build_compilefile" /> - <Separator group="build_operations" /> - <Action group="build_operations" name="build_install" /> - <Action group="build_operations" name="build_execute" /> - </ToolBar> - <ActionProperties> - <Action shortcut="F7" name="build_build" /> - <Action shortcut="" name="build_buildactivetarget" /> - <Action shortcut="F8" name="build_execute" /> - </ActionProperties> -</kpartgui> diff --git a/mop/template/.kde/share/apps/kdevdocumentation/search/locations.txt b/mop/template/.kde/share/apps/kdevdocumentation/search/locations.txt deleted file mode 100644 index e69de29..0000000 diff --git a/mop/template/.kde/share/apps/klipper/history2.lst b/mop/template/.kde/share/apps/klipper/history2.lst deleted file mode 100644 index 3e149e4..0000000 Binary files a/mop/template/.kde/share/apps/klipper/history2.lst and /dev/null differ diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/.version b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/.version deleted file mode 100644 index 9cb17c3..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/.version +++ /dev/null @@ -1 +0,0 @@ -Version=3 diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/bookmarks.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/bookmarks.desktop deleted file mode 100644 index 6f13b56..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/bookmarks.desktop +++ /dev/null @@ -1,153 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Link -URL= -Icon=bookmark -Name=Bookmarks -Name[af]=Boekmerke -Name[ar]=علامات مواقع -Name[az]=Nişanlar -Name[be]=Закладкі -Name[bg]=Отметки -Name[bn]=বুকমার্ক -Name[br]=Sinedoù -Name[bs]=ZabiljeÅ¡ke -Name[ca]=Punts -Name[cs]=Záložky -Name[cy]=Nodau Tudalen -Name[da]=Bogmærker -Name[de]=Lesezeichen -Name[el]=Σελιδοδείκτες -Name[eo]=Legosignoj -Name[es]=Marcadores -Name[et]=Järjehoidjad -Name[eu]=Laster-markak -Name[fa]=چوب الفها -Name[fi]=Kirjanmerkit -Name[fr]=Signets -Name[fy]=Blêdwizers -Name[ga]=Leabharmharcanna -Name[gl]=Marcadores -Name[he]=סימניות -Name[hi]= पसंदीदा -Name[hr]=Oznake -Name[hu]=Könyvjelzők -Name[id]=Bookmark -Name[is]=Bókamerki -Name[it]=Segnalibri -Name[ja]=ブックマーク -Name[km]=កន្លែង​ចំណាំ -Name[ko]=책갈피 -Name[lo]=ທີ່ຄັ້ນປື້ມ -Name[lt]=Žymelės -Name[lv]=GrāmatzÄ«mes -Name[mk]=Обележувачи -Name[mn]=Хавчуурга -Name[ms]=Tanda Buku -Name[mt]=Favoriti -Name[nb]=Bokmerker -Name[nds]=Leesteken -Name[nl]=Bladwijzers -Name[nn]=Bokmerke -Name[nso]=Ditshwao tsa Buka -Name[pa]=ਬੁੱਕਮਾਰਕ -Name[pl]=Zakładki -Name[pt]=Favoritos -Name[pt_BR]=Favoritos -Name[ro]=Semne de carte -Name[ru]=Закладки -Name[rw]=Utumenyetso -Name[se]=Girjemearkkat -Name[sk]=Záložky -Name[sl]=Zaznamki -Name[sr]=Маркери -Name[sr@Latn]=Markeri -Name[sv]=Bokmärken -Name[ta]=புத்தகக்குறிகள் -Name[tg]=Гузориш -Name[th]=ที่คั่นหน้า -Name[tr]=Yer imleri -Name[tt]=Bitbilge -Name[uk]=Закладки -Name[uz]=Хатчўплар -Name[ven]=Dzitswayo dza bugu -Name[vi]=Sổ lÆ°u địa chỉ -Name[wa]=RimÃ¥kes -Name[xh]=Amanqaku eencwadi -Name[zh_CN]=书签 -Name[zh_TW]=書籤 -Name[zu]=Omaka bencwadi -Comment=This is the list of your bookmarks, for a faster access -Comment[af]=Hierdie is die lys van jou boekmerke, vir 'n vinniger toegang verkry -Comment[ar]=هذه قائمة بمواقعك المفضلة من أجل وصول أسرع -Comment[az]=Bunlar daha asan yetişmək üçün toplanan nişanlarınızdır -Comment[bg]=Списък на отметки за бърз достъп -Comment[bn]=আপনার বুকমার্কের তালিকা, পছন্দের গন্তব্যে চটপট পৌঁছে যাবার জন্য -Comment[bs]=Ovo je lista vaÅ¡ih zabiljeÅ¡kih, za brži pristup -Comment[ca]=Aquesta és la llista dels vostres punts, per un accés més ràpid -Comment[cs]=Toto je seznam vaÅ¡ich záložek k jejich rychlejšímu nalezení -Comment[cy]=Dyma restr eich nodau tudalen, am gyrchiad cyflymach -Comment[da]=Dette er en liste af dine bogmærker for hurtigere adgang -Comment[de]=Dies ist eine Liste Ihrer Lesezeichen, sie dient dem schnelleren Zugriff -Comment[el]=Αυτή είναι η λίστα των σελιδοδεικτών σας, για γρηγορότερη πρόσβαση -Comment[eo]=Jen la listo de viaj legosignoj por pli rapida aliro -Comment[es]=Esta es la lista de sus marcadores, para un acceso más rápido. -Comment[et]=Sinu järjehoidjate nimekiri -Comment[eu]=Hemen duzu zure laster-marken zerrenda, atzitze bizkorragorako -Comment[fa]=این فهرست چوب الفهای شما، برای دستیابی سریع‌تر است -Comment[fi]=Tämä on lista kirjanmerkeistäsi -Comment[fr]=Voici la liste de vos signets, afin que vous y accédiez plus rapidement -Comment[fy]=Dit is de list mei jo blêdwizers, foar fluggere tagong -Comment[ga]=Seo liosta do chuid leabharmharcanna, le haghaidh rochtain níos tapúla -Comment[gl]=Ésta é a lista dos seus marcadores, para un aceso máis rápido -Comment[he]=זוהי רשימת הסימניות שלך, לגישה מהירה -Comment[hi]=यह आपकी पसंद की सूची है, तेजी से पहुँच के लिए -Comment[hr]=Popis oznaka koje ubrzavaju pristup -Comment[hu]=A könyvjelzők listája (gyors elérhetőség) -Comment[is]=Hér eru bókamerkin þín -Comment[it]=Questa è la lista dei tuoi segnalibri, per un accesso più rapido -Comment[ja]=高速アクセスのためのブックマークのリストです -Comment[km]=នេះ​ជា​បញ្ជី​កន្លែង​ចំណាំ​របស់​អ្នក ដែល​អាច​ចូលដំណើរការ​បាន​លឿន -Comment[ko]=빨리 찾아가도록 도와주는 책갈피 목록입니다. -Comment[lo]=ນີ້ເປັນລາຍການທີ່ຄັ້ນປື້ມຂອງທ່ານ ເພື່ການຮງກໃຊ້ຢ່າງໄວร็ว -Comment[lt]=Å iame aplanke yra visos JÅ«sų žymelės, skirtos greitesniam priėjimui -Comment[lv]=Å is ir jÅ«su grāmatzÄ«mju saraksts ātrākai pieejai -Comment[mk]=Ова е листа на вашите обележувачи што служат за побрз пристап -Comment[mn]=Энэ бол таны хавчуургын жагсаалт ба таньд хурдан хандах боломж олгоно. -Comment[ms]=Ini ialah senarai tanda buku anda, untuk akses terpantas -Comment[mt]=Din hija lista tal-favoriti tiegħek, għal aċċess ta' malajr -Comment[nb]=Dette er en liste over bokmerkene dine, for raskere tilgang -Comment[nds]=Dat is de List vun Dien Leesteken för gauen Togriep -Comment[nl]=Dit is de lijst met uw bladwijzers, voor snellere toegang -Comment[nn]=Dette er ei liste over bokmerka dine, for snøggare tilgang -Comment[nso]=Ye ke palo ya ditshwao tsa gago tsa buka,go tsenelo ya kapela -Comment[pa]=ਤੇਜ਼ ਖੋਲਣ ਲਈ ਇਹ ਤੁਹਾਡੇ ਬੁੱਕਮਾਰਕ ਦੀ ਸੂਚੀ ਹੈ -Comment[pl]=To jest lista zakładek, dla szybszego dostępu -Comment[pt]=Os seus favoritos, para um acesso mais rápido -Comment[pt_BR]=Esta pasta contém a sua lista dos favoritos, para o acesso mais rápido -Comment[ro]=Aceasta este lista semnelor dumneavoastră de carte -Comment[ru]=Список закладок для быстрого доступа -Comment[rw]=Uru ni urutonde rw'utumenyetso twawe, k'ukugera kwihuse -Comment[se]=Dát leat du girjemearkkat, álkibut gávdnat -Comment[sk]=Toto je zoznam vaÅ¡ich záložiek, pre rýchlejší prístup k nim -Comment[sl]=To je seznam vaÅ¡ih zaznamkov, za hitrejÅ¡i dostop. -Comment[sr]=Ово је листа ваших маркера, ради лакшег приступа -Comment[sr@Latn]=Ovo je lista vaÅ¡ih markera, radi lakÅ¡eg pristupa -Comment[sv]=Det här är listan pÃ¥ dina bokmärken, för snabbare Ã¥tkomst -Comment[ta]=இந்த பட்டியல் உங்கள் புத்தக குறியீடுகளை விரைவாற் அணுகுவதற்கு. -Comment[tg]=Рӯйхати гузориш барои дастраси тез -Comment[th]=นี่เป็นรายการที่คั่นหน้าของคุณ เพื่อการเรียกใช้อย่างรวดเร็ว -Comment[tr]=Bu sizin daha hızlı erişiminiz için kısa yollarınızın bir listesidir -Comment[tt]=Tiz ireşü öçen bitbilgelär tezmäse -Comment[uk]=Це - список Ваших закладок для швидкого доступу -Comment[uz]=Хатчўплар рўйхати -Comment[ven]=Hoyu ndi mutevhe wa tswayo dza bugu, uitele u dzhene ngau tavhanya -Comment[vi]=Đây là danh sách tất cả các địa chỉ đã lÆ°u của bạn, giúp cho truy cập nhanh hÆ¡n -Comment[xh]=Olu luluhlu lwamanqaku encwadi yakho, yonikezelo olukhawulezayo -Comment[zh_CN]=这是您的书签列表,以便使得访问更加方便 -Comment[zh_TW]=快速存取網站的書籤列表 -Comment[zu]=Lolu uhlu lomaka bakho bencwadi,ukuze ungene ngokushesha -Open=false -X-KDE-TreeModule=Bookmarks -X-KDE-SearchableTreeModule=true -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/history.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/history.desktop deleted file mode 100644 index cec721c..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/history.desktop +++ /dev/null @@ -1,150 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Link -URL= -Icon=history -Name=History -Name[af]=Geskiedenis -Name[ar]=التاريخ -Name[az]=Keçmiş -Name[be]=Гісторыя -Name[bg]=История -Name[bn]=ইতিহাস -Name[br]=Istor -Name[bs]=Historija -Name[ca]=Historial -Name[cs]=Historie -Name[cy]=Hanes -Name[da]=Historik -Name[de]=Verlaufsspeicher -Name[el]=Ιστορικό -Name[eo]=Historio -Name[es]=Historial -Name[et]=Ajalugu -Name[eu]=Historia -Name[fa]=تاریخچه -Name[fi]=Historia -Name[fr]=Historique -Name[fy]=Histoarje -Name[ga]=Stair -Name[gl]=Historial -Name[he]=היסטוריה -Name[hi]=इतिहास -Name[hr]=Povijest -Name[hu]=Napló -Name[id]=Sejarah -Name[is]=Saga -Name[it]=Cronologia -Name[ja]=履歴 -Name[km]=ប្រវត្តិ -Name[lo]=ປະວັດການໃຊ້ງານ -Name[lt]=Istorija -Name[lv]=Vēsture -Name[mk]=Историја -Name[mn]=Түүх -Name[ms]=Sejarah -Name[mt]=KronoloÄ¡ija -Name[nb]=Historie -Name[nds]=Vörgeschicht -Name[nl]=Geschiedenis -Name[nn]=Historie -Name[nso]=Histori -Name[pa]=ਅਤੀਤ -Name[pl]=Historia -Name[pt]=Histórico -Name[pt_BR]=Histórico -Name[ro]=Istoric -Name[ru]=Журнал -Name[rw]=Amateka -Name[se]=Historihkka -Name[sk]=História -Name[sl]=Zgodovina -Name[sr]=Историјат -Name[sr@Latn]=Istorijat -Name[sv]=Historik -Name[ta]=வரலாறு -Name[tg]=Таърих -Name[th]=ประวัติการใช้ -Name[tr]=Geçmiş -Name[tt]=Taríx -Name[uk]=Історія -Name[uz]=Тарих -Name[ven]=Divhazwakale -Name[vi]=Lịch sá»­ -Name[wa]=Istwere -Name[xh]=Imbali -Name[zh_CN]=历史 -Name[zh_TW]=歷史紀錄 -Name[zu]=Umlando -Comment=This is the history of the URLs you have recently visited. You can sort them in many ways. -Comment[af]=Hierdie is die geskiedenis van die Urls jy het onlangse besoekte. jy kan sorteer hulle in veel maniere. -Comment[ar]=هذه قائمة بالمواقع التي زرتها حديثاً. يمكنك ترتيبها بالعديد من الطرق. -Comment[az]=Bu da əvvəllər ziyarət etdiyiniz URLlərin siyahısıdır. Onları istədiyiniz kimi düzə bilərsiiz. -Comment[bg]=История на скоро посетените адреси -Comment[bn]=আপনি সম্প্রতি কোন কোন ইউ-আর-এল-এ গিয়েছেন তার ইতিহাস। আপনি এই তালিকাটি নানাভাবে সাজাতে পারেন। -Comment[bs]=Ovo je historija URLova koje ste nedavno posjetili. Možete ih složiti na viÅ¡e načina. -Comment[ca]=Aquest és l'historial amb les URL que heu visitat recentment. Podeu ordenar-les de moltes maneres. -Comment[cs]=Toto je historie URL, které jste naposledy navÅ¡tívili. Můžete si je různými způsoby setřídit. -Comment[cy]=Dyma hanes y safleoedd rydych wedi ymweld a nhw. Gallwch eu didoli mewn sawl ffordd. -Comment[da]=Dette er historikken for de URL'er du har besøgt for nyligt. Du kan sortere dem pÃ¥ mange mÃ¥der. -Comment[de]=Dies ist ein Ordner für alle Adressen, die Sie in letzter Zeit besucht haben. Sie können sie auf vielerlei Weise sortieren. -Comment[el]=Αυτό είναι το ιστορικό των URL που επισκεφθήκατε πρόσφατα. Μπορείτε να τα ταξινομήσετε με πολλούς τρόπους. -Comment[eo]=Jen la historio de la vizititaj URLoj. Vi povas ordigi ilin diversmaniere. -Comment[es]=Este es el historial con las URLs que ha visitado recientemente. Puede ordenarlas de diversos modos. -Comment[et]=Sinu viimati külastatud saitide ajalugu. Ajalugu on võimalik mitmel moel sorteerida. -Comment[eu]=Hau bisitatu berri dituzun URLen historia da. Era askotan antola ditzakezu -Comment[fa]=این تاریخچه نشانیهای وبی است که اخیرا بازدیدکرده‌اید. می‌توانید آنها را به روشهای زیادی مرتب کنید. -Comment[fi]=Tämä on historia selatuista verkko-osoitteista. Ne voidaan järjestää monella tavalla. -Comment[fr]=Voici la liste des URL que vous avez récemment visitées. Vous pouvez les trier de multiples façons. -Comment[fy]=Dit is de histoarje fan de URL-adressen wêr jo koartlyn west ha. Jo kinne se op ferskate manieren sortearje. -Comment[gl]=Éste é o historial de URLs que visitou recentemente. Pode ordená-las de vários xeitos. -Comment[he]=זוהי היסטוריית הכתובות בהן ביקרת לאחרונה. באפשרותך לסדר אותה במגוון דרכים. -Comment[hi]=आप जो हालिया भ्रमण किए हैं, उन यूआरएल का यह इतिहास है. आप इन्हें कई तरीकों से क्रमबद्ध कर सकते हैं. -Comment[hr]=Povijest nedavno posjećenih URL adresa koji je moguće preslagivati na različite načine -Comment[hu]=Itt láthatók a legutóbb meglátogatott URL-ek. Többféle szempont szerint is sorba rendezhetők. -Comment[is]=Þetta er saga þeirra heimasíðna sem þú hefur heimsótt. Þú getur raðað þessum lista á ýmsan hátt. -Comment[it]=Questa è la cronologia degli indirizzi URL che hai visitato recentemente. Puoi ordinarli in vari modi. -Comment[ja]=これは最近訪問したURLの履歴です。さまざまな種類のソートができます。 -Comment[km]=នេះ​ជា​ប្រវត្តិ​របស់ URL ដែល​អ្នក​បាន​ទស្សនា​ថ្មីៗ​នេះ ។ អ្នក​អាច​តម្រៀប​ពួក​វា​តាម​វិធី​ជា​ច្រើន ។ -Comment[lo]=ນີ້ເປັນປະວັດເກັບ URL ທີ່ທ່ານເຄີຍມມກ່ອນໂດຍທ່ານສາມາດລງງລຳດັບມັນໄດ້ໃນຫລາຍຮູບແບບ -Comment[lt]=Tai JÅ«sų neseniai aplankytų URL istorija, JÅ«s galite surÅ«Å¡iuoti juos įvairiais bÅ«dais. -Comment[lv]=Å Ä« ir nesen apmeklēto URL vēsture. JÅ«s varat to Å¡Ä·irot daudzos veidos. -Comment[mk]=Ова е историја на URL кои скоро сте ги посетиле. Може да ги подредувате на разни начини. -Comment[mn]= Энэ бол таны хамгийн сүүлд айлчилсан URL хаягуудын түүх юм. Та тэдгээрийг янз бүрээр эрэмбэлж болно. -Comment[ms]=Ini ialah sejarah URL yang baru anda lawati. Anda tidak boleh isihkan ia dalam banyak cara. -Comment[mt]=Din hija kronoloÄ¡ija tal-URLs kollha li żort reċentement. Tista' tissortjahom b'diversi modi. -Comment[nb]=Dette er en liste over de nettadressene du har vært innom nylig. Du kan sortere dem pÃ¥ ulike mÃ¥ter. -Comment[nds]=Dit is de Vörgeschicht vun Sieden, de Du tolest besöcht hest. Du kannst se op mennige Oorden sorteren. -Comment[nl]=Dit is de geschiedenis van de URL-adressen waar u recentelijk bent geweest. U kunt ze op meerdere manieren sorteren. -Comment[nn]=Dette er historia over adressene du nyleg har vitja. Du kan sortera lista pÃ¥ mange mÃ¥tar. -Comment[nso]=Ye ke histori ya di-URL tseo odi etetsego gabjale. Okadi rarolla ka mekgwa ye mentshi. -Comment[pa]=ਇਹ URL ਦੀ ਸੂਚੀ ਹੈ, ਜੋ ਕਿ ਤੁਸੀਂ ਖੋਲੋ ਸਨ, ਤੁਸੀਂ ਇਹਨਾਂ ਨੂੰ ਕਈ ਤਰਾਂ ਕ੍ਰਮਬੱਧ ਕਰ ਸਕਦੇ ਹੋ। -Comment[pl]=Historia ostatnio odwiedzonych adresów URL. Można ją na różne sposoby posortować. -Comment[pt]=O histórico dos URLs visitados recentemente. É possível ordená-los de várias maneiras. -Comment[pt_BR]=Este é o histórico das URLs que você visitou recentemente. Você pode ordenar esta lista de várias maneiras. -Comment[ro]=Acesta este istoricul URL-urilor pe care le-aÅ£i vizitat recent. Le puteÅ£i sorta în diferite moduri. -Comment[ru]=Журнал недавно посещённых адресов (URL). Его можно настраивать по своему усмотрению. -Comment[rw]=Aya ni amateka ya URL wasuye vuba. Ushobora kuzishungura mu buryo bwinshi. -Comment[se]=Dán listtus oainnát čujuhusaid maid áiddo leat guossohan. Don sáhtát erohallat listtu máŋgga láhkai. -Comment[sk]=Toto je história URL, ktoré ste naposledy navÅ¡tívili. Môžete ich utriediÅ¥ rôznymi spôsobmi. -Comment[sl]=To je zgodovina URL-jev, ki ste jih pred kratkim obiskali. Lahko jih uredite na različne načine. -Comment[sr]=Ово је листа URL-ова које сте недавно посетили. Можете је поређати на разне начине. -Comment[sr@Latn]=Ovo je lista URL-ova koje ste nedavno posetili. Možete je poređati na razne načine. -Comment[sv]=Det här är historiken pÃ¥ de webbadresser du nyligen besökt. Du kan sortera dem pÃ¥ mÃ¥nga sätt. -Comment[ta]=நீங்கள் தற்போது பார்த்த வலைப்பின்னல்களின் வரலாறு. அதை பல வழிகளில் வரிசைப்படுத்தலாம். -Comment[tg]=Ин саҳифаҳои аз торихчаи URL-ҳое ки охирон дидаед. Метавонед онҳоро ба ҳар сурати дархост мураттаб кунед. -Comment[th]=นี่เป็นประวัติเก็บ URL ที่คุณเคยไปมาก่อน โดยคุณสามารถเรียงลำดับมันได้ในหลายรูปแบบ -Comment[tr]=Bu sizim yakın geçmişte ziyaret ettiğiniz URL'lerin bir listesidir. Bunları bir çok şekilde sıralayabilirsiniz. -Comment[tt]=Soñğı arada qaralğan bulğan URL tezmäse. Anı törleçä tärtipläp bula. -Comment[uk]=Це - історія URL, які ви недавно відвідали. Ви можете також впорядкувати її будь-яким чином. -Comment[uz]=Яқинда кўрган URL'ларнинг тарихи. Уларни турлича саралашингиз мумкин -Comment[ven]=Heyi ndi divhazwakale ya URL no i dalelaho zwazwino. Ni nga i lugisa nga ndila dzo fhambananho. -Comment[vi]=Đây là danh sách các URL bạn đã xem gần đây. Bạn có thể sắp xếp lại chúng theo vài cách khác nhau. -Comment[xh]=Le yimbali yee URL obusandukuzindwendwela. Ungazibeka ngendlela ezininzi. -Comment[zh_CN]=这是您曾经浏览过的 URL 历史。您可以以多种方式对其排序。 -Comment[zh_TW]=這是您最近訪問的 URL 的歷史紀錄。您可以將它們以多種方式排序。 -Comment[zu]=Lo umlando wama-URL osanda kuwavakashela. Ungawahlela ngezindlela eziningi. -Open=false -X-KDE-TreeModule=History -X-KDE-SearchableTreeModule=true -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/home.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/home.desktop deleted file mode 100644 index 3279142..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/home.desktop +++ /dev/null @@ -1,147 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Link -URL=file:$HOME -Icon=folder_home -Name=Home Folder -Name[af]=Tuis Gids -Name[ar]=مجلدي -Name[az]=Ev Qovluğu -Name[be]=Хатняя тэчка -Name[bg]=Домашна директория -Name[bn]=ব্যক্তিগত ফোল্ডার -Name[br]=Renkell ar gêr -Name[bs]=Home direktorij -Name[ca]=Carpeta inici -Name[cs]=Domovská složka -Name[cy]=Plygell Cartref -Name[da]=Hjemmemappe -Name[de]=Persönlicher Ordner -Name[el]=Προσωπικός φάκελος -Name[eo]=Hejma dosierujo -Name[es]=Carpeta personal -Name[et]=Kodukataloog -Name[eu]=Etxeko karpeta -Name[fa]=پوشه آغازه -Name[fi]=Kotikansio -Name[fr]=Dossier personnel -Name[fy]=Persoanlike map -Name[ga]=Fillteán Baile -Name[gl]=Cartafol Persoal -Name[he]=תיקיית בית -Name[hi]=मुख फ़ोल्डर -Name[hr]=Početna mapa korisnika -Name[hu]=Saját könyvtár -Name[is]=Heimasvæði -Name[it]=Cartella Home -Name[ja]=ホームフォルダ -Name[km]=ថត​ផ្ទះ -Name[lt]=Namų aplankas -Name[lv]=Mājas mape -Name[mk]=Домашна папка -Name[mn]=Хувийн лавлах -Name[ms]=Folder Laman Utama -Name[mt]=Direttorju Personali -Name[nb]=Hjemmemappe -Name[nds]=Tohuus-Orner -Name[nl]=Persoonlijke map -Name[nn]=Heimemappe -Name[pa]=ਘਰ ਫੋਲਡਰ -Name[pl]=Katalog domowy -Name[pt]=Pasta Pessoal -Name[pt_BR]=Pasta do Usuário -Name[ro]=Folder personal -Name[ru]=Домашняя папка -Name[rw]=Ububiko Urugo -Name[se]=Ruoktomáhppa -Name[sk]=Domovský priečinok -Name[sl]=Domača mapa -Name[sr]=Домаћа фасцикла -Name[sr@Latn]=Domaća fascikla -Name[sv]=Hemkatalog -Name[ta]=வீட்டு அடைவு -Name[tg]=Феҳристи хонагӣ -Name[th]=โฟลเดอร์ส่วนตัว -Name[tr]=Başlangıç Dizini -Name[tt]=Ana Törgäk -Name[uk]=Домашня тека -Name[uz]=Уй жилди -Name[vi]=ThÆ° mục Nhà -Name[wa]=Ridant mÃ¥jhon -Name[zh_CN]=主文件夹 -Name[zh_TW]=家目錄 -Comment=This folder contains your personal files -Comment[af]=Hierdie kabinet bevat jou persoonlike lêers -Comment[ar]=هذا الدليل يحتوي على ملفاتك الخاصة -Comment[az]=Bütün şəxsi fayllarınız bu qovluqda yer alır -Comment[be]=Гэтая тэчка зьмяшчае Вашыя пэрсанальныя файлы -Comment[bg]=Тази директория съдържа Вашите лични файлове -Comment[bn]=এই ফোল্ডারে আপনার নিজের জাবতীয় ফাইল থাকে -Comment[bs]=Ovaj direktorij sadrži sve vaÅ¡e osobne datoteke -Comment[ca]=Aquest directori conté els vostres fitxers personals -Comment[cs]=Tento adresář obsahuje vaÅ¡e osobní soubory -Comment[cy]=Mae'r plygell yma'n cadw eich ffeiliau personol -Comment[da]=Denne mappe indeholder dine personlige filer -Comment[de]=Dieser Ordner enthält Ihre persönlichen Dateien. -Comment[el]=Αυτός ο φάκελος περιέχει τα προσωπικά σας αρχεία -Comment[eo]=Tiu ĉi dosierujo enhavas viajn personajn dosierojn -Comment[es]=Esta carpeta contiene sus archivos personales -Comment[et]=See kataloog sisaldab sinu isiklike faile -Comment[eu]=Zeure fitxategiak karpeta honetan daude -Comment[fa]=این پوشه شامل پرونده‌های شخصی شماست -Comment[fi]=Tämä kansio sisältää henkilökohtaiset tiedostot -Comment[fr]=Ce dossier contient tous vos fichiers personnels -Comment[fy]=Dizze map befettet al jo persoanlike triemmen -Comment[ga]=Tá do chomhaid phearsanta san fhillteán seo -Comment[gl]=Este cartafol contén os seus arquivos persoais -Comment[he]=תיקייה זו מכילה את הקבצים האישיים שלך -Comment[hi]=यह फ़ोल्डर आपकी निजी फ़ाइलें रखता है -Comment[hr]=Ova mapa sadrži vaÅ¡e osobne datoteke -Comment[hu]=Ez a mappa tartalmazza az Ön személyes fájljait -Comment[is]=Þessi mappa inniheldur skjölin þín -Comment[it]=Questa cartella contiene i tuoi file personali -Comment[ja]=このフォルダはあなたのすべての個人的なファイルを含みます -Comment[km]=ថត​នេះ​មាន​ឯកសារ​ផ្ទាល់​ខ្លួន​របស់​អ្នក -Comment[ko]=혼자만 쓰는 파일을 담고 있는 폴더 -Comment[lo]=ໂຟເດີນີ້ບັນຈຸແຟ້ມຕ່າງຯທີ່ເປັນສ່ວນຕົວຂອງທ່ານ -Comment[lt]=Å iame aplanke yra JÅ«sų asmeninės bylos -Comment[lv]=Å Ä« mape satur jÅ«su personālos failus -Comment[mk]=Оваа папка ги содржи вашите лични датотеки -Comment[mn]=Энэ лавлах таны хувийн файлуудыг агуулна. -Comment[ms]=Folder ini mengandungi fail peribadi anda -Comment[mt]=Dan id-direttorju iżomm il-fajls personali kollha tiegħek. -Comment[nb]=Denne mappa inneholder dine personlige filer -Comment[nds]=In dissen Orner sünd dien egen Dateien -Comment[nl]=Deze map bevat al uw persoonlijke bestanden -Comment[nn]=Denne mappa inneheld dine personlege filer. -Comment[nso]=Sephuthi se sena le difaele tsa gago tsa botho -Comment[pa]=ਇਹ ਫੋਲਡਰ ਤੁਹਾਡੀਆਂ ਨਿੱਜੀ ਫਾਇਲਾਂ ਰੱਖਦਾ ਹੈ -Comment[pl]=Ten katalog zawiera wszystkie twoje osobiste pliki. -Comment[pt]=Esta pasta contém os seus ficheiros pessoais -Comment[pt_BR]=Esta pasta contém os seus arquivos pessoais -Comment[ro]=Acest director conÅ£ine fişierele dumneavoastră personale -Comment[ru]=Папка ваших личных файлов -Comment[rw]=Ubu bubiko bufite amadosiye yihariye yawe -Comment[se]=Dán máhpas du iežat fiillat leat -Comment[sk]=Tento priečinok obsahuje vaÅ¡e osobné súbory -Comment[sl]=Ta mapa vsebuje vaÅ¡e osebne datoteke. -Comment[sr]=Ова фасцикла садржи ваше личне фајлове -Comment[sr@Latn]=Ova fascikla sadrži vaÅ¡e lične fajlove -Comment[sv]=Den här katalogen innehÃ¥ller dina personliga filer -Comment[ta]=இந்த அடைவில் உங்கள் அந்தரங்க கோப்புகள் உள்ளன -Comment[tg]=Ин феҳрист шомили файлҳои шахсии шумост -Comment[th]=โฟลเดอร์นี้บรรจุแฟ้มต่าง ๆ ที่เป็นส่วนตัวของคุณ -Comment[tr]=Bu dizin kişisel dosyalarınızı içerir -Comment[tt]=Bu törgäktä şäxsi biremnäreñ yata -Comment[uk]=Цей каталог містить Ваші персональні файли -Comment[uz]=Бу жилд сизнинг шахсий файлларингиздан иборат -Comment[ven]=Foludara ino ina dzifaela dzanu -Comment[vi]=ThÆ° mục này chứa các tập tin của riêng bạn -Comment[wa]=Ci ridant chal a les fitchîs et dnêyes da vosse -Comment[xh]=Le ncwadi eneenkcukacha iqulathe iifayile zobuntu bakho -Comment[zh_CN]=此文件夹包含了您的个人文件 -Comment[zh_TW]=這個資料夾包含有您的個人文件 -Comment[zu]=Lesi sigcini samafayela siqukethe amafayela akho siqu -Open=false -X-KDE-TreeModule=Directory -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/metabar.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/metabar.desktop deleted file mode 100644 index 9e6162f..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/metabar.desktop +++ /dev/null @@ -1,70 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Link -URL= -Icon=metabar -Comment=A konqueror navigation panel plugin called Metabar -Comment[bg]=Приставка за навигация в браузъра Konqueror -Comment[ca]=Un connector del plafó de navegació del konqueror anomenat Metabar -Comment[cs]=Navigační panel pro Konqueror - Metabar -Comment[da]=Et navigationspanel-plugin for konqueror der hedder Metabar -Comment[de]=Metabar - Ein Modul für den Navigationsbereich von Konqueror -Comment[el]=Ένα πρόσθετο πίνακα πλοήγησης του konqueror που ονομάζεται γραμμή μεταδεδομένων -Comment[en_GB]=A Konqueror navigation panel plugin called Metabar -Comment[es]=Una extensión del panel de navegación de konqueror llamada metabarraComment=Una extensión del panel de navegación de konqueror llamada metabarraComment=Una extensión del panel de navegación de konqueror llamada metabarra -Comment[et]=Konquerori navigeerimispaneeli plugin Metabar -Comment[eu]=Metabar izeneko Konqueror-en arakatze-panelaren plugina -Comment[fa]=یک وصله تابلوی ناوش konqueror که فرا میله نام دارد -Comment[fi]=Konquerorin Metabar-niminen selauspaneelin liitännäinen -Comment[fr]=Un module pour le panneau de navigation de Konqueror appelé Metabar -Comment[hu]=Metabar, egy navigációs bővítőmodul a Konqueror böngészőhöz -Comment[is]=Konqueror leiðarstýrispjald íforrit sem kallast Metabar -Comment[it]=Plugin di navigazione di konqueror chiamato Metabar -Comment[ja]=Konqueror メタバー ナビゲーションパネルプラグイン -Comment[km]=កម្មវិធី​ជំនួយ​បន្ទះ​​រុករក​​របស់ konqueror ​បាន​ហៅ​​របារ​មេតា -Comment[lt]=Konqueror navigavimo pulto priedas vadinamas Meta juosta -Comment[mk]=Приклучок за панел за навигација во konqueror наречен Metabar -Comment[nb]=Et Konqueror programtillegg for navigasjonspanel, kalt Metabar -Comment[nds]=En Sietpaneelmoduul för Konqueror, nöömt "Metabar" -Comment[nl]=Een plugin voor Konqueror's navigatiebalk, genaamd Metabalk -Comment[nn]=Eit programtillegg som gir Konqueror eit navigasjonpanel -Comment[pl]=Panel nawigacyjny Metabar dla Konquerora -Comment[pt]=Um 'plugin' de navegação do konqueror chamado Metabar -Comment[pt_BR]=Um plugin de navegação para o Konqueror chamado de Metabar -Comment[ru]=Панель сведений Konqueror -Comment[sk]=Modul navigačného panelu pre Konqueror nazývaný Metabar -Comment[sl]=Vstavek za Konqueror z navigacijskim pasom Metabar -Comment[sr]=Прикључак за навигациону таблу konqueror-а назван Метапалета -Comment[sr@Latn]=Priključak za navigacionu tablu konqueror-a nazvan Metapaleta -Comment[sv]=Ett sidopanelinsticksprogram för Konqueror kallad Metarad -Comment[uk]=Втулок навігаційної панелі для konqueror - Metabar -Comment[zh_CN]=称为 Metabar 的 Konqueror 导航面板插件 -Comment[zh_TW]=叫做 Metabar 的 Konqueror 導覽面板外掛程式 -Name=metabar -Name[de]=Metabar -Name[el]=Γραμμή μεταδεδομένων -Name[es]=metabarra -Name[et]=Metabar -Name[fa]=فرا میله -Name[fi]=metapalkki -Name[fr]=Metabar -Name[ga]=meiteabharra -Name[hu]=Metabar -Name[ja]=メタバー -Name[km]=របារ​មេតា -Name[lt]=Meta juosta -Name[nl]=metabalk -Name[pa]=ਮੈਟਾ-ਪੱਟੀ -Name[pl]=Metabar -Name[pt_BR]=MetaBar -Name[ru]=Сведения -Name[sk]=Metabar -Name[sl]=Metabar -Name[sr]=метапалета -Name[sr@Latn]=metapaleta -Name[sv]=Metarad -Name[zh_CN]=Metabar - -Open=false -X-KDE-KonqSidebarModule=konqsidebar_metabar - diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/remote.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/remote.desktop deleted file mode 100644 index f0cc998..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/remote.desktop +++ /dev/null @@ -1,82 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Network -Name[af]=Netwerk -Name[ar]=الشبكة -Name[az]=Şəbəkə -Name[be]=Сетка -Name[bg]=Мрежа -Name[bn]=নেটওয়ার্ক -Name[br]=Rouedad -Name[bs]=Mreža -Name[ca]=Xarxa -Name[cs]=Síť -Name[cy]=Rhwydwaith -Name[da]=Netværk -Name[de]=Netzwerk -Name[el]=Δίκτυο -Name[eo]=Reto -Name[es]=Red -Name[et]=Võrk -Name[eu]=Sarea -Name[fa]=شبکه -Name[fi]=Verkko -Name[fo]=Net -Name[fr]=Réseau -Name[fy]=Netwurk -Name[ga]=Líonra -Name[gl]=Rede -Name[he]=רשת -Name[hi]=नेटवर्क -Name[hr]=Mreža -Name[hu]=Hálózat -Name[id]=Jaringan -Name[is]=Net -Name[it]=Rete -Name[ja]=ネットワーク -Name[km]=បណ្ដាញ -Name[ko]=네트워크 -Name[lo]=ລະບົບເຄື່ອຄາຍ -Name[lt]=Tinklas -Name[lv]=TÄ«kls -Name[mk]=Мрежа -Name[mn]=Сүлжээ -Name[ms]=Rangkaian -Name[nb]=Nettverk -Name[nds]=Nettwark -Name[nl]=Netwerk -Name[nn]=Nettverk -Name[nso]=Kgokagano -Name[oc]=Resèu -Name[pa]=ਨੈੱਟਵਰਕ -Name[pl]=Sieć -Name[pt]=Rede -Name[pt_BR]=Rede -Name[ro]=ReÅ£ea -Name[ru]=Сеть -Name[rw]=Urusobe -Name[se]=Fierbmi -Name[sk]=SieÅ¥ -Name[sl]=Omrežje -Name[sr]=Мрежа -Name[sr@Latn]=Mreža -Name[sv]=Nätverk -Name[ta]=வலைதளம் -Name[tg]=Шабака -Name[th]=ระบบเครือข่าย -Name[tr]=Ağ -Name[tt]=Çeltär -Name[uk]=Мережа -Name[uz]=Тармоқ -Name[ven]=Vhukwamani -Name[vi]=Mạng -Name[wa]=Rantoele -Name[xh]=Umsebenzi womnatha -Name[zh_CN]=网络 -Name[zh_TW]=網路 -Name[zu]=Uxhumano olusakazekile -Icon=network -Open=false -X-KDE-TreeModule=Virtual -X-KDE-RelURL=remote -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/root.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/root.desktop deleted file mode 100644 index 8eac1c4..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/root.desktop +++ /dev/null @@ -1,147 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Link -URL=file:/ -Icon=folder_red -Name=Root Folder -Name[af]=Basis Gids -Name[ar]=مجلد الجذر -Name[az]=Ali Ä°stifadəçi Qovluğu -Name[be]=Карэнная тэчка -Name[bg]=Главна директория -Name[bn]=রুট ফোল্ডার -Name[br]=Renkell gwrizienn -Name[bs]=Root direktorij -Name[ca]=Carpeta arrel -Name[cs]=Kořenová složka -Name[cy]=Plygell Gwraidd -Name[da]=Rodmappe -Name[de]=Basisordner -Name[el]=Ριζικός φάκελος -Name[eo]=Baza dosierujo -Name[es]=Directorio raiz -Name[et]=Juurkataloog -Name[eu]=Erro karpeta -Name[fa]=پوشه ریشه -Name[fi]=Juurikansio -Name[fr]=Dossier racine -Name[fy]=Haadmap -Name[ga]=Fréamhfhillteán -Name[gl]=Cartafol Raíz -Name[he]=תיקיית שורש -Name[hi]=रूट फ़ोल्डर -Name[hr]=Korijenska mapa -Name[hu]=Gyökérkönyvtár -Name[is]=Rótarmappa -Name[it]=Cartella radice -Name[ja]=ルートフォルダ -Name[km]=ថត Root -Name[lt]=Root aplankas -Name[lv]=Saknes katalogs -Name[mk]=Коренова папка -Name[mn]=Язгуур лавлах -Name[ms]=Folder Root -Name[mt]=Direttorju root -Name[nb]=Rotkatalog -Name[nds]=Wörtelorner -Name[nl]=Hoofdmap -Name[nn]=Rotmappe -Name[pa]=ਰੂਟ(root) ਫੋਲਡਰ -Name[pl]=Katalog główny -Name[pt]=Pasta Raiz -Name[pt_BR]=Pasta Raiz -Name[ro]=Folder rădăcină -Name[ru]=Корневая папка -Name[rw]=Ububiko Umuzi -Name[se]=Ruohtasmáhppa -Name[sk]=Koreňový priečinok -Name[sl]=Korenska mapa -Name[sr]=Корена фасцикла -Name[sr@Latn]=Korena fascikla -Name[sv]=Rotkatalog -Name[ta]=ஆரம்ப அடைவு -Name[tg]=Феҳристи реша -Name[th]=โฟลเดอร์ราก -Name[tr]=Kök Dizini -Name[tt]=Töp Törgäk -Name[uk]=Коренева тека -Name[uz]=Туб жилди -Name[vi]=ThÆ° mục Gốc -Name[wa]=Ridant raecene -Name[zh_CN]=根文件夹 -Name[zh_TW]=Root 資料夾 -Comment=This is the root of the filesystem -Comment[af]=Hierdie is die basis van die lêer stelsel -Comment[ar]=هذا الدليل هو دليل النظام الأساسي -Comment[az]=Bu, fayl sisteminizin köküdür -Comment[be]=Гэта корань файлавай сыстэмы -Comment[bg]=Тази директория е главната директория на системата -Comment[bn]=এটি ফাইলসিস্টেমের মূল (root) -Comment[bs]=Ovo je korijen datotečnog sistema -Comment[ca]=Aquest és l'arrel del sistema de fitxers -Comment[cs]=Toto je kořenový adresář souborového systému -Comment[cy]=Dyma wraidd y cysawd ffeiliau -Comment[da]=Dette er roden af filsystemet -Comment[de]=Dies ist der Basisordner Ihres Dateisystems -Comment[el]=Αυτή είναι η ρίζα του συστήματος αρχείων -Comment[eo]=Jen la radiko de la dosieraro -Comment[es]=Esta es la raíz del sistema de archivos -Comment[et]=See on failisüsteemi ülemkataloog -Comment[eu]=Hau fitxategi sistemaren erroa da -Comment[fa]=این ریشه سیستم پرونده است -Comment[fi]=Tämä on tiedostojärjestelmän juuri -Comment[fr]=Ce dossier est à la racine de votre arborescence -Comment[fy]=Dit is de haad fan it triemsysteem -Comment[ga]=Seo fréamh an comhadchórais -Comment[gl]=Ésta é a raiz do sistema de arquivos -Comment[he]=זהו השורש של מערכת הקבצים שלך -Comment[hi]=यह फ़ाइल सिस्टम का रूट है -Comment[hr]=Korijenska mapa datotečnog sustava -Comment[hu]=Ez a fájlrendszer gyökere -Comment[is]=Þetta er rót skráarkerfisins -Comment[it]=Questa è la radice del filesystem -Comment[ja]=ファイルシステムのルートです -Comment[km]=នេះ​ជា​ឫស​របស់​ប្រព័ន្ធ​ឯកសារ -Comment[ko]=파일 시스템 뿌리입니다. -Comment[lo]=ນີ້ເປັນຮາກຂອງລະບົບແຟ້ມ -Comment[lt]=Tai yra bylų sistemos pradžia -Comment[lv]=Å Ä« ir failusistēmas sakne -Comment[mk]=Ова е коренот на датотечниот системот -Comment[mn]=Энэ бол таны файлын системийн язгуур -Comment[ms]=Ini ialah root bagi sistem fail -Comment[mt]=Dan huwa d-direttorju ewlieni tas-sistema -Comment[nb]=Dette er rota til filsystemet -Comment[nds]=Dit is dat Dateisysteem sien Wörtel -Comment[nl]=Dit is de root van het bestandssysteem -Comment[nn]=Dette er rota i filsystemet. -Comment[nso]=Se ke modu wa system ya faele -Comment[pa]=ਇਹ ਫਾਇਲ ਸਿਸਟਮ ਦਾ ਰੂਟ (root) ਹੈ -Comment[pl]=To jest korzeń systemu plików (czyli katalog główny) -Comment[pt]=Este é o topo do sistema de ficheiros -Comment[pt_BR]=Esta é a raiz do seu sistema de arquivos -Comment[ro]=Aceasta este rădăcina sistemului de fişiere -Comment[ru]=Корневая папка файловой системы -Comment[rw]=Uyu ni umuzi w'idosiyesisitemu -Comment[se]=Dát lea du fiilavuogádaga ruohtas -Comment[sk]=Toto je koreňový priečinok systému súborov -Comment[sl]=To je koren datotečnega sistema. -Comment[sr]=Ово је корен система фајлова -Comment[sr@Latn]=Ovo je koren sistema fajlova -Comment[sv]=Det här är roten pÃ¥ filsystemet -Comment[ta]=இதுவே கோப்பு அமைப்பின் வேராகும் -Comment[tg]=Инҷо решаи системаи файл аст -Comment[th]=นี่เป็นรากของระบบแฟ้ม -Comment[tr]=Bu dosya sisteminizi kök dizinidir -Comment[tt]=Birem sistemeneñ töp törgäge bu -Comment[uk]=Це - корінь файлової системи -Comment[uz]=Файл тизимининг туби -Comment[ven]=Hoyu ndi mudzi wa maitele a faela -Comment[vi]=Đây là gốc của hệ thống tập tin -Comment[wa]=Cichal est li ridant raecene do sistinme di fitchîs -Comment[xh]=Le yingcambu yendlela yefayile -Comment[zh_CN]=这是文件系统的根 -Comment[zh_TW]=這是檔案系統的根目錄 -Comment[zu]=Le yimpande yesistimu yamafayela -Open=false -X-KDE-TreeModule=Directory -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/services.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/services.desktop deleted file mode 100644 index 46b32ec..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/services.desktop +++ /dev/null @@ -1,80 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -URL= -Icon=services -Name=Services -Name[af]=Dienste -Name[ar]=الخدمات -Name[az]=Xidmətlər -Name[be]=Сэрвісы -Name[bg]=Услуги -Name[bn]=সার্ভিসসমূহ -Name[br]=Servijoù -Name[bs]=Servisi -Name[ca]=Serveis -Name[cs]=Služby -Name[cy]=Gwasanaethau -Name[da]=Tjenester -Name[de]=KDE-Dienste -Name[el]=Υπηρεσίες -Name[eo]=Servoj -Name[es]=Servicios -Name[et]=Teenused -Name[eu]=Zerbitzuak -Name[fa]=خدمات -Name[fi]=Palvelut -Name[fo]=Tænastur -Name[fy]=Tsjinsten -Name[ga]=Seirbhísí -Name[gl]=Servizos -Name[he]=שירותים -Name[hi]=सेवाएं -Name[hr]=Usluge -Name[hu]=Szolgáltatások -Name[is]=Þjónustur -Name[it]=Servizi -Name[ja]=サービス -Name[km]=សេវា -Name[ko]=서비스 -Name[lo]=ບໍລິການ -Name[lt]=Tarnybos -Name[lv]=Servisi -Name[mk]=Сервиси -Name[mn]=КДЭ-Үйлчилгээ -Name[ms]=Servis -Name[mt]=Servizzi -Name[nb]=Tjenester -Name[nds]=KDE-Deensten -Name[nn]=Tenester -Name[nso]=Ditirelo -Name[pa]=ਸੇਵਾਵਾਂ -Name[pl]=Usługi -Name[pt]=Serviços -Name[pt_BR]=Serviços -Name[ro]=Servicii -Name[ru]=Сервисы -Name[rw]=Serivise -Name[se]=Bálvalusat -Name[sk]=Služby -Name[sl]=Storitve -Name[sr]=Сервиси -Name[sr@Latn]=Servisi -Name[sv]=Tjänster -Name[ta]=சேவைகள் -Name[tg]=Хидматҳо -Name[th]=บริการ -Name[tr]=Servisler -Name[tt]=Xezmätlär -Name[uk]=Служби -Name[uz]=Хизматлар -Name[ven]=Dzitshumelo -Name[vi]=Các dịch vụ -Name[wa]=Siervices -Name[xh]=Iinkonzo -Name[zh_CN]=服务 -Name[zh_TW]=服務 -Name[zu]=Imisebenzi -Open=false -X-KDE-TreeModule=Virtual -X-KDE-RelURL=services -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/system.desktop b/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/system.desktop deleted file mode 100644 index 4e40d21..0000000 --- a/mop/template/.kde/share/apps/konqsidebartng/filemanagement/entries/system.desktop +++ /dev/null @@ -1,120 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Link -URL=system:/ -Icon=system -Name=System -Name[af]=Stelsel -Name[ar]=النظام -Name[az]=Sistem -Name[be]=Сыстэма -Name[bg]=Система -Name[bn]=সিস্টেম -Name[br]=Reizhiad -Name[bs]=Sistem -Name[ca]=Sistema -Name[cs]=Systém -Name[cy]=Cysawd -Name[el]=Σύστημα -Name[eo]=Sistemo -Name[es]=Sistema -Name[et]=Süsteem -Name[eu]=Sistema -Name[fa]=سیستم -Name[fi]=Järjestelmä -Name[fo]=Kervi -Name[fr]=Système -Name[fy]=Systeem -Name[ga]=Córas -Name[gl]=Sistema -Name[he]=מערכת -Name[hi]=तंत्र -Name[hr]=Sustav -Name[hu]=Rendszer -Name[id]=Sistem -Name[is]=Kerfi -Name[it]=Sistema -Name[ja]=システム -Name[km]=ប្រព័ន្ធ -Name[ko]=시스템 -Name[lo]=ຈັດການລະບົບ -Name[lt]=Sistema -Name[lv]=Sistēma -Name[mk]=Систем -Name[mn]=Систем -Name[ms]=Sistem -Name[mt]=Sistema -Name[nds]=Systeem -Name[nl]=Systeem -Name[oc]=Sistemo -Name[pa]=ਸਿਸਟਮ -Name[pt]=Sistema -Name[pt_BR]=Sistema -Name[ro]=Sistem -Name[ru]=Система -Name[rw]=Sisitemu -Name[se]=Vuogádat -Name[sk]=Systém -Name[sl]=Sistem -Name[sr]=Систем -Name[sr@Latn]=Sistem -Name[ss]=Umshini -Name[ta]=அமைப்பு -Name[tg]=Система -Name[th]=ระบบ -Name[tr]=Sistem -Name[tt]=Sistem -Name[uk]=Система -Name[uz]=Тизим -Name[ven]=Maitele -Name[vi]=Hệ thống -Name[wa]=Sistinme -Name[xh]=Indlela esestyenziswayo -Name[zh_CN]=系统 -Name[zh_TW]=系統 -Name[zu]=Isistimu -Comment=This folder allows you to access common places on your computer -Comment[af]=Hierdie gids laat jou toe om algemene plekke op jou rekenaar te besoek -Comment[bs]=Ovaj direktorij vam omogućuje pristup uobičajenim mjestima na vaÅ¡em računaru -Comment[ca]=Aquesta carpeta us permet accedir a llocs usuals de l'ordinador -Comment[cs]=Tato složka zpřístupňuje často používaná umístění na vaÅ¡em počítači -Comment[da]=Denne mappe giver adgang til almindelige steder pÃ¥ din computer -Comment[de]=Dieser Ordner ermöglicht den Zugriff auf gebräuchliche Systembereiche des Computers -Comment[el]=Αυτός ο φάκελος σας επιτρέπει την πρόσβαση σε τυπικές τοποθεσίες του συστήματός σας -Comment[es]=Esta carpeta permite acceder a lugares usuales en su ordenador -Comment[et]=See kataloog võimaldab juurdepääsu tavalistele kohtadele su arvutis -Comment[eu]=Karpeta honek zure ordenagailuaren leku arruntetarako sarbidea ematen dizu -Comment[fa]=این پوشه اجازه دستیابی جاهای مشترک در رایانه شما را می‌دهد -Comment[fi]=Tämä kansio sallii pääsyn tietokoneesi yleisiin kohteisiin -Comment[fr]=Ce dossier vous permet d'accéder aux endroits de votre ordinateur régulièrement utilisés -Comment[fy]=Dizze map jout tagong ta algemiene plakken yn jo kompjûter -Comment[ga]=Ceadaíonn an fillteán seo duit áiteanna coitianta a rochtain ar do ríomhaire -Comment[gl]=Este cartafol permítelle aceder aos lugares máis comúns do seu ordenador -Comment[hr]=Ova mapa omogućuje pristup uobičajenim lokacijama na računalu -Comment[hu]=Néhány fontosabb rendszerkönyvtár elérését teszi lehetővé -Comment[is]=Þessi mappa veitir aðgang að almennum stöðum á tölvunni þinni -Comment[it]=Questa cartella permette di accedere agli oggetti comuni del tuo computer -Comment[ja]=このフォルダにより、コンピュータの共通の場所にアクセスできるようになります。 -Comment[km]=ថត​នេះ​អនុញ្ញាត​ឲ្យអ្នក​ចូលដំណើរការ​កន្លែង​ទូទៅ​លើកុំព្យូទ័រ​របស់​អ្នក -Comment[lt]=Å io aplanko padedami pasieksite dažniausiai lankomas kompiuterio vietas -Comment[mk]=Оваа папка ви овозможува пристап до вообичаените места на вашиот компјутер -Comment[nb]=Denne mappa gir deg tilgang til vanlige steder pÃ¥ din datamaskin -Comment[nds]=Mit dissen Orner kannst Du op en Reeg faken bruukte Öörd togriepen -Comment[nl]=Deze map geeft toegang tot algemene plekken van uw desktop -Comment[nn]=Denne mappa gir deg tilgang til nokre vanlege stader pÃ¥ datamaskina -Comment[pl]=Ten folder umożliwia dostęp do najczęściej używanych miejsc w Twoim komputerze -Comment[pt]=Esta pasta permite aceder a alguns locais comuns no seu computador -Comment[pt_BR]=Esta pasta permite aceder a alguns locais comuns no seu computador -Comment[ru]=Часто используемые папки -Comment[sk]=Tento priečinok umožňuje pristupovaÅ¥ na spoločné miesta na tomto počítači -Comment[sl]=Ta mapa omogoča dostop do pomembnih lokacij na vaÅ¡em računalniku -Comment[sr]=Ова фасцикла омогућава приступ уобичајеним местима на вашем рачунару -Comment[sr@Latn]=Ova fascikla omogućava pristup uobičajenim mestima na vaÅ¡em računaru -Comment[sv]=Den här katalogen gör det möjligt att komma Ã¥t vanliga platser pÃ¥ din dator -Comment[uk]=Ця тека надає доступ до спільних місць у вашому комп'ютері -Comment[vi]=ThÆ° mục này cho phép bạn truy cập vào các nÆ¡i thông dụng của máy tính -Comment[zh_CN]=此文件夹允许您访问计算机中的公共位置 -Comment[zh_TW]=這個資料夾允許存取您電腦上的共同空間 -Open=true -X-KDE-TreeModule=Directory -X-KDE-KonqSidebarModule=konqsidebar_tree diff --git a/mop/template/.kde/share/apps/konqueror/bookmarks.xml b/mop/template/.kde/share/apps/konqueror/bookmarks.xml deleted file mode 100644 index 280c1de..0000000 --- a/mop/template/.kde/share/apps/konqueror/bookmarks.xml +++ /dev/null @@ -1,3 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE xbel> -<xbel/> diff --git a/mop/template/.kde/share/apps/konqueror/bookmarks.xml.tbcache b/mop/template/.kde/share/apps/konqueror/bookmarks.xml.tbcache deleted file mode 100644 index e69de29..0000000 diff --git a/mop/template/.kde/share/apps/konqueror/konq_history b/mop/template/.kde/share/apps/konqueror/konq_history deleted file mode 100644 index 8b693b7..0000000 Binary files a/mop/template/.kde/share/apps/konqueror/konq_history and /dev/null differ diff --git a/mop/template/.kde/share/apps/konqueror/profiles/filemanagement b/mop/template/.kde/share/apps/konqueror/profiles/filemanagement deleted file mode 100644 index 2595945..0000000 --- a/mop/template/.kde/share/apps/konqueror/profiles/filemanagement +++ /dev/null @@ -1,54 +0,0 @@ -[Main Window Settings Toolbar bookmarkToolBar] -Hidden=true -IconText=IconTextRight -Index=3 - -[Main Window Settings Toolbar extraToolBar] -IconText=IconOnly -Index=0 - -[Main Window Settings Toolbar locationToolBar] -IconText=IconOnly -Index=2 - -[Main Window Settings Toolbar mainToolBar] -Index=1 - -[Profile] -Container0_Children=Tabs1,View2 -Container0_Orientation=Vertical -Container0_SplitterSizes=731,118 -Container0_activeChildIndex=0 -ContainerT0_Children=View3,View4 -ContainerT0_Orientation=Horizontal -ContainerT0_SplitterSizes=631,631 -ContainerT0_activeChildIndex=0 -FullScreen=false -Height=948 -Name=File Management -RootItem=Container0 -Tabs1_Children=ContainerT0 -Tabs1_activeChildIndex=0 -View2_LinkedView=false -View2_LockedLocation=false -View2_PassiveMode=true -View2_ServiceName=konsolepart -View2_ServiceType=Browser/View -View2_ToggleView=true -View2_URL=file://$HOME -View3_LinkedView=false -View3_LockedLocation=false -View3_PassiveMode=false -View3_ServiceName=konq_iconview -View3_ServiceType=inode/directory -View3_ToggleView=false -View3_URL=file://$HOME -View4_LinkedView=false -View4_LockedLocation=false -View4_PassiveMode=false -View4_ServiceName=konq_iconview -View4_ServiceType=inode/directory -View4_ToggleView=false -View4_URL=file://$HOME/Desktop -Width=1272 -XMLUIFile=konqueror.rc diff --git a/mop/template/.kde/share/apps/kopete/contactlist.xml b/mop/template/.kde/share/apps/kopete/contactlist.xml deleted file mode 100644 index e69de29..0000000 diff --git a/mop/template/.kde/share/apps/kstyle/themes/original/original.xml b/mop/template/.kde/share/apps/kstyle/themes/original/original.xml deleted file mode 100644 index 194904d..0000000 --- a/mop/template/.kde/share/apps/kstyle/themes/original/original.xml +++ /dev/null @@ -1,144 +0,0 @@ -<!DOCTYPE ktheme> -<ktheme version="1" > - <general/> - <desktop number="0" common="1" > - <mode id="Flat" /> - <color1 rgb="#003082" /> - <color2 rgb="#6c8bb9" /> - <blending mode="NoBlending" balance="100" reverse="0" /> - <pattern name="" /> - <wallpaper mode="Scaled" url="theme:/wallpapers/desktop/KDE34.png" /> - </desktop> - <screensaver name="KRandom.desktop" /> - <icons name="crystalsvg" > - <Animated value="1" object="desktop" /> - <DoublePixels value="0" object="desktop" /> - <Size value="48" object="desktop" /> - <ActiveEffect name="togamma" object="desktop" /> - <ActiveSemiTransparent value="0" object="desktop" /> - <ActiveValue value="1" object="desktop" /> - <DefaultColor rgb="#9080f8" object="desktop" /> - <DefaultColor2 rgb="#000000" object="desktop" /> - <DefaultEffect name="none" object="desktop" /> - <DefaultSemiTransparent value="0" object="desktop" /> - <DefaultValue value="1" object="desktop" /> - <DisabledColor rgb="#22ca00" object="desktop" /> - <DisabledColor2 rgb="#000000" object="desktop" /> - <DisabledEffect name="togray" object="desktop" /> - <DisabledSemiTransparent value="1" object="desktop" /> - <DisabledValue value="1" object="desktop" /> - <Animated value="0" object="mainToolbar" /> - <DoublePixels value="0" object="mainToolbar" /> - <Size value="22" object="mainToolbar" /> - <ActiveColor rgb="#a99cff" object="mainToolbar" /> - <ActiveColor2 rgb="#000000" object="mainToolbar" /> - <ActiveEffect name="none" object="mainToolbar" /> - <ActiveSemiTransparent value="0" object="mainToolbar" /> - <ActiveValue value="1" object="mainToolbar" /> - <DefaultColor rgb="#9080f8" object="mainToolbar" /> - <DefaultColor2 rgb="#000000" object="mainToolbar" /> - <DefaultEffect name="none" object="mainToolbar" /> - <DefaultSemiTransparent value="0" object="mainToolbar" /> - <DefaultValue value="1" object="mainToolbar" /> - <DisabledColor rgb="#22ca00" object="mainToolbar" /> - <DisabledColor2 rgb="#000000" object="mainToolbar" /> - <DisabledEffect name="togray" object="mainToolbar" /> - <DisabledSemiTransparent value="1" object="mainToolbar" /> - <DisabledValue value="1" object="mainToolbar" /> - <Animated value="0" object="panel" /> - <DoublePixels value="0" object="panel" /> - <Size value="32" object="panel" /> - <ActiveEffect name="togamma" object="panel" /> - <ActiveSemiTransparent value="0" object="panel" /> - <ActiveValue value="1" object="panel" /> - <DefaultColor rgb="#9080f8" object="panel" /> - <DefaultColor2 rgb="#000000" object="panel" /> - <DefaultEffect name="none" object="panel" /> - <DefaultSemiTransparent value="0" object="panel" /> - <DefaultValue value="1" object="panel" /> - <DisabledColor rgb="#22ca00" object="panel" /> - <DisabledColor2 rgb="#000000" object="panel" /> - <DisabledEffect name="togray" object="panel" /> - <DisabledSemiTransparent value="1" object="panel" /> - <DisabledValue value="1" object="panel" /> - <Animated value="0" object="small" /> - <DoublePixels value="0" object="small" /> - <Size value="16" object="small" /> - <ActiveColor rgb="#a99cff" object="small" /> - <ActiveColor2 rgb="#000000" object="small" /> - <ActiveEffect name="none" object="small" /> - <ActiveSemiTransparent value="0" object="small" /> - <ActiveValue value="1" object="small" /> - <DefaultColor rgb="#9080f8" object="small" /> - <DefaultColor2 rgb="#000000" object="small" /> - <DefaultEffect name="none" object="small" /> - <DefaultSemiTransparent value="0" object="small" /> - <DefaultValue value="1" object="small" /> - <DisabledColor rgb="#22ca00" object="small" /> - <DisabledColor2 rgb="#000000" object="small" /> - <DisabledEffect name="togray" object="small" /> - <DisabledSemiTransparent value="1" object="small" /> - <DisabledValue value="1" object="small" /> - <Animated value="0" object="toolbar" /> - <DoublePixels value="0" object="toolbar" /> - <Size value="22" object="toolbar" /> - <ActiveColor rgb="#a99cff" object="toolbar" /> - <ActiveColor2 rgb="#000000" object="toolbar" /> - <ActiveEffect name="none" object="toolbar" /> - <ActiveSemiTransparent value="0" object="toolbar" /> - <ActiveValue value="1" object="toolbar" /> - <DefaultColor rgb="#9080f8" object="toolbar" /> - <DefaultColor2 rgb="#000000" object="toolbar" /> - <DefaultEffect name="none" object="toolbar" /> - <DefaultSemiTransparent value="0" object="toolbar" /> - <DefaultValue value="1" object="toolbar" /> - <DisabledColor rgb="#22ca00" object="toolbar" /> - <DisabledColor2 rgb="#000000" object="toolbar" /> - <DisabledEffect name="togray" object="toolbar" /> - <DisabledSemiTransparent value="1" object="toolbar" /> - <DisabledValue value="1" object="toolbar" /> - </icons> - <sounds/> - <colors contrast="7" > - <background rgb="#efefef" object="global" /> - <selectBackground rgb="#678db2" object="global" /> - <foreground rgb="#000000" object="global" /> - <windowForeground rgb="#000000" object="global" /> - <windowBackground rgb="#ffffff" object="global" /> - <selectForeground rgb="#ffffff" object="global" /> - <buttonBackground rgb="#dddfe4" object="global" /> - <buttonForeground rgb="#000000" object="global" /> - <linkColor rgb="#0000ee" object="global" /> - <visitedLinkColor rgb="#52188b" object="global" /> - <activeForeground rgb="#ffffff" object="kwin" /> - <inactiveBackground rgb="#9daaba" object="kwin" /> - <inactiveBlend rgb="#9daaba" object="kwin" /> - <activeBackground rgb="#418edc" object="kwin" /> - <activeBlend rgb="#6b91b8" object="kwin" /> - <inactiveForeground rgb="#dddddd" object="kwin" /> - <activeTitleBtnBg rgb="#7f9ec8" object="kwin" /> - <inactiveTitleBtnBg rgb="#a7b5c7" object="kwin" /> - </colors> - <cursors name="" /> - <wm type="builtin" name="kwin3_plastik" > - <border size="1" /> - </wm> - <konqueror> - <wallpaper url="theme:/wallpapers/konqueror/kde4ever.png" /> - <bgcolor rgb="#000000" /> - </konqueror> - <panel> - <background colorize="0" url="" /> - <transparent value="0" /> - </panel> - <widgets name="Plastik" /> - <fonts> - <font value="" object="General" /> - <fixed value="" object="General" /> - <toolBarFont value="" object="General" /> - <menuFont value="" object="General" /> - <activeFont value="" object="WM" /> - <taskbarFont value="" object="General" /> - <StandardFont value="" object="FMSettings" /> - </fonts> -</ktheme> diff --git a/mop/template/.kde/share/apps/kstyle/themes/original/wallpapers/desktop/KDE34.png b/mop/template/.kde/share/apps/kstyle/themes/original/wallpapers/desktop/KDE34.png deleted file mode 100644 index 01f3b48..0000000 Binary files a/mop/template/.kde/share/apps/kstyle/themes/original/wallpapers/desktop/KDE34.png and /dev/null differ diff --git a/mop/template/.kde/share/apps/kstyle/themes/original/wallpapers/konqueror/kde4ever.png b/mop/template/.kde/share/apps/kstyle/themes/original/wallpapers/konqueror/kde4ever.png deleted file mode 100644 index 0ff7b8e..0000000 Binary files a/mop/template/.kde/share/apps/kstyle/themes/original/wallpapers/konqueror/kde4ever.png and /dev/null differ diff --git a/mop/template/.kde/share/apps/ktexteditor_docwordcompletion/docwordcompletionui.rc b/mop/template/.kde/share/apps/ktexteditor_docwordcompletion/docwordcompletionui.rc deleted file mode 100644 index 8cec35b..0000000 --- a/mop/template/.kde/share/apps/ktexteditor_docwordcompletion/docwordcompletionui.rc +++ /dev/null @@ -1,21 +0,0 @@ -<!DOCTYPE kpartgui> -<kpartplugin library="ktexteditor_docwordcompletion" version="4" name="ktexteditor_docwordcompletion" > - <MenuBar> - <Menu name="tools" > - <Text>&Tools</Text> - <separator group="tools_operations" /> - <menu group="tools_operations" name="wordcompletion" > - <text>Word Completion</text> - <Action name="doccomplete_fw" /> - <Action name="doccomplete_bw" /> - <Action name="doccomplete_pu" /> - <Action name="doccomplete_sh" /> - <separator/> - <action name="enable_autopopup" /> - </menu> - </Menu> - </MenuBar> - <ActionProperties> - <Action shortcut="Alt+Ctrl+Space" name="doccomplete_pu" /> - </ActionProperties> -</kpartplugin> diff --git a/mop/template/.kde/share/apps/kthememanager/themes/original/original.xml b/mop/template/.kde/share/apps/kthememanager/themes/original/original.xml deleted file mode 100644 index b6fcf34..0000000 --- a/mop/template/.kde/share/apps/kthememanager/themes/original/original.xml +++ /dev/null @@ -1,144 +0,0 @@ -<!DOCTYPE ktheme> -<ktheme version="1" > - <general/> - <desktop number="0" common="1" > - <mode id="Flat" /> - <color1 rgb="#003082" /> - <color2 rgb="#6c8bb9" /> - <blending mode="NoBlending" balance="100" reverse="0" /> - <pattern name="" /> - <wallpaper mode="Scaled" url="theme:/wallpapers/desktop/KDE34.png" /> - </desktop> - <screensaver name="" /> - <icons name="crystalsvg" > - <Animated value="1" object="desktop" /> - <DoublePixels value="0" object="desktop" /> - <Size value="48" object="desktop" /> - <ActiveEffect name="togamma" object="desktop" /> - <ActiveSemiTransparent value="0" object="desktop" /> - <ActiveValue value="1" object="desktop" /> - <DefaultColor rgb="#9080f8" object="desktop" /> - <DefaultColor2 rgb="#000000" object="desktop" /> - <DefaultEffect name="none" object="desktop" /> - <DefaultSemiTransparent value="0" object="desktop" /> - <DefaultValue value="1" object="desktop" /> - <DisabledColor rgb="#22ca00" object="desktop" /> - <DisabledColor2 rgb="#000000" object="desktop" /> - <DisabledEffect name="togray" object="desktop" /> - <DisabledSemiTransparent value="1" object="desktop" /> - <DisabledValue value="1" object="desktop" /> - <Animated value="0" object="mainToolbar" /> - <DoublePixels value="0" object="mainToolbar" /> - <Size value="22" object="mainToolbar" /> - <ActiveColor rgb="#a99cff" object="mainToolbar" /> - <ActiveColor2 rgb="#000000" object="mainToolbar" /> - <ActiveEffect name="none" object="mainToolbar" /> - <ActiveSemiTransparent value="0" object="mainToolbar" /> - <ActiveValue value="1" object="mainToolbar" /> - <DefaultColor rgb="#9080f8" object="mainToolbar" /> - <DefaultColor2 rgb="#000000" object="mainToolbar" /> - <DefaultEffect name="none" object="mainToolbar" /> - <DefaultSemiTransparent value="0" object="mainToolbar" /> - <DefaultValue value="1" object="mainToolbar" /> - <DisabledColor rgb="#22ca00" object="mainToolbar" /> - <DisabledColor2 rgb="#000000" object="mainToolbar" /> - <DisabledEffect name="togray" object="mainToolbar" /> - <DisabledSemiTransparent value="1" object="mainToolbar" /> - <DisabledValue value="1" object="mainToolbar" /> - <Animated value="0" object="panel" /> - <DoublePixels value="0" object="panel" /> - <Size value="32" object="panel" /> - <ActiveEffect name="togamma" object="panel" /> - <ActiveSemiTransparent value="0" object="panel" /> - <ActiveValue value="1" object="panel" /> - <DefaultColor rgb="#9080f8" object="panel" /> - <DefaultColor2 rgb="#000000" object="panel" /> - <DefaultEffect name="none" object="panel" /> - <DefaultSemiTransparent value="0" object="panel" /> - <DefaultValue value="1" object="panel" /> - <DisabledColor rgb="#22ca00" object="panel" /> - <DisabledColor2 rgb="#000000" object="panel" /> - <DisabledEffect name="togray" object="panel" /> - <DisabledSemiTransparent value="1" object="panel" /> - <DisabledValue value="1" object="panel" /> - <Animated value="0" object="small" /> - <DoublePixels value="0" object="small" /> - <Size value="16" object="small" /> - <ActiveColor rgb="#a99cff" object="small" /> - <ActiveColor2 rgb="#000000" object="small" /> - <ActiveEffect name="none" object="small" /> - <ActiveSemiTransparent value="0" object="small" /> - <ActiveValue value="1" object="small" /> - <DefaultColor rgb="#9080f8" object="small" /> - <DefaultColor2 rgb="#000000" object="small" /> - <DefaultEffect name="none" object="small" /> - <DefaultSemiTransparent value="0" object="small" /> - <DefaultValue value="1" object="small" /> - <DisabledColor rgb="#22ca00" object="small" /> - <DisabledColor2 rgb="#000000" object="small" /> - <DisabledEffect name="togray" object="small" /> - <DisabledSemiTransparent value="1" object="small" /> - <DisabledValue value="1" object="small" /> - <Animated value="0" object="toolbar" /> - <DoublePixels value="0" object="toolbar" /> - <Size value="22" object="toolbar" /> - <ActiveColor rgb="#a99cff" object="toolbar" /> - <ActiveColor2 rgb="#000000" object="toolbar" /> - <ActiveEffect name="none" object="toolbar" /> - <ActiveSemiTransparent value="0" object="toolbar" /> - <ActiveValue value="1" object="toolbar" /> - <DefaultColor rgb="#9080f8" object="toolbar" /> - <DefaultColor2 rgb="#000000" object="toolbar" /> - <DefaultEffect name="none" object="toolbar" /> - <DefaultSemiTransparent value="0" object="toolbar" /> - <DefaultValue value="1" object="toolbar" /> - <DisabledColor rgb="#22ca00" object="toolbar" /> - <DisabledColor2 rgb="#000000" object="toolbar" /> - <DisabledEffect name="togray" object="toolbar" /> - <DisabledSemiTransparent value="1" object="toolbar" /> - <DisabledValue value="1" object="toolbar" /> - </icons> - <sounds/> - <colors contrast="7" > - <background rgb="#efefef" object="global" /> - <selectBackground rgb="#678db2" object="global" /> - <foreground rgb="#000000" object="global" /> - <windowForeground rgb="#000000" object="global" /> - <windowBackground rgb="#ffffff" object="global" /> - <selectForeground rgb="#ffffff" object="global" /> - <buttonBackground rgb="#dddfe4" object="global" /> - <buttonForeground rgb="#000000" object="global" /> - <linkColor rgb="#0000ee" object="global" /> - <visitedLinkColor rgb="#52188b" object="global" /> - <activeForeground rgb="#ffffff" object="kwin" /> - <inactiveBackground rgb="#9daaba" object="kwin" /> - <inactiveBlend rgb="#9daaba" object="kwin" /> - <activeBackground rgb="#418edc" object="kwin" /> - <activeBlend rgb="#6b91b8" object="kwin" /> - <inactiveForeground rgb="#dddddd" object="kwin" /> - <activeTitleBtnBg rgb="#7f9ec8" object="kwin" /> - <inactiveTitleBtnBg rgb="#a7b5c7" object="kwin" /> - </colors> - <cursors name="" /> - <wm type="builtin" name="kwin3_plastik" > - <border size="1" /> - </wm> - <konqueror> - <wallpaper url="theme:/wallpapers/konqueror/kde4ever.png" /> - <bgcolor rgb="#000000" /> - </konqueror> - <panel> - <background colorize="0" url="" /> - <transparent value="0" /> - </panel> - <widgets name="Plastik" /> - <fonts> - <font value="" object="General" /> - <fixed value="" object="General" /> - <toolBarFont value="" object="General" /> - <menuFont value="" object="General" /> - <activeFont value="" object="WM" /> - <taskbarFont value="" object="General" /> - <StandardFont value="" object="FMSettings" /> - </fonts> -</ktheme> diff --git a/mop/template/.kde/share/apps/kthememanager/themes/original/wallpapers/desktop/KDE34.png b/mop/template/.kde/share/apps/kthememanager/themes/original/wallpapers/desktop/KDE34.png deleted file mode 100644 index 01f3b48..0000000 Binary files a/mop/template/.kde/share/apps/kthememanager/themes/original/wallpapers/desktop/KDE34.png and /dev/null differ diff --git a/mop/template/.kde/share/apps/kthememanager/themes/original/wallpapers/konqueror/kde4ever.png b/mop/template/.kde/share/apps/kthememanager/themes/original/wallpapers/konqueror/kde4ever.png deleted file mode 100644 index 0ff7b8e..0000000 Binary files a/mop/template/.kde/share/apps/kthememanager/themes/original/wallpapers/konqueror/kde4ever.png and /dev/null differ diff --git a/mop/template/.kde/share/apps/nsplugins/cache b/mop/template/.kde/share/apps/nsplugins/cache deleted file mode 100644 index e69de29..0000000 diff --git a/mop/template/.kde/share/apps/nsplugins/pluginsinfo b/mop/template/.kde/share/apps/nsplugins/pluginsinfo deleted file mode 100644 index 9b0b021..0000000 --- a/mop/template/.kde/share/apps/nsplugins/pluginsinfo +++ /dev/null @@ -1 +0,0 @@ -number=0 diff --git a/mop/template/.kde/share/config/activitymanagerrc b/mop/template/.kde/share/config/activitymanagerrc new file mode 100644 index 0000000..04f0329 --- /dev/null +++ b/mop/template/.kde/share/config/activitymanagerrc @@ -0,0 +1,5 @@ +[activities] +71cd1e2b-1467-4f57-bd72-415158a4d8ad=Desktop + +[main] +currentActivity=71cd1e2b-1467-4f57-bd72-415158a4d8ad diff --git a/mop/template/.kde/share/config/akonadi_nepomuk_feederrc b/mop/template/.kde/share/config/akonadi_nepomuk_feederrc new file mode 100644 index 0000000..c0b8406 --- /dev/null +++ b/mop/template/.kde/share/config/akonadi_nepomuk_feederrc @@ -0,0 +1,2 @@ +[akonadi_nepomuk_email_feeder] +Enabled=true diff --git a/mop/template/.kde/share/config/cervisiapartrc b/mop/template/.kde/share/config/cervisiapartrc deleted file mode 100644 index cec3a29..0000000 --- a/mop/template/.kde/share/config/cervisiapartrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=cervisia.upd:kde3.2/20021228,cervisia.upd:kde3.2/20021229,cervisia.upd:kde3.2/20030116,cervisia.upd:kde3.2/20030117,cervisia.upd:kde3.2/20030118,cervisia.upd:kde3.2/20030205,cervisia.upd:kde3.2/20030210,cervisia.upd:kde3.2/20030211,cervisia.upd:kde3.2/20030212,cervisia.upd:kde3.2/20030216,cervisia.upd:kde3.2/20030725,cervisia.upd:kde3.2/20030730,cervisia.upd:kde3.2/20030829,cervisia.upd:kde3.2/20031014,cervisia.upd:kde3.4/20041207 diff --git a/mop/template/.kde/share/config/cervisiarc b/mop/template/.kde/share/config/cervisiarc deleted file mode 100644 index af1f78e..0000000 --- a/mop/template/.kde/share/config/cervisiarc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=cervisia.upd:kde3.2/20030116,cervisia.upd:kde3.2/20030117 diff --git a/mop/template/.kde/share/config/clock_panelapplet_ybw6zmwbra9j5l8npjx9_rc b/mop/template/.kde/share/config/clock_panelapplet_ybw6zmwbra9j5l8npjx9_rc deleted file mode 100644 index 8f18ef1..0000000 --- a/mop/template/.kde/share/config/clock_panelapplet_ybw6zmwbra9j5l8npjx9_rc +++ /dev/null @@ -1,3 +0,0 @@ -[General] -Initial_TZ=0 -RemoteZones= diff --git a/mop/template/.kde/share/config/cvsservicerc b/mop/template/.kde/share/config/cvsservicerc deleted file mode 100644 index aaad148..0000000 --- a/mop/template/.kde/share/config/cvsservicerc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=cervisia.upd:kde3.2/20021228,cervisia.upd:kde3.2/20021229,cervisia.upd:kde3.4/20041112 diff --git a/mop/template/.kde/share/config/dirfilterrc b/mop/template/.kde/share/config/dirfilterrc deleted file mode 100644 index a2da304..0000000 --- a/mop/template/.kde/share/config/dirfilterrc +++ /dev/null @@ -1,3 +0,0 @@ -[General] -ShowCount=false -UseMultipleFilters=true diff --git a/mop/template/.kde/share/config/dirfilterrcwYobga.new b/mop/template/.kde/share/config/dirfilterrcwYobga.new deleted file mode 100644 index a2da304..0000000 --- a/mop/template/.kde/share/config/dirfilterrcwYobga.new +++ /dev/null @@ -1,3 +0,0 @@ -[General] -ShowCount=false -UseMultipleFilters=true diff --git a/mop/template/.kde/share/config/docchmpluginrc b/mop/template/.kde/share/config/docchmpluginrc deleted file mode 100644 index e32e650..0000000 --- a/mop/template/.kde/share/config/docchmpluginrc +++ /dev/null @@ -1,2 +0,0 @@ -[General] -Autosetup=true diff --git a/mop/template/.kde/share/config/doccustompluginrc b/mop/template/.kde/share/config/doccustompluginrc deleted file mode 100644 index e32e650..0000000 --- a/mop/template/.kde/share/config/doccustompluginrc +++ /dev/null @@ -1,2 +0,0 @@ -[General] -Autosetup=true diff --git a/mop/template/.kde/share/config/docdevhelppluginrc b/mop/template/.kde/share/config/docdevhelppluginrc deleted file mode 100644 index 0783671..0000000 --- a/mop/template/.kde/share/config/docdevhelppluginrc +++ /dev/null @@ -1,14 +0,0 @@ -[General] -Autosetup=true - -[Index Settings] -Bonobo Activation API Reference Manual=false -Libbonobo Reference Manual=false - -[Search Settings] -Bonobo Activation API Reference Manual=false -Libbonobo Reference Manual=false - -[TOC Settings] -Bonobo Activation API Reference Manual=false -Libbonobo Reference Manual=false diff --git a/mop/template/.kde/share/config/docdoxygenpluginrc b/mop/template/.kde/share/config/docdoxygenpluginrc deleted file mode 100644 index ad9ee55..0000000 --- a/mop/template/.kde/share/config/docdoxygenpluginrc +++ /dev/null @@ -1,11 +0,0 @@ -[General] -Autosetup=true - -[Index Settings] -The KDE API Reference (The KDE API Reference)=false - -[Search Settings] -The KDE API Reference (The KDE API Reference)=false - -[TOC Settings] -The KDE API Reference (The KDE API Reference)=false diff --git a/mop/template/.kde/share/config/dockdevtocpluginrc b/mop/template/.kde/share/config/dockdevtocpluginrc deleted file mode 100644 index a1de22d..0000000 --- a/mop/template/.kde/share/config/dockdevtocpluginrc +++ /dev/null @@ -1,143 +0,0 @@ -[General] -Autosetup=true - -[Index Settings] -Ada=false -Ada bugs (GCC)=false -Bash Reference Manual=false -Bash bugs=false -C++ Annotations=false -C++ bugs (GCC)=false -Clanlib=false -Document Object Model (DOM) Level 2 HTML Specification=false -FPC=true -Fortran bugs (GCC)=false -GNOME 1.0 API Reference=false -GNUstep=false -GTK bugs=false -Haskell 98=false -Haskell bugs (ghc)=false -Java bugs (GCC)=false -Java bugs (Sun)=false -KDE2 Development Book (kde.org)=false -KDevelop API Documentation=false -LIBC=true -LIBC (umn.edu)=false -LIBSTDC++=true -LIBSTDC++ (gcc.gnu.org)=false -OpenGL=false -PHP=false -PHP bugs=false -Pascal bugs (fp)=false -Perl=false -Perl bugs=false -Python=false -Python bugs=false -Qt Designer-3 and KDevelop-3=false -QtRuby and Korundum=false -Rails=false -Ruby=false -Ruby bugs=false -SDL=false -STL=true -STL (sgi.com)=false -Scalable Vector Graphics (SVG) 1.1 Specification=false -SuperWaba 3.4.1 API=false -User Agent Accessibility Guidelines 1.0=false -wxWidgets bugs=false - -[Locations] -FPC=/mo/kdevelop/doc/fpc.toc -LIBC=/mo/kdevelop/doc/libc.toc -LIBSTDC++=/mo/kdevelop/doc/libstdc++.toc -STL=/mo/kdevelop/doc/stl.toc - -[Search Settings] -Ada=false -Ada bugs (GCC)=false -Bash Reference Manual=false -Bash bugs=false -C++ Annotations=false -C++ bugs (GCC)=false -Clanlib=false -Document Object Model (DOM) Level 2 HTML Specification=false -FPC=false -Fortran bugs (GCC)=false -GNOME 1.0 API Reference=false -GNUstep=false -GTK bugs=false -Haskell 98=false -Haskell bugs (ghc)=false -Java bugs (GCC)=false -Java bugs (Sun)=false -KDE2 Development Book (kde.org)=false -KDevelop API Documentation=false -LIBC=false -LIBC (umn.edu)=false -LIBSTDC++=false -LIBSTDC++ (gcc.gnu.org)=false -OpenGL=false -PHP=false -PHP bugs=false -Pascal bugs (fp)=false -Perl=false -Perl bugs=false -Python=false -Python bugs=false -Qt Designer-3 and KDevelop-3=false -QtRuby and Korundum=false -Rails=false -Ruby=false -Ruby bugs=false -SDL=false -STL=false -STL (sgi.com)=false -Scalable Vector Graphics (SVG) 1.1 Specification=false -SuperWaba 3.4.1 API=false -User Agent Accessibility Guidelines 1.0=false -wxWidgets bugs=false - -[TOC Settings] -Ada=false -Ada bugs (GCC)=false -Bash Reference Manual=false -Bash bugs=false -C++ Annotations=false -C++ bugs (GCC)=false -Clanlib=false -Document Object Model (DOM) Level 2 HTML Specification=false -FPC=true -Fortran bugs (GCC)=false -GNOME 1.0 API Reference=false -GNUstep=false -GTK bugs=false -Haskell 98=false -Haskell bugs (ghc)=false -Java bugs (GCC)=false -Java bugs (Sun)=false -KDE2 Development Book (kde.org)=false -KDevelop API Documentation=false -LIBC=true -LIBC (umn.edu)=false -LIBSTDC++=true -LIBSTDC++ (gcc.gnu.org)=false -OpenGL=false -PHP=false -PHP bugs=false -Pascal bugs (fp)=false -Perl=false -Perl bugs=false -Python=false -Python bugs=false -Qt Designer-3 and KDevelop-3=false -QtRuby and Korundum=false -Rails=false -Ruby=false -Ruby bugs=false -SDL=false -STL=true -STL (sgi.com)=false -Scalable Vector Graphics (SVG) 1.1 Specification=false -SuperWaba 3.4.1 API=false -User Agent Accessibility Guidelines 1.0=false -wxWidgets bugs=false diff --git a/mop/template/.kde/share/config/docqtpluginrc b/mop/template/.kde/share/config/docqtpluginrc deleted file mode 100644 index 112727c..0000000 --- a/mop/template/.kde/share/config/docqtpluginrc +++ /dev/null @@ -1,13 +0,0 @@ -[General] -Autosetup=true - -[Index Settings] -Guide to the Qt Translation Tools=false -Qt Reference Documentation=false - -[Search Settings] -Guide to the Qt Translation Tools=false -Qt Reference Documentation=false - -[TOC Settings] -Guide to the Qt Translation Tools=false diff --git a/mop/template/.kde/share/config/emaildefaults b/mop/template/.kde/share/config/emaildefaults deleted file mode 100644 index 0e8f1b7..0000000 --- a/mop/template/.kde/share/config/emaildefaults +++ /dev/null @@ -1,5 +0,0 @@ -[Defaults] -Profile=Default - -[PROFILE_Default] -ServerType= diff --git a/mop/template/.kde/share/config/emailidentities b/mop/template/.kde/share/config/emailidentities index f9ff4a0..cc325fb 100644 --- a/mop/template/.kde/share/config/emailidentities +++ b/mop/template/.kde/share/config/emailidentities @@ -1,5 +1,2 @@ [$Version] update_info=kmail.upd:3.3-move-identities-to-own-file,kmail.upd:3.3-aegypten-emailidentities-split-sign-encr-keys - -[General] -Default Identity= diff --git a/mop/template/.kde/share/config/gtkrc b/mop/template/.kde/share/config/gtkrc index 71ced41..dcee692 100644 --- a/mop/template/.kde/share/config/gtkrc +++ b/mop/template/.kde/share/config/gtkrc @@ -1,52 +1,53 @@ -# created by KDE, Sat Jun 30 18:39:51 2007 +# created by KDE, Thu Mar 21 10:13:24 2013 # # If you do not want KDE to override your GTK settings, select -# Appearance & Themes -> Colors in the Control Center and disable the checkbox -# "Apply colors to non-KDE applications" +# Appearance -> Colors in the System Settings and disable the checkbox +# "Apply colors to non-KDE4 applications" # # style "default" { - bg[NORMAL] = { 0.937, 0.937, 0.937 } - bg[SELECTED] = { 0.404, 0.553, 0.698 } - bg[INSENSITIVE] = { 0.937, 0.937, 0.937 } - bg[ACTIVE] = { 0.780, 0.780, 0.780 } - bg[PRELIGHT] = { 0.937, 0.937, 0.937 } + bg[NORMAL] = { 0.839, 0.824, 0.816 } + bg[SELECTED] = { 0.263, 0.675, 0.910 } + bg[INSENSITIVE] = { 0.839, 0.824, 0.816 } + bg[ACTIVE] = { 0.702, 0.671, 0.655 } + bg[PRELIGHT] = { 0.839, 0.824, 0.816 } base[NORMAL] = { 1.000, 1.000, 1.000 } - base[SELECTED] = { 0.404, 0.553, 0.698 } - base[INSENSITIVE] = { 0.937, 0.937, 0.937 } - base[ACTIVE] = { 0.404, 0.553, 0.698 } - base[PRELIGHT] = { 0.404, 0.553, 0.698 } + base[SELECTED] = { 0.263, 0.675, 0.910 } + base[INSENSITIVE] = { 0.839, 0.824, 0.816 } + base[ACTIVE] = { 0.263, 0.675, 0.910 } + base[PRELIGHT] = { 0.263, 0.675, 0.910 } - text[NORMAL] = { 0.000, 0.000, 0.000 } + text[NORMAL] = { 0.122, 0.110, 0.106 } text[SELECTED] = { 1.000, 1.000, 1.000 } - text[INSENSITIVE] = { 0.780, 0.780, 0.780 } + text[INSENSITIVE] = { 0.702, 0.671, 0.655 } text[ACTIVE] = { 1.000, 1.000, 1.000 } text[PRELIGHT] = { 1.000, 1.000, 1.000 } - fg[NORMAL] = { 0.000, 0.000, 0.000 } + fg[NORMAL] = { 0.133, 0.122, 0.118 } fg[SELECTED] = { 1.000, 1.000, 1.000 } - fg[INSENSITIVE] = { 0.780, 0.780, 0.780 } - fg[ACTIVE] = { 0.000, 0.000, 0.000 } - fg[PRELIGHT] = { 0.000, 0.000, 0.000 } + fg[INSENSITIVE] = { 0.702, 0.671, 0.655 } + fg[ACTIVE] = { 0.133, 0.122, 0.118 } + fg[PRELIGHT] = { 0.133, 0.122, 0.118 } } class "*" style "default" style "ToolTip" { - bg[NORMAL] = { 1.000, 1.000, 0.863 } - base[NORMAL] = { 1.000, 1.000, 0.863 } - text[NORMAL] = { 0.000, 0.000, 0.000 } - fg[NORMAL] = { 0.000, 0.000, 0.000 } + bg[NORMAL] = { 0.839, 0.824, 0.816 } + base[NORMAL] = { 1.000, 1.000, 1.000 } + text[NORMAL] = { 0.122, 0.110, 0.106 } + fg[NORMAL] = { 0.133, 0.122, 0.118 } } +widget "gtk-tooltip" style "ToolTip" widget "gtk-tooltips" style "ToolTip" style "MenuItem" { - bg[PRELIGHT] = { 0.404, 0.553, 0.698 } + bg[PRELIGHT] = { 0.263, 0.675, 0.910 } } class "*MenuItem" style "MenuItem" diff --git a/mop/template/.kde/share/config/gtkrc-2.0 b/mop/template/.kde/share/config/gtkrc-2.0 index d55515a..4e7b988 100644 --- a/mop/template/.kde/share/config/gtkrc-2.0 +++ b/mop/template/.kde/share/config/gtkrc-2.0 @@ -1,54 +1,56 @@ -# created by KDE, Sat Jun 30 18:39:51 2007 +# created by KDE, Thu Mar 21 10:13:24 2013 # # If you do not want KDE to override your GTK settings, select -# Appearance & Themes -> Colors in the Control Center and disable the checkbox -# "Apply colors to non-KDE applications" +# Appearance -> Colors in the System Settings and disable the checkbox +# "Apply colors to non-KDE4 applications" # # + +gtk-alternative-button-order = 1 + style "default" { - bg[NORMAL] = { 0.937, 0.937, 0.937 } - bg[SELECTED] = { 0.404, 0.553, 0.698 } - bg[INSENSITIVE] = { 0.937, 0.937, 0.937 } - bg[ACTIVE] = { 0.780, 0.780, 0.780 } - bg[PRELIGHT] = { 0.937, 0.937, 0.937 } + bg[NORMAL] = { 0.839, 0.824, 0.816 } + bg[SELECTED] = { 0.263, 0.675, 0.910 } + bg[INSENSITIVE] = { 0.839, 0.824, 0.816 } + bg[ACTIVE] = { 0.702, 0.671, 0.655 } + bg[PRELIGHT] = { 0.839, 0.824, 0.816 } base[NORMAL] = { 1.000, 1.000, 1.000 } - base[SELECTED] = { 0.404, 0.553, 0.698 } - base[INSENSITIVE] = { 0.937, 0.937, 0.937 } - base[ACTIVE] = { 0.404, 0.553, 0.698 } - base[PRELIGHT] = { 0.404, 0.553, 0.698 } + base[SELECTED] = { 0.263, 0.675, 0.910 } + base[INSENSITIVE] = { 0.839, 0.824, 0.816 } + base[ACTIVE] = { 0.263, 0.675, 0.910 } + base[PRELIGHT] = { 0.263, 0.675, 0.910 } - text[NORMAL] = { 0.000, 0.000, 0.000 } + text[NORMAL] = { 0.122, 0.110, 0.106 } text[SELECTED] = { 1.000, 1.000, 1.000 } - text[INSENSITIVE] = { 0.780, 0.780, 0.780 } + text[INSENSITIVE] = { 0.702, 0.671, 0.655 } text[ACTIVE] = { 1.000, 1.000, 1.000 } text[PRELIGHT] = { 1.000, 1.000, 1.000 } - fg[NORMAL] = { 0.000, 0.000, 0.000 } + fg[NORMAL] = { 0.133, 0.122, 0.118 } fg[SELECTED] = { 1.000, 1.000, 1.000 } - fg[INSENSITIVE] = { 0.780, 0.780, 0.780 } - fg[ACTIVE] = { 0.000, 0.000, 0.000 } - fg[PRELIGHT] = { 0.000, 0.000, 0.000 } + fg[INSENSITIVE] = { 0.702, 0.671, 0.655 } + fg[ACTIVE] = { 0.133, 0.122, 0.118 } + fg[PRELIGHT] = { 0.133, 0.122, 0.118 } } class "*" style "default" -gtk-alternative-button-order = 1 - style "ToolTip" { - bg[NORMAL] = { 1.000, 1.000, 0.863 } - base[NORMAL] = { 1.000, 1.000, 0.863 } - text[NORMAL] = { 0.000, 0.000, 0.000 } - fg[NORMAL] = { 0.000, 0.000, 0.000 } + bg[NORMAL] = { 0.839, 0.824, 0.816 } + base[NORMAL] = { 1.000, 1.000, 1.000 } + text[NORMAL] = { 0.122, 0.110, 0.106 } + fg[NORMAL] = { 0.133, 0.122, 0.118 } } +widget "gtk-tooltip" style "ToolTip" widget "gtk-tooltips" style "ToolTip" style "MenuItem" { - bg[PRELIGHT] = { 0.404, 0.553, 0.698 } + bg[PRELIGHT] = { 0.263, 0.675, 0.910 } } class "*MenuItem" style "MenuItem" diff --git a/mop/template/.kde/share/config/kab2kabcrc b/mop/template/.kde/share/config/kab2kabcrc deleted file mode 100644 index cdd4de7..0000000 --- a/mop/template/.kde/share/config/kab2kabcrc +++ /dev/null @@ -1,2 +0,0 @@ -[Startup] -EnableAutostart=false diff --git a/mop/template/.kde/share/config/kaccessrc b/mop/template/.kde/share/config/kaccessrc deleted file mode 100644 index 1e920b8..0000000 --- a/mop/template/.kde/share/config/kaccessrc +++ /dev/null @@ -1,30 +0,0 @@ -[Bell] -ArtsBell=false -ArtsBellFile= -SystemBell=false -VisibleBell=false -VisibleBellColor=255,0,0 -VisibleBellInvert=true -VisibleBellPause=500 - -[Keyboard] -AccessXBeep=false -AccessXTimeout=false -AccessXTimeoutDelay=30 -BounceKeys=false -BounceKeysDelay=500 -BounceKeysRejectBeep=true -GestureConfirmation=false -Gestures=false -SlowKeys=false -SlowKeysAcceptBeep=true -SlowKeysDelay=500 -SlowKeysPressBeep=true -SlowKeysRejectBeep=true -StickyKeys=false -StickyKeysAutoOff=false -StickyKeysBeep=true -StickyKeysLatch=true -ToggleKeysBeep=false -kNotifyAccessX=false -kNotifyModifiers=false diff --git a/mop/template/.kde/share/config/kaddressbookmigratorrc b/mop/template/.kde/share/config/kaddressbookmigratorrc new file mode 100644 index 0000000..cdd4de7 --- /dev/null +++ b/mop/template/.kde/share/config/kaddressbookmigratorrc @@ -0,0 +1,2 @@ +[Startup] +EnableAutostart=false diff --git a/mop/template/.kde/share/config/katepartindentjscriptrc b/mop/template/.kde/share/config/katepartindentjscriptrc deleted file mode 100644 index 506935a..0000000 --- a/mop/template/.kde/share/config/katepartindentjscriptrc +++ /dev/null @@ -1,6 +0,0 @@ -[Cache /usr/share/apps/katepart/scripts/indent/script-indent-c-test.js] -copyright=\nBased on work Copyright 2005 by Dominik Haumann\nCopyright 2005 by Joseph Wenninger\nHere will be the license text, Dominik has to choose\n The following line is not empty\n \nAn empty line ends this block -internalName=script-indent-c-test -lastModified=1126340794 -niceName=C style indenter -version=0.1 diff --git a/mop/template/.kde/share/config/katepartluaindentscriptrc b/mop/template/.kde/share/config/katepartluaindentscriptrc deleted file mode 100644 index 208567c..0000000 --- a/mop/template/.kde/share/config/katepartluaindentscriptrc +++ /dev/null @@ -1,6 +0,0 @@ -[Cache /usr/share/apps/katepart/scripts/indent/script-indent-c1-test.lua] -copyright=(Unknown) -internalName=script-indent-c1-test -lastModified=1126340793 -niceName=script-indent-c1-test -version=0 diff --git a/mop/template/.kde/share/config/katerc b/mop/template/.kde/share/config/katerc index 57c53be..bb8af99 100644 --- a/mop/template/.kde/share/config/katerc +++ b/mop/template/.kde/share/config/katerc @@ -2,110 +2,4 @@ update_info=kate-2.4.upd:kate2.4 [Filelist] -Edit Shade=255,102,153 -Shading Enabled=true -Sort Type=0 -View Shade=51,204,255 - -[General] -Days Meta Infos=30 -Last Session=default.katesession -Save Meta Infos=true -Show Console=false -Show Full Path in Title=false -Startup Session=last -Sync Konsole=true - -[Kate Document Defaults] -Allow End of Line Detection=true -Backup Config Flags=1 -Backup Prefix= -Backup Suffix=~ -Basic Config Flags=547913760 -Encoding= -End of Line=0 -Indentation Mode=0 -Indentation Width=2 -KTextEditor Plugin ktexteditor_docwordcompletion=false -KTextEditor Plugin ktexteditor_insertfile=false -KTextEditor Plugin ktexteditor_isearch=false -KTextEditor Plugin ktexteditor_kdatatool=false -KTextEditor Plugin ktexteditor_kttsd=false -Maximal Loaded Blocks=16 -PageUp/PageDown Moves Cursor=false -Search Dir Config Depth=3 -Tab Width=8 -Undo Steps=0 -Word Wrap=false -Word Wrap Column=80 - -[Kate Plugins] -katecppsymbolviewerplugin=false -katefiletemplates=false -katefll_plugin=false -katehelloworldplugin=false -katehtmltoolsplugin=false -kateinsertcommandplugin=false -katemakeplugin=false -katemodelineplugin=false -kateopenheaderplugin=false -katepybrowseplugin=false -katesnippetsplugin=false -katetextfilterplugin=false -katexmlcheckplugin=false -katexmltoolsplugin=false -libkatetabbarextensionplugin=false - -[Kate Renderer Defaults] -Schema=kate - Normal -Show Indentation Lines=false -Word Wrap Marker=false - -[Kate View Defaults] -Auto Center Lines=0 -Bookmark Menu Sorting=0 -Command Line=false -Default Mark Type=1 -Dynamic Word Wrap=true -Dynamic Word Wrap Align Indent=80 -Dynamic Word Wrap Indicators=1 -Folding Bar=true -Icon Bar=false -Line Numbers=false -Persistent Selection=false -Scroll Bar Marks=false -Search Config Flags=266 -Text To Search Mode=2 - -[MainWindow] -Height 1024=480 -Width 1280=700 - -[TipOfDay] -TipLastShown=2007,6,10,15,49,47 - -[fileselector] -AutoSyncEvents=0 -current filter= -dir history= -filter history= -filter history len=9 -last filter= -location= -pathcombo history len=9 - -[fileselector:dir] -Separate Directories=false -Show Preview=false -Show hidden files=false -Sort by=Name -Sort case insensitively=true -Sort directories first=true -Sort reversed=false -View Style=Simple - -[fileselector:view] -ColumnOrder=0,1,2,3,4,5 -ColumnWidths=55,43,47,93,56,55 -SortAscending=true -SortColumn=0 +Sort Type= diff --git a/mop/template/.kde/share/config/kateschemarc b/mop/template/.kde/share/config/kateschemarc deleted file mode 100644 index 97e53e8..0000000 --- a/mop/template/.kde/share/config/kateschemarc +++ /dev/null @@ -1,17 +0,0 @@ -[kdevelop - Normal] -Color Background=255,255,255 -Color Highlighted Bracket=255,255,153 -Color Highlighted Line=238,246,255 -Color Icon Bar=234,233,232 -Color Line Number=0,0,0 -Color MarkType1=0,0,255 -Color MarkType2=255,0,0 -Color MarkType3=255,255,0 -Color MarkType4=255,0,255 -Color MarkType5=160,160,164 -Color MarkType6=0,255,0 -Color MarkType7=255,255,255 -Color Selection=103,141,178 -Color Tab Marker=0,0,0 -Color Word Wrap Marker=119,122,127 -Font=Monospace,10,-1,2,50,0,0,0,0,0 diff --git a/mop/template/.kde/share/config/katesyntaxhighlightingrc b/mop/template/.kde/share/config/katesyntaxhighlightingrc deleted file mode 100644 index ee0959a..0000000 --- a/mop/template/.kde/share/config/katesyntaxhighlightingrc +++ /dev/null @@ -1,1583 +0,0 @@ -[Cache /usr/share/apps/katepart/syntax/abc.xml] -author=Andrea Primiani (primiani@dag.it) -extension=*.abc;*.ABC -hidden=false -lastModified=1137690383 -license=LGPL -mimetype=text/vnd.abc -name=ABC -priority= -section=Other -version=1.10 - -[Cache /usr/share/apps/katepart/syntax/ada.xml] -author= -extension=*.adb;*.ads;*.ada;*.a -hidden=false -lastModified=1153556196 -license= -mimetype=text/x-adasrc -name=Ada -priority= -section=Sources -version=1.06 - -[Cache /usr/share/apps/katepart/syntax/ahdl.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.ahdl;*.tdf -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-ahdl -name=AHDL -priority= -section=Hardware -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/alert.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension= -hidden=true -lastModified=1128956727 -license=LGPL -mimetype= -name=Alerts -priority= -section=Other -version=1.06 - -[Cache /usr/share/apps/katepart/syntax/ansic89.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.c;*.C;*.h -hidden=false -lastModified=1128956727 -license=LGPL -mimetype=text/x-csrc;text/x-c++src;text/x-chdr -name=ANSI C89 -priority=2 -section=Sources -version=1.09 - -[Cache /usr/share/apps/katepart/syntax/apache.xml] -author=Jan Janssen (medhefgo@googlemail.com) -extension=httpd.conf;httpd2.conf;apache.conf;apache2.conf;.ht* -hidden=false -lastModified=1137690383 -license=LGPL -mimetype= -name=Apache Configuration -priority= -section=Configuration -version=1.10 - -[Cache /usr/share/apps/katepart/syntax/asm-avr.xml] -author=Roland Nagy -extension=*.asm;*.ASM;*.asm-avr -hidden=false -lastModified=1128956727 -license=GPL -mimetype=text/x-asm;text/x-asm-avr -name=AVR Assembler -priority= -section=Assembler -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/asm6502.xml] -author= -extension=*.asm -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-asm6502 -name=Asm6502 -priority= -section=Assembler -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/asp.xml] -author=Antonio Salazar (savedfastcool@gmail.com) -extension=*.asp; -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-asp-src;text/x-asp-src -name=ASP -priority= -section=Markup -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/awk.xml] -author= -extension=*.awk -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-awk -name=AWK -priority= -section=Scripts -version=0.90 - -[Cache /usr/share/apps/katepart/syntax/bash.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension=*.sh;*.bash;*.ebuild;*.eclass -hidden=false -lastModified=1142590745 -license=LGPL -mimetype=application/x-shellscript -name=Bash -priority= -section=Scripts -version=2.05 - -[Cache /usr/share/apps/katepart/syntax/bibtex.xml] -author=Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net) -extension=*.bib -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-bib -name=BibTeX -priority= -section=Markup -version=1.13 - -[Cache /usr/share/apps/katepart/syntax/c.xml] -author= -extension=*.c;*.C;*.h -hidden=false -lastModified=1153556196 -license= -mimetype=text/x-csrc;text/x-c++src;text/x-chdr -name=C -priority=5 -section=Sources -version=1.25 - -[Cache /usr/share/apps/katepart/syntax/cg.xml] -author=Florian Schanda (florian.schanda@schanda.de) -extension=*.cg -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-cgsrc -name=Cg -priority= -section=Sources -version=1.11 - -[Cache /usr/share/apps/katepart/syntax/cgis.xml] -author= -extension=*.cgis -hidden=false -lastModified=1126340795 -license= -mimetype= -name=CGiS -priority= -section=Sources -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/changelog.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=ChangeLog -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=ChangeLog -priority= -section=Other -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/cisco.xml] -author=Raphaël GRAPINET -extension=*.cis -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/cisco -name=Cisco -priority= -section=Configuration -version=1.10 - -[Cache /usr/share/apps/katepart/syntax/clipper.xml] -author=Andrey Cherepanov (sibskull@mail.ru) -extension=*.prg;*.PRG;*.ch -hidden=false -lastModified=1128956727 -license=GPL -mimetype=text/x-clipper-src -name=Clipper -priority=2 -section=Sources -version=1.05 - -[Cache /usr/share/apps/katepart/syntax/cmake.xml] -author= -extension=CMakeLists.txt;*.cmake; -hidden=false -lastModified=1126340795 -license= -mimetype= -name=CMake -priority= -section=Other -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/coldfusion.xml] -author= -extension=*.cfm;*.cfc;*.cfml;*.dbm -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-coldfusion -name=ColdFusion -priority= -section=Markup -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/commonlisp.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.lisp;*.cl;*.lsp -hidden=false -lastModified=1128956727 -license=LGPL -mimetype= -name=Common Lisp -priority= -section=Scripts -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/component-pascal.xml] -author=Werner Braun (wb@o3-software.de) -extension=*.cp;*.bro -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-component-pascal -name=Component-Pascal -priority= -section=Sources -version=1.05 - -[Cache /usr/share/apps/katepart/syntax/cpp.xml] -author= -extension=*.c++;*.cxx;*.cpp;*.cc;*.C;*.h;*.H;*.h++;*.hxx;*.hpp;*.hcc;*.moc -hidden=false -lastModified=1159724006 -license= -mimetype=text/x-c++src;text/x-c++hdr;text/x-chdr -name=C++ -priority=9 -section=Sources -version=1.37 - -[Cache /usr/share/apps/katepart/syntax/cs.xml] -author= -extension=*.cs -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-csharp-src;text/x-csharp-hde -name=C# -priority= -section=Sources -version=1.14 - -[Cache /usr/share/apps/katepart/syntax/css-php.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension= -hidden=true -lastModified=1175264805 -license=LGPL -mimetype= -name=CSS/PHP -priority= -section=Other -version=1.99 - -[Cache /usr/share/apps/katepart/syntax/css.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension=*.css -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/css -name=CSS -priority= -section=Markup -version=1.99 - -[Cache /usr/share/apps/katepart/syntax/cue.xml] -author= -extension=*.cue -hidden=false -lastModified=1126340795 -license= -mimetype=application/x-cue -name=CUE Sheet -priority= -section=Other -version=0.91 - -[Cache /usr/share/apps/katepart/syntax/d.xml] -author=Simon J Mackenzie (project.katedxml@smackoz.fastmail.fm) -extension=*.d;*.D -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-dsrc -name=D -priority= -section=Sources -version=1.36 - -[Cache /usr/share/apps/katepart/syntax/debianchangelog.xml] -author= -extension= -hidden=false -lastModified=1126340795 -license= -mimetype= -name=Debian Changelog -priority= -section=Other -version=0.62 - -[Cache /usr/share/apps/katepart/syntax/debiancontrol.xml] -author= -extension= -hidden=false -lastModified=1126340795 -license= -mimetype= -name=Debian Control -priority= -section=Other -version=0.82 - -[Cache /usr/share/apps/katepart/syntax/desktop.xml] -author= -extension=*.desktop;*.kdelnk -hidden=false -lastModified=1126340795 -license= -mimetype=application/x-desktop -name=.desktop -priority= -section=Configuration -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/diff.xml] -author= -extension=*.diff;*patch -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-diff -name=Diff -priority= -section=Other -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/doxygen.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.dox;*.doxygen -hidden=false -lastModified=1128956727 -license=LGPL -mimetype=text/x-doxygen -name=Doxygen -priority= -section=Markup -version=1.25 - -[Cache /usr/share/apps/katepart/syntax/e.xml] -author= -extension=*.e -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-e-src -name=E Language -priority= -section=Sources -version=0.21 - -[Cache /usr/share/apps/katepart/syntax/eiffel.xml] -author=Sebastian Vuorinen -extension=*.e -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-eiffel-src -name=Eiffel -priority= -section=Sources -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/euphoria.xml] -author=Irv Mullins (irvm@ellijay.com) -extension=*.e;*.ex;*.exw;*.exu -hidden=false -lastModified=1128956727 -license=LGPL -mimetype=text/x-euphoria -name=Euphoria -priority= -section=Scripts -version=2.08 - -[Cache /usr/share/apps/katepart/syntax/ferite.xml] -author= -extension=*.fe;*.feh -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-ferite-src -name=ferite -priority= -section=Scripts -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/fgl-4gl.xml] -author=Andrej Falout (andrej@falout.org) -extension=*.4gl;*.4GL;*.err -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-4glsrc;text/x-4glerr -name=4GL -priority= -section=Database -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/fgl-per.xml] -author=Andrej Falout (andrej@falout.org) -extension=*.per;*.PER;*.per.err -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-4glper;text/x-4glpererr -name=4GL-PER -priority= -section=Database -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/fortran.xml] -author=Franchin Matteo (fnch@libero.it) -extension=*.f;*.F;*.for;*.FOR;*.f90;*.F90;*.fpp;*.FPP;*.f95;*.F95; -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-fortran-src -name=Fortran -priority= -section=Sources -version=1.11 - -[Cache /usr/share/apps/katepart/syntax/fstab.xml] -author=Diego Iastrubni (elcuco@kde.org) -extension=fstab;mtab -hidden=false -lastModified=1126340795 -license=Public Domain -mimetype= -name=fstab -priority= -section=Configuration -version=1.00 - -[Cache /usr/share/apps/katepart/syntax/gdl.xml] -author= -extension=*.gdl;*.vcg;*.GDL;*.VCG -hidden=false -lastModified=1126340795 -license= -mimetype= -name=GDL -priority= -section=Scientific -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/gettext.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.po;*.pot -hidden=false -lastModified=1131489530 -license=LGPL -mimetype=application/x-gettext -name=GNU Gettext -priority= -section=Markup -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/glsl.xml] -author=Oliver Richers (o.richers@tu-bs.de) -extension=*.glsl;*.vert;*.frag -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-glslsrc -name=GLSL -priority= -section=Sources -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/gnuassembler.xml] -author=John Zaitseff (J.Zaitseff@zap.org.au), Roland Pabel (roland@pabel.name) -extension=*.s;*.S -hidden=false -lastModified=1128956727 -license=GPL -mimetype=text/x-asm -name=GNU Assembler -priority= -section=Assembler -version=1.05 - -[Cache /usr/share/apps/katepart/syntax/haskell.xml] -author=Marcel Martin (mmar@freenet.de) -extension=*.hs -hidden=false -lastModified=1126340795 -license= -mimetype= -name=Haskell -priority= -section=Sources -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/html-php.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension=*.php;*.php3;*.wml;*.phtml;*.phtm;*.inc -hidden=false -lastModified=1175264805 -license=LGPL -mimetype=text/x-php4-src;text/x-php3-src;text/vnd.wap.wml;application/x-php -name=PHP (HTML) -priority=10 -section=Scripts -version=1.98 - -[Cache /usr/share/apps/katepart/syntax/html.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension=*.htm;*.html;*.shtml;*.shtm -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/html -name=HTML -priority=10 -section=Markup -version=1.98 - -[Cache /usr/share/apps/katepart/syntax/idconsole.xml] -author= -extension=*.cfg -hidden=false -lastModified=1126340795 -license= -mimetype= -name=Quake Script -priority= -section=Scripts -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/idl.xml] -author= -extension=*.idl -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-idl-src -name=IDL -priority= -section=Sources -version=1.07 - -[Cache /usr/share/apps/katepart/syntax/ilerpg.xml] -author= -extension=QRPG*.*;qrpg*.* -hidden=false -lastModified=1148321648 -license= -mimetype=text/x-ilerpg-src -name=ILERPG -priority= -section=Sources -version=1.05 - -[Cache /usr/share/apps/katepart/syntax/inform.xml] -author=Giancarlo Niccolai (giancarlo@niccolai.ws) -extension=*.inf;*.h -hidden=false -lastModified=1126340795 -license=GPL -mimetype=text/x-inform-src -name=Inform -priority= -section=Sources -version=1.23 - -[Cache /usr/share/apps/katepart/syntax/ini.xml] -author=Jan Janssen (medhefgo@web.de) -extension=*.ini;*.pls -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=INI Files -priority= -section=Configuration -version=1.0 - -[Cache /usr/share/apps/katepart/syntax/java.xml] -author=Alfredo Luiz Foltran Fialho (alfoltran@ig.com.br) -extension=*.java -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-java -name=Java -priority= -section=Sources -version=1.15 - -[Cache /usr/share/apps/katepart/syntax/javadoc.xml] -author=Alfredo Luiz Foltran Fialho (alfoltran@ig.com.br) -extension= -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=Javadoc -priority= -section=Markup -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/javascript-php.xml] -author=Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net) -extension= -hidden=true -lastModified=1175264805 -license= -mimetype= -name=JavaScript/PHP -priority= -section=Other -version=1.10 - -[Cache /usr/share/apps/katepart/syntax/javascript.xml] -author=Anders Lund (anders@alweb.dk), Joseph Wenninger (jowenn@kde.org), Whitehawk Stormchaser (zerokode@gmx.net) -extension=*.js -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-javascript -name=JavaScript -priority= -section=Scripts -version=1.10 - -[Cache /usr/share/apps/katepart/syntax/jsp.xml] -author=Rob Martin (rob@gamepimp.com) -extension=*.jsp;*.JSP -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/html -name=JSP -priority= -section=Markup -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/katetemplate.xml] -author=Anders Lund -extension=*.katetemplate -hidden=false -lastModified=1126340054 -license= -mimetype= -name=Kate File Template -priority= -section=Markup -version=1.00 - -[Cache /usr/share/apps/katepart/syntax/kbasic.xml] -author= -extension=*.kbasic -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-kbasic-src -name=KBasic -priority= -section=Sources -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/kommander.xml] -author=Wilbert Berendsen (wilbert@kde.nl), Andras Mantia (amantia@kde.org) -extension=*.kmdr -hidden=false -lastModified=1159723782 -license=LGPL -mimetype=application/x-shellscript -name=Kommander -priority= -section=Scripts -version=2.05 - -[Cache /usr/share/apps/katepart/syntax/latex.xml] -author=Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net)+Holger Danielsson (holger.danielsson@t-online.de)+Michel Ludwig (michel.ludwig@kdemail.net) -extension=*.tex; *.ltx; *.dtx; *.sty; *.cls; -hidden=false -lastModified=1159724006 -license=LGPL -mimetype=text/x-tex -name=LaTeX -priority= -section=Markup -version=1.23 - -[Cache /usr/share/apps/katepart/syntax/ldif.xml] -author=Andreas Hochsteger (e9625392@student.tuwien.ac.at) -extension=*.ldif -hidden=false -lastModified=1126340795 -license= -mimetype=application/directory -name=LDIF -priority= -section=Database -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/lex.xml] -author=Jan Villat (jan.villat@net2000.ch) -extension=*.l;*.lex;*.flex -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=Lex/Flex -priority= -section=Sources -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/lilypond.xml] -author=Andrea Primiani (primiani@dag.it) -extension=*.ly;*.LY -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=LilyPond -priority= -section=Other -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/literate-haskell.xml] -author=Marcel Martin (mmar@freenet.de) -extension=*.lhs -hidden=false -lastModified=1126340795 -license= -mimetype= -name=Literate Haskell -priority= -section=Sources -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/logohighlightstyle.en_US.xml] -author= -extension=*.logo;*.lgo;*.LOGO;*.Logo -hidden=false -lastModified=1126340211 -license= -mimetype=text/x-logosrc;text/x-logo;application/x-logo -name=en_US -priority=9 -section=Logo -version=0.2 - -[Cache /usr/share/apps/katepart/syntax/logtalk.xml] -author=Paulo Moura (pmoura@logtalk.org) -extension=*.lgt;*.config -hidden=false -lastModified=1148321648 -license=Artistic License 2.0 -mimetype=text/x-logtalk -name=Logtalk -priority= -section=Sources -version=1.51 - -[Cache /usr/share/apps/katepart/syntax/lpc.xml] -author=Andreas Klauer (Andreas.Klauer@metamorpher.de) -extension=*.c;*.h;*.inc;*.o -hidden=false -lastModified=1126340795 -license=Artistic -mimetype= -name=LPC -priority= -section=Sources -version=0.76 - -[Cache /usr/share/apps/katepart/syntax/lua.xml] -author= -extension=*.lua -hidden=false -lastModified=1148321648 -license= -mimetype=text/x-lua -name=Lua -priority= -section=Scripts -version=0.23 - -[Cache /usr/share/apps/katepart/syntax/m3u.xml] -author=Jan Janssen (medhefgo@web.de) -extension=*.m3u -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=audio/mpegurl -name=M3U -priority= -section=Other -version=1.10 - -[Cache /usr/share/apps/katepart/syntax/mab.xml] -author= -extension=*.mab;*.MAB;*.Mab -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-mab -name=MAB-DB -priority= -section=Markup -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/makefile.xml] -author=Per Wigren (wigren@home.se) -extension=*makefile*;*Makefile* -hidden=false -lastModified=1153556196 -license= -mimetype=text/x-makefile -name=Makefile -priority= -section=Other -version=1.08 - -[Cache /usr/share/apps/katepart/syntax/mason.xml] -author= -extension=*.html; -hidden=false -lastModified=1126340795 -license= -mimetype= -name=Mason -priority= -section=Scripts -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/matlab.xml] -author= -extension=*.m;*.M -hidden=false -lastModified=1126340795 -license= -mimetype=text/mfile -name=Matlab -priority= -section=Scientific -version=1.20 - -[Cache /usr/share/apps/katepart/syntax/mediawiki.xml] -author= -extension= -hidden=false -lastModified=1126340795 -license=FDL -mimetype= -name=Wikimedia -priority= -section=Markup -version=1.00 - -[Cache /usr/share/apps/katepart/syntax/mips.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.s; -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-mips -name=MIPS Assembler -priority=-1 -section=Assembler -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/modula-2.xml] -author= -extension=*.mod;*.def;*.mi;*.md -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-modula-2 -name=Modula-2 -priority= -section=Sources -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/mup.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension=*.mup;*.not -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-mup;audio/x-mup;application/x-mup;audio/x-notes -name=Music Publisher -priority= -section=Other -version=1.06 - -[Cache /usr/share/apps/katepart/syntax/nasm.xml] -author=Nicola Gigante (nicola.gigante@gmail.com) -extension=*.asm -hidden=false -lastModified=1137690383 -license=GPL -mimetype= -name=Intel x86 (NASM) -priority= -section=Assembler -version=1.20 - -[Cache /usr/share/apps/katepart/syntax/objectivec.xml] -author= -extension=*.m;*.h -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-objc-src;text/x-c-hdr -name=Objective-C -priority= -section=Sources -version=1.07 - -[Cache /usr/share/apps/katepart/syntax/ocaml.xml] -author=Glyn Webster (glyn@wave.co.nz) -extension=*.ml;*.mli -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=Objective Caml -priority=10 -section=Sources -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/octave.xml] -author=Luis Silvestre and Federico Zenith -extension=*.octave;*.m;*.M -hidden=false -lastModified=1126340795 -license=GPL -mimetype=text/octave -name=Octave -priority= -section=Scientific -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/pascal.xml] -author= -extension=*.pp;*.pas;*.p -hidden=false -lastModified=1142590745 -license= -mimetype=text/x-pascal -name=Pascal -priority= -section=Sources -version=1.20 - -[Cache /usr/share/apps/katepart/syntax/perl.xml] -author=Anders Lund (anders@alweb.dk) -extension=*.pl;*.pm -hidden=false -lastModified=1131489530 -license=LGPL -mimetype=application/x-perl;text/x-perl -name=Perl -priority= -section=Scripts -version=1.20 - -[Cache /usr/share/apps/katepart/syntax/php.xml] -author= -extension= -hidden=true -lastModified=1159724006 -license= -mimetype= -name=PHP/PHP -priority=5 -section=Scripts -version=1.27 - -[Cache /usr/share/apps/katepart/syntax/picsrc.xml] -author=Alain GIBAUD (alain.gibaud@univ-valenciennes.fr) -extension=*.src;*.SRC;*.asm;*.ASM;*.pic;*.PIC -hidden=false -lastModified=1137690383 -license=LGPL -mimetype=text/x-PicSrc;text/x-PicHdr -name=PicAsm -priority= -section=Assembler -version=1.07 - -[Cache /usr/share/apps/katepart/syntax/pike.xml] -author=Paul Pogonyshev -extension=*.pike -hidden=false -lastModified=1126340795 -license= -mimetype=application/x-pike;text/x-pike -name=Pike -priority= -section=Scripts -version=1.07 - -[Cache /usr/share/apps/katepart/syntax/postscript.xml] -author= -extension=*.ps;*.ai;*.eps -hidden=false -lastModified=1126340795 -license= -mimetype=application/postscript -name=PostScript -priority= -section=Markup -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/povray.xml] -author= -extension=*.inc;*.pov -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-povray-script;text/x-povray-include -name=POV-Ray -priority=2 -section=Other -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/progress.xml] -author=Rares Stanciulescu (rstanciu@operamail.com) -extension=*.p;*.w;*.i;*.cls -hidden=false -lastModified=1148321648 -license=GPL -mimetype= -name=progress -priority= -section=Database -version=1.09 - -[Cache /usr/share/apps/katepart/syntax/prolog.xml] -author= -extension=*.prolog -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-prolog -name=Prolog -priority= -section=Sources -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/purebasic.xml] -author=Sven Langenkamp (ace@kylixforum.de) -extension=*.pb -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/x-purebasic -name=PureBasic -priority= -section=Sources -version=3.91 - -[Cache /usr/share/apps/katepart/syntax/python-kig.xml] -author= -extension=*.py;*.pyw -hidden=false -lastModified=1126340238 -license= -mimetype=application/x-python;text/x-python -name=Python-Kig -priority= -section=Scripts -version=1.2.1 - -[Cache /usr/share/apps/katepart/syntax/python.xml] -author=Per Wigren -extension=*.py;*.pyw;SConstruct;SConscript -hidden=false -lastModified=1126340795 -license= -mimetype=application/x-python;text/x-python -name=Python -priority= -section=Scripts -version=1.24 - -[Cache /usr/share/apps/katepart/syntax/r.xml] -author= -extension=*.R;*.r;*.S;*.s;*.q -hidden=false -lastModified=1159724006 -license=GPL -mimetype= -name=R Script -priority= -section=Scripts -version=2.00 - -[Cache /usr/share/apps/katepart/syntax/rexx.xml] -author= -extension=*.rex -hidden=false -lastModified=1126340795 -license= -mimetype= -name=REXX -priority= -section=Scripts -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/rhtml.xml] -author=Richard Dale rdale@foton.es -extension=*.rhtml -hidden=false -lastModified=1142590745 -license=LGPL -mimetype= -name=Ruby/Rails/RHTML -priority= -section=Markup -version=1.00 - -[Cache /usr/share/apps/katepart/syntax/rib.xml] -author=David Williams <david@david-williams.info> -extension=*.rib -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=RenderMan RIB -priority= -section=Other -version=1.00 - -[Cache /usr/share/apps/katepart/syntax/rpmspec.xml] -author= -extension=*.spec -hidden=false -lastModified=1128956727 -license= -mimetype= -name=RPM Spec -priority= -section=Other -version=1.1 - -[Cache /usr/share/apps/katepart/syntax/rsiidl.xml] -author=Markus Fraenz (fraenz@linmpi.mpg.de) -extension=*.pro -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-rsiidl-src -name=RSI IDL -priority= -section=Sources -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/ruby.xml] -author=Stefan Lang (langstefan@gmx.at), Sebastian Vuorinen (sebastian.vuorinen@helsinki.fi) -extension=*.rb;*.rjs;*.rxml -hidden=false -lastModified=1148321648 -license=LGPL -mimetype=application/x-ruby -name=Ruby -priority= -section=Scripts -version=1.17 - -[Cache /usr/share/apps/katepart/syntax/sather.xml] -author= -extension=*.sa -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-sather-src -name=Sather -priority= -section=Sources -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/scheme.xml] -author=Dominik Haumann (dhdev@gmx.de) -extension=*.scm;*.ss;*.scheme;*.guile -hidden=false -lastModified=1148321648 -license=LGPL -mimetype=text/x-scheme -name=Scheme -priority= -section=Scripts -version=1.12 - -[Cache /usr/share/apps/katepart/syntax/sci.xml] -author= -extension=*.sci;*.sce -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-sci -name=scilab -priority= -section=Scientific -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/sgml.xml] -author= -extension=*.sgml -hidden=false -lastModified=1126340795 -license= -mimetype=text/sgml -name=SGML -priority= -section=Markup -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/sieve.xml] -author=Petter E. Stokke -extension=*.siv -hidden=false -lastModified=1126340795 -license= -mimetype=application/sieve -name=Sieve -priority=5 -section=Scripts -version=1.05 - -[Cache /usr/share/apps/katepart/syntax/sml.xml] -author=Christoph Cullmann (cullmann@kde.org) -extension=*.sml;*.ml -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=SML -priority= -section=Sources -version=1.06 - -[Cache /usr/share/apps/katepart/syntax/spice.xml] -author=Steven Robson (s.a.robson@sms.ed.ac.uk) and Anders Lund -extension=*.sp;*.hsp -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/spice -name=Spice -priority= -section=Hardware -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/sql-mysql.xml] -author=Shane Wright (me@shanewright.co.uk) -extension=*.sql;*.SQL -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-sql -name=SQL (MySQL) -priority= -section=Database -version=1.08 - -[Cache /usr/share/apps/katepart/syntax/sql-postgresql.xml] -author=Shane Wright (me@shanewright.co.uk) -extension=*.sql;*.SQL -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-sql -name=SQL (PostgreSQL) -priority= -section=Database -version=1.08 - -[Cache /usr/share/apps/katepart/syntax/sql.xml] -author=Yury Lebedev (yurylebedev@mail.ru) -extension=*.sql;*.SQL -hidden=false -lastModified=1131489530 -license=LGPL -mimetype=text/x-sql -name=SQL -priority= -section=Database -version=1.12 - -[Cache /usr/share/apps/katepart/syntax/stata.xml] -author=Edwin Leuven (e.leuven@uva.nl) -extension=*.ado;*.do -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=Stata -priority= -section=Sources -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/tcl.xml] -author= -extension=*.tcl;*.tk -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-tcl -name=Tcl/Tk -priority= -section=Scripts -version=1.08 - -[Cache /usr/share/apps/katepart/syntax/tibasic.xml] -author= -extension= -hidden=false -lastModified=1126340795 -license= -mimetype= -name=TI Basic -priority= -section=Scientific -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/txt2tags.xml] -author= -extension=*.t2t -hidden=false -lastModified=1126340795 -license= -mimetype=text/txt2tags -name=txt2tags -priority= -section=Markup -version=1.01 - -[Cache /usr/share/apps/katepart/syntax/uscript.xml] -author= -extension=*.uc -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-uscript -name=UnrealScript -priority= -section=Scripts -version=0.91 - -[Cache /usr/share/apps/katepart/syntax/velocity.xml] -author=John Christopher (John@animalsinneed.net) -extension=*.vm; -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-velocity-src;text/x-vm-src -name=Velocity -priority= -section=Scripts -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/verilog.xml] -author=Yevgen Voronenko (ysv22@drexel.edu) -extension=*.v;*.V;*.vl -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-verilog-src -name=Verilog -priority= -section=Hardware -version=1.07 - -[Cache /usr/share/apps/katepart/syntax/vhdl.xml] -author= -extension=*.vhdl;*.vhd -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-vhdl -name=VHDL -priority= -section=Hardware -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/vrml.xml] -author=Volker Krause (volker.krause@rwth-aachen.de) -extension=*.wrl -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=model/vrml -name=VRML -priority= -section=Markup -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/winehq.xml] -author= -extension=*.reg -hidden=false -lastModified=1126340795 -license= -mimetype= -name=WINE Config -priority= -section=Configuration -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/xharbour.xml] -author=Giancarlo Niccolai (giancarlo@niccolai.ws) -extension=*.prg;*.PRG;*.ch -hidden=false -lastModified=1126340795 -license=GPL -mimetype=text/x-xharbour-src -name=xHarbour -priority=5 -section=Sources -version=1.04 - -[Cache /usr/share/apps/katepart/syntax/xml.xml] -author=Wilbert Berendsen (wilbert@kde.nl) -extension=*.docbook;*.xml;*.rc;*.daml;*.rdf -hidden=false -lastModified=1126340795 -license=LGPL -mimetype=text/xml;text/book;text/daml;text/rdf -name=XML -priority= -section=Markup -version=1.96 - -[Cache /usr/share/apps/katepart/syntax/xmldebug.xml] -author= -extension= -hidden=false -lastModified=1126340795 -license= -mimetype= -name=XML (Debug) -priority= -section=Markup -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/xslt.xml] -author=Peter Lammich (views@gmx.de) -extension=*.xsl;*.xslt -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=xslt -priority= -section=Markup -version=1.03 - -[Cache /usr/share/apps/katepart/syntax/yacas.xml] -author= -extension=*.ys -hidden=false -lastModified=1126340795 -license= -mimetype=text/x-yacassrc -name=yacas -priority= -section=Sources -version=1.02 - -[Cache /usr/share/apps/katepart/syntax/yacc.xml] -author=Jan Villat (jan.villat@net2000.ch) -extension=*.y -hidden=false -lastModified=1126340795 -license=LGPL -mimetype= -name=Yacc/Bison -priority= -section=Sources -version=1.03 - -[Default Item Styles - Schema kdevelop - Normal] -Alert=ff000000,ffffcccc,1,,,,ffffcccc,-,--- -Base-N Integer=ff008080,ff00ffff,,,,,-,-,--- -Character=ffff00ff,ffff00ff,,,,,-,-,--- -Comment=ff808080,ffa0a0a4,,1,,,-,-,--- -Data Type=ff800000,ffffffff,,,,,-,-,--- -Decimal/Value=ff0000ff,ff00ffff,,,,,-,-,--- -Error=ffff0000,ffff0000,,,,1,-,-,--- -Floating Point=ff800080,ff00ffff,,,,,-,-,--- -Function=ff000080,ffffffff,,,,,-,-,--- -Keyword=ff000000,ffffffff,1,,,,-,-,--- -Normal=ff000000,ffffffff,,,,,-,-,--- -Others=ff008000,ff00ff00,,,,,-,-,--- -Region Marker=ffffffff,ffa0a0a4,,,,,ffa0a0a4,-,--- -String=ffdd0000,ffff0000,,,,,-,-,--- - -[General] -CachedVersion=14 - -[Highlighting C - Schema kdevelop - Normal] -Alerts:Alert=10,,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,--- -C:Alert=10,,,,,,,,,--- -C:Char=6,,,,,,,,,--- -C:Comment=8,,,,,,,,,--- -C:Data Type=2,,,,,,,,,--- -C:Decimal=3,,,,,,,,,--- -C:Float=5,,,,,,,,,--- -C:Hex=4,,,,,,,,,--- -C:Keyword=1,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,--- -C:Octal=4,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,--- -C:String=7,,,,,,,,,--- -C:String Char=6,,,,,,,,,--- -C:Symbol=0,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,ffffffff,,1,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,ffffffff,1,0,,,,,--- -Doxygen:Identifier=9,,,,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,ffffffff,1,0,,,,,--- -Doxygen:Types=2,,,,,,,,,--- -Doxygen:Word=1,ff0095ff,ffffffff,1,0,,,,,--- diff --git a/mop/template/.kde/share/config/kaudiocreatorrc b/mop/template/.kde/share/config/kaudiocreatorrc deleted file mode 100644 index 8c7166a..0000000 --- a/mop/template/.kde/share/config/kaudiocreatorrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kaudiocreator-meta.upd:3,kaudiocreator-libkcddb.upd:kaudiocreator-libkcddb diff --git a/mop/template/.kde/share/config/kcalcrc b/mop/template/.kde/share/config/kcalcrc index 1ac7426..e21e6be 100644 --- a/mop/template/.kde/share/config/kcalcrc +++ b/mop/template/.kde/share/config/kcalcrc @@ -1,2 +1,2 @@ [$Version] -update_info=kcalcrc.upd:KDE_3_2_0 +update_info=kcalcrc.upd:KDE_3_2_0,kcalcrc.upd:KDE_4_3_0 diff --git a/mop/template/.kde/share/config/kcharselectrc b/mop/template/.kde/share/config/kcharselectrc deleted file mode 100644 index eb50eef..0000000 --- a/mop/template/.kde/share/config/kcharselectrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kcharselect.upd:1 diff --git a/mop/template/.kde/share/config/kcmartsrc b/mop/template/.kde/share/config/kcmartsrc deleted file mode 100644 index f2fee85..0000000 --- a/mop/template/.kde/share/config/kcmartsrc +++ /dev/null @@ -1,14 +0,0 @@ -[Arts] -AddOptions= -Arguments=\s-F 10 -S 4096 -s 60 -m artsmessage -c drkonqi -l 3 -f -AudioIO= -AutoSuspend=true -Bits=0 -DeviceName= -FullDuplex=false -Latency=250 -NetworkTransparent=false -SamplingRate=0 -StartRealtime=true -StartServer=false -SuspendTime=60 diff --git a/mop/template/.kde/share/config/kcmaudiocdrc b/mop/template/.kde/share/config/kcmaudiocdrc deleted file mode 100644 index f2ef597..0000000 --- a/mop/template/.kde/share/config/kcmaudiocdrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=audiocd.upd:1 diff --git a/mop/template/.kde/share/config/kcmcddbrc b/mop/template/.kde/share/config/kcmcddbrc deleted file mode 100644 index 02819bf..0000000 --- a/mop/template/.kde/share/config/kcmcddbrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kcmcddb-emailsettings.upd:kcmcddb_emailsettings,kaudiocreator-libkcddb.upd:kaudiocreator-libkcddb diff --git a/mop/template/.kde/share/config/kcmdisplayrc b/mop/template/.kde/share/config/kcmdisplayrc index e583a39..f25d47c 100644 --- a/mop/template/.kde/share/config/kcmdisplayrc +++ b/mop/template/.kde/share/config/kcmdisplayrc @@ -1,8 +1,2 @@ [$Version] update_info=kcmdisplayrc.upd:kde3 - -[DisplayEnergy] -displayEnergySaving=false -displayPowerOff=60 -displayStandby=0 -displaySuspend=30 diff --git a/mop/template/.kde/share/config/kcminputrc b/mop/template/.kde/share/config/kcminputrc index e366c2b..8b52039 100644 --- a/mop/template/.kde/share/config/kcminputrc +++ b/mop/template/.kde/share/config/kcminputrc @@ -1,2 +1,5 @@ [$Version] update_info=mouse_cursor_theme.upd:kde3.4.99 + +[Mouse] +cursorTheme= diff --git a/mop/template/.kde/share/config/kcmmidirc b/mop/template/.kde/share/config/kcmmidirc deleted file mode 100644 index fabe1a2..0000000 --- a/mop/template/.kde/share/config/kcmmidirc +++ /dev/null @@ -1,4 +0,0 @@ -[Configuration] -mapFilename= -midiDevice=0 -useMidiMapper=false diff --git a/mop/template/.kde/share/config/kcmnspluginrc b/mop/template/.kde/share/config/kcmnspluginrc deleted file mode 100644 index c0d000d..0000000 --- a/mop/template/.kde/share/config/kcmnspluginrc +++ /dev/null @@ -1,3 +0,0 @@ -[Misc] -firstTime=false -scanPaths=$HOME/.mozilla/plugins,$HOME/.netscape/plugins,/usr/lib/iceweasel/plugins,/usr/lib/iceape/plugins,/usr/lib/firefox/plugins,/usr/lib64/browser-plugins,/usr/lib/browser-plugins,/usr/local/netscape/plugins,/opt/mozilla/plugins,/opt/mozilla/lib/plugins,/opt/netscape/plugins,/opt/netscape/communicator/plugins,/usr/lib/netscape/plugins,/usr/lib/netscape/plugins-libc5,/usr/lib/netscape/plugins-libc6,/usr/lib/mozilla/plugins,/usr/lib64/netscape/plugins,/usr/lib64/mozilla/plugins,$MOZILLA_HOME/plugins diff --git a/mop/template/.kde/share/config/kconf_updaterc b/mop/template/.kde/share/config/kconf_updaterc index ebacd80..1a75029 100644 --- a/mop/template/.kde/share/config/kconf_updaterc +++ b/mop/template/.kde/share/config/kconf_updaterc @@ -1,266 +1,254 @@ updateInfoAdded=true -[audiocd.upd] -ctime=1181233044 -done=1 -mtime=1126340389 - -[cervisia.upd] -ctime=1181233033 -done=kde3.2/20021228,kde3.2/20021229,kde3.2/20030116,kde3.2/20030117,kde3.2/20030205,kde3.2/20030210,kde3.2/20030211,kde3.2/20030212,kde3.2/20030216,kde3.2/20030725,kde3.2/20030730,kde3.2/20030829,kde3.2/20031014,kde3.4/20041112,kde3.4/20041207 -mtime=1126340470 +[devicepreference.upd] +ctime=1363795337 +done=DevicesMovedToPlatformPlugin,DevicesUIDsChanged +mtime=1311791776 [favicons.upd] -ctime=1181233046 +ctime=1363795337 done=kde3_2 -mtime=1126340753 +mtime=1311791799 [kaccel.upd] -ctime=1181233047 +ctime=1363795337 done=kde3.3/r1 -mtime=1126340712 +mtime=1338556844 [kate-2.4.upd] -ctime=1181233043 +ctime=1363795337 done=kate2.4 -mtime=1126340698 - -[kaudiocreator-libkcddb.upd] -ctime=1181233045 -done=kaudiocreator-libkcddb -mtime=1126340405 - -[kaudiocreator-meta.upd] -ctime=1181233045 -done=3 -mtime=1126340405 +mtime=1311792008 [kcalcrc.upd] -ctime=1181233046 -done=KDE_3_2_0 -mtime=1126340494 - -[kcharselect.upd] -ctime=1181233046 -done=1 -mtime=1126340487 - -[kcmcddb-emailsettings.upd] -ctime=1181233044 -done=kcmcddb_emailsettings -mtime=1126340370 +ctime=1363795337 +done=KDE_3_2_0,KDE_4_3_0 +mtime=1314019566 [kcmdisplayrc.upd] -ctime=1181233047 +ctime=1363795337 done=kde3 -mtime=1126340701 +mtime=1338556844 [kcookiescfg.upd] -ctime=1181233028 +ctime=1363795337 done=kde2.2/b1,kde3.1/cvs -mtime=1126340801 +mtime=1339015792 [kded.upd] -ctime=1181233028 +ctime=1363795337 done=kde3.0 -mtime=1126340860 - -[kdeprintrc.upd] -ctime=1181233028 -done=kde-3.1-toolbar -mtime=1126340863 +mtime=1339015792 -[kdev-gen-settings.upd] -ctime=1181297411 -done=kdev-gen-settings-update/5 -mtime=1126340508 +[kdeui.upd] +ctime=1363795337 +done=kde4/migrate_from_kde3_icon_theme +mtime=1351208941 [kfmclient_3_2.upd] -ctime=1181233052 +ctime=1363795337 done=kfmclient_3_2 -mtime=1126340748 - -[kghostview.upd] -ctime=1181233083 -done=1changeToKConfigXT,2changeToKConfigXT -mtime=1126340363 - -[khotkeys_32b1_update.upd] -ctime=1181233049 -done=kde32b1 -mtime=1126340753 - -[khotkeys_printscreen.upd] -ctime=1181233049 -done=printscreen -mtime=1153556151 - -[kickerrc.upd] -ctime=1181233048 -done=kde_3_1_sizeChanges,kde_3_4_reverseLayout,kde_3_5_taskbarEnums,kde_3_5_kconfigXTize -mtime=1126340731 +mtime=1311791798 [kio_help.upd] -ctime=1181233028 +ctime=1363795337 done=kde3_2 -mtime=1126340859 +mtime=1339015792 [kioslave.upd] -ctime=1181233028 +ctime=1363795337 done=kde2.2/r2,kde2.2/r3 -mtime=1126340809 - -[klipperrc.upd] -ctime=1181233051 -done=25082001,kde3.1 -mtime=1126340726 +mtime=1339015792 -[klippershortcuts.upd] -ctime=1181233051 -done=04112002 -mtime=1126340726 +[klipper-kconfigxt.upd] +ctime=1363795337 +done=KlipperNoSpacesInKeyNames +mtime=1338556844 [kmail.upd] -ctime=1181233095 -done=1,4,5,6,7,8,9,3.1-update-identities,3.1-use-identity-uoids,3.1-new-mail-notification,3.2-update-loop-on-goto-unread-settings,3.1.4-dont-use-UOID-0-for-any-identity,3.2-misc,3.2-moves,3.3-use-ID-for-accounts,3.3-move-identities-to-own-file,3.3-aegypten-kpgprc-to-kmailrc,3.3-aegypten-kpgprc-to-libkleopatrarc,3.3-aegypten-emailidentities-split-sign-encr-keys,3.3-misc,3.3b1-misc,3.4,3.4a,3.4b,3.4.1,3.5-filter-icons,3.5.4 -mtime=1169227285 - -[knewsticker.upd] -ctime=1181233089 -done=KNewsTicker-0.2,KNewsTicker-0.2-Rename-KDE3,KNewsTicker-0.2-Rename-KDE3.1 -mtime=1126340430 - -[konqsidebartng.upd] -ctime=1181233052 -done=konqsidebartng_rc,konqsidebartng_entries -mtime=1126340747 - -[konqueror_gestures_kde321_update.upd] -ctime=1181233049 -done=kde321 -mtime=1126340753 - -[konsole.upd] -ctime=1181233052 -done=kde2.2/r1,kde3.0/r1 -mtime=1126340768 +ctime=1363795337 +done=1,4,5,6,7,8,9,3.1-update-identities,3.1-use-identity-uoids,3.1-new-mail-notification,3.2-update-loop-on-goto-unread-settings,3.1.4-dont-use-UOID-0-for-any-identity,3.2-misc,3.2-moves,3.3-use-ID-for-accounts,3.3-update-filter-rules,3.3-move-identities-to-own-file,3.3-aegypten-kpgprc-to-kmailrc,3.3-aegypten-kpgprc-to-libkleopatrarc,3.3-aegypten-emailidentities-split-sign-encr-keys,3.3-misc,3.3b1-misc,3.4,3.4a,3.4b,3.4.1,3.5.4,3.5.7-imap-flag-migration,4.0-misc,4.2 +mtime=1303329811 [kopete-account-kconf_update.upd] -ctime=1181233090 +ctime=1363795337 done=kopete0.7/r1,kopete0.10/r1 -mtime=1126340425 +mtime=1311791165 + +[kopete-gaim_to_pidgin_style.upd] +ctime=1363795337 +done=kopete0.70.85/r1 +mtime=1311791165 + +[kopete-initialstatus.upd] +ctime=1363795337 +done=kopete0.60.80/r1 +mtime=1311791165 [kopete-jabberpriorityaddition-kconf_update.upd] -ctime=1181233090 +ctime=1363795337 done=kopete0.9/r1 -mtime=1126340425 +mtime=1311791165 [kopete-jabberproxytype-kconf_update.upd] -ctime=1181233090 +ctime=1363795337 done=kopete0.9/r1 -mtime=1126340425 +mtime=1311791165 [kopete-nameTracking.upd] -ctime=1181233090 -done=kopete0.9/r1 -mtime=1126340425 +ctime=1363795337 +mtime=1311791165 [kopete-pluginloader.upd] -ctime=1181233090 +ctime=1363795337 done=kopete0.7/r1 -mtime=1126340425 +mtime=1311791165 [kopete-pluginloader2.upd] -ctime=1181233090 +ctime=1363795337 done=kopete0.8/r1 -mtime=1126340425 +mtime=1311791165 -[korganizer.upd] -ctime=1181233098 -done=korganizer_3.4_GroupwareCleanup,korganizer_3.4_WebExport,korganizer_3.4_FilterAction,korganizer_3.4_HolidayPlugin -mtime=1126340687 +[kopete-update_icq_server.upd] +ctime=1363795337 +done=kopete-update-icq-server/r1 +mtime=1311791165 -[korn-3-4-config_change.upd] -ctime=1181233098 -done=korn_kde_3_4_config_change -mtime=1126340654 +[kopete-update_yahoo_server.upd] +ctime=1363795337 +done=kopete-update-yahoo-server/r1 +mtime=1311791165 -[korn-3-5-update.upd] -ctime=1181233098 -done=korn-3-5-ssl-update,korn-3-5-metadata-update -mtime=1126340654 +[korganizer.upd] +ctime=1363795337 +done=korganizer_3.4_GroupwareCleanup,korganizer_3.4_WebExport,korganizer_3.4_FilterAction,korganizer_3.4_HolidayPlugin,korganizer_4.3_ShowTodos,korganizer_4.4_MoveFreeBusy +mtime=1303329811 [kpgp.upd] -ctime=1181233041 +ctime=1363795337 done=preKDE3_a,3.1-1 -mtime=1126340631 +mtime=1303329811 -[kpilot.upd] -ctime=1181233098 -done=kdepim_3.3 -mtime=1126340679 +[krdb_libpathwipe.upd] +ctime=1363795337 +done=LibraryPathWipeOut +mtime=1338556844 [ksmserver.upd] -ctime=1181233053 +ctime=1363795337 done=kde3 -mtime=1126340697 +mtime=1338556844 + +[ksmserver_shortcuts.upd] +ctime=1363795337 +done=kde45 +mtime=1338556844 + +[ksslcertificatemanager.upd] +ctime=1363795337 +done=kde4.2 +mtime=1339015792 [kuriikwsfilter.upd] -ctime=1181233047 +ctime=1363795337 done=post-kde3.1/cvs -mtime=1126340707 +mtime=1311791776 [kwin.upd] -ctime=1181233053 +ctime=1363795337 done=kde3.0r1,kde3.2Xinerama -mtime=1126340762 +mtime=1338556845 [kwin3_plugin.upd] -ctime=1181233053 +ctime=1363795337 done=kde3.2 -mtime=1126340762 +mtime=1338556845 [kwin_focus1.upd] -ctime=1181233053 +ctime=1363795337 done=kwin_focus1 -mtime=1126340762 +mtime=1338556845 [kwin_focus2.upd] -ctime=1181233053 +ctime=1363795337 done=kwin_focus2 -mtime=1126340762 +mtime=1338556845 [kwin_fsp_workarounds_1.upd] -ctime=1181233053 +ctime=1363795337 done=kde351 -mtime=1142590662 +mtime=1338556844 + +[kwin_on_off.upd] +ctime=1363795337 +done=kwin_on_off +mtime=1338556845 + +[kwin_remove_delay_focus.upd] +ctime=1363795337 +done=Kwin-4.8 +mtime=1338556844 + +[kwin_remove_effects.upd] +ctime=1363795337 +done=kwin4.7_effects +mtime=1338556844 + +[kwin_update_tabbox_qml_settings.upd] +ctime=1363795337 +done=Kwin-4.8 +mtime=1338556844 + +[kwin_update_tabbox_settings.upd] +ctime=1363795337 +done=Kwin-4.4 +mtime=1338556844 + +[kwin_window_shortcuts.upd] +ctime=1363795337 +done=kde414 +mtime=1338556845 [kwiniconify.upd] -ctime=1181233053 +ctime=1363795337 done=iconifyupd3.1 -mtime=1126340762 +mtime=1338556845 [kwinsticky.upd] -ctime=1181233053 +ctime=1363795337 done=stickyupd3.1 -mtime=1126340762 +mtime=1338556845 [kwinupdatewindowsettings.upd] -ctime=1181233053 +ctime=1363795337 done=kde33b1 -mtime=1126340762 +mtime=1338556845 + +[mailtransports.upd] +ctime=1363795337 +done=initial-kmail-migration,initial-knode-migration +mtime=1311791696 [mouse_cursor_theme.upd] -ctime=1181233047 +ctime=1363795337 done=kde3.4.99 -mtime=1126340707 - -[noatun.upd] -ctime=1181233075 -done=noatun20 -mtime=1126340382 - -[socks.upd] -ctime=1181233047 -done=kde3.0/r1 -mtime=1126340710 +mtime=1338556844 + +[nepomukstrigiservice-migrate.upd] +ctime=1363795337 +done=nepomukstrigiservice-migrate +mtime=1330556167 + +[plasma-add-shortcut-to-menu.upd] +ctime=1363795337 +mtime=1338556844 + +[plasma-to-plasmadesktop-shortcuts.upd] +ctime=1363795337 +done=4.3plasma-desktop-shortcuts +mtime=1338556844 + +[plasmarc-to-plasmadesktoprc.upd] +ctime=1363795337 +done=4.3plasma-desktop +mtime=1338556844 diff --git a/mop/template/.kde/share/config/kcontrolrc b/mop/template/.kde/share/config/kcontrolrc deleted file mode 100644 index d9a9662..0000000 --- a/mop/template/.kde/share/config/kcontrolrc +++ /dev/null @@ -1,12 +0,0 @@ -[General] -InitialHeight 1024=948 -InitialWidth 1280=1272 -ShowAlternativeShortcutConfig=true -SplitterSizes=222,1044 - -[HTML Settings] -AutomaticDetectionLanguage=0 - -[Index] -IconSize=Medium -ViewMode=Tree diff --git a/mop/template/.kde/share/config/kdebugrc b/mop/template/.kde/share/config/kdebugrc new file mode 100644 index 0000000..a7b7106 --- /dev/null +++ b/mop/template/.kde/share/config/kdebugrc @@ -0,0 +1,65 @@ +[KSharedDataCache] +InfoOutput=4 + +[Oxygen ( style )] +InfoOutput=2 + +[Oxygen (decoration)] +InfoOutput=2 + +[Polkit1AuthAgent] +InfoOutput=4 + +[kactivitymanagerd] +InfoOutput=4 + +[kbuildsycoca4] +InfoOutput=4 + +[kdecore (KConfigSkeleton)] +InfoOutput=2 + +[kdecore (KPluginInfo)] +InfoOutput=2 + +[kdecore (services)] +InfoOutput=2 + +[kded] +InfoOutput=4 + +[kdostartupconfig4] +InfoOutput=4 + +[kglobalaccel] +InfoOutput=4 + +[kio (delegateanimationhandler)] +InfoOutput=4 + +[kio_trash] +InfoOutput=4 + +[knotify] +InfoOutput=4 + +[krunner] +InfoOutput=4 + +[kwin] +InfoOutput=2 + +[nepomukbackupsync] +InfoOutput=4 + +[nepomukstorage] +InfoOutput=4 + +[plasma-desktop] +InfoOutput=4 + +[systemsettings] +InfoOutput=4 + +[unnamed app] +InfoOutput=4 diff --git a/mop/template/.kde/share/config/kded_device_automounterrc b/mop/template/.kde/share/config/kded_device_automounterrc new file mode 100644 index 0000000..c980841 --- /dev/null +++ b/mop/template/.kde/share/config/kded_device_automounterrc @@ -0,0 +1,15 @@ +[Devices][/org/freedesktop/UDisks/devices/sda1] +Icon=drive-harddisk +LastNameSeen=system +LastSeenMounted=false + +[Devices][/org/freedesktop/UDisks/devices/sda2] +Icon=drive-harddisk +LastNameSeen=Windows +LastSeenMounted=false + +[Devices][/org/freedesktop/UDisks/devices/sda3] +EverMounted=true +Icon=drive-harddisk +LastNameSeen=97.7 GiB Hard Drive +LastSeenMounted=true diff --git a/mop/template/.kde/share/config/kdeglobals b/mop/template/.kde/share/config/kdeglobals index b7cf1b9..981cd8c 100644 --- a/mop/template/.kde/share/config/kdeglobals +++ b/mop/template/.kde/share/config/kdeglobals @@ -1,296 +1,22 @@ [$Version] -update_info=klippershortcuts.upd:04112002,socks.upd:kde3.0/r1,kwin.upd:kde3.2Xinerama,kded.upd:kde3.0,kaccel.upd:kde3.3/r1,mouse_cursor_theme.upd:kde3.4.99 - -[DesktopIcons] -ActiveColor=invalid -ActiveColor2=invalid -ActiveEffect=togamma -ActiveSemiTransparent=false -ActiveValue=0.7 -Animated=true -DefaultColor=144,128,248 -DefaultColor2=0,0,0 -DefaultEffect=none -DefaultSemiTransparent=false -DefaultValue=1 -DisabledColor=34,202,0 -DisabledColor2=0,0,0 -DisabledEffect=togray -DisabledSemiTransparent=true -DisabledValue=1 -DoublePixels=false -Size=48 - -[DirSelect Dialog] -DirSelectDialog Size=400,450 -History Items=file://$HOME/t +update_info=kded.upd:kde3.0,kdeui.upd:kde4/migrate_from_kde3_icon_theme,kaccel.upd:kde3.3/r1,mouse_cursor_theme.upd:kde3.4.99,kwin.upd:kde3.2Xinerama [General] -TerminalApplication=konsole -XftHintStyle=hintfull -background=239,239,239 -buttonBackground=221,223,228 -buttonForeground=0,0,0 -foreground=0,0,0 -linkColor=0,0,238 -selectBackground=103,141,178 -selectForeground=255,255,255 -visitedLinkColor=82,24,139 -widgetStyle=Plastik -windowBackground=255,255,255 -windowForeground=0,0,0 - -[Global Shortcuts] -Activate Window Demanding Attention=none -Block Global Shortcuts=none -Defaults timestamp=Feb 6 200720:30:30 -Desktop Screenshot=none -Enable/Disable Clipboard Actions=default(Alt+Ctrl+X) -Halt without Confirmation=none -Kill Window=Ctrl+Shift+Escape -Lock Session=default(Alt+Ctrl+L) -Log Out=none -Log Out Without Confirmation=none -Manually Invoke Action on Current Clipboard=default(Alt+Ctrl+R) -Mouse Emulation=Ctrl+Shift+F12 -Next Taskbar Entry=none -Popup Launch Menu=none -Previous Taskbar Entry=none -Reboot without Confirmation=none -Run Command=none -Setup Window Shortcut=none -Show Klipper Popup-Menu=default(Alt+Ctrl+V) -Show Taskmanager=default(Ctrl+Escape) -Show Window List=none -Switch One Desktop Down=Alt+Down;Ctrl+Down -Switch One Desktop Up=Alt+Up;Ctrl+Up -Switch One Desktop to the Left=Alt+Left;Ctrl+Left -Switch One Desktop to the Right=Alt+Right;Ctrl+Right -Switch User=none -Switch to Desktop 1=Alt+F1 -Switch to Desktop 10=Alt+F10 -Switch to Desktop 11=Alt+F11 -Switch to Desktop 12=Alt+F12 -Switch to Desktop 13=none -Switch to Desktop 14=none -Switch to Desktop 15=none -Switch to Desktop 16=none -Switch to Desktop 17=none -Switch to Desktop 18=none -Switch to Desktop 19=none -Switch to Desktop 2=Alt+F2 -Switch to Desktop 20=none -Switch to Desktop 3=Alt+F3 -Switch to Desktop 4=Alt+F4 -Switch to Desktop 5=Alt+F5 -Switch to Desktop 6=Alt+F6 -Switch to Desktop 7=Alt+F7 -Switch to Desktop 8=Alt+F8 -Switch to Desktop 9=Alt+F9 -Switch to Next Desktop=none -Switch to Next Keyboard Layout=default(Alt+Ctrl+K) -Switch to Previous Desktop=none -Toggle Showing Desktop=none -Toggle Window Raise/Lower=none -Walk Through Desktop List=none -Walk Through Desktop List (Reverse)=none -Walk Through Desktops=none -Walk Through Desktops (Reverse)=none -Walk Through Windows=default(Alt+Tab) -Walk Through Windows (Reverse)=default(Alt+Shift+Tab) -Window Above Other Windows=none -Window Below Other Windows=none -Window Close=none -Window Fullscreen=none -Window Grow Horizontal=none -Window Grow Vertical=none -Window Lower=none -Window Maximize=none -Window Maximize Horizontal=none -Window Maximize Vertical=none -Window Minimize=none -Window Move=none -Window No Border=none -Window On All Desktops=none -Window One Desktop Down=Alt+Shift+Down;Ctrl+Shift+Down -Window One Desktop Up=Alt+Shift+Up;Ctrl+Shift+Up -Window One Desktop to the Left=Alt+Shift+Left;Ctrl+Shift+Left -Window One Desktop to the Right=Alt+Shift+Right;Ctrl+Shift+Right -Window Operations Menu=none -Window Pack Down=none -Window Pack Left=none -Window Pack Right=none -Window Pack Up=none -Window Raise=none -Window Resize=none -Window Screenshot=none -Window Shade=none -Window Shrink Horizontal=none -Window Shrink Vertical=none -Window to Desktop 1=Alt+Shift+F1 -Window to Desktop 10=Alt+Shift+F10 -Window to Desktop 11=Alt+Shift+F11 -Window to Desktop 12=Alt+Shift+F12 -Window to Desktop 13=none -Window to Desktop 14=none -Window to Desktop 15=none -Window to Desktop 16=none -Window to Desktop 17=none -Window to Desktop 18=none -Window to Desktop 19=none -Window to Desktop 2=Alt+Shift+F2 -Window to Desktop 20=none -Window to Desktop 3=Alt+Shift+F3 -Window to Desktop 4=Alt+Shift+F4 -Window to Desktop 5=Alt+Shift+F5 -Window to Desktop 6=Alt+Shift+F6 -Window to Desktop 7=Alt+Shift+F7 -Window to Desktop 8=Alt+Shift+F8 -Window to Desktop 9=Alt+Shift+F9 -Window to Next Desktop=none -Window to Previous Desktop=none - -[Icons] -Theme=crystalsvg +widgetStyle=oxygen [KDE] -ChangeCursor=true -EffectAnimateCombo=true -EffectFadeMenu=true -EffectFadeTooltip=true -EffectsEnabled=true -OpaqueResize=true -ShowDeleteCommand=true +ShowIconsInMenuItems=true ShowIconsOnPushButtons=true -SingleClick=true -colorScheme=<default> -contrast=7 -macStyle=false - -[KFileDialog Settings] -Automatically select filename extension=true -Height 1024=220 -LocationCombo Completionmode=5 -PathCombo Completionmode=5 -Recent URLs=/mo/kdevelop/doc/fpc/ -Separate Directories=false -Show Bookmarks=false -Show Preview=false -Show Speedbar=true -Show hidden files=false -Sort by=Name -Sort case insensitively=true -Sort directories first=true -Sort reversed=false -View Style=Simple -Width 1280=633 - -[Keyboard] -Gestures=false - -[Locale] -Country=us -Language=en_US - -[MainToolbarIcons] -ActiveColor=169,156,255 -ActiveColor2=0,0,0 -ActiveEffect=none -ActiveSemiTransparent=false -ActiveValue=1 -Animated=false -DefaultColor=144,128,248 -DefaultColor2=0,0,0 -DefaultEffect=none -DefaultSemiTransparent=false -DefaultValue=1 -DisabledColor=34,202,0 -DisabledColor2=0,0,0 -DisabledEffect=togray -DisabledSemiTransparent=true -DisabledValue=1 -DoublePixels=false -Size=22 - -[PanelIcons] -ActiveColor=invalid -ActiveColor2=invalid -ActiveEffect=togamma -ActiveSemiTransparent=false -ActiveValue=0.7 -Animated=false -DefaultColor=144,128,248 -DefaultColor2=0,0,0 -DefaultEffect=none -DefaultSemiTransparent=false -DefaultValue=1 -DisabledColor=34,202,0 -DisabledColor2=0,0,0 -DisabledEffect=togray -DisabledSemiTransparent=true -DisabledValue=1 -DoublePixels=false -Size=32 - -[Paths] -Trash=$HOME/Desktop/Trash/ - -[Shortcuts] -Back=XF86Back -BackwardWord=none -Forward=XF86Forward -ForwardWord=none -NextCompletion=none -PrevCompletion=none -Up=none -[SmallIcons] -ActiveColor=169,156,255 -ActiveColor2=0,0,0 -ActiveEffect=none -ActiveSemiTransparent=false -ActiveValue=1 -Animated=false -DefaultColor=144,128,248 -DefaultColor2=0,0,0 -DefaultEffect=none -DefaultSemiTransparent=false -DefaultValue=1 -DisabledColor=34,202,0 -DisabledColor2=0,0,0 -DisabledEffect=togray -DisabledSemiTransparent=true -DisabledValue=1 -DoublePixels=false -Size=16 +[KDE-Global GUI Settings] +GraphicEffectsLevel=0 -[ToolbarIcons] -ActiveColor=169,156,255 -ActiveColor2=0,0,0 -ActiveEffect=none -ActiveSemiTransparent=false -ActiveValue=1 -Animated=false -DefaultColor=144,128,248 -DefaultColor2=0,0,0 -DefaultEffect=none -DefaultSemiTransparent=false -DefaultValue=1 -DisabledColor=34,202,0 -DisabledColor2=0,0,0 -DisabledEffect=togray -DisabledSemiTransparent=true -DisabledValue=1 -DoublePixels=false -Size=22 +[Toolbar style] +ToolButtonStyle=TextBesideIcon +ToolButtonStyleOtherToolbars=TextBesideIcon -[WM] -activeBackground=65,142,220 -activeBlend=107,145,184 -activeForeground=255,255,255 -activeTitleBtnBg=127,158,200 -alternateBackground=237,244,249 -inactiveBackground=157,170,186 -inactiveBlend=157,170,186 -inactiveForeground=221,221,221 -inactiveTitleBtnBg=167,181,199 +[Windows] +XineramaEnabled= +XineramaMaximizeEnabled= +XineramaMovementEnabled= +XineramaPlacementEnabled= diff --git a/mop/template/.kde/share/config/kdeprintrc b/mop/template/.kde/share/config/kdeprintrc deleted file mode 100644 index 0fab52f..0000000 --- a/mop/template/.kde/share/config/kdeprintrc +++ /dev/null @@ -1,5 +0,0 @@ -[$Version] -update_info=kdeprintrc.upd:kde-3.1-toolbar - -[General] -PrintSystem=cups diff --git a/mop/template/.kde/share/config/kdesktoprc b/mop/template/.kde/share/config/kdesktoprc deleted file mode 100644 index 060cb3e..0000000 --- a/mop/template/.kde/share/config/kdesktoprc +++ /dev/null @@ -1,51 +0,0 @@ -[Desktop Icons] -Preview=cursorthumbnail,djvuthumbnail,ldifvcardthumbnail,exrthumbnail,fontthumbnail,htmlthumbnail,imagethumbnail,svgthumbnail,textthumbnail,webarchivethumbnail -ShowHidden=false - -[Desktop0] -BackgroundMode=Flat -Color1=0,48,130 -Color2=108,139,185 -MultiWallpaperMode=NoMulti -Wallpaper=KDE34.png -WallpaperMode=Scaled - -[FMSettings] -NormalTextColor=255,255,255 -ShowFileTips=true -UnderlineLinks=false - -[General] -AutoLineUpIcons=true -Enabled=true -SetVRoot=false - -[KFileDialog Settings] -Automatic Preview=true -Autoplay sounds=true -Recent Files=/mo/kdevelop/doc/fpc/fpctoc.html - -[Media] -enabled=false -exclude=media/hdd_mounted,media/floppy5_unmounted,media/cdrom_unmounted,media/floppy_unmounted,media/hdd_unmounted - -[Menubar] -ShowMenubar=false - -[Mouse Buttons] -Left= -Middle=WindowListMenu -Right=DesktopMenu -WheelSwitchesWorkspace=false - -[ScreenSaver] -Enabled=true -Lock=false -LockGrace=60000 -Saver=KRandom.desktop -Timeout=300 - -[Version] -KDEVersionMajor=3 -KDEVersionMinor=5 -KDEVersionRelease=5 diff --git a/mop/template/.kde/share/config/kdevclassviewrc b/mop/template/.kde/share/config/kdevclassviewrc deleted file mode 100644 index 6cf0c2b..0000000 --- a/mop/template/.kde/share/config/kdevclassviewrc +++ /dev/null @@ -1,2 +0,0 @@ -[General] -ViewMode=0 diff --git a/mop/template/.kde/share/config/kdevcppsupportrc b/mop/template/.kde/share/config/kdevcppsupportrc deleted file mode 100644 index 4d5491c..0000000 --- a/mop/template/.kde/share/config/kdevcppsupportrc +++ /dev/null @@ -1,14 +0,0 @@ -[Class Generator] -Defines Case=1 -File Name Case=0 -Generate Empty Documentation=true -Reformat Source=false -Show Author Name=true -Superclasss Name Case=0 - -[General] -ShowContextMenuExplosion=false -SwitchShouldMatch=true - -[PCS] -Version=6 diff --git a/mop/template/.kde/share/config/kdevdocumentationrc b/mop/template/.kde/share/config/kdevdocumentationrc deleted file mode 100644 index fb700bc..0000000 --- a/mop/template/.kde/share/config/kdevdocumentationrc +++ /dev/null @@ -1,12 +0,0 @@ -[Context Features] -Finder=true -FullTextSearch=false -GotoInfo=false -GotoMan=false -IndexLookup=true - -[htdig] -databaseDir=$HOME/.kde/share/apps/kdevdocumentation/search/ -htdigbin= -htmergebin= -htsearchbin= diff --git a/mop/template/.kde/share/config/kdeveloprc b/mop/template/.kde/share/config/kdeveloprc deleted file mode 100644 index d2adebe..0000000 --- a/mop/template/.kde/share/config/kdeveloprc +++ /dev/null @@ -1,242 +0,0 @@ -[$Version] -update_info=kdev-gen-settings.upd:kdev-gen-settings-update/5 - -[AppWizard] -FavNames= -FavTemplates= - -[Bookmarks] -Codeline=0 -Context=5 -Token=// -ToolTip=true - -[BottomToolWindow] -ViewLastWidget=Frame Stack -ViewWidth=219 - -[DToolDockPosition] -app output widget=DockBottom -bookmarks widget=DockLeft -diffWidget=DockBottom -disassembleWidget=DockRight -documentation widget=DockRight -filelist widget=DockLeft -fileselectorwidget=DockLeft -fileviewpartwidget=DockLeft -framestackWidget=DockBottom -gdbBreakpointWidget=DockBottom -gdbOutputWidget=DockBottom -grepview widget=DockBottom -konsole widget=DockBottom -make widget=DockBottom -problemReporterWidget=DockBottom -replace widget=DockBottom -snippet widget=DockRight -valgrind widget=DockBottom -variablewidget=DockLeft -viewerWidget=DockLeft - -[Diff] -Highlight=true - -[DocWordCompletion Plugin] -autopopup=false -treshold=3 - -[Documentation] -LastPage=0 -UseAssistant=false - -[Editor] -DirtyAction=nothing -EmbeddedKTextEditor=katepart - -[General Options] -CppBgParserDelay=500 -DefaultProjectsDir=$HOME/ -DesignerApp=0 -EnableCppBgParser=true -OutputViewFont=Sans Serif,10,-1,0,50,0,0,0,0,0 -Read Last Project On Startup=false - -[Global Settings Dialog] -Height=625 -Width=800 - -[HTML Settings] -AutomaticDetectionLanguage=0 - -[KHTMLPart] -FixedFont=Monospace -StandardFont=Sans Serif -Zoom=100 - -[KListViewAction] -m_functionsnav_combo=150 - -[Kate Document Defaults] -Allow End of Line Detection=true -Backup Config Flags=0 -Backup Prefix= -Backup Suffix=~ -Basic Config Flags=545816608 -Encoding= -End of Line=0 -Indentation Mode=2 -Indentation Width=4 -KTextEditor Plugin ktexteditor_docwordcompletion=true -KTextEditor Plugin ktexteditor_insertfile=false -KTextEditor Plugin ktexteditor_isearch=false -KTextEditor Plugin ktexteditor_kdatatool=false -Maximal Loaded Blocks=16 -PageUp/PageDown Moves Cursor=false -Search Dir Config Depth=3 -Tab Width=4 -Undo Steps=0 -Word Wrap=false -Word Wrap Column=80 - -[Kate Renderer Defaults] -Schema=kdevelop - Normal -Show Indentation Lines=false -Word Wrap Marker=false - -[Kate View Defaults] -Auto Center Lines=0 -Bookmark Menu Sorting=0 -Command Line=false -Default Mark Type=2 -Dynamic Word Wrap=true -Dynamic Word Wrap Align Indent=80 -Dynamic Word Wrap Indicators=1 -Folding Bar=true -Line Numbers=false -Persistent Selection=false -Scroll Bar Marks=false -Search Config Flags=266 -Text To Search Mode=2 - -[MainWindow] -Height 768=769 -Width 1024=1025 - -[MainWindow Toolbar KMdiTaskBar] -Hidden=true -IconText=IconOnly -Index=4 -Offset=-1 - -[MainWindow Toolbar browserToolBar] -IconText=IconOnly -Index=0 -NewLine=true -Offset=318 - -[MainWindow Toolbar buildToolBar] -IconText=IconOnly -Index=2 -NewLine=true -Offset=19 - -[MainWindow Toolbar debugToolBar] -IconText=IconOnly -Index=5 - -[MainWindow Toolbar extraToolBar] -Hidden=false -IconText=IconOnly -Index=3 - -[MainWindow Toolbar mainToolBar] -Index=1 -NewLine=false -Offset=-1 - -[Mainwindow] -Height 1024=1025 -Height 768=769 -Width 1024=1025 -Width 1280=1281 - -[Mainwindow Toolbar KMdiTaskBar] -Hidden=true -IconText=IconOnly -Index=4 -NewLine=true -Offset=-1 - -[Mainwindow Toolbar browserToolBar] -Hidden=true -Index=0 -Offset=318 - -[Mainwindow Toolbar buildToolBar] -IconText=IconOnly -Index=1 -Offset=231 - -[Mainwindow Toolbar debugToolBar] -IconText=IconOnly -Index=5 - -[Mainwindow Toolbar extraToolBar] -Hidden=true -IconText=IconOnly -Index=2 -Offset=200 - -[Mainwindow Toolbar mainToolBar] -Hidden=true -Index=3 - -[MakeOutputView] -CompilerOutputLevel=2 -LineWrapping=true -ShowDirNavigMsg=false - -[Pascal Compiler] -Borland Delphi Compiler= -Free Pascal Compiler= - -[Project Settings Dialog] -Height=600 -Width=800 - -[SimpleMainWindow Toolbar browserToolBar] -Hidden=true -IconText=IconOnly -Index=2 - -[SimpleMainWindow Toolbar buildToolBar] -IconText=IconOnly -Index=1 - -[SimpleMainWindow Toolbar debugToolBar] -IconText=IconOnly -Index=4 - -[SimpleMainWindow Toolbar extraToolBar] -IconText=IconOnly -Index=3 - -[SimpleMainWindow Toolbar mainToolBar] -Hidden=true -Index=0 - -[SimpleMainWindow Toolbar viewsession_toolbar] -Hidden=true -IconText=IconOnly -Index=5 - -[TerminalEmulator] -TerminalApplication=konsole -UseKDESetting=false - -[TipOfDay] -RunOnStart=false -TipLastShown=2007,6,30,18,43,55 - -[UI] -TabWidgetVisibility=0 -UseSimpleMainWindow=false diff --git a/mop/template/.kde/share/config/kdeveloprc.ori b/mop/template/.kde/share/config/kdeveloprc.ori deleted file mode 100644 index af71451..0000000 --- a/mop/template/.kde/share/config/kdeveloprc.ori +++ /dev/null @@ -1,268 +0,0 @@ -[$Version] -update_info=kdev-gen-settings.upd:kdev-gen-settings-update/5 - -[AppWizard] -FavNames= -FavTemplates= - -[Bookmarks] -Codeline=0 -Context=5 -Token=// -ToolTip=true - -[BottomToolWindow] -ViewLastWidget=Frame Stack -ViewWidth=219 - -[DToolDockPosition] -app output widget=DockBottom -bookmarks widget=DockLeft -diffWidget=DockBottom -disassembleWidget=DockRight -documentation widget=DockRight -filelist widget=DockLeft -fileselectorwidget=DockLeft -fileviewpartwidget=DockLeft -framestackWidget=DockBottom -gdbBreakpointWidget=DockBottom -gdbOutputWidget=DockBottom -grepview widget=DockBottom -konsole widget=DockBottom -make widget=DockBottom -problemReporterWidget=DockBottom -replace widget=DockBottom -snippet widget=DockRight -valgrind widget=DockBottom -variablewidget=DockLeft -viewerWidget=DockLeft - -[Diff] -Highlight=true - -[DocWordCompletion Plugin] -autopopup=false -treshold=3 - -[Documentation] -LastPage=0 -UseAssistant=false - -[Editor] -DirtyAction=nothing -EmbeddedKTextEditor=katepart - -[General Options] -CppBgParserDelay=500 -DefaultProjectsDir=$HOME/ -DesignerApp=0 -EnableCppBgParser=true -OutputViewFont=Sans Serif,10,-1,0,50,0,0,0,0,0 -Read Last Project On Startup=false - -[Global Settings Dialog] -Height=625 -Width=800 - -[HTML Settings] -AutomaticDetectionLanguage=0 - -[KHTMLPart] -FixedFont=Monospace -StandardFont=Sans Serif -Zoom=100 - -[KListViewAction] -m_functionsnav_combo=150 - -[Kate Document Defaults] -Allow End of Line Detection=true -Backup Config Flags=0 -Backup Prefix= -Backup Suffix=~ -Basic Config Flags=545816608 -Encoding= -End of Line=0 -Indentation Mode=2 -Indentation Width=4 -KTextEditor Plugin ktexteditor_docwordcompletion=true -KTextEditor Plugin ktexteditor_insertfile=false -KTextEditor Plugin ktexteditor_isearch=false -KTextEditor Plugin ktexteditor_kdatatool=false -Maximal Loaded Blocks=16 -PageUp/PageDown Moves Cursor=false -Search Dir Config Depth=3 -Tab Width=4 -Undo Steps=0 -Word Wrap=false -Word Wrap Column=80 - -[Kate Renderer Defaults] -Schema=kdevelop - Normal -Show Indentation Lines=false -Word Wrap Marker=false - -[Kate View Defaults] -Auto Center Lines=0 -Bookmark Menu Sorting=0 -Command Line=false -Default Mark Type=2 -Dynamic Word Wrap=true -Dynamic Word Wrap Align Indent=80 -Dynamic Word Wrap Indicators=1 -Folding Bar=true -Line Numbers=false -Persistent Selection=false -Scroll Bar Marks=false -Search Config Flags=266 -Text To Search Mode=2 - -[MainWindow] -Height 768=769 -Width 1024=1025 - -[MainWindow Toolbar KMdiTaskBar] -Hidden=true -IconText=IconOnly -Index=4 -Offset=-1 - -[MainWindow Toolbar browserToolBar] -IconText=IconOnly -Index=0 -NewLine=true -Offset=318 - -[MainWindow Toolbar buildToolBar] -IconText=IconOnly -Index=2 -NewLine=true -Offset=19 - -[MainWindow Toolbar debugToolBar] -IconText=IconOnly -Index=5 - -[MainWindow Toolbar extraToolBar] -Hidden=false -IconText=IconOnly -Index=3 - -[MainWindow Toolbar mainToolBar] -Index=1 -NewLine=false -Offset=-1 - -[Mainwindow] -Height 1024=1025 -Height 768=769 -Width 1024=1025 -Width 1280=1281 - -[Mainwindow Toolbar KMdiTaskBar] -Hidden=true -IconText=IconOnly -Index=4 -NewLine=true -Offset=-1 - -[Mainwindow Toolbar browserToolBar] -Hidden=true -Index=0 -Offset=318 - -[Mainwindow Toolbar buildToolBar] -IconText=IconOnly -Index=1 -Offset=231 - -[Mainwindow Toolbar debugToolBar] -IconText=IconOnly -Index=5 - -[Mainwindow Toolbar extraToolBar] -Hidden=true -IconText=IconOnly -Index=2 -Offset=200 - -[Mainwindow Toolbar mainToolBar] -Hidden=true -Index=3 - -[MakeOutputView] -CompilerOutputLevel=2 -LineWrapping=true -ShowDirNavigMsg=false - -[Pascal Compiler] -Borland Delphi Compiler= -Free Pascal Compiler= - -[Project Settings Dialog] -Height=600 -Width=800 - -[SimpleMainWindow Toolbar browserToolBar] -Hidden=true -IconText=IconOnly -Index=2 - -[SimpleMainWindow Toolbar buildToolBar] -IconText=IconOnly -Index=1 - -[SimpleMainWindow Toolbar debugToolBar] -IconText=IconOnly -Index=4 - -[SimpleMainWindow Toolbar extraToolBar] -IconText=IconOnly -Index=3 - -[SimpleMainWindow Toolbar mainToolBar] -Hidden=true -Index=0 - -[SimpleMainWindow Toolbar viewsession_toolbar] -Hidden=true -IconText=IconOnly -Index=5 - -[TerminalEmulator] -TerminalApplication=konsole -UseKDESetting=false - -[TipOfDay] -RunOnStart=false -TipLastShown=2007,6,30,18,43,55 - -[ToolDockPosition] -CTags2WidgetBase=DockBottom -ClassViewWidget=DockLeft -KDevFileCreate=DockLeft -Security Widget=DockBottom -app output widget=DockBottom -bookmarks widget=DockBottom -disassembleWidget=DockRight -documentation widget=DockRight -file view widget=DockLeft -filelist widget=DockLeft -fileselectorwidget=DockLeft -fileviewpartwidget=DockLeft -framestackWidget=DockRight -gdbBreakpointWidget=DockRight -gdbOutputWidget=DockBottom -grepview widget=DockBottom -konsole widget=DockBottom -make widget=DockBottom -problemreporter=DockBottom -replace widget=DockBottom -snippet widget=DockRight -unnamed=DockBottom -valgrind widget=DockBottom -variablewidget=DockLeft - -[UI] -TabWidgetVisibility=0 -UseSimpleMainWindow=false diff --git a/mop/template/.kde/share/config/kdevfileselectorrc b/mop/template/.kde/share/config/kdevfileselectorrc deleted file mode 100644 index d6c144f..0000000 --- a/mop/template/.kde/share/config/kdevfileselectorrc +++ /dev/null @@ -1,19 +0,0 @@ -[fileselector] -AutoSyncEvents=0 -current filter= -dir history= -filter history= -filter history len=9 -last filter= -location= -pathcombo history len=9 - -[fileselector:dir] -Separate Directories=false -Show Preview=false -Show hidden files=false -Sort by=Name -Sort case insensitively=true -Sort directories first=true -Sort reversed=false -View Style=Simple diff --git a/mop/template/.kde/share/config/kdevfileviewrc b/mop/template/.kde/share/config/kdevfileviewrc deleted file mode 100644 index b814f78..0000000 --- a/mop/template/.kde/share/config/kdevfileviewrc +++ /dev/null @@ -1,10 +0,0 @@ -[VCS Colors] -DefaultColor=255,255,255 -FileAddedColor=204,255,153 -FileConflictColor=255,102,102 -FileModifiedColor=204,204,255 -FileNeedsCheckoutColor=255,204,255 -FileNeedsPatchColor=255,204,255 -FileStickyColor=255,204,204 -FileUnknownColor=255,255,255 -FileUpdatedColor=255,255,204 diff --git a/mop/template/.kde/share/config/kdevgrepviewrc b/mop/template/.kde/share/config/kdevgrepviewrc deleted file mode 100644 index 8e55967..0000000 --- a/mop/template/.kde/share/config/kdevgrepviewrc +++ /dev/null @@ -1,7 +0,0 @@ -[GrepDialog] -LastSearchItems= -LastSearchPaths= -case_sens=true -new_view=true -recursive=true -vcs_dirs=true diff --git a/mop/template/.kde/share/config/kdevsnippetrc b/mop/template/.kde/share/config/kdevsnippetrc deleted file mode 100644 index 7cc66e0..0000000 --- a/mop/template/.kde/share/config/kdevsnippetrc +++ /dev/null @@ -1,13 +0,0 @@ -[SnippetPart] -snippetCount=0 -snippetDelimiter=$ -snippetGroupAutoOpen=1 -snippetGroupCount=1 -snippetGroupId_0=1 -snippetGroupLang_0=All -snippetGroupName_0=DEFAULT -snippetMultiRect=0,0,0,0 -snippetSavedCount=0 -snippetSingleRect=0,0,0,0 -snippetToolTips=true -snippetVarInput=0 diff --git a/mop/template/.kde/share/config/kghostviewrc b/mop/template/.kde/share/config/kghostviewrc deleted file mode 100644 index 4835f58..0000000 --- a/mop/template/.kde/share/config/kghostviewrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kghostview.upd:1changeToKConfigXT,kghostview.upd:2changeToKConfigXT diff --git a/mop/template/.kde/share/config/kglobalshortcutsrc b/mop/template/.kde/share/config/kglobalshortcutsrc new file mode 100644 index 0000000..c878f4c --- /dev/null +++ b/mop/template/.kde/share/config/kglobalshortcutsrc @@ -0,0 +1,291 @@ +[$Version] +update_info=plasma-to-plasmadesktop-shortcuts.upd:4.3plasma-desktop-shortcuts,ksmserver_shortcuts.upd:kde45,kwin_window_shortcuts.upd:kde414 + +[KDE Keyboard Layout Switcher] +Switch keyboard layout to Czech=none,none,Switch keyboard layout to Czech +Switch keyboard layout to English (US)=none,none,Switch keyboard layout to English (US) +Switch to Next Keyboard Layout=Ctrl+Alt+K,Ctrl+Alt+K,Switch to Next Keyboard Layout +_k_friendly_name=KDE Keyboard Layout Switcher + +[kactivitymanagerd] +_k_friendly_name=KDE Activity Manager +switch-to-activity-71cd1e2b-1467-4f57-bd72-415158a4d8ad=none,none,Switch to activity "Desktop" + +[kded] +Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Decrease Screen Brightness +Hibernate=Hibernate,Hibernate,Hibernate +Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Increase Screen Brightness +PowerOff=Power Off,Power Off, +Sleep=Sleep,Sleep,Sleep +_k_friendly_name=KDE Daemon +display=Display,Display,Switch Display + +[khotkeys] +_k_friendly_name=khotkeys +{459c2eda-6b72-4840-9b73-15c9d5b3e4d9}=Print,none,PrintScreen +{d03619b6-9b3c-48cc-9d9c-a2aadb485550}=Search,none,Search + +[klipper] +_k_friendly_name=Klipper +clipboard_action=Ctrl+Alt+X,Ctrl+Alt+X,Enable Clipboard Actions +cycleNextAction=none,none,Next History Item +cyclePrevAction=none,none,Previous History Item +edit_clipboard=none,none,Edit Contents... +repeat_action=Ctrl+Alt+R,Ctrl+Alt+R,Manually Invoke Action on Current Clipboard +show-on-mouse-pos=none,none,Open Klipper at Mouse Position + +[kmix] +Decrease volume - Capture 2, HDA Intel=none,none,Decrease Volume - Capture 2\\, HDA Intel +Decrease volume - Capture 3, HDA Intel=none,none,Decrease Volume - Capture 3\\, HDA Intel +Decrease volume - Capture, HDA Intel=none,none,Decrease Volume - Capture\\, HDA Intel +Decrease volume - Center, HDA Intel=none,none,Decrease Volume - Center\\, HDA Intel +Decrease volume - Digital, HDA Intel=none,none,Decrease Volume - Digital\\, HDA Intel +Decrease volume - Front Mic Boost, HDA Intel=none,none,Decrease Volume - Front Mic Boost\\, HDA Intel +Decrease volume - Front Mic, HDA Intel=none,none,Decrease Volume - Front Mic\\, HDA Intel +Decrease volume - Front, HDA Intel=none,none,Decrease Volume - Front\\, HDA Intel +Decrease volume - Headphone, HDA Intel=none,none,Decrease Volume - Headphone\\, HDA Intel +Decrease volume - IEC958 Default PCM, HDA Intel=none,none,Decrease Volume - IEC958 Default PCM\\, HDA Intel +Decrease volume - IEC958, HDA ATI HDMI=none,none,Decrease Volume - IEC958\\, HDA ATI HDMI +Decrease volume - IEC958, HDA Intel=none,none,Decrease Volume - IEC958\\, HDA Intel +Decrease volume - LFE, HDA Intel=none,none,Decrease Volume - LFE\\, HDA Intel +Decrease volume - Line, HDA Intel=none,none,Decrease Volume - Line\\, HDA Intel +Decrease volume - Master, HDA Intel=none,none,Decrease Volume - Master\\, HDA Intel +Decrease volume - PCM, HDA Intel=none,none,Decrease Volume - PCM\\, HDA Intel +Decrease volume - Rear Mic Boost, HDA Intel=none,none,Decrease Volume - Rear Mic Boost\\, HDA Intel +Decrease volume - Rear Mic, HDA Intel=none,none,Decrease Volume - Rear Mic\\, HDA Intel +Decrease volume - Side, HDA Intel=none,none,Decrease Volume - Side\\, HDA Intel +Decrease volume - Surround, HDA Intel=none,none,Decrease Volume - Surround\\, HDA Intel +Increase volume - Capture 2, HDA Intel=none,none,Increase Volume - Capture 2\\, HDA Intel +Increase volume - Capture 3, HDA Intel=none,none,Increase Volume - Capture 3\\, HDA Intel +Increase volume - Capture, HDA Intel=none,none,Increase Volume - Capture\\, HDA Intel +Increase volume - Center, HDA Intel=none,none,Increase Volume - Center\\, HDA Intel +Increase volume - Digital, HDA Intel=none,none,Increase Volume - Digital\\, HDA Intel +Increase volume - Front Mic Boost, HDA Intel=none,none,Increase Volume - Front Mic Boost\\, HDA Intel +Increase volume - Front Mic, HDA Intel=none,none,Increase Volume - Front Mic\\, HDA Intel +Increase volume - Front, HDA Intel=none,none,Increase Volume - Front\\, HDA Intel +Increase volume - Headphone, HDA Intel=none,none,Increase Volume - Headphone\\, HDA Intel +Increase volume - IEC958 Default PCM, HDA Intel=none,none,Increase Volume - IEC958 Default PCM\\, HDA Intel +Increase volume - IEC958, HDA ATI HDMI=none,none,Increase Volume - IEC958\\, HDA ATI HDMI +Increase volume - IEC958, HDA Intel=none,none,Increase Volume - IEC958\\, HDA Intel +Increase volume - LFE, HDA Intel=none,none,Increase Volume - LFE\\, HDA Intel +Increase volume - Line, HDA Intel=none,none,Increase Volume - Line\\, HDA Intel +Increase volume - Master, HDA Intel=none,none,Increase Volume - Master\\, HDA Intel +Increase volume - PCM, HDA Intel=none,none,Increase Volume - PCM\\, HDA Intel +Increase volume - Rear Mic Boost, HDA Intel=none,none,Increase Volume - Rear Mic Boost\\, HDA Intel +Increase volume - Rear Mic, HDA Intel=none,none,Increase Volume - Rear Mic\\, HDA Intel +Increase volume - Side, HDA Intel=none,none,Increase Volume - Side\\, HDA Intel +Increase volume - Surround, HDA Intel=none,none,Increase Volume - Surround\\, HDA Intel +Toggle mute - Capture 2, HDA Intel=none,none,Toggle Mute - Capture 2\\, HDA Intel +Toggle mute - Capture 3, HDA Intel=none,none,Toggle Mute - Capture 3\\, HDA Intel +Toggle mute - Capture, HDA Intel=none,none,Toggle Mute - Capture\\, HDA Intel +Toggle mute - Center, HDA Intel=none,none,Toggle Mute - Center\\, HDA Intel +Toggle mute - Digital, HDA Intel=none,none,Toggle Mute - Digital\\, HDA Intel +Toggle mute - Front Mic Boost, HDA Intel=none,none,Toggle Mute - Front Mic Boost\\, HDA Intel +Toggle mute - Front Mic, HDA Intel=none,none,Toggle Mute - Front Mic\\, HDA Intel +Toggle mute - Front, HDA Intel=none,none,Toggle Mute - Front\\, HDA Intel +Toggle mute - Headphone, HDA Intel=none,none,Toggle Mute - Headphone\\, HDA Intel +Toggle mute - IEC958 Default PCM, HDA Intel=none,none,Toggle Mute - IEC958 Default PCM\\, HDA Intel +Toggle mute - IEC958, HDA ATI HDMI=none,none,Toggle Mute - IEC958\\, HDA ATI HDMI +Toggle mute - IEC958, HDA Intel=none,none,Toggle Mute - IEC958\\, HDA Intel +Toggle mute - LFE, HDA Intel=none,none,Toggle Mute - LFE\\, HDA Intel +Toggle mute - Line, HDA Intel=none,none,Toggle Mute - Line\\, HDA Intel +Toggle mute - Master, HDA Intel=none,none,Toggle Mute - Master\\, HDA Intel +Toggle mute - PCM, HDA Intel=none,none,Toggle Mute - PCM\\, HDA Intel +Toggle mute - Rear Mic Boost, HDA Intel=none,none,Toggle Mute - Rear Mic Boost\\, HDA Intel +Toggle mute - Rear Mic, HDA Intel=none,none,Toggle Mute - Rear Mic\\, HDA Intel +Toggle mute - Side, HDA Intel=none,none,Toggle Mute - Side\\, HDA Intel +Toggle mute - Surround, HDA Intel=none,none,Toggle Mute - Surround\\, HDA Intel +_k_friendly_name=KMix +decrease_volume=Volume Down,Volume Down,Decrease Volume +increase_volume=Volume Up,Volume Up,Increase Volume +mute=Volume Mute,Volume Mute,Mute + +[krunner] +Lock Session=Ctrl+Alt+L,Ctrl+Alt+L,Lock Session +PowerDevil=none,none,Run Command (runner "PowerDevil" only) +Run Command=Alt+F2,Alt+F2,Run Command +Run Command on clipboard contents=Alt+Shift+F2,Alt+Shift+F2,Run Command on clipboard contents +Show System Activity=Ctrl+Esc,Ctrl+Esc,Show System Activity +Switch User=Ctrl+Alt+Ins,Ctrl+Alt+Ins,Switch User +_k_friendly_name=Run Command Interface +bookmarks=none,none,Run Command (runner "Bookmarks" only) +desktopsessions=none,none,Run Command (runner "Desktop Sessions" only) +kabccontacts=none,none,Run Command (runner "Contacts" only) +locations=none,none,Run Command (runner "Locations" only) +nepomuksearch=none,none,Run Command (runner "Nepomuk Desktop Search Runner" only) +org.kde.activities=none,none,Run Command (runner "Activities" only) +org.kde.windowedwidgets=none,none,Run Command (runner "Windowed widgets" only) +recentdocuments=none,none,Run Command (runner "Recent Documents" only) +services=none,none,Run Command (runner "Applications" only) +shell=none,none,Run Command (runner "Command Line" only) +solid=none,none,Run Command (runner "Devices" only) +webshortcuts=none,none,Run Command (runner "Web Shortcuts" only) +wikipedia=none,none,Run Command (runner "Wikipedia" only) +windows=none,none,Run Command (runner "Windows" only) + +[ksmserver] +Halt Without Confirmation=Ctrl+Alt+Shift+PgDown,Ctrl+Alt+Shift+PgDown,Halt Without Confirmation +Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Log Out +Log Out Without Confirmation=Ctrl+Alt+Shift+Del,Ctrl+Alt+Shift+Del,Log Out Without Confirmation +Reboot Without Confirmation=Ctrl+Alt+Shift+PgUp,Ctrl+Alt+Shift+PgUp,Reboot Without Confirmation +_k_friendly_name=The KDE Session Manager + +[kwin] +Activate Window Demanding Attention=Ctrl+Alt+A,Ctrl+Alt+A,Activate Window Demanding Attention +Block Global Shortcuts=none,none,Block Global Shortcuts +Decrease Opacity=none,none,Decrease Opacity of Active Window by 5 % +Enable/Disable Tiling=Alt+Shift+F11,Alt+Shift+F11,Enable/Disable Tiling +Expose=Ctrl+F9,Ctrl+F9,Toggle Present Windows (Current desktop) +ExposeAll=Ctrl+F10,Ctrl+F10,Toggle Present Windows (All desktops) +ExposeClass=Ctrl+F7,Ctrl+F7,Toggle Present Windows (Window class) +Increase Opacity=none,none,Increase Opacity of Active Window by 5 % +Kill Window=Ctrl+Alt+Esc,Ctrl+Alt+Esc,Kill Window +Move Window Down=Meta+Shift+J,Meta+Shift+J,Move Window Down +Move Window Left=Meta+Shift+H,Meta+Shift+H,Move Window Left +Move Window Right=Meta+Shift+L,Meta+Shift+L,Move Window Right +Move Window Up=Meta+Shift+K,Meta+Shift+K,Move Window Up +MoveMouseToCenter=Meta+F6,Meta+F6,Move Mouse to Center +MoveMouseToFocus=Meta+F5,Meta+F5,Move Mouse to Focus +MoveZoomDown=Meta+Down,Meta+Down,Move Down +MoveZoomLeft=Meta+Left,Meta+Left,Move Left +MoveZoomRight=Meta+Right,Meta+Right,Move Right +MoveZoomUp=Meta+Up,Meta+Up,Move Up +Next Layout=Meta+PgDown,Meta+PgDown,Next Layout +Previous Layout=Meta+PgUp,Meta+PgUp,Previous Layout +Remove Window From Group=none,none,Remove Window From Group +Setup Window Shortcut=none,none,Setup Window Shortcut +Show Desktop=none,none,Show Desktop +ShowDesktopGrid=Ctrl+F8,Ctrl+F8,Show Desktop Grid +Suspend Compositing=Alt+Shift+F12,Alt+Shift+F12,Suspend Compositing +Switch Focus Down=Meta+J,Meta+J,Switch Focus Down +Switch Focus Left=Meta+H,Meta+H,Switch Focus Left +Switch Focus Right=Meta+L,Meta+L,Switch Focus Right +Switch Focus Up=Meta+K,Meta+K,Switch Focus Up +Switch One Desktop Down=none,none,Switch One Desktop Down +Switch One Desktop Up=none,none,Switch One Desktop Up +Switch One Desktop to the Left=none,none,Switch One Desktop to the Left +Switch One Desktop to the Right=none,none,Switch One Desktop to the Right +Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Switch to Window Below +Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Switch to Window to the Left +Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Switch to Window to the Right +Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Switch to Window Above +Switch to Desktop 1=Ctrl+F1,Ctrl+F1,Switch to Desktop 1 +Switch to Desktop 10=none,none,Switch to Desktop 10 +Switch to Desktop 11=none,none,Switch to Desktop 11 +Switch to Desktop 12=none,none,Switch to Desktop 12 +Switch to Desktop 13=none,none,Switch to Desktop 13 +Switch to Desktop 14=none,none,Switch to Desktop 14 +Switch to Desktop 15=none,none,Switch to Desktop 15 +Switch to Desktop 16=none,none,Switch to Desktop 16 +Switch to Desktop 17=none,none,Switch to Desktop 17 +Switch to Desktop 18=none,none,Switch to Desktop 18 +Switch to Desktop 19=none,none,Switch to Desktop 19 +Switch to Desktop 2=Ctrl+F2,Ctrl+F2,Switch to Desktop 2 +Switch to Desktop 20=none,none,Switch to Desktop 20 +Switch to Desktop 3=Ctrl+F3,Ctrl+F3,Switch to Desktop 3 +Switch to Desktop 4=Ctrl+F4,Ctrl+F4,Switch to Desktop 4 +Switch to Desktop 5=none,none,Switch to Desktop 5 +Switch to Desktop 6=none,none,Switch to Desktop 6 +Switch to Desktop 7=none,none,Switch to Desktop 7 +Switch to Desktop 8=none,none,Switch to Desktop 8 +Switch to Desktop 9=none,none,Switch to Desktop 9 +Switch to Next Desktop=none,none,Switch to Next Desktop +Switch to Next Screen=none,none,Switch to Next Screen +Switch to Previous Desktop=none,none,Switch to Previous Desktop +Switch to Screen 0=none,none,Switch to Screen 0 +Switch to Screen 1=none,none,Switch to Screen 1 +Switch to Screen 2=none,none,Switch to Screen 2 +Switch to Screen 3=none,none,Switch to Screen 3 +Switch to Screen 4=none,none,Switch to Screen 4 +Switch to Screen 5=none,none,Switch to Screen 5 +Switch to Screen 6=none,none,Switch to Screen 6 +Switch to Screen 7=none,none,Switch to Screen 7 +Toggle Floating=Meta+F,Meta+F,Toggle Floating +Toggle Window Raise/Lower=none,none,Toggle Window Raise/Lower +Walk Through Desktop List=none,none,Walk Through Desktop List +Walk Through Desktop List (Reverse)=none,none,Walk Through Desktop List (Reverse) +Walk Through Desktops=none,none,Walk Through Desktops +Walk Through Desktops (Reverse)=none,none,Walk Through Desktops (Reverse) +Walk Through Window Tabs=none,none,Walk Through Window Tabs +Walk Through Window Tabs (Reverse)=none,none,Walk Through Window Tabs (Reverse) +Walk Through Windows=Alt+Tab,Alt+Tab,Walk Through Windows +Walk Through Windows (Reverse)=Alt+Shift+Backtab,Alt+Shift+Backtab,Walk Through Windows (Reverse) +Walk Through Windows Alternative=none,none,Walk Through Windows Alternative +Walk Through Windows Alternative (Reverse)=none,none,Walk Through Windows Alternative (Reverse) +Window Above Other Windows=none,none,Keep Window Above Others +Window Below Other Windows=none,none,Keep Window Below Others +Window Close=Alt+F4,Alt+F4,Close Window +Window Fullscreen=none,none,Make Window Fullscreen +Window Grow Horizontal=none,none,Pack Grow Window Horizontally +Window Grow Vertical=none,none,Pack Grow Window Vertically +Window Lower=none,none,Lower Window +Window Maximize=none,none,Maximize Window +Window Maximize Horizontal=none,none,Maximize Window Horizontally +Window Maximize Vertical=none,none,Maximize Window Vertically +Window Minimize=none,none,Minimize Window +Window Move=none,none,Move Window +Window No Border=none,none,Hide Window Border +Window On All Desktops=none,none,Keep Window on All Desktops +Window One Desktop Down=none,none,Window One Desktop Down +Window One Desktop Up=none,none,Window One Desktop Up +Window One Desktop to the Left=none,none,Window One Desktop to the Left +Window One Desktop to the Right=none,none,Window One Desktop to the Right +Window Operations Menu=Alt+F3,Alt+F3,Window Operations Menu +Window Pack Down=none,none,Pack Window Down +Window Pack Left=none,none,Pack Window to the Left +Window Pack Right=none,none,Pack Window to the Right +Window Pack Up=none,none,Pack Window Up +Window Quick Tile Bottom Left=none,none,Quick Tile Window to the Bottom Left +Window Quick Tile Bottom Right=none,none,Quick Tile Window to the Bottom Right +Window Quick Tile Left=none,none,Quick Tile Window to the Left +Window Quick Tile Right=none,none,Quick Tile Window to the Right +Window Quick Tile Top Left=none,none,Quick Tile Window to the Top Left +Window Quick Tile Top Right=none,none,Quick Tile Window to the Top Right +Window Raise=none,none,Raise Window +Window Resize=none,none,Resize Window +Window Shade=none,none,Shade Window +Window Shrink Horizontal=none,none,Pack Shrink Window Horizontally +Window Shrink Vertical=none,none,Pack Shrink Window Vertically +Window to Desktop 1=none,none,Window to Desktop 1 +Window to Desktop 10=none,none,Window to Desktop 10 +Window to Desktop 11=none,none,Window to Desktop 11 +Window to Desktop 12=none,none,Window to Desktop 12 +Window to Desktop 13=none,none,Window to Desktop 13 +Window to Desktop 14=none,none,Window to Desktop 14 +Window to Desktop 15=none,none,Window to Desktop 15 +Window to Desktop 16=none,none,Window to Desktop 16 +Window to Desktop 17=none,none,Window to Desktop 17 +Window to Desktop 18=none,none,Window to Desktop 18 +Window to Desktop 19=none,none,Window to Desktop 19 +Window to Desktop 2=none,none,Window to Desktop 2 +Window to Desktop 20=none,none,Window to Desktop 20 +Window to Desktop 3=none,none,Window to Desktop 3 +Window to Desktop 4=none,none,Window to Desktop 4 +Window to Desktop 5=none,none,Window to Desktop 5 +Window to Desktop 6=none,none,Window to Desktop 6 +Window to Desktop 7=none,none,Window to Desktop 7 +Window to Desktop 8=none,none,Window to Desktop 8 +Window to Desktop 9=none,none,Window to Desktop 9 +Window to Next Desktop=none,none,Window to Next Desktop +Window to Next Screen=none,none,Window to Next Screen +Window to Previous Desktop=none,none,Window to Previous Desktop +Window to Screen 0=none,none,Window to Screen 0 +Window to Screen 1=none,none,Window to Screen 1 +Window to Screen 2=none,none,Window to Screen 2 +Window to Screen 3=none,none,Window to Screen 3 +Window to Screen 4=none,none,Window to Screen 4 +Window to Screen 5=none,none,Window to Screen 5 +Window to Screen 6=none,none,Window to Screen 6 +Window to Screen 7=none,none,Window to Screen 7 +_k_friendly_name=KWin +view_actual_size=Meta+0,Meta+0,Actual Size +view_zoom_in=Meta+=,Meta+=,Zoom In +view_zoom_out=Meta+-,Meta+-,Zoom Out + +[plasma-desktop] +Next Activity=Meta+Tab,Meta+Tab,Next Activity +Previous Activity=Meta+Shift+Tab,Meta+Shift+Tab,Previous Activity +Show Dashboard=Ctrl+F12,Ctrl+F12,Show Dashboard +Systemtray-Klipper-6=Ctrl+Alt+V,Ctrl+Alt+V, +_k_friendly_name=Plasma Desktop Shell +manage activities=Meta+Q,Meta+Q,Activities... diff --git a/mop/template/.kde/share/config/khelpcenterrc b/mop/template/.kde/share/config/khelpcenterrc deleted file mode 100644 index 9cb0820..0000000 --- a/mop/template/.kde/share/config/khelpcenterrc +++ /dev/null @@ -1,11 +0,0 @@ -[HTML Settings] -AutomaticDetectionLanguage=0 - -[MainWindowState] -Splitter=220,574 - -[Notification Messages] -indexcreation=no - -[Search] -ScopeSelection=0 diff --git a/mop/template/.kde/share/config/khotkeys_update b/mop/template/.kde/share/config/khotkeys_update deleted file mode 100644 index 833dcca..0000000 --- a/mop/template/.kde/share/config/khotkeys_update +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=khotkeys_printscreen.upd:printscreen,khotkeys_32b1_update.upd:kde32b1,konqueror_gestures_kde321_update.upd:kde321 diff --git a/mop/template/.kde/share/config/khotkeysrc b/mop/template/.kde/share/config/khotkeysrc index d79c045..a510524 100644 --- a/mop/template/.kde/share/config/khotkeysrc +++ b/mop/template/.kde/share/config/khotkeysrc @@ -2,11 +2,12 @@ DataCount=4 [Data_1] -Comment=This group contains actions that are set up by default.\n +Comment=KMenuEdit Global Shortcuts DataCount=1 Enabled=true -Name=Preset Actions -SystemGroup=0 +ImportId=defaults +Name=KMenuEdit +SystemGroup=1 Type=ACTION_DATA_GROUP [Data_1Conditions] @@ -14,16 +15,16 @@ Comment= ConditionsCount=0 [Data_1_1] -Comment=Launches KSnapShot when PrintScrn is pressed.\n +Comment=Comment Enabled=true -Name=PrintScreen -Type=COMMAND_URL_SHORTCUT_ACTION_DATA +Name=Search +Type=SIMPLE_ACTION_DATA [Data_1_1Actions] ActionsCount=1 [Data_1_1Actions0] -CommandURL=ksnapshot +CommandURL=http://google.com Type=COMMAND_URL [Data_1_1Conditions] @@ -35,627 +36,478 @@ Comment=Simple_action TriggersCount=1 [Data_1_1Triggers0] -Key=Print +Key=Search Type=SHORTCUT +Uuid={d03619b6-9b3c-48cc-9d9c-a2aadb485550} [Data_2] -Comment=This group contains various examples demonstrating most of the features of KHotkeys. (Note that this group and all its actions are disabled by default.)\n -DataCount=8 -Enabled=false -Name=Examples +Comment=Basic Konqueror gestures. +DataCount=14 +Enabled=true +ImportId=konqueror_gestures_kde321 +Name=Konqueror Gestures SystemGroup=0 Type=ACTION_DATA_GROUP [Data_2Conditions] -Comment= -ConditionsCount=0 - -[Data_2_1] -Comment=After pressing Ctrl+Alt+I, the KSIRC window will be activated, if it exists. Simple.\n -Enabled=false -Name=Activate KSIRC Window -Type=ACTIVATE_WINDOW_SHORTCUT_ACTION_DATA - -[Data_2_1Actions] -ActionsCount=1 +Comment=Konqueror window +ConditionsCount=1 -[Data_2_1Actions0] -Type=ACTIVATE_WINDOW +[Data_2Conditions0] +Type=ACTIVE_WINDOW -[Data_2_1Actions0Window] -Comment=KSIRC window +[Data_2Conditions0Window] +Comment=Konqueror WindowsCount=1 -[Data_2_1Actions0Window0] -Class=ksirc -ClassType=1 -Comment=KSIRC -Role= +[Data_2Conditions0Window0] +Class=^konqueror\s +ClassType=3 +Comment=Konqueror +Role=konqueror-mainwindow#1 RoleType=0 -Title= +Title=file:/ - Konqueror TitleType=0 Type=SIMPLE -WindowTypes=33 - -[Data_2_1Conditions] -Comment= -ConditionsCount=0 - -[Data_2_1Triggers] -Comment=Simple_action -TriggersCount=1 +WindowTypes=1 -[Data_2_1Triggers0] -Key=Alt+Ctrl+I -Type=SHORTCUT +[Data_2_1] +Comment=Press, move left, release. +Enabled=true +Name=Back +Type=SIMPLE_ACTION_DATA -[Data_2_2] -Comment=After pressing Alt+Ctrl+H, 'Hello' input will be simulated just like if you typed it. Especially useful if you're lazy to type things like 'unsigned'. Every keypress in the input is separated by a colon ':' . Note that the keypresses mean really keypresses, so you have to write what you'd really press on the keyboard. In the table below, left column shows the input and the right column shows what to type.\n\n"enter" (i.e. new line) Enter or Return\na (i.e. small a) A\nA (i.e. capital a) Shift+A\n: (colon) Shift+;\n' ' (space) Space\n +[Data_2_10] +Comment=Opera-style: Press, move up, release.\nNOTE: Conflicts with 'New Tab', and as such is disabled by default. Enabled=false -Name=Type 'Hello' -Type=KEYBOARD_INPUT_SHORTCUT_ACTION_DATA +Name=Stop Loading +Type=SIMPLE_ACTION_DATA -[Data_2_2Actions] +[Data_2_10Actions] ActionsCount=1 -[Data_2_2Actions0] -ActiveWindow=false -Input=Shift+H:E:L:L:O\n -IsDestinationWindow=false +[Data_2_10Actions0] +DestinationWindow=2 +Input=Escape\n Type=KEYBOARD_INPUT -[Data_2_2Conditions] +[Data_2_10Conditions] Comment= ConditionsCount=0 -[Data_2_2Triggers] -Comment=Simple_action +[Data_2_10Triggers] +Comment=Gesture_triggers TriggersCount=1 -[Data_2_2Triggers0] -Key=Alt+Ctrl+H -Type=SHORTCUT +[Data_2_10Triggers0] +GesturePointData=0,0.125,-0.5,0.5,1,0.125,0.125,-0.5,0.5,0.875,0.25,0.125,-0.5,0.5,0.75,0.375,0.125,-0.5,0.5,0.625,0.5,0.125,-0.5,0.5,0.5,0.625,0.125,-0.5,0.5,0.375,0.75,0.125,-0.5,0.5,0.25,0.875,0.125,-0.5,0.5,0.125,1,0,0,0.5,0 +Type=GESTURE -[Data_2_3] -Comment=This action runs Konsole, after pressing Ctrl+Alt+T.\n -Enabled=false -Name=Run Konsole -Type=COMMAND_URL_SHORTCUT_ACTION_DATA +[Data_2_11] +Comment=Going up in URL/directory structure.\nMozilla-style: Press, move up, move left, move up, release. +Enabled=true +Name=Up +Type=SIMPLE_ACTION_DATA -[Data_2_3Actions] +[Data_2_11Actions] ActionsCount=1 -[Data_2_3Actions0] -CommandURL=konsole -Type=COMMAND_URL +[Data_2_11Actions0] +DestinationWindow=2 +Input=Alt+Up +Type=KEYBOARD_INPUT -[Data_2_3Conditions] +[Data_2_11Conditions] Comment= ConditionsCount=0 -[Data_2_3Triggers] -Comment=Simple_action +[Data_2_11Triggers] +Comment=Gesture_triggers TriggersCount=1 -[Data_2_3Triggers0] -Key=Alt+Ctrl+T -Type=SHORTCUT +[Data_2_11Triggers0] +GesturePointData=0,0.0625,-0.5,1,1,0.0625,0.0625,-0.5,1,0.875,0.125,0.0625,-0.5,1,0.75,0.1875,0.0625,-0.5,1,0.625,0.25,0.0625,1,1,0.5,0.3125,0.0625,1,0.875,0.5,0.375,0.0625,1,0.75,0.5,0.4375,0.0625,1,0.625,0.5,0.5,0.0625,1,0.5,0.5,0.5625,0.0625,1,0.375,0.5,0.625,0.0625,1,0.25,0.5,0.6875,0.0625,1,0.125,0.5,0.75,0.0625,-0.5,0,0.5,0.8125,0.0625,-0.5,0,0.375,0.875,0.0625,-0.5,0,0.25,0.9375,0.0625,-0.5,0,0.125,1,0,0,0,0 +Type=GESTURE -[Data_2_4] -Comment=Read the comment on action "Type 'Hello'" first.\n\nQt Designer uses Ctrl+F4 for closing windows (maybe because MS Windows does it that way *shrug*). But Ctrl+F4 in KDE stands for going to virtual desktop 4, so it doesn't work in Qt Designer, and also, Qt Designer doesn't use KDE's standard Ctrl+W for closing the window.\n\nBut the problem can be solved by remaping Ctrl+W to Ctrl+F4 when the active window is Qt Designer. When Qt Designer is active, every time Ctrl+W is pressed, Ctrl+F4 will be sent to Qt Designer instead. In other applications, Ctrl+W remains working the usual way of course.\n\nWe now need to specify three things: A new shortcut trigger on 'Ctrl+W', a new keyboard input action sending Ctrl+F4, and a new condition that the active window is Qt Designer.\nQt Designer seems to always have title 'Qt Designer by Trolltech', so the condition will check for the active window having that title.\n +[Data_2_12] +Comment=Going up in URL/directory structure.\nOpera-style: Press, move up, move left, move up, release.\nNOTE: Conflicts with "Activate Previous Tab", and as such is disabled by default. Enabled=false -Name=Remap Ctrl+W to Ctrl+F4 in Qt Designer -Type=GENERIC_ACTION_DATA +Name=Up #2 +Type=SIMPLE_ACTION_DATA -[Data_2_4Actions] +[Data_2_12Actions] ActionsCount=1 -[Data_2_4Actions0] -ActiveWindow=false -Input=Ctrl+F4 -IsDestinationWindow=false +[Data_2_12Actions0] +DestinationWindow=2 +Input=Alt+Up\n Type=KEYBOARD_INPUT -[Data_2_4Conditions] -Comment= -ConditionsCount=1 - -[Data_2_4Conditions0] -Type=ACTIVE_WINDOW - -[Data_2_4Conditions0Window] -Comment=Qt Designer -WindowsCount=1 - -[Data_2_4Conditions0Window0] -Class= -ClassType=0 -Comment= -Role= -RoleType=0 -Title=Qt Designer by Trolltech -TitleType=2 -Type=SIMPLE -WindowTypes=33 - -[Data_2_4Triggers] -Comment= -TriggersCount=1 - -[Data_2_4Triggers0] -Key=Ctrl+W -Type=SHORTCUT - -[Data_2_5] -Comment=By pressing Alt+Ctrl+W a DCOP call will be performed that will show the minicli. You can use any kind of DCOP call, just like using the command line 'dcop' tool.\n -Enabled=false -Name=Perform DCOP call 'kdesktop KDesktopIface popupExecuteCommand()' -Type=DCOP_SHORTCUT_ACTION_DATA - -[Data_2_5Actions] -ActionsCount=1 - -[Data_2_5Actions0] -Arguments= -Call=popupExecuteCommand -RemoteApp=kdesktop -RemoteObj=KDesktopIface -Type=DCOP - -[Data_2_5Conditions] +[Data_2_12Conditions] Comment= ConditionsCount=0 -[Data_2_5Triggers] -Comment=Simple_action +[Data_2_12Triggers] +Comment=Gesture_triggers TriggersCount=1 -[Data_2_5Triggers0] -Key=Alt+Ctrl+W -Type=SHORTCUT +[Data_2_12Triggers0] +GesturePointData=0,0.0625,-0.5,1,1,0.0625,0.0625,-0.5,1,0.875,0.125,0.0625,-0.5,1,0.75,0.1875,0.0625,-0.5,1,0.625,0.25,0.0625,-0.5,1,0.5,0.3125,0.0625,-0.5,1,0.375,0.375,0.0625,-0.5,1,0.25,0.4375,0.0625,-0.5,1,0.125,0.5,0.0625,1,1,0,0.5625,0.0625,1,0.875,0,0.625,0.0625,1,0.75,0,0.6875,0.0625,1,0.625,0,0.75,0.0625,1,0.5,0,0.8125,0.0625,1,0.375,0,0.875,0.0625,1,0.25,0,0.9375,0.0625,1,0.125,0,1,0,0,0,0 +Type=GESTURE -[Data_2_6] -Comment=Read the comment on action "Type 'Hello'" first.\n\nJust like the "Type 'Hello'" action, this one simulates a keyboard input, specifically, after pressing Ctrl+Alt+B, it sends B to XMMS (B in XMMS jumps to the next song). The 'Send to specific window' checkbox is checked and a window with its class containing 'XMMS_Player' is specified; this will make the input always be sent to this window. This way, you can control XMMS even if it's e.g. on a different virtual desktop.\n\n(Run 'xprop' and click on the XMMS window and search for WM_CLASS to see 'XMMS_Player').\n -Enabled=false -Name=Next in XMMS -Type=KEYBOARD_INPUT_SHORTCUT_ACTION_DATA +[Data_2_13] +Comment=Press, move up, move right, release. +Enabled=true +Name=Activate Next Tab +Type=SIMPLE_ACTION_DATA -[Data_2_6Actions] +[Data_2_13Actions] ActionsCount=1 -[Data_2_6Actions0] -ActiveWindow=false -Input=B -IsDestinationWindow=true +[Data_2_13Actions0] +DestinationWindow=2 +Input=Ctrl+.\n Type=KEYBOARD_INPUT -[Data_2_6Actions0DestinationWindow] -Comment=XMMS window -WindowsCount=1 - -[Data_2_6Actions0DestinationWindow0] -Class=XMMS_Player -ClassType=1 -Comment=XMMS Player window -Role= -RoleType=0 -Title= -TitleType=0 -Type=SIMPLE -WindowTypes=33 - -[Data_2_6Conditions] +[Data_2_13Conditions] Comment= ConditionsCount=0 -[Data_2_6Triggers] -Comment=Simple_action +[Data_2_13Triggers] +Comment=Gesture_triggers TriggersCount=1 -[Data_2_6Triggers0] -Key=Alt+Ctrl+B -Type=SHORTCUT - -[Data_2_7] -Comment=Ok, Konqi in KDE3.1 has tabs, and now you can also have gestures. No need to use other browsers >;).\n\nJust press the middle mouse button and start drawing one of the gestures, and after you're finished, release the mouse button. If you only need to paste the selection, it still works, simply only click the middle mouse button. (You can change the mouse button to use in the global settings).\n\nRight now, there are these gestures available:\nmove right and back left - Forward (ALt+Right)\nmove left and back right - Back (Alt+Left)\nmove up and back down - Up (Alt+Up)\ncircle anticlockwise - Reload (F5)\n (As soon as I find out which ones are in Opera or Mozilla, I'll add more and make sure they are the same. Or if you do it yourself, feel free to help me and send me your khotkeysrc.)\n\nThe gestures shapes (some of the dialogs are from KGesture, thanks to Mike Pilone) can be simply entered by performing them in the configuration dialog. You can also look at your numeric pad to help you, gestures are recognized like a 3x3 grid of fields, numbered 1 to 9.\n\nNote that you must perform exactly the gesture to trigger the action. Because of this, it's possible to enter more gestures for the action. You should try to avoid complicated gestures where you change the direction of mouse moving more than once (i.e. do e.g. 45654 or 74123 as they are simple to perform but e.g. 1236987 may be already quite difficult).\n\nThe condition for all gestures are defined in this group. All these gestures are active only if the active window is Konqueror (class contains 'konqueror').\n -DataCount=4 -Enabled=false -Name=Konqi Gestures -SystemGroup=0 -Type=ACTION_DATA_GROUP - -[Data_2_7Conditions] -Comment=Konqueror window -ConditionsCount=1 - -[Data_2_7Conditions0] -Type=ACTIVE_WINDOW - -[Data_2_7Conditions0Window] -Comment=Konqueror -WindowsCount=1 - -[Data_2_7Conditions0Window0] -Class=konqueror -ClassType=1 -Comment=Konqueror -Role= -RoleType=0 -Title= -TitleType=0 -Type=SIMPLE -WindowTypes=33 +[Data_2_13Triggers0] +GesturePointData=0,0.0625,-0.5,0,1,0.0625,0.0625,-0.5,0,0.875,0.125,0.0625,-0.5,0,0.75,0.1875,0.0625,-0.5,0,0.625,0.25,0.0625,-0.5,0,0.5,0.3125,0.0625,-0.5,0,0.375,0.375,0.0625,-0.5,0,0.25,0.4375,0.0625,-0.5,0,0.125,0.5,0.0625,0,0,0,0.5625,0.0625,0,0.125,0,0.625,0.0625,0,0.25,0,0.6875,0.0625,0,0.375,0,0.75,0.0625,0,0.5,0,0.8125,0.0625,0,0.625,0,0.875,0.0625,0,0.75,0,0.9375,0.0625,0,0.875,0,1,0,0,1,0 +Type=GESTURE -[Data_2_7_1] -Comment= -Enabled=false -Name=Back -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +[Data_2_14] +Comment=Press, move up, move left, release. +Enabled=true +Name=Activate Previous Tab +Type=SIMPLE_ACTION_DATA -[Data_2_7_1Actions] +[Data_2_14Actions] ActionsCount=1 -[Data_2_7_1Actions0] -ActiveWindow=false -Input=Alt+Left -IsDestinationWindow=false +[Data_2_14Actions0] +DestinationWindow=2 +Input=Ctrl+, Type=KEYBOARD_INPUT -[Data_2_7_1Conditions] +[Data_2_14Conditions] Comment= ConditionsCount=0 -[Data_2_7_1Triggers] +[Data_2_14Triggers] Comment=Gesture_triggers -TriggersCount=3 - -[Data_2_7_1Triggers0] -Gesture=65456 -Type=GESTURE - -[Data_2_7_1Triggers1] -Gesture=5456 -Type=GESTURE +TriggersCount=1 -[Data_2_7_1Triggers2] -Gesture=6545 +[Data_2_14Triggers0] +GesturePointData=0,0.0625,-0.5,1,1,0.0625,0.0625,-0.5,1,0.875,0.125,0.0625,-0.5,1,0.75,0.1875,0.0625,-0.5,1,0.625,0.25,0.0625,-0.5,1,0.5,0.3125,0.0625,-0.5,1,0.375,0.375,0.0625,-0.5,1,0.25,0.4375,0.0625,-0.5,1,0.125,0.5,0.0625,1,1,0,0.5625,0.0625,1,0.875,0,0.625,0.0625,1,0.75,0,0.6875,0.0625,1,0.625,0,0.75,0.0625,1,0.5,0,0.8125,0.0625,1,0.375,0,0.875,0.0625,1,0.25,0,0.9375,0.0625,1,0.125,0,1,0,0,0,0 Type=GESTURE -[Data_2_7_2] -Comment= -Enabled=false -Name=Forward -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA - -[Data_2_7_2Actions] +[Data_2_1Actions] ActionsCount=1 -[Data_2_7_2Actions0] -ActiveWindow=false -Input=Alt+Right -IsDestinationWindow=false +[Data_2_1Actions0] +DestinationWindow=2 +Input=Alt+Left Type=KEYBOARD_INPUT -[Data_2_7_2Conditions] +[Data_2_1Conditions] Comment= ConditionsCount=0 -[Data_2_7_2Triggers] +[Data_2_1Triggers] Comment=Gesture_triggers -TriggersCount=3 - -[Data_2_7_2Triggers0] -Gesture=45654 -Type=GESTURE - -[Data_2_7_2Triggers1] -Gesture=5654 -Type=GESTURE +TriggersCount=1 -[Data_2_7_2Triggers2] -Gesture=4565 +[Data_2_1Triggers0] +GesturePointData=0,0.125,1,1,0.5,0.125,0.125,1,0.875,0.5,0.25,0.125,1,0.75,0.5,0.375,0.125,1,0.625,0.5,0.5,0.125,1,0.5,0.5,0.625,0.125,1,0.375,0.5,0.75,0.125,1,0.25,0.5,0.875,0.125,1,0.125,0.5,1,0,0,0,0.5 Type=GESTURE -[Data_2_7_3] -Comment= -Enabled=false -Name=Up -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +[Data_2_2] +Comment=Press, move down, move up, move down, release. +Enabled=true +Name=Duplicate Tab +Type=SIMPLE_ACTION_DATA -[Data_2_7_3Actions] +[Data_2_2Actions] ActionsCount=1 -[Data_2_7_3Actions0] -ActiveWindow=false -Input=Alt+Up -IsDestinationWindow=false +[Data_2_2Actions0] +DestinationWindow=2 +Input=Ctrl+Shift+D\n Type=KEYBOARD_INPUT -[Data_2_7_3Conditions] +[Data_2_2Conditions] Comment= ConditionsCount=0 -[Data_2_7_3Triggers] +[Data_2_2Triggers] Comment=Gesture_triggers -TriggersCount=3 - -[Data_2_7_3Triggers0] -Gesture=25852 -Type=GESTURE - -[Data_2_7_3Triggers1] -Gesture=2585 -Type=GESTURE +TriggersCount=1 -[Data_2_7_3Triggers2] -Gesture=5852 +[Data_2_2Triggers0] +GesturePointData=0,0.0416667,0.5,0.5,0,0.0416667,0.0416667,0.5,0.5,0.125,0.0833333,0.0416667,0.5,0.5,0.25,0.125,0.0416667,0.5,0.5,0.375,0.166667,0.0416667,0.5,0.5,0.5,0.208333,0.0416667,0.5,0.5,0.625,0.25,0.0416667,0.5,0.5,0.75,0.291667,0.0416667,0.5,0.5,0.875,0.333333,0.0416667,-0.5,0.5,1,0.375,0.0416667,-0.5,0.5,0.875,0.416667,0.0416667,-0.5,0.5,0.75,0.458333,0.0416667,-0.5,0.5,0.625,0.5,0.0416667,-0.5,0.5,0.5,0.541667,0.0416667,-0.5,0.5,0.375,0.583333,0.0416667,-0.5,0.5,0.25,0.625,0.0416667,-0.5,0.5,0.125,0.666667,0.0416667,0.5,0.5,0,0.708333,0.0416667,0.5,0.5,0.125,0.75,0.0416667,0.5,0.5,0.25,0.791667,0.0416667,0.5,0.5,0.375,0.833333,0.0416667,0.5,0.5,0.5,0.875,0.0416667,0.5,0.5,0.625,0.916667,0.0416667,0.5,0.5,0.75,0.958333,0.0416667,0.5,0.5,0.875,1,0,0,0.5,1 Type=GESTURE -[Data_2_7_4] -Comment= -Enabled=false -Name=Reload -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +[Data_2_3] +Comment=Press, move down, move up, release. +Enabled=true +Name=Duplicate Window +Type=SIMPLE_ACTION_DATA -[Data_2_7_4Actions] +[Data_2_3Actions] ActionsCount=1 -[Data_2_7_4Actions0] -ActiveWindow=false -Input=F5 -IsDestinationWindow=false +[Data_2_3Actions0] +DestinationWindow=2 +Input=Ctrl+D\n Type=KEYBOARD_INPUT -[Data_2_7_4Conditions] +[Data_2_3Conditions] Comment= ConditionsCount=0 -[Data_2_7_4Triggers] +[Data_2_3Triggers] Comment=Gesture_triggers -TriggersCount=3 - -[Data_2_7_4Triggers0] -Gesture=123698741 -Type=GESTURE - -[Data_2_7_4Triggers1] -Gesture=1236987412 -Type=GESTURE +TriggersCount=1 -[Data_2_7_4Triggers2] -Gesture=4123698741 +[Data_2_3Triggers0] +GesturePointData=0,0.0625,0.5,0.5,0,0.0625,0.0625,0.5,0.5,0.125,0.125,0.0625,0.5,0.5,0.25,0.1875,0.0625,0.5,0.5,0.375,0.25,0.0625,0.5,0.5,0.5,0.3125,0.0625,0.5,0.5,0.625,0.375,0.0625,0.5,0.5,0.75,0.4375,0.0625,0.5,0.5,0.875,0.5,0.0625,-0.5,0.5,1,0.5625,0.0625,-0.5,0.5,0.875,0.625,0.0625,-0.5,0.5,0.75,0.6875,0.0625,-0.5,0.5,0.625,0.75,0.0625,-0.5,0.5,0.5,0.8125,0.0625,-0.5,0.5,0.375,0.875,0.0625,-0.5,0.5,0.25,0.9375,0.0625,-0.5,0.5,0.125,1,0,0,0.5,0 Type=GESTURE -[Data_2_8] -Comment=After pressing Win+E (Tux+E), WWW browser will be launched and it will open http://www.kde.org . You may run all kind of commands you can run in minicli (Alt+F2).\n -Enabled=false -Name=Go to KDE Website -Type=COMMAND_URL_SHORTCUT_ACTION_DATA +[Data_2_4] +Comment=Press, move right, release. +Enabled=true +Name=Forward +Type=SIMPLE_ACTION_DATA -[Data_2_8Actions] +[Data_2_4Actions] ActionsCount=1 -[Data_2_8Actions0] -CommandURL=http://www.kde.org -Type=COMMAND_URL +[Data_2_4Actions0] +DestinationWindow=2 +Input=Alt+Right +Type=KEYBOARD_INPUT -[Data_2_8Conditions] +[Data_2_4Conditions] Comment= ConditionsCount=0 -[Data_2_8Triggers] -Comment=Simple_action +[Data_2_4Triggers] +Comment=Gesture_triggers TriggersCount=1 -[Data_2_8Triggers0] -Key=Win+E -Type=SHORTCUT - -[Data_3] -Comment=Basic Konqueror gestures.\n -DataCount=14 -Enabled=true -Name=Konqueror Gestures -SystemGroup=0 -Type=ACTION_DATA_GROUP - -[Data_3Conditions] -Comment=Konqueror window -ConditionsCount=1 - -[Data_3Conditions0] -Type=ACTIVE_WINDOW - -[Data_3Conditions0Window] -Comment=Konqueror -WindowsCount=1 - -[Data_3Conditions0Window0] -Class=^konqueror\s -ClassType=3 -Comment=Konqueror -Role=konqueror-mainwindow#1 -RoleType=0 -Title=file:/ - Konqueror -TitleType=0 -Type=SIMPLE -WindowTypes=1 +[Data_2_4Triggers0] +GesturePointData=0,0.125,0,0,0.5,0.125,0.125,0,0.125,0.5,0.25,0.125,0,0.25,0.5,0.375,0.125,0,0.375,0.5,0.5,0.125,0,0.5,0.5,0.625,0.125,0,0.625,0.5,0.75,0.125,0,0.75,0.5,0.875,0.125,0,0.875,0.5,1,0,0,1,0.5 +Type=GESTURE -[Data_3_1] -Comment=Press, move left, release.\n +[Data_2_5] +Comment=Press, move down, move half up, move right, move down, release.\n(Drawing a lowercase 'h'.) Enabled=true -Name=Back -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA - -[Data_3_10] -Comment=Opera-style: Press, move up, release.\nNOTE: Conflicts with 'New Tab', and as such is disabled by default.\n -Enabled=false -Name=Stop Loading -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Name=Home +Type=SIMPLE_ACTION_DATA -[Data_3_10Actions] +[Data_2_5Actions] ActionsCount=1 -[Data_3_10Actions0] -ActiveWindow=false -Input=Escape\n -IsDestinationWindow=false +[Data_2_5Actions0] +DestinationWindow=2 +Input=Ctrl+Home\n Type=KEYBOARD_INPUT -[Data_3_10Conditions] +[Data_2_5Conditions] Comment= ConditionsCount=0 -[Data_3_10Triggers] +[Data_2_5Triggers] Comment=Gesture_triggers -TriggersCount=1 +TriggersCount=2 -[Data_3_10Triggers0] -Gesture=258 +[Data_2_5Triggers0] +GesturePointData=0,0.0461748,0.5,0,0,0.0461748,0.0461748,0.5,0,0.125,0.0923495,0.0461748,0.5,0,0.25,0.138524,0.0461748,0.5,0,0.375,0.184699,0.0461748,0.5,0,0.5,0.230874,0.0461748,0.5,0,0.625,0.277049,0.0461748,0.5,0,0.75,0.323223,0.0461748,0.5,0,0.875,0.369398,0.065301,-0.25,0,1,0.434699,0.065301,-0.25,0.125,0.875,0.5,0.065301,-0.25,0.25,0.75,0.565301,0.065301,-0.25,0.375,0.625,0.630602,0.0461748,0,0.5,0.5,0.676777,0.0461748,0,0.625,0.5,0.722951,0.0461748,0,0.75,0.5,0.769126,0.0461748,0,0.875,0.5,0.815301,0.0461748,0.5,1,0.5,0.861476,0.0461748,0.5,1,0.625,0.90765,0.0461748,0.5,1,0.75,0.953825,0.0461748,0.5,1,0.875,1,0,0,1,1 +Type=GESTURE + +[Data_2_5Triggers1] +GesturePointData=0,0.0416667,0.5,0,0,0.0416667,0.0416667,0.5,0,0.125,0.0833333,0.0416667,0.5,0,0.25,0.125,0.0416667,0.5,0,0.375,0.166667,0.0416667,0.5,0,0.5,0.208333,0.0416667,0.5,0,0.625,0.25,0.0416667,0.5,0,0.75,0.291667,0.0416667,0.5,0,0.875,0.333333,0.0416667,-0.5,0,1,0.375,0.0416667,-0.5,0,0.875,0.416667,0.0416667,-0.5,0,0.75,0.458333,0.0416667,-0.5,0,0.625,0.5,0.0416667,0,0,0.5,0.541667,0.0416667,0,0.125,0.5,0.583333,0.0416667,0,0.25,0.5,0.625,0.0416667,0,0.375,0.5,0.666667,0.0416667,0,0.5,0.5,0.708333,0.0416667,0,0.625,0.5,0.75,0.0416667,0,0.75,0.5,0.791667,0.0416667,0,0.875,0.5,0.833333,0.0416667,0.5,1,0.5,0.875,0.0416667,0.5,1,0.625,0.916667,0.0416667,0.5,1,0.75,0.958333,0.0416667,0.5,1,0.875,1,0,0,1,1 Type=GESTURE -[Data_3_11] -Comment=Going up in URL/directory structure.\nMozilla-style: Press, move up, move left, move up, release.\n +[Data_2_6] +Comment=Press, move right, move down, move right, release.\nMozilla-style: Press, move down, move right, release. Enabled=true -Name=Up -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Name=Close Tab +Type=SIMPLE_ACTION_DATA -[Data_3_11Actions] +[Data_2_6Actions] ActionsCount=1 -[Data_3_11Actions0] -ActiveWindow=false -Input=Alt+Up -IsDestinationWindow=false +[Data_2_6Actions0] +DestinationWindow=2 +Input=Ctrl+W\n Type=KEYBOARD_INPUT -[Data_3_11Conditions] +[Data_2_6Conditions] Comment= ConditionsCount=0 -[Data_3_11Triggers] +[Data_2_6Triggers] Comment=Gesture_triggers -TriggersCount=1 +TriggersCount=2 -[Data_3_11Triggers0] -Gesture=36547 +[Data_2_6Triggers0] +GesturePointData=0,0.0625,0,0,0,0.0625,0.0625,0,0.125,0,0.125,0.0625,0,0.25,0,0.1875,0.0625,0,0.375,0,0.25,0.0625,0.5,0.5,0,0.3125,0.0625,0.5,0.5,0.125,0.375,0.0625,0.5,0.5,0.25,0.4375,0.0625,0.5,0.5,0.375,0.5,0.0625,0.5,0.5,0.5,0.5625,0.0625,0.5,0.5,0.625,0.625,0.0625,0.5,0.5,0.75,0.6875,0.0625,0.5,0.5,0.875,0.75,0.0625,0,0.5,1,0.8125,0.0625,0,0.625,1,0.875,0.0625,0,0.75,1,0.9375,0.0625,0,0.875,1,1,0,0,1,1 Type=GESTURE -[Data_3_12] -Comment=Going up in URL/directory structure.\nOpera-style: Press, move up, move left, move up, release.\nNOTE: Conflicts with "Activate Previous Tab", and as such is disabled by default.\n -Enabled=false -Name=Up #2 -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +[Data_2_6Triggers1] +GesturePointData=0,0.0625,0.5,0,0,0.0625,0.0625,0.5,0,0.125,0.125,0.0625,0.5,0,0.25,0.1875,0.0625,0.5,0,0.375,0.25,0.0625,0.5,0,0.5,0.3125,0.0625,0.5,0,0.625,0.375,0.0625,0.5,0,0.75,0.4375,0.0625,0.5,0,0.875,0.5,0.0625,0,0,1,0.5625,0.0625,0,0.125,1,0.625,0.0625,0,0.25,1,0.6875,0.0625,0,0.375,1,0.75,0.0625,0,0.5,1,0.8125,0.0625,0,0.625,1,0.875,0.0625,0,0.75,1,0.9375,0.0625,0,0.875,1,1,0,0,1,1 +Type=GESTURE + +[Data_2_7] +Comment=Press, move up, release.\nConflicts with Opera-style 'Up #2', which is disabled by default. +Enabled=true +Name=New Tab +Type=SIMPLE_ACTION_DATA -[Data_3_12Actions] +[Data_2_7Actions] ActionsCount=1 -[Data_3_12Actions0] -ActiveWindow=false -Input=Alt+Up\n -IsDestinationWindow=false +[Data_2_7Actions0] +DestinationWindow=2 +Input=Ctrl+Shift+N Type=KEYBOARD_INPUT -[Data_3_12Conditions] +[Data_2_7Conditions] Comment= ConditionsCount=0 -[Data_3_12Triggers] +[Data_2_7Triggers] Comment=Gesture_triggers TriggersCount=1 -[Data_3_12Triggers0] -Gesture=36987 +[Data_2_7Triggers0] +GesturePointData=0,0.125,-0.5,0.5,1,0.125,0.125,-0.5,0.5,0.875,0.25,0.125,-0.5,0.5,0.75,0.375,0.125,-0.5,0.5,0.625,0.5,0.125,-0.5,0.5,0.5,0.625,0.125,-0.5,0.5,0.375,0.75,0.125,-0.5,0.5,0.25,0.875,0.125,-0.5,0.5,0.125,1,0,0,0.5,0 Type=GESTURE -[Data_3_13] -Comment=Press, move up, move right, release.\n\n +[Data_2_8] +Comment=Press, move down, release. Enabled=true -Name=Activate Next Tab -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Name=New Window +Type=SIMPLE_ACTION_DATA -[Data_3_13Actions] +[Data_2_8Actions] ActionsCount=1 -[Data_3_13Actions0] -ActiveWindow=false -Input=Ctrl+.\n -IsDestinationWindow=false +[Data_2_8Actions0] +DestinationWindow=2 +Input=Ctrl+N\n Type=KEYBOARD_INPUT -[Data_3_13Conditions] +[Data_2_8Conditions] Comment= ConditionsCount=0 -[Data_3_13Triggers] +[Data_2_8Triggers] Comment=Gesture_triggers TriggersCount=1 -[Data_3_13Triggers0] -Gesture=14789 +[Data_2_8Triggers0] +GesturePointData=0,0.125,0.5,0.5,0,0.125,0.125,0.5,0.5,0.125,0.25,0.125,0.5,0.5,0.25,0.375,0.125,0.5,0.5,0.375,0.5,0.125,0.5,0.5,0.5,0.625,0.125,0.5,0.5,0.625,0.75,0.125,0.5,0.5,0.75,0.875,0.125,0.5,0.5,0.875,1,0,0,0.5,1 Type=GESTURE -[Data_3_14] -Comment=Press, move up, move left, release.\n +[Data_2_9] +Comment=Press, move up, move down, release. Enabled=true -Name=Activate Previous Tab -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Name=Reload +Type=SIMPLE_ACTION_DATA -[Data_3_14Actions] +[Data_2_9Actions] ActionsCount=1 -[Data_3_14Actions0] -ActiveWindow=false -Input=Ctrl+, -IsDestinationWindow=false +[Data_2_9Actions0] +DestinationWindow=2 +Input=F5 Type=KEYBOARD_INPUT -[Data_3_14Conditions] +[Data_2_9Conditions] Comment= ConditionsCount=0 -[Data_3_14Triggers] +[Data_2_9Triggers] Comment=Gesture_triggers TriggersCount=1 -[Data_3_14Triggers0] -Gesture=36987 +[Data_2_9Triggers0] +GesturePointData=0,0.0625,-0.5,0.5,1,0.0625,0.0625,-0.5,0.5,0.875,0.125,0.0625,-0.5,0.5,0.75,0.1875,0.0625,-0.5,0.5,0.625,0.25,0.0625,-0.5,0.5,0.5,0.3125,0.0625,-0.5,0.5,0.375,0.375,0.0625,-0.5,0.5,0.25,0.4375,0.0625,-0.5,0.5,0.125,0.5,0.0625,0.5,0.5,0,0.5625,0.0625,0.5,0.5,0.125,0.625,0.0625,0.5,0.5,0.25,0.6875,0.0625,0.5,0.5,0.375,0.75,0.0625,0.5,0.5,0.5,0.8125,0.0625,0.5,0.5,0.625,0.875,0.0625,0.5,0.5,0.75,0.9375,0.0625,0.5,0.5,0.875,1,0,0,0.5,1 Type=GESTURE +[Data_3] +Comment=This group contains various examples demonstrating most of the features of KHotkeys. (Note that this group and all its actions are disabled by default.) +DataCount=8 +Enabled=false +ImportId=kde32b1 +Name=Examples +SystemGroup=0 +Type=ACTION_DATA_GROUP + +[Data_3Conditions] +Comment= +ConditionsCount=0 + +[Data_3_1] +Comment=After pressing Ctrl+Alt+I, the KSIRC window will be activated, if it exists. Simple. +Enabled=false +Name=Activate KSIRC Window +Type=SIMPLE_ACTION_DATA + [Data_3_1Actions] ActionsCount=1 [Data_3_1Actions0] -ActiveWindow=false -Input=Alt+Left -IsDestinationWindow=false -Type=KEYBOARD_INPUT +Type=ACTIVATE_WINDOW + +[Data_3_1Actions0Window] +Comment=KSIRC window +WindowsCount=1 + +[Data_3_1Actions0Window0] +Class=ksirc +ClassType=1 +Comment=KSIRC +Role= +RoleType=0 +Title= +TitleType=0 +Type=SIMPLE +WindowTypes=33 [Data_3_1Conditions] Comment= ConditionsCount=0 [Data_3_1Triggers] -Comment=Gesture_triggers +Comment=Simple_action TriggersCount=1 [Data_3_1Triggers0] -Gesture=654 -Type=GESTURE +Key=Ctrl+Alt+I +Type=SHORTCUT +Uuid={3da3e877-deeb-4809-b92c-2abb1aa1b9ee} [Data_3_2] -Comment=Press, move down, move up, move down, release.\n -Enabled=true -Name=Duplicate Tab -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Comment=After pressing Alt+Ctrl+H the input of 'Hello' will be simulated, as if you typed it. This is especially useful if you have call to frequently type a word (for instance, 'unsigned'). Every keypress in the input is separated by a colon ':'. Note that the keypresses literally mean keypresses, so you have to write what you would press on the keyboard. In the table below, the left column shows the input and the right column shows what to type.\n\n"enter" (i.e. new line) Enter or Return\na (i.e. small a) A\nA (i.e. capital a) Shift+A\n: (colon) Shift+;\n' ' (space) Space +Enabled=false +Name=Type 'Hello' +Type=SIMPLE_ACTION_DATA [Data_3_2Actions] ActionsCount=1 [Data_3_2Actions0] -ActiveWindow=false -Input=Ctrl+Shift+D\n -IsDestinationWindow=false +DestinationWindow=2 +Input=Shift+H:E:L:L:O\n Type=KEYBOARD_INPUT [Data_3_2Conditions] @@ -663,216 +515,356 @@ Comment= ConditionsCount=0 [Data_3_2Triggers] -Comment=Gesture_triggers +Comment=Simple_action TriggersCount=1 [Data_3_2Triggers0] -Gesture=8525852 -Type=GESTURE +Key=Ctrl+Alt+H +Type=SHORTCUT +Uuid={0a08b899-7774-4f1e-b013-f36206bfe749} [Data_3_3] -Comment=Press, move down, move up, release.\n -Enabled=true -Name=Duplicate Window -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Comment=This action runs Konsole, after pressing Ctrl+Alt+T. +Enabled=false +Name=Run Konsole +Type=SIMPLE_ACTION_DATA [Data_3_3Actions] ActionsCount=1 [Data_3_3Actions0] -ActiveWindow=false -Input=Ctrl+D\n -IsDestinationWindow=false -Type=KEYBOARD_INPUT +CommandURL=konsole +Type=COMMAND_URL [Data_3_3Conditions] Comment= ConditionsCount=0 [Data_3_3Triggers] -Comment=Gesture_triggers +Comment=Simple_action TriggersCount=1 [Data_3_3Triggers0] -Gesture=85258 -Type=GESTURE +Key=Ctrl+Alt+T +Type=SHORTCUT +Uuid={38a63489-e009-4a05-8222-448345b0a33c} [Data_3_4] -Comment=Press, move right, release.\n -Enabled=true -Name=Forward -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Comment=Read the comment on the "Type 'Hello'" action first.\n\nQt Designer uses Ctrl+F4 for closing windows. In KDE, however, Ctrl+F4 is the shortcut for going to virtual desktop 4, so this shortcut does not work in Qt Designer. Further, Qt Designer does not use KDE's standard Ctrl+W for closing the window.\n\nThis problem can be solved by remapping Ctrl+W to Ctrl+F4 when the active window is Qt Designer. When Qt Designer is active, every time Ctrl+W is pressed, Ctrl+F4 will be sent to Qt Designer instead. In other applications, the effect of Ctrl+W is unchanged.\n\nWe now need to specify three things: A new shortcut trigger on 'Ctrl+W', a new keyboard input action sending Ctrl+F4, and a new condition that the active window is Qt Designer.\nQt Designer seems to always have title 'Qt Designer by Trolltech', so the condition will check for the active window having that title. +Enabled=false +Name=Remap Ctrl+W to Ctrl+F4 in Qt Designer +Type=GENERIC_ACTION_DATA [Data_3_4Actions] ActionsCount=1 [Data_3_4Actions0] -ActiveWindow=false -Input=Alt+Right -IsDestinationWindow=false +DestinationWindow=2 +Input=Ctrl+F4 Type=KEYBOARD_INPUT [Data_3_4Conditions] Comment= -ConditionsCount=0 +ConditionsCount=1 + +[Data_3_4Conditions0] +Type=ACTIVE_WINDOW + +[Data_3_4Conditions0Window] +Comment=Qt Designer +WindowsCount=1 + +[Data_3_4Conditions0Window0] +Class= +ClassType=0 +Comment= +Role= +RoleType=0 +Title=Qt Designer by Trolltech +TitleType=2 +Type=SIMPLE +WindowTypes=33 [Data_3_4Triggers] -Comment=Gesture_triggers +Comment= TriggersCount=1 [Data_3_4Triggers0] -Gesture=456 -Type=GESTURE +Key=Ctrl+W +Type=SHORTCUT +Uuid={a0d5d1d0-8239-49be-ba5e-e391fe9e58ea} [Data_3_5] -Comment=Press, move down, move half up, move right, move down, release.\n(Drawing a lowercase 'h'.)\n -Enabled=true -Name=Home -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Comment=By pressing Alt+Ctrl+W a D-Bus call will be performed that will show the minicli. You can use any kind of D-Bus call, just like using the command line 'qdbus' tool. +Enabled=false +Name=Perform D-Bus call 'qdbus org.kde.krunner /App display' +Type=SIMPLE_ACTION_DATA [Data_3_5Actions] ActionsCount=1 [Data_3_5Actions0] -ActiveWindow=false -Input=Ctrl+Home\n -IsDestinationWindow=false -Type=KEYBOARD_INPUT +Arguments= +Call=popupExecuteCommand +RemoteApp=org.kde.krunner +RemoteObj=/App +Type=DBUS [Data_3_5Conditions] Comment= ConditionsCount=0 [Data_3_5Triggers] -Comment=Gesture_triggers -TriggersCount=2 +Comment=Simple_action +TriggersCount=1 [Data_3_5Triggers0] -Gesture=741563 -Type=GESTURE - -[Data_3_5Triggers1] -Gesture=7414563 -Type=GESTURE +Key=Ctrl+Alt+W +Type=SHORTCUT +Uuid={287e699b-56dc-4d33-8836-aaf776ea4d80} [Data_3_6] -Comment=Press, move right, move down, move right, release.\nMozilla-style: Press, move down, move right, release.\n -Enabled=true -Name=Close Tab -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Comment=Read the comment on the "Type 'Hello'" action first.\n\nJust like the "Type 'Hello'" action, this one simulates keyboard input, specifically, after pressing Ctrl+Alt+B, it sends B to XMMS (B in XMMS jumps to the next song). The 'Send to specific window' checkbox is checked and a window with its class containing 'XMMS_Player' is specified; this will make the input always be sent to this window. This way, you can control XMMS even if, for instance, it is on a different virtual desktop.\n\n(Run 'xprop' and click on the XMMS window and search for WM_CLASS to see 'XMMS_Player'). +Enabled=false +Name=Next in XMMS +Type=SIMPLE_ACTION_DATA [Data_3_6Actions] ActionsCount=1 [Data_3_6Actions0] -ActiveWindow=false -Input=Ctrl+W\n -IsDestinationWindow=false +DestinationWindow=1 +Input=B Type=KEYBOARD_INPUT +[Data_3_6Actions0DestinationWindow] +Comment=XMMS window +WindowsCount=1 + +[Data_3_6Actions0DestinationWindow0] +Class=XMMS_Player +ClassType=1 +Comment=XMMS Player window +Role= +RoleType=0 +Title= +TitleType=0 +Type=SIMPLE +WindowTypes=33 + [Data_3_6Conditions] Comment= ConditionsCount=0 [Data_3_6Triggers] -Comment=Gesture_triggers -TriggersCount=2 +Comment=Simple_action +TriggersCount=1 [Data_3_6Triggers0] -Gesture=78523 +Key=Ctrl+Alt+B +Type=SHORTCUT +Uuid={ce29536a-9986-4339-b1bd-1dd1fc19e838} + +[Data_3_7] +Comment=Konqueror in KDE3.1 has tabs, and now you can also have gestures.\n\nJust press the middle mouse button and start drawing one of the gestures, and after you are finished, release the mouse button. If you only need to paste the selection, it still works, just click the middle mouse button. (You can change the mouse button to use in the global settings).\n\nRight now, there are the following gestures available:\nmove right and back left - Forward (Alt+Right)\nmove left and back right - Back (Alt+Left)\nmove up and back down - Up (Alt+Up)\ncircle anticlockwise - Reload (F5)\n\nThe gesture shapes can be entered by performing them in the configuration dialog. You can also look at your numeric pad to help you: gestures are recognized like a 3x3 grid of fields, numbered 1 to 9.\n\nNote that you must perform exactly the gesture to trigger the action. Because of this, it is possible to enter more gestures for the action. You should try to avoid complicated gestures where you change the direction of mouse movement more than once. For instance, 45654 or 74123 are simple to perform, but 1236987 may be already quite difficult.\n\nThe conditions for all gestures are defined in this group. All these gestures are active only if the active window is Konqueror (class contains 'konqueror'). +DataCount=4 +Enabled=false +Name=Konqi Gestures +SystemGroup=0 +Type=ACTION_DATA_GROUP + +[Data_3_7Conditions] +Comment=Konqueror window +ConditionsCount=1 + +[Data_3_7Conditions0] +Type=ACTIVE_WINDOW + +[Data_3_7Conditions0Window] +Comment=Konqueror +WindowsCount=1 + +[Data_3_7Conditions0Window0] +Class=konqueror +ClassType=1 +Comment=Konqueror +Role= +RoleType=0 +Title= +TitleType=0 +Type=SIMPLE +WindowTypes=33 + +[Data_3_7_1] +Comment= +Enabled=false +Name=Back +Type=SIMPLE_ACTION_DATA + +[Data_3_7_1Actions] +ActionsCount=1 + +[Data_3_7_1Actions0] +DestinationWindow=2 +Input=Alt+Left +Type=KEYBOARD_INPUT + +[Data_3_7_1Conditions] +Comment= +ConditionsCount=0 + +[Data_3_7_1Triggers] +Comment=Gesture_triggers +TriggersCount=3 + +[Data_3_7_1Triggers0] +GesturePointData=0,0.0625,1,1,0.5,0.0625,0.0625,1,0.875,0.5,0.125,0.0625,1,0.75,0.5,0.1875,0.0625,1,0.625,0.5,0.25,0.0625,1,0.5,0.5,0.3125,0.0625,1,0.375,0.5,0.375,0.0625,1,0.25,0.5,0.4375,0.0625,1,0.125,0.5,0.5,0.0625,0,0,0.5,0.5625,0.0625,0,0.125,0.5,0.625,0.0625,0,0.25,0.5,0.6875,0.0625,0,0.375,0.5,0.75,0.0625,0,0.5,0.5,0.8125,0.0625,0,0.625,0.5,0.875,0.0625,0,0.75,0.5,0.9375,0.0625,0,0.875,0.5,1,0,0,1,0.5 Type=GESTURE -[Data_3_6Triggers1] -Gesture=74123 +[Data_3_7_1Triggers1] +GesturePointData=0,0.0833333,1,0.5,0.5,0.0833333,0.0833333,1,0.375,0.5,0.166667,0.0833333,1,0.25,0.5,0.25,0.0833333,1,0.125,0.5,0.333333,0.0833333,0,0,0.5,0.416667,0.0833333,0,0.125,0.5,0.5,0.0833333,0,0.25,0.5,0.583333,0.0833333,0,0.375,0.5,0.666667,0.0833333,0,0.5,0.5,0.75,0.0833333,0,0.625,0.5,0.833333,0.0833333,0,0.75,0.5,0.916667,0.0833333,0,0.875,0.5,1,0,0,1,0.5 Type=GESTURE -[Data_3_7] -Comment=Press, move up, release.\nConflicts with Opera-style 'Up #2', which is disabled by default.\n -Enabled=true -Name=New Tab -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +[Data_3_7_1Triggers2] +GesturePointData=0,0.0833333,1,1,0.5,0.0833333,0.0833333,1,0.875,0.5,0.166667,0.0833333,1,0.75,0.5,0.25,0.0833333,1,0.625,0.5,0.333333,0.0833333,1,0.5,0.5,0.416667,0.0833333,1,0.375,0.5,0.5,0.0833333,1,0.25,0.5,0.583333,0.0833333,1,0.125,0.5,0.666667,0.0833333,0,0,0.5,0.75,0.0833333,0,0.125,0.5,0.833333,0.0833333,0,0.25,0.5,0.916667,0.0833333,0,0.375,0.5,1,0,0,0.5,0.5 +Type=GESTURE + +[Data_3_7_2] +Comment= +Enabled=false +Name=Forward +Type=SIMPLE_ACTION_DATA -[Data_3_7Actions] +[Data_3_7_2Actions] ActionsCount=1 -[Data_3_7Actions0] -ActiveWindow=false -Input=Ctrl+Shift+N -IsDestinationWindow=false +[Data_3_7_2Actions0] +DestinationWindow=2 +Input=Alt+Right Type=KEYBOARD_INPUT -[Data_3_7Conditions] +[Data_3_7_2Conditions] Comment= ConditionsCount=0 -[Data_3_7Triggers] +[Data_3_7_2Triggers] Comment=Gesture_triggers -TriggersCount=1 +TriggersCount=3 -[Data_3_7Triggers0] -Gesture=258 +[Data_3_7_2Triggers0] +GesturePointData=0,0.0625,0,0,0.5,0.0625,0.0625,0,0.125,0.5,0.125,0.0625,0,0.25,0.5,0.1875,0.0625,0,0.375,0.5,0.25,0.0625,0,0.5,0.5,0.3125,0.0625,0,0.625,0.5,0.375,0.0625,0,0.75,0.5,0.4375,0.0625,0,0.875,0.5,0.5,0.0625,1,1,0.5,0.5625,0.0625,1,0.875,0.5,0.625,0.0625,1,0.75,0.5,0.6875,0.0625,1,0.625,0.5,0.75,0.0625,1,0.5,0.5,0.8125,0.0625,1,0.375,0.5,0.875,0.0625,1,0.25,0.5,0.9375,0.0625,1,0.125,0.5,1,0,0,0,0.5 Type=GESTURE -[Data_3_8] -Comment=Press, move down, release.\n -Enabled=true -Name=New Window -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +[Data_3_7_2Triggers1] +GesturePointData=0,0.0833333,0,0.5,0.5,0.0833333,0.0833333,0,0.625,0.5,0.166667,0.0833333,0,0.75,0.5,0.25,0.0833333,0,0.875,0.5,0.333333,0.0833333,1,1,0.5,0.416667,0.0833333,1,0.875,0.5,0.5,0.0833333,1,0.75,0.5,0.583333,0.0833333,1,0.625,0.5,0.666667,0.0833333,1,0.5,0.5,0.75,0.0833333,1,0.375,0.5,0.833333,0.0833333,1,0.25,0.5,0.916667,0.0833333,1,0.125,0.5,1,0,0,0,0.5 +Type=GESTURE -[Data_3_8Actions] +[Data_3_7_2Triggers2] +GesturePointData=0,0.0833333,0,0,0.5,0.0833333,0.0833333,0,0.125,0.5,0.166667,0.0833333,0,0.25,0.5,0.25,0.0833333,0,0.375,0.5,0.333333,0.0833333,0,0.5,0.5,0.416667,0.0833333,0,0.625,0.5,0.5,0.0833333,0,0.75,0.5,0.583333,0.0833333,0,0.875,0.5,0.666667,0.0833333,1,1,0.5,0.75,0.0833333,1,0.875,0.5,0.833333,0.0833333,1,0.75,0.5,0.916667,0.0833333,1,0.625,0.5,1,0,0,0.5,0.5 +Type=GESTURE + +[Data_3_7_3] +Comment= +Enabled=false +Name=Up +Type=SIMPLE_ACTION_DATA + +[Data_3_7_3Actions] ActionsCount=1 -[Data_3_8Actions0] -ActiveWindow=false -Input=Ctrl+N\n -IsDestinationWindow=false +[Data_3_7_3Actions0] +DestinationWindow=2 +Input=Alt+Up Type=KEYBOARD_INPUT -[Data_3_8Conditions] +[Data_3_7_3Conditions] Comment= ConditionsCount=0 -[Data_3_8Triggers] +[Data_3_7_3Triggers] Comment=Gesture_triggers -TriggersCount=1 +TriggersCount=3 -[Data_3_8Triggers0] -Gesture=852 +[Data_3_7_3Triggers0] +GesturePointData=0,0.0625,-0.5,0.5,1,0.0625,0.0625,-0.5,0.5,0.875,0.125,0.0625,-0.5,0.5,0.75,0.1875,0.0625,-0.5,0.5,0.625,0.25,0.0625,-0.5,0.5,0.5,0.3125,0.0625,-0.5,0.5,0.375,0.375,0.0625,-0.5,0.5,0.25,0.4375,0.0625,-0.5,0.5,0.125,0.5,0.0625,0.5,0.5,0,0.5625,0.0625,0.5,0.5,0.125,0.625,0.0625,0.5,0.5,0.25,0.6875,0.0625,0.5,0.5,0.375,0.75,0.0625,0.5,0.5,0.5,0.8125,0.0625,0.5,0.5,0.625,0.875,0.0625,0.5,0.5,0.75,0.9375,0.0625,0.5,0.5,0.875,1,0,0,0.5,1 Type=GESTURE -[Data_3_9] -Comment=Press, move up, move down, release.\n -Enabled=true +[Data_3_7_3Triggers1] +GesturePointData=0,0.0833333,-0.5,0.5,1,0.0833333,0.0833333,-0.5,0.5,0.875,0.166667,0.0833333,-0.5,0.5,0.75,0.25,0.0833333,-0.5,0.5,0.625,0.333333,0.0833333,-0.5,0.5,0.5,0.416667,0.0833333,-0.5,0.5,0.375,0.5,0.0833333,-0.5,0.5,0.25,0.583333,0.0833333,-0.5,0.5,0.125,0.666667,0.0833333,0.5,0.5,0,0.75,0.0833333,0.5,0.5,0.125,0.833333,0.0833333,0.5,0.5,0.25,0.916667,0.0833333,0.5,0.5,0.375,1,0,0,0.5,0.5 +Type=GESTURE + +[Data_3_7_3Triggers2] +GesturePointData=0,0.0833333,-0.5,0.5,0.5,0.0833333,0.0833333,-0.5,0.5,0.375,0.166667,0.0833333,-0.5,0.5,0.25,0.25,0.0833333,-0.5,0.5,0.125,0.333333,0.0833333,0.5,0.5,0,0.416667,0.0833333,0.5,0.5,0.125,0.5,0.0833333,0.5,0.5,0.25,0.583333,0.0833333,0.5,0.5,0.375,0.666667,0.0833333,0.5,0.5,0.5,0.75,0.0833333,0.5,0.5,0.625,0.833333,0.0833333,0.5,0.5,0.75,0.916667,0.0833333,0.5,0.5,0.875,1,0,0,0.5,1 +Type=GESTURE + +[Data_3_7_4] +Comment= +Enabled=false Name=Reload -Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA +Type=SIMPLE_ACTION_DATA -[Data_3_9Actions] +[Data_3_7_4Actions] ActionsCount=1 -[Data_3_9Actions0] -ActiveWindow=false +[Data_3_7_4Actions0] +DestinationWindow=2 Input=F5 -IsDestinationWindow=false Type=KEYBOARD_INPUT -[Data_3_9Conditions] +[Data_3_7_4Conditions] Comment= ConditionsCount=0 -[Data_3_9Triggers] +[Data_3_7_4Triggers] Comment=Gesture_triggers -TriggersCount=1 +TriggersCount=3 + +[Data_3_7_4Triggers0] +GesturePointData=0,0.03125,0,0,1,0.03125,0.03125,0,0.125,1,0.0625,0.03125,0,0.25,1,0.09375,0.03125,0,0.375,1,0.125,0.03125,0,0.5,1,0.15625,0.03125,0,0.625,1,0.1875,0.03125,0,0.75,1,0.21875,0.03125,0,0.875,1,0.25,0.03125,-0.5,1,1,0.28125,0.03125,-0.5,1,0.875,0.3125,0.03125,-0.5,1,0.75,0.34375,0.03125,-0.5,1,0.625,0.375,0.03125,-0.5,1,0.5,0.40625,0.03125,-0.5,1,0.375,0.4375,0.03125,-0.5,1,0.25,0.46875,0.03125,-0.5,1,0.125,0.5,0.03125,1,1,0,0.53125,0.03125,1,0.875,0,0.5625,0.03125,1,0.75,0,0.59375,0.03125,1,0.625,0,0.625,0.03125,1,0.5,0,0.65625,0.03125,1,0.375,0,0.6875,0.03125,1,0.25,0,0.71875,0.03125,1,0.125,0,0.75,0.03125,0.5,0,0,0.78125,0.03125,0.5,0,0.125,0.8125,0.03125,0.5,0,0.25,0.84375,0.03125,0.5,0,0.375,0.875,0.03125,0.5,0,0.5,0.90625,0.03125,0.5,0,0.625,0.9375,0.03125,0.5,0,0.75,0.96875,0.03125,0.5,0,0.875,1,0,0,0,1 +Type=GESTURE + +[Data_3_7_4Triggers1] +GesturePointData=0,0.0277778,0,0,1,0.0277778,0.0277778,0,0.125,1,0.0555556,0.0277778,0,0.25,1,0.0833333,0.0277778,0,0.375,1,0.111111,0.0277778,0,0.5,1,0.138889,0.0277778,0,0.625,1,0.166667,0.0277778,0,0.75,1,0.194444,0.0277778,0,0.875,1,0.222222,0.0277778,-0.5,1,1,0.25,0.0277778,-0.5,1,0.875,0.277778,0.0277778,-0.5,1,0.75,0.305556,0.0277778,-0.5,1,0.625,0.333333,0.0277778,-0.5,1,0.5,0.361111,0.0277778,-0.5,1,0.375,0.388889,0.0277778,-0.5,1,0.25,0.416667,0.0277778,-0.5,1,0.125,0.444444,0.0277778,1,1,0,0.472222,0.0277778,1,0.875,0,0.5,0.0277778,1,0.75,0,0.527778,0.0277778,1,0.625,0,0.555556,0.0277778,1,0.5,0,0.583333,0.0277778,1,0.375,0,0.611111,0.0277778,1,0.25,0,0.638889,0.0277778,1,0.125,0,0.666667,0.0277778,0.5,0,0,0.694444,0.0277778,0.5,0,0.125,0.722222,0.0277778,0.5,0,0.25,0.75,0.0277778,0.5,0,0.375,0.777778,0.0277778,0.5,0,0.5,0.805556,0.0277778,0.5,0,0.625,0.833333,0.0277778,0.5,0,0.75,0.861111,0.0277778,0.5,0,0.875,0.888889,0.0277778,0,0,1,0.916667,0.0277778,0,0.125,1,0.944444,0.0277778,0,0.25,1,0.972222,0.0277778,0,0.375,1,1,0,0,0.5,1 +Type=GESTURE -[Data_3_9Triggers0] -Gesture=25852 +[Data_3_7_4Triggers2] +GesturePointData=0,0.0277778,0.5,0,0.5,0.0277778,0.0277778,0.5,0,0.625,0.0555556,0.0277778,0.5,0,0.75,0.0833333,0.0277778,0.5,0,0.875,0.111111,0.0277778,0,0,1,0.138889,0.0277778,0,0.125,1,0.166667,0.0277778,0,0.25,1,0.194444,0.0277778,0,0.375,1,0.222222,0.0277778,0,0.5,1,0.25,0.0277778,0,0.625,1,0.277778,0.0277778,0,0.75,1,0.305556,0.0277778,0,0.875,1,0.333333,0.0277778,-0.5,1,1,0.361111,0.0277778,-0.5,1,0.875,0.388889,0.0277778,-0.5,1,0.75,0.416667,0.0277778,-0.5,1,0.625,0.444444,0.0277778,-0.5,1,0.5,0.472222,0.0277778,-0.5,1,0.375,0.5,0.0277778,-0.5,1,0.25,0.527778,0.0277778,-0.5,1,0.125,0.555556,0.0277778,1,1,0,0.583333,0.0277778,1,0.875,0,0.611111,0.0277778,1,0.75,0,0.638889,0.0277778,1,0.625,0,0.666667,0.0277778,1,0.5,0,0.694444,0.0277778,1,0.375,0,0.722222,0.0277778,1,0.25,0,0.75,0.0277778,1,0.125,0,0.777778,0.0277778,0.5,0,0,0.805556,0.0277778,0.5,0,0.125,0.833333,0.0277778,0.5,0,0.25,0.861111,0.0277778,0.5,0,0.375,0.888889,0.0277778,0.5,0,0.5,0.916667,0.0277778,0.5,0,0.625,0.944444,0.0277778,0.5,0,0.75,0.972222,0.0277778,0.5,0,0.875,1,0,0,0,1 Type=GESTURE +[Data_3_8] +Comment=After pressing Win+E (Tux+E) a WWW browser will be launched, and it will open http://www.kde.org . You may run all kind of commands you can run in minicli (Alt+F2). +Enabled=false +Name=Go to KDE Website +Type=SIMPLE_ACTION_DATA + +[Data_3_8Actions] +ActionsCount=1 + +[Data_3_8Actions0] +CommandURL=http://www.kde.org +Type=COMMAND_URL + +[Data_3_8Conditions] +Comment= +ConditionsCount=0 + +[Data_3_8Triggers] +Comment=Simple_action +TriggersCount=1 + +[Data_3_8Triggers0] +Key=Meta+E +Type=SHORTCUT +Uuid={0203f328-7fc6-4c14-95f9-aebd671b46c2} + [Data_4] -Comment=These entries were created using Menu Editor. +AllowMerge=true +Comment=This group contains actions that are set up by default. DataCount=1 Enabled=true -Name=Menu Editor entries -SystemGroup=1 +ImportId=printscreen +Name=Preset Actions +SystemGroup=0 Type=ACTION_DATA_GROUP [Data_4Conditions] @@ -880,17 +872,17 @@ Comment= ConditionsCount=0 [Data_4_1] -Comment= +Comment=Launches KSnapShot when PrintScrn is pressed. Enabled=true -Name=K Menu - kde-konsole.desktop -Type=MENUENTRY_SHORTCUT_ACTION_DATA +Name=PrintScreen +Type=SIMPLE_ACTION_DATA [Data_4_1Actions] ActionsCount=1 [Data_4_1Actions0] -CommandURL=kde-konsole.desktop -Type=MENUENTRY +CommandURL=ksnapshot +Type=COMMAND_URL [Data_4_1Conditions] Comment= @@ -901,8 +893,9 @@ Comment=Simple_action TriggersCount=1 [Data_4_1Triggers0] -Key=Ctrl+Grave +Key=Print Type=SHORTCUT +Uuid={459c2eda-6b72-4840-9b73-15c9d5b3e4d9} [Directories] dir_config[$d] @@ -912,15 +905,10 @@ Disabled=true MouseButton=2 Timeout=300 -[GesturesExclude] -Comment= -WindowsCount=0 - [Main] -AlreadyImported=printscreen,kde32b1,konqueror_gestures_kde321 -Autostart=true +AlreadyImported=defaults,konqueror_gestures_kde321,kde32b1,printscreen Disabled=false Version=2 [Voice] -Shortcut=Shift+F12 +Shortcut= diff --git a/mop/template/.kde/share/config/kicker_menubarpanelrc b/mop/template/.kde/share/config/kicker_menubarpanelrc deleted file mode 100644 index 6885538..0000000 --- a/mop/template/.kde/share/config/kicker_menubarpanelrc +++ /dev/null @@ -1,13 +0,0 @@ -[Applet_1] -ConfigFile=menu_panelappletrc -DesktopFile=menuapplet.desktop -FreeSpace2=0 -WidthForHeightHint=10 - -[General] -Applets2=Applet_1 -CustomSize=28 -IExist=true -Position=2 -Size=4 -XineramaScreen=-2 diff --git a/mop/template/.kde/share/config/kickerrc b/mop/template/.kde/share/config/kickerrc deleted file mode 100644 index 2fdd963..0000000 --- a/mop/template/.kde/share/config/kickerrc +++ /dev/null @@ -1,58 +0,0 @@ -[$Version] -update_info=kickerrc.upd:kde_3_1_sizeChanges,kickerrc.upd:kde_3_4_reverseLayout,kickerrc.upd:kde_3_5_kconfigXTize - -[Applet_1] -ConfigFile=minipager_panelapplet_ru4mugifldxs8zsr45ea_rc -DesktopFile=minipagerapplet.desktop -FreeSpace2=0 -WidthForHeightHint=125 - -[Applet_2] -ConfigFile=taskbar_panelapplet_subriwabkt1lx55pkn4v_rc -DesktopFile=taskbarapplet.desktop -FreeSpace2=0 -WidthForHeightHint=210 - -[Applet_3] -ConfigFile=systemtray_panelappletrc -DesktopFile=systemtrayapplet.desktop -FreeSpace2=1 -WidthForHeightHint=60 - -[Applet_4] -ConfigFile=clock_panelapplet_ybw6zmwbra9j5l8npjx9_rc -DesktopFile=clockapplet.desktop -FreeSpace2=1 -WidthForHeightHint=77 - -[General] -Applets2=KMenuButton_1,ServiceButton_1,ServiceButton_3,Applet_1,Applet_2,Applet_3,Applet_4 -IExist=true -UntrustedApplets= -UntrustedExtensions= -UseBackgroundTheme=true - -[KMenuButton_1] -FreeSpace2=0 - -[Menubar Panel] -ConfigFile=kicker_menubarpanelrc -DesktopFile=childpanelextension.desktop -UserHidden=0 - -[ServiceButton_1] -DesktopFile=/usr/share/applications/kde/Home.desktop -FreeSpace2=0 -StorageId=kde-Home.desktop - -[ServiceButton_3] -DesktopFile=/var/lib/menu-xdg/applications/menu-xdg/X-Debian-XShells-konsole.desktop -FreeSpace2=0 -StorageId=menu-xdg-X-Debian-XShells-konsole.desktop - -[buttons] -EnableIconZoom=true - -[menus] -MenuEntryFormat=NameAndDescription -RecentAppsStat=13 1183221596 /usr/share/applications/kde/KControl.desktop,1 1181297898 /var/lib/menu-xdg/applications/menu-xdg/X-Debian-Apps-Editors-jed.desktop diff --git a/mop/template/.kde/share/config/kickoffrc b/mop/template/.kde/share/config/kickoffrc new file mode 100644 index 0000000..3a4aac8 --- /dev/null +++ b/mop/template/.kde/share/config/kickoffrc @@ -0,0 +1,8 @@ +[Favorites] +FavoriteURLs=/usr/share/applications/kde4/konqbrowser.desktop,/usr/share/applications/kde4/systemsettings.desktop,/usr/share/applications/kde4/dolphin.desktop + +[KRunner] +loadAll=false + +[KRunner][PlasmaRunnerManager] +pluginWhiteList=places,shell,services,bookmarks,recentdocuments,locations diff --git a/mop/template/.kde/share/config/kio_nepomuksearchrc b/mop/template/.kde/share/config/kio_nepomuksearchrc new file mode 100644 index 0000000..322d92e --- /dev/null +++ b/mop/template/.kde/share/config/kio_nepomuksearchrc @@ -0,0 +1,4 @@ +[General] +Custom query= +Root query=<?xml version="1.0"?><filequery queryFiles="true" queryFolders="false" limit="0" offset="0" fullTextScoring="false" fullTextScoringOrder="desc" flags=""><comparison property="http://www.semanticdesktop.org/ontologies/2007/01/19/nie#lastModified" comparator=":" sortWeight="1" sortOrder="desc" inverted="false"/></filequery>\n +Root query limit=10 diff --git a/mop/template/.kde/share/config/klaunchrc b/mop/template/.kde/share/config/klaunchrc deleted file mode 100644 index 1ca9858..0000000 --- a/mop/template/.kde/share/config/klaunchrc +++ /dev/null @@ -1,11 +0,0 @@ -[BusyCursorSettings] -Blinking=false -Bouncing=false -Timeout=30 - -[FeedbackStyle] -BusyCursor=false -TaskbarButton=false - -[TaskbarButtonSettings] -Timeout=30 diff --git a/mop/template/.kde/share/config/klipperrc b/mop/template/.kde/share/config/klipperrc index fd75358..1067c16 100644 --- a/mop/template/.kde/share/config/klipperrc +++ b/mop/template/.kde/share/config/klipperrc @@ -1,6 +1,2 @@ [$Version] -update_info=klippershortcuts.upd:04112002,klipperrc.upd:25082001,klipperrc.upd:kde3.1 - -[General] -AutoStart=true -Synchronize=false +update_info=klipper-kconfigxt.upd:KlipperNoSpacesInKeyNames diff --git a/mop/template/.kde/share/config/kmailrc b/mop/template/.kde/share/config/kmailrc index 0e59df7..f33e51e 100644 --- a/mop/template/.kde/share/config/kmailrc +++ b/mop/template/.kde/share/config/kmailrc @@ -1,5 +1,2 @@ [$Version] -update_info=kmail.upd:1,kmail.upd:4,kmail.upd:5,kmail.upd:6,kmail.upd:7,kmail.upd:8,kmail.upd:9,kmail.upd:3.1-update-identities,kmail.upd:3.1-use-identity-uoids,kmail.upd:3.1-new-mail-notification,kmail.upd:3.2-update-loop-on-goto-unread-settings,kmail.upd:3.1.4-dont-use-UOID-0-for-any-identity,kmail.upd:3.2-misc,kmail.upd:3.2-moves,kmail.upd:3.3-use-ID-for-accounts,kmail.upd:3.3-move-identities-to-own-file,kmail.upd:3.3-aegypten-kpgprc-to-kmailrc,kmail.upd:3.3-misc,kmail.upd:3.3b1-misc,kmail.upd:3.4,kmail.upd:3.4a,kmail.upd:3.4b,kmail.upd:3.4.1,kmail.upd:3.5-filter-icons,kmail.upd:3.5.4,kmail.upd:3.3-update-filter-rules - -[Composer] -previous-identity= +update_info=kmail.upd:1,kmail.upd:4,kmail.upd:5,kmail.upd:6,kmail.upd:7,kmail.upd:8,kmail.upd:9,kmail.upd:3.1-update-identities,kmail.upd:3.1-use-identity-uoids,kmail.upd:3.1-new-mail-notification,kmail.upd:3.2-update-loop-on-goto-unread-settings,kmail.upd:3.1.4-dont-use-UOID-0-for-any-identity,kmail.upd:3.2-misc,kmail.upd:3.2-moves,kmail.upd:3.3-use-ID-for-accounts,kmail.upd:3.3-update-filter-rules,kmail.upd:3.3-move-identities-to-own-file,kmail.upd:3.3-aegypten-kpgprc-to-kmailrc,kmail.upd:3.3-misc,kmail.upd:3.3b1-misc,kmail.upd:3.4,kmail.upd:3.4a,kmail.upd:3.4b,kmail.upd:3.4.1,kmail.upd:3.5.4,kmail.upd:3.5.7-imap-flag-migration,kmail.upd:4.0-misc,kmail.upd:4.2,mailtransports.upd:initial-kmail-migration diff --git a/mop/template/.kde/share/config/kmixctrlrc b/mop/template/.kde/share/config/kmixctrlrc new file mode 100644 index 0000000..066be54 --- /dev/null +++ b/mop/template/.kde/share/config/kmixctrlrc @@ -0,0 +1,164 @@ +[MixerALSA::HDA_ATI_HDMI:1] +name= + +[MixerALSA::HDA_ATI_HDMI:1.DevIEC958:0] +is_muted=true +is_recsrc=false +name=IEC958 + +[MixerALSA::HDA_Intel:1] +name= + +[MixerALSA::HDA_Intel:1.DevAuto-Mute_Mode:0.penum] +enum_id=1 +is_muted=false +is_recsrc=false +name=Auto-Mute Mode + +[MixerALSA::HDA_Intel:1.DevCapture:0] +is_muted=false +is_recsrc=true +name=Capture +volumeLCapture=0 +volumeRCapture=0 + +[MixerALSA::HDA_Intel:1.DevCapture:1] +is_muted=false +is_recsrc=false +name=Capture 2 +volumeLCapture=0 +volumeRCapture=0 + +[MixerALSA::HDA_Intel:1.DevCapture:2] +is_muted=false +is_recsrc=false +name=Capture 3 +volumeLCapture=0 +volumeRCapture=0 + +[MixerALSA::HDA_Intel:1.DevCenter:0] +is_muted=false +is_recsrc=false +name=Center +volumeL=62 + +[MixerALSA::HDA_Intel:1.DevDigital:0] +is_muted=false +is_recsrc=false +name=Digital +volumeLCapture=0 +volumeRCapture=0 + +[MixerALSA::HDA_Intel:1.DevFront:0] +is_muted=false +is_recsrc=false +name=Front +volumeL=52 +volumeR=52 + +[MixerALSA::HDA_Intel:1.DevFront_Mic:0] +is_muted=true +is_recsrc=false +name=Front Mic +volumeL=0 +volumeR=0 + +[MixerALSA::HDA_Intel:1.DevFront_Mic_Boost:0] +is_muted=false +is_recsrc=false +name=Front Mic Boost +volumeL=0 +volumeLCapture=0 +volumeR=0 +volumeRCapture=0 + +[MixerALSA::HDA_Intel:1.DevHeadphone:0] +is_muted=false +is_recsrc=false +name=Headphone +volumeL=45 +volumeR=45 + +[MixerALSA::HDA_Intel:1.DevIEC958:0] +is_muted=true +is_recsrc=false +name=IEC958 + +[MixerALSA::HDA_Intel:1.DevIEC958_Default_PCM:0] +is_muted=false +is_recsrc=false +name=IEC958 Default PCM + +[MixerALSA::HDA_Intel:1.DevInput_Source:0.cenum] +enum_id=0 +is_muted=false +is_recsrc=false +name=Input Source + +[MixerALSA::HDA_Intel:1.DevInput_Source:1.cenum] +enum_id=0 +is_muted=false +is_recsrc=false +name=Input Source 2 + +[MixerALSA::HDA_Intel:1.DevInput_Source:2.cenum] +enum_id=0 +is_muted=false +is_recsrc=false +name=Input Source 3 + +[MixerALSA::HDA_Intel:1.DevLFE:0] +is_muted=false +is_recsrc=false +name=LFE +volumeL=52 + +[MixerALSA::HDA_Intel:1.DevLine:0] +is_muted=true +is_recsrc=false +name=Line +volumeL=0 +volumeR=0 + +[MixerALSA::HDA_Intel:1.DevMaster:0] +is_muted=false +is_recsrc=false +name=Master +volumeL=52 + +[MixerALSA::HDA_Intel:1.DevPCM:0] +is_muted=false +is_recsrc=false +name=PCM +volumeL=255 +volumeR=255 + +[MixerALSA::HDA_Intel:1.DevRear_Mic:0] +is_muted=true +is_recsrc=false +name=Rear Mic +volumeL=0 +volumeR=0 + +[MixerALSA::HDA_Intel:1.DevRear_Mic_Boost:0] +is_muted=false +is_recsrc=false +name=Rear Mic Boost +volumeL=0 +volumeLCapture=0 +volumeR=0 +volumeRCapture=0 + +[MixerALSA::HDA_Intel:1.DevSide:0] +is_muted=false +is_recsrc=false +name=Side +volumeL=0 +volumeR=0 + +[MixerALSA::HDA_Intel:1.DevSurround:0] +is_muted=false +is_recsrc=false +name=Surround +volumeL=62 +volumeR=62 diff --git a/mop/template/.kde/share/config/knewsticker_appletrc b/mop/template/.kde/share/config/knewsticker_appletrc deleted file mode 100644 index 2e6221f..0000000 --- a/mop/template/.kde/share/config/knewsticker_appletrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=knewsticker.upd:KNewsTicker-0.2-Rename-KDE3,knewsticker.upd:KNewsTicker-0.2-Rename-KDE3.1 diff --git a/mop/template/.kde/share/config/knewsticker_panelappletrc b/mop/template/.kde/share/config/knewsticker_panelappletrc deleted file mode 100644 index bc50938..0000000 --- a/mop/template/.kde/share/config/knewsticker_panelappletrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=knewsticker.upd:KNewsTicker-0.2-Rename-KDE3.1 diff --git a/mop/template/.kde/share/config/knewstickerappletrc b/mop/template/.kde/share/config/knewstickerappletrc deleted file mode 100644 index a047283..0000000 --- a/mop/template/.kde/share/config/knewstickerappletrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=knewsticker.upd:KNewsTicker-0.2,knewsticker.upd:KNewsTicker-0.2-Rename-KDE3 diff --git a/mop/template/.kde/share/config/knewstickerrc b/mop/template/.kde/share/config/knewstickerrc deleted file mode 100644 index 58e6392..0000000 --- a/mop/template/.kde/share/config/knewstickerrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=knewsticker.upd:KNewsTicker-0.2 diff --git a/mop/template/.kde/share/config/knfsshare b/mop/template/.kde/share/config/knfsshare deleted file mode 100644 index 8d95f3c..0000000 --- a/mop/template/.kde/share/config/knfsshare +++ /dev/null @@ -1,2 +0,0 @@ -[General] -exportsFile=/etc/exports diff --git a/mop/template/.kde/share/config/knoderc b/mop/template/.kde/share/config/knoderc new file mode 100644 index 0000000..98bd961 --- /dev/null +++ b/mop/template/.kde/share/config/knoderc @@ -0,0 +1,2 @@ +[$Version] +update_info=mailtransports.upd:initial-knode-migration diff --git a/mop/template/.kde/share/config/knotifyrc b/mop/template/.kde/share/config/knotifyrc index 3f364ef..13f83d7 100644 --- a/mop/template/.kde/share/config/knotifyrc +++ b/mop/template/.kde/share/config/knotifyrc @@ -1,7 +1,2 @@ -[Misc] -LastConfiguredApp=knotify - -[StartProgress] -Arts Init=false -KNotify Init=true -Use Arts=false +[Phonon::AudioOutput] +KNotify_Volume=1 diff --git a/mop/template/.kde/share/config/konq_history b/mop/template/.kde/share/config/konq_history deleted file mode 100644 index 27ade75..0000000 --- a/mop/template/.kde/share/config/konq_history +++ /dev/null @@ -1,6 +0,0 @@ -[History] -CompletionItems=unused - -[Location Bar] -ComboContents=http://www.google.com -ComboIconCache=http://www.google.com,www diff --git a/mop/template/.kde/share/config/konqiconviewrc b/mop/template/.kde/share/config/konqiconviewrc deleted file mode 100644 index 5984582..0000000 --- a/mop/template/.kde/share/config/konqiconviewrc +++ /dev/null @@ -1,5 +0,0 @@ -[Settings] -DontPreview= -PreviewsEnabled=true -SortDirsFirst=true -SortingCriterion=sort_nci diff --git a/mop/template/.kde/share/config/konqsidebartng.rc b/mop/template/.kde/share/config/konqsidebartng.rc deleted file mode 100644 index 0c6414b..0000000 --- a/mop/template/.kde/share/config/konqsidebartng.rc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=konqsidebartng.upd:konqsidebartng_rc diff --git a/mop/template/.kde/share/config/konquerorrc b/mop/template/.kde/share/config/konquerorrc index 0ae6bf3..3c3347d 100644 --- a/mop/template/.kde/share/config/konquerorrc +++ b/mop/template/.kde/share/config/konquerorrc @@ -1,52 +1,2 @@ [$Version] update_info=kfmclient_3_2.upd:kfmclient_3_2 - -[FMSettings] -AlwaysNewWin=false -HomeURL=$HOME -RenameIconDirectly=false -ShowFileTips=true -ShowPreviewsInFileTips=true -UnderlineLinks=false - -[HTML Settings] -AutomaticDetectionLanguage=0 - -[KonqMainWindow Toolbar Speech Toolbar] -IconText=IconOnly -Index=4 - -[KonqMainWindow Toolbar bookmarkToolBar] -Hidden=true -IconText=IconTextRight -Index=3 - -[KonqMainWindow Toolbar extraToolBar] -IconText=IconOnly -Index=0 - -[KonqMainWindow Toolbar locationToolBar] -IconText=IconOnly -Index=2 - -[KonqMainWindow Toolbar mainToolBar] -Index=1 - -[MainView Settings] -ToggableViewsShown=konsolepart -ViewMode=konq_treeview - -[ModeToolBarServices] -konq_iconview=konq_iconview -konq_listview=konq_treeview - -[SearchBar] -CurrentEngine=google -Mode=1 - -[Settings] -BgImage=kde4ever.png - -[Trash] -ConfirmDelete=true -ConfirmTrash=true diff --git a/mop/template/.kde/share/config/konsolerc b/mop/template/.kde/share/config/konsolerc index f62aed7..4d20364 100644 --- a/mop/template/.kde/share/config/konsolerc +++ b/mop/template/.kde/share/config/konsolerc @@ -1,27 +1,5 @@ -[$Version] -update_info=konsole.upd:kde2.2/r1,konsole.upd:kde3.0/r1 - -[Desktop Entry] -ActiveSession=0 -AutoResizeTabs=false -DefaultSession=shell.desktop -DynamicTabHide=false -EncodingName=Default -Fullscreen=false -Height 1024=478 -TabColor=0,0,0 -TabViewMode=0 -Width 1280=666 -bellmode=0 -class=konsole-mainwindow#1 -defaultfont=Monospace,10,-1,2,50,0,0,0,0,0 -history=1000 -historyenabled=true -keytab=default -schema=WhiteOnBlack.schema -scrollbar=0 -tabbar=0 - -[TipOfDay] -RunOnStart=false -TipLastShown=2007,6,10,15,41,51 +[MainWindow] +Height 1024=637 +State=AAAA/wAAAAD9AAAAAAAAA00AAAJpAAAABAAAAAQAAAAIAAAACPwAAAAA +ToolBarsMovable=Disabled +Width 1280=845 diff --git a/mop/template/.kde/share/config/kopeterc b/mop/template/.kde/share/config/kopeterc index bb01844..a32b63c 100644 --- a/mop/template/.kde/share/config/kopeterc +++ b/mop/template/.kde/share/config/kopeterc @@ -1,2 +1,2 @@ [$Version] -update_info=kopete-nameTracking.upd:kopete0.9/r1,kopete-pluginloader.upd:kopete0.7/r1,kopete-account-kconf_update.upd:kopete0.7/r1,kopete-account-kconf_update.upd:kopete0.10/r1,kopete-jabberpriorityaddition-kconf_update.upd:kopete0.9/r1,kopete-jabberproxytype-kconf_update.upd:kopete0.9/r1,kopete-pluginloader2.upd:kopete0.8/r1 +update_info=kopete-update_yahoo_server.upd:kopete-update-yahoo-server/r1,kopete-pluginloader.upd:kopete0.7/r1,kopete-update_icq_server.upd:kopete-update-icq-server/r1,kopete-gaim_to_pidgin_style.upd:kopete0.70.85/r1,kopete-pluginloader2.upd:kopete0.8/r1,kopete-initialstatus.upd:kopete0.60.80/r1,kopete-jabberproxytype-kconf_update.upd:kopete0.9/r1,kopete-account-kconf_update.upd:kopete0.7/r1,kopete-account-kconf_update.upd:kopete0.10/r1,kopete-jabberpriorityaddition-kconf_update.upd:kopete0.9/r1,kopete-nameTracking.upd:kopete0.9/r1 diff --git a/mop/template/.kde/share/config/korgacrc b/mop/template/.kde/share/config/korgacrc index 831ba1b..00eec10 100644 --- a/mop/template/.kde/share/config/korgacrc +++ b/mop/template/.kde/share/config/korgacrc @@ -1,5 +1,6 @@ [Alarms] -CalendarsLastChecked=2007,6,8,12,8,31 +CalendarsLastChecked=2013,3,21,10,12,1 [General] -Autostart=false +Autostart=true +Enabled=true diff --git a/mop/template/.kde/share/config/korganizerrc b/mop/template/.kde/share/config/korganizerrc index 5b92afe..87b3199 100644 --- a/mop/template/.kde/share/config/korganizerrc +++ b/mop/template/.kde/share/config/korganizerrc @@ -1,2 +1,2 @@ [$Version] -update_info=korganizer.upd:korganizer_3.4_GroupwareCleanup,korganizer.upd:korganizer_3.4_WebExport,korganizer.upd:korganizer_3.4_FilterAction,korganizer.upd:korganizer_3.4_HolidayPlugin +update_info=korganizer.upd:korganizer_3.4_GroupwareCleanup,korganizer.upd:korganizer_3.4_WebExport,korganizer.upd:korganizer_3.4_FilterAction,korganizer.upd:korganizer_3.4_HolidayPlugin,korganizer.upd:korganizer_4.3_ShowTodos,korganizer.upd:korganizer_4.4_MoveFreeBusy diff --git a/mop/template/.kde/share/config/kornrc b/mop/template/.kde/share/config/kornrc deleted file mode 100644 index ed37bf3..0000000 --- a/mop/template/.kde/share/config/kornrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=korn-3-4-config_change.upd:korn_kde_3_4_config_change,korn-3-5-update.upd:korn-3-5-ssl-update,korn-3-5-update.upd:korn-3-5-metadata-update diff --git a/mop/template/.kde/share/config/kpersonalizerrc b/mop/template/.kde/share/config/kpersonalizerrc deleted file mode 100644 index ba209e4..0000000 --- a/mop/template/.kde/share/config/kpersonalizerrc +++ /dev/null @@ -1,14 +0,0 @@ -[DesktopIcons] -Size=48 - -[General] -FirstLogin=false - -[MainToolbarIcons] -Size=22 - -[SmallIcons] -Size=16 - -[ToolbarIcons] -Size=22 diff --git a/mop/template/.kde/share/config/kpgprc b/mop/template/.kde/share/config/kpgprc index d8982b5..70ea20b 100644 --- a/mop/template/.kde/share/config/kpgprc +++ b/mop/template/.kde/share/config/kpgprc @@ -1,5 +1,2 @@ [$Version] -update_info=kpgp.upd:preKDE3_a,kpgp.upd:3.1-1,kmail.upd:5,kmail.upd:3.3-aegypten-kpgprc-to-kmailrc,kmail.upd:3.3-aegypten-kpgprc-to-libkleopatrarc - -[General] -addressEntries=0 +update_info=kmail.upd:5,kmail.upd:3.3-aegypten-kpgprc-to-kmailrc,kmail.upd:3.3-aegypten-kpgprc-to-libkleopatrarc,kpgp.upd:preKDE3_a,kpgp.upd:3.1-1 diff --git a/mop/template/.kde/share/config/kpilot_addressconduitrc b/mop/template/.kde/share/config/kpilot_addressconduitrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_addressconduitrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilot_docconduitrc b/mop/template/.kde/share/config/kpilot_docconduitrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_docconduitrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilot_mailconduitrc b/mop/template/.kde/share/config/kpilot_mailconduitrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_mailconduitrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilot_malconduitrc b/mop/template/.kde/share/config/kpilot_malconduitrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_malconduitrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilot_notesconduitrc b/mop/template/.kde/share/config/kpilot_notesconduitrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_notesconduitrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilot_sysinfoconduitrc b/mop/template/.kde/share/config/kpilot_sysinfoconduitrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_sysinfoconduitrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilot_vcalconduitsrc b/mop/template/.kde/share/config/kpilot_vcalconduitsrc deleted file mode 100644 index 1267f83..0000000 --- a/mop/template/.kde/share/config/kpilot_vcalconduitsrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kpilotrc b/mop/template/.kde/share/config/kpilotrc deleted file mode 100644 index 839c08e..0000000 --- a/mop/template/.kde/share/config/kpilotrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kpilot.upd:kdepim_3.3,kpilot.upd:kdepim_3.3_SplitConfig diff --git a/mop/template/.kde/share/config/kresources/contact/stdrc b/mop/template/.kde/share/config/kresources/contact/stdrc new file mode 100644 index 0000000..7b65043 --- /dev/null +++ b/mop/template/.kde/share/config/kresources/contact/stdrc @@ -0,0 +1,12 @@ +[General] +PassiveResourceKeys= +ResourceKeys= +Standard= + +[Resource_LvQ2ThytZi] +FileFormat=vcard +ResourceIdentifier=LvQ2ThytZi +ResourceIsActive=true +ResourceIsReadOnly=false +ResourceName=Default Address Book +ResourceType=file diff --git a/mop/template/.kde/share/config/krunnerrc b/mop/template/.kde/share/config/krunnerrc new file mode 100644 index 0000000..23401a3 --- /dev/null +++ b/mop/template/.kde/share/config/krunnerrc @@ -0,0 +1,11 @@ +[EdgePositions] +Offset=0.5 + +[General] +PastQueries=,\s + +[Interface] +Size=420,500 + +[PlasmaRunnerManager] +LaunchCounts= diff --git a/mop/template/.kde/share/config/ksmserverrc b/mop/template/.kde/share/config/ksmserverrc new file mode 100644 index 0000000..1521b79 --- /dev/null +++ b/mop/template/.kde/share/config/ksmserverrc @@ -0,0 +1,7 @@ +[General] +confirmLogout=false +excludeApps= +loginMode=restorePreviousLogout +offerShutdown=true +screenCount=1 +shutdownType=0 diff --git a/mop/template/.kde/share/config/ksocksrc b/mop/template/.kde/share/config/ksocksrc deleted file mode 100644 index a279d23..0000000 --- a/mop/template/.kde/share/config/ksocksrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=socks.upd:kde3.0/r1 diff --git a/mop/template/.kde/share/config/ksplashrc b/mop/template/.kde/share/config/ksplashrc deleted file mode 100644 index e60ce27..0000000 --- a/mop/template/.kde/share/config/ksplashrc +++ /dev/null @@ -1,2 +0,0 @@ -[KSplash] -Theme=Default diff --git a/mop/template/.kde/share/config/ksysguardrc b/mop/template/.kde/share/config/ksysguardrc deleted file mode 100644 index 74b9cbf..0000000 --- a/mop/template/.kde/share/config/ksysguardrc +++ /dev/null @@ -1,6 +0,0 @@ -[MainWindow] -Height 1024=480 -Width 1280=775 - -[MainWindow Toolbar mainToolBar] -Hidden=true diff --git a/mop/template/.kde/share/config/ktaskbarrc b/mop/template/.kde/share/config/ktaskbarrc deleted file mode 100644 index 7fe61fe..0000000 --- a/mop/template/.kde/share/config/ktaskbarrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kickerrc.upd:kde_3_5_taskbarEnums diff --git a/mop/template/.kde/share/config/ktimezonedrc b/mop/template/.kde/share/config/ktimezonedrc new file mode 100644 index 0000000..289827c --- /dev/null +++ b/mop/template/.kde/share/config/ktimezonedrc @@ -0,0 +1,5 @@ +[TimeZones] +LocalZone=Europe/Prague +ZoneinfoDir=/usr/share/zoneinfo +Zonetab=/usr/share/zoneinfo/zone.tab +ZonetabCache= diff --git a/mop/template/.kde/share/config/ktiprc b/mop/template/.kde/share/config/ktiprc deleted file mode 100644 index c731750..0000000 --- a/mop/template/.kde/share/config/ktiprc +++ /dev/null @@ -1,2 +0,0 @@ -[TipOfDay] -RunOnStart=false diff --git a/mop/template/.kde/share/config/kwin.eventsrc b/mop/template/.kde/share/config/kwin.eventsrc index 9a1add8..9f5ce75 100644 --- a/mop/template/.kde/share/config/kwin.eventsrc +++ b/mop/template/.kde/share/config/kwin.eventsrc @@ -1,62 +1,2 @@ [$Version] update_info=kwinsticky.upd:stickyupd3.1,kwiniconify.upd:iconifyupd3.1 - -[close] -presentation=1 - -[desktop1] -presentation=1 - -[desktop2] -presentation=1 - -[desktop3] -presentation=1 - -[desktop4] -presentation=1 - -[desktop5] -presentation=1 - -[desktop6] -presentation=1 - -[desktop7] -presentation=1 - -[desktop8] -presentation=1 - -[maximize] -presentation=1 - -[minimize] -presentation=1 - -[new] -presentation=1 - -[not_on_all_desktops] -presentation=1 - -[on_all_desktops] -presentation=1 - -[shadedown] -presentation=1 - -[shadeup] -presentation=1 - -[transdelete] -presentation=1 - -[transnew] -presentation=1 - -[unmaximize] -presentation=1 - -[unminimize] -presentation=1 diff --git a/mop/template/.kde/share/config/kwin_update b/mop/template/.kde/share/config/kwin_update deleted file mode 100644 index 9d6fa24..0000000 --- a/mop/template/.kde/share/config/kwin_update +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kwinupdatewindowsettings.upd:kde33b1 diff --git a/mop/template/.kde/share/config/kwinrc b/mop/template/.kde/share/config/kwinrc index 464cc90..fc9944a 100644 --- a/mop/template/.kde/share/config/kwinrc +++ b/mop/template/.kde/share/config/kwinrc @@ -1,34 +1,87 @@ [$Version] -update_info=kwin_focus2.upd:kwin_focus2,kwin.upd:kde3.0r1,kwin.upd:kde3.2Xinerama,kwin3_plugin.upd:kde3.2,kwin_focus1.upd:kwin_focus1 +update_info=kwin_on_off.upd:kwin_on_off,kwin3_plugin.upd:kde3.2,kwin_focus1.upd:kwin_focus1,kwin_remove_effects.upd:kwin4.7_effects,kwin_focus2.upd:kwin_focus2,kwin.upd:kde3.0r1,kwin.upd:kde3.2Xinerama + +[Compositing] +AnimationSpeed=3 +Backend=XRender +Enabled=false +GLLegacy=false +GLTextureFilter=2 +GLVSync=true +GraphicsSystem=native +HiddenPreviews=5 +OpenGLIsUnsafe=false +UnredirectFullscreen=false +XRenderSmoothScale=false [Desktops] Name_1= -Name_10= Name_2= Name_3= Name_4= -Name_5= -Name_6= -Name_7= -Name_8= -Name_9= -Number=8 +Number=4 +Rows=2 + +[Effect-BoxSwitch] +TabBox=false +TabBoxAlternative=false + +[Plugins] +kwin4_effect_blurEnabled=false +kwin4_effect_boxswitchEnabled=false +kwin4_effect_coverswitchEnabled=false +kwin4_effect_cubeEnabled=false +kwin4_effect_cubeslideEnabled=false +kwin4_effect_dashboardEnabled=false +kwin4_effect_desktopgridEnabled=false +kwin4_effect_dialogparentEnabled=false +kwin4_effect_diminactiveEnabled=false +kwin4_effect_dimscreenEnabled=false +kwin4_effect_explosionEnabled=false +kwin4_effect_fadeEnabled=false +kwin4_effect_fadedesktopEnabled=false +kwin4_effect_fallapartEnabled=false +kwin4_effect_flipswitchEnabled=false +kwin4_effect_glideEnabled=false +kwin4_effect_highlightwindowEnabled=false +kwin4_effect_invertEnabled=false +kwin4_effect_loginEnabled=false +kwin4_effect_logoutEnabled=false +kwin4_effect_lookingglassEnabled=false +kwin4_effect_magiclampEnabled=false +kwin4_effect_magnifierEnabled=false +kwin4_effect_minimizeanimationEnabled=false +kwin4_effect_mousemarkEnabled=false +kwin4_effect_outlineEnabled=false +kwin4_effect_presentwindowsEnabled=false +kwin4_effect_resizeEnabled=false +kwin4_effect_scaleinEnabled=false +kwin4_effect_screenshotEnabled=false +kwin4_effect_sheetEnabled=false +kwin4_effect_showfpsEnabled=false +kwin4_effect_showpaintEnabled=false +kwin4_effect_slideEnabled=false +kwin4_effect_slidebackEnabled=false +kwin4_effect_slidingpopupsEnabled=false +kwin4_effect_snaphelperEnabled=false +kwin4_effect_startupfeedbackEnabled=false +kwin4_effect_taskbarthumbnailEnabled=false +kwin4_effect_thumbnailasideEnabled=false +kwin4_effect_trackmouseEnabled=false +kwin4_effect_translucencyEnabled=false +kwin4_effect_windowgeometryEnabled=false +kwin4_effect_wobblywindowsEnabled=false +kwin4_effect_zoomEnabled=false -[MouseBindings] -CommandActiveTitlebar2=Lower -CommandActiveTitlebar3=Operations menu +[PopupInfo] +PopupHideDelay=1000 +ShowPopup=false +TextOnly=false -[Style] -PluginLib=kwin3_plastik +[TabBox] +ListMode=0 +ShowTabBox=true [Windows] -AltTabStyle=KDE -AnimateMinimize=true -AnimateShade=true -FocusPolicy=ClickToFocus IgnoreFocusStealingClasses=kio_uiserver -MoveMode=Opaque -MoveResizeMaximizedWindows=true -ResizeMode=Opaque -ShadeHover=true -TitlebarDoubleClickCommand=Shade +RollOverDesktops=true diff --git a/mop/template/.kde/share/config/kwinrules_update b/mop/template/.kde/share/config/kwinrules_update deleted file mode 100644 index de9a25a..0000000 --- a/mop/template/.kde/share/config/kwinrules_update +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=kwin_fsp_workarounds_1.upd:kde351 diff --git a/mop/template/.kde/share/config/kwinrulesrc b/mop/template/.kde/share/config/kwinrulesrc index 43de296..7d70afb 100644 --- a/mop/template/.kde/share/config/kwinrulesrc +++ b/mop/template/.kde/share/config/kwinrulesrc @@ -1,45 +1,18 @@ [1] -description=(Default) Disable focus stealing prevention for OpenOffice.org 2.0 +Description=(Default) Disable focus stealing prevention for XV fsplevel=0 fsplevelrule=2 -wmclass=vclsalframe openoffice.org 2.0 +wmclass=^xv .* wmclasscomplete=true -wmclassmatch=1 +wmclassmatch=3 [2] -description=(Default) Disable focus stealing prevention for Mozilla -fsplevel=0 -fsplevelrule=2 -wmclass=mozilla-bin -wmclasscomplete=false -wmclassmatch=1 - -[3] -description=(Default) Disable focus stealing prevention for Firefox -fsplevel=0 -fsplevelrule=2 -wmclass=firefox-bin -wmclasscomplete=false -wmclassmatch=1 - -[4] -description=(Default) Disable focus stealing prevention for Thunderbird -fsplevel=0 -fsplevelrule=2 -wmclass=thunderbird-bin -wmclasscomplete=false -wmclassmatch=1 - -[5] -description=(Default) Disable focus stealing prevention for XV +Description=(Default) Disable focus stealing prevention for XV fsplevel=0 fsplevelrule=2 wmclass=^xv .* wmclasscomplete=true wmclassmatch=3 -[Directories] -dir_config[$d] - [General] -count=5 +count=2 diff --git a/mop/template/.kde/share/config/kwriterc b/mop/template/.kde/share/config/kwriterc deleted file mode 100644 index 7539a23..0000000 --- a/mop/template/.kde/share/config/kwriterc +++ /dev/null @@ -1,50 +0,0 @@ -[General Options] -ShowPath=false -ShowStatusBar=false - -[Kate Document Defaults] -Allow End of Line Detection=true -Backup Config Flags=1 -Backup Prefix= -Backup Suffix=~ -Basic Config Flags=547913760 -Encoding= -End of Line=0 -Indentation Mode=0 -Indentation Width=2 -KTextEditor Plugin ktexteditor_docwordcompletion=false -KTextEditor Plugin ktexteditor_insertfile=false -KTextEditor Plugin ktexteditor_isearch=false -KTextEditor Plugin ktexteditor_kdatatool=false -KTextEditor Plugin ktexteditor_kttsd=false -Maximal Loaded Blocks=16 -PageUp/PageDown Moves Cursor=false -Search Dir Config Depth=3 -Tab Width=8 -Undo Steps=0 -Word Wrap=false -Word Wrap Column=80 - -[Kate Renderer Defaults] -Schema=kwrite - Normal -Show Indentation Lines=false -Word Wrap Marker=false - -[Kate View Defaults] -Auto Center Lines=0 -Bookmark Menu Sorting=0 -Command Line=false -Default Mark Type=1 -Dynamic Word Wrap=true -Dynamic Word Wrap Align Indent=80 -Dynamic Word Wrap Indicators=1 -Folding Bar=true -Icon Bar=false -Line Numbers=false -Persistent Selection=false -Scroll Bar Marks=false -Search Config Flags=266 -Text To Search Mode=2 - -[MainWindow] -StatusBar=Disabled diff --git a/mop/template/.kde/share/config/kxkbrc b/mop/template/.kde/share/config/kxkbrc index 40f3064..3b43cd0 100644 --- a/mop/template/.kde/share/config/kxkbrc +++ b/mop/template/.kde/share/config/kxkbrc @@ -1,14 +1,12 @@ [Layout] -DisplayNames= -EnableXkbOptions=false -IncludeGroups= +DisplayNames=, LayoutList=us,cz -Model=pc104 -Options= +LayoutLoopCount=-1 +Model=pc101 ResetOldOptions=false -ShowFlag=true +ShowFlag=false +ShowLabel=true +ShowLayoutIndicator=true ShowSingle=false -StickySwitching=false -StickySwitchingDepth=2 SwitchMode=Global Use=true diff --git a/mop/template/.kde/share/config/mailtransports b/mop/template/.kde/share/config/mailtransports new file mode 100644 index 0000000..0dc4965 --- /dev/null +++ b/mop/template/.kde/share/config/mailtransports @@ -0,0 +1,2 @@ +[$Version] +update_info=mailtransports.upd:initial-kmail-migration,mailtransports.upd:initial-knode-migration diff --git a/mop/template/.kde/share/config/nepomukbackuprc b/mop/template/.kde/share/config/nepomukbackuprc new file mode 100644 index 0000000..762bbe1 --- /dev/null +++ b/mop/template/.kde/share/config/nepomukbackuprc @@ -0,0 +1,5 @@ +[Backup] +backup day=1 +backup frequency=disabled +backup time=18:00:00 +max backups=10 diff --git a/mop/template/.kde/share/config/nepomukserverrc b/mop/template/.kde/share/config/nepomukserverrc new file mode 100644 index 0000000..eb180f4 --- /dev/null +++ b/mop/template/.kde/share/config/nepomukserverrc @@ -0,0 +1,13 @@ +[$Version] +update_info=nepomukstrigiservice-migrate.upd:nepomukstrigiservice-migrate + +[Basic Settings] +Start Nepomuk=false + +[Service-nepomukfileindexer] +autostart=true + +[main Settings] +Maximum memory=50 +Storage Dir[$e]=$HOME/.kde/share/apps/nepomuk/repository/main/ +Used Soprano Backend=virtuosobackend diff --git a/mop/template/.kde/share/config/nepomukstrigirc b/mop/template/.kde/share/config/nepomukstrigirc new file mode 100644 index 0000000..d2e6d47 --- /dev/null +++ b/mop/template/.kde/share/config/nepomukstrigirc @@ -0,0 +1,11 @@ +[General] +exclude filters=*~,*.part,*.o,*.la,*.lo,*.loT,*.moc,moc_*.cpp,cmake_install.cmake,CMakeCache.txt,CTestTestfile.cmake,libtool,config.status,confdefs.h,autom4te,conftest,confstat,Makefile.am,*.csproj,*.m4,*.rej,*.gmo,*.pc,*.omf,*.aux,*.tmp,*.po,*.vm*,*.nvram,*.rcore,lzo,litmain.sh,*.orig,.histfile.*,.xsession-errors*,*.class,*.pyc,*.elc,po,CVS,.svn,.git,_darcs,.bzr,.hg,CMakeFiles,CMakeTmp,CMakeTmpQmake,core-dumps,lost+found +exclude filters version=2 +exclude folders[$e]= +first run=false +folders[$e]=$HOME +index hidden folders=false + +[RemovableMedia] +ask user=false +index newly mounted=false diff --git a/mop/template/.kde/share/config/noatunrc b/mop/template/.kde/share/config/noatunrc deleted file mode 100644 index ea7aa5a..0000000 --- a/mop/template/.kde/share/config/noatunrc +++ /dev/null @@ -1,2 +0,0 @@ -[$Version] -update_info=noatun.upd:noatun20 diff --git a/mop/template/.kde/share/config/phonondevicesrc b/mop/template/.kde/share/config/phonondevicesrc new file mode 100644 index 0000000..bb03827 --- /dev/null +++ b/mop/template/.kde/share/config/phonondevicesrc @@ -0,0 +1,92 @@ +[AudioDevice_/org/kde/solid/udev/sys/devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/pcmC1D3p:playback] +cardName=HDA ATI HDMI (HDMI 0) +deleted=false +deviceNumber=3 +hotpluggable=false +iconName=audio-card +index=-3 +initialPreference=33 +isAdvanced=true + +[AudioDevice_/org/kde/solid/udev/sys/devices/pci0000:00/0000:00:1b.0/sound/card0/pcmC0D0c:capture] +cardName=HDA Intel (ALC889 Analog) +deleted=false +deviceNumber=0 +hotpluggable=false +iconName=audio-card +index=-7 +initialPreference=36 +isAdvanced=false + +[AudioDevice_/org/kde/solid/udev/sys/devices/pci0000:00/0000:00:1b.0/sound/card0/pcmC0D0p:playback] +cardName=HDA Intel (ALC889 Analog) +deleted=false +deviceNumber=0 +hotpluggable=false +iconName=audio-card +index=-1 +initialPreference=36 +isAdvanced=false + +[AudioDevice_/org/kde/solid/udev/sys/devices/pci0000:00/0000:00:1b.0/sound/card0/pcmC0D1p:playback] +cardName=HDA Intel (ALC889 Digital) +deleted=false +deviceNumber=1 +hotpluggable=false +iconName=audio-card +index=-2 +initialPreference=35 +isAdvanced=true + +[AudioDevice_/org/kde/solid/udev/sys/devices/pci0000:00/0000:00:1b.0/sound/card0/pcmC0D2c:capture] +cardName=HDA Intel (ALC889 Analog) #2 +deleted=false +deviceNumber=2 +hotpluggable=false +iconName=audio-card +index=-8 +initialPreference=34 +isAdvanced=true + +[AudioDevice_HDA ATI HDMI, HDMI 0\nHDMI Audio Output_playback] +cardName=HDA ATI HDMI, HDMI 0 (HDMI Audio Output) +deleted=false +deviceNumber=-1 +hotpluggable=false +iconName=audio-card +index=-4 +initialPreference=30 +isAdvanced=false + +[AudioDevice_HDA Intel, ALC889 Analog\nDefault Audio Device_capture] +cardName=HDA Intel, ALC889 Analog (Default Audio Device) +deleted=false +deviceNumber=-1 +hotpluggable=false +iconName=audio-card +index=-9 +initialPreference=30 +isAdvanced=false + +[AudioDevice_HDA Intel, ALC889 Analog\nDefault Audio Device_playback] +cardName=HDA Intel, ALC889 Analog (Default Audio Device) +deleted=false +deviceNumber=-1 +hotpluggable=false +iconName=audio-card +index=-5 +initialPreference=30 +isAdvanced=false + +[AudioDevice_HDA Intel, ALC889 Digital\nIEC958 (S/PDIF) Digital Audio Output_playback] +cardName=HDA Intel, ALC889 Digital (IEC958 (S/PDIF) Digital Audio Output) +deleted=false +deviceNumber=-1 +hotpluggable=false +iconName=audio-card +index=-6 +initialPreference=30 +isAdvanced=true + +[Globals] +nextIndex=10 diff --git a/mop/template/.kde/share/config/plasma-desktop-appletsrc b/mop/template/.kde/share/config/plasma-desktop-appletsrc new file mode 100644 index 0000000..58e8fda --- /dev/null +++ b/mop/template/.kde/share/config/plasma-desktop-appletsrc @@ -0,0 +1,226 @@ +[ActionPlugins] +MidButton;NoModifier=paste +RightButton;NoModifier=contextmenu +wheel:Vertical;NoModifier=switchdesktop + +[Containments][1] +activity= +activityId= +desktop=-1 +formfactor=2 +geometry=0,-33,1280,27 +immutability=1 +lastDesktop=-1 +lastScreen=0 +location=4 +plugin=panel +screen=0 +zvalue=0 + +[Containments][1][ActionPlugins] +RightButton;NoModifier=contextmenu + +[Containments][1][Applets][2] +geometry=0,2,25,25 +immutability=1 +plugin=launcher +zvalue=0 + +[Containments][1][Applets][2][LayoutInformation] +Order=0 + +[Containments][1][Applets][3] +geometry=29,2,25,25 +immutability=1 +plugin=org.kde.showActivityManager +zvalue=0 + +[Containments][1][Applets][3][LayoutInformation] +Order=1 + +[Containments][1][Applets][4] +geometry=58,2,33,25 +immutability=1 +plugin=pager +zvalue=0 + +[Containments][1][Applets][4][Configuration] +Share=false +currentDesktopSelected=0 +displayedText=2 +showWindowIcons=false + +[Containments][1][Applets][4][LayoutInformation] +Order=2 + +[Containments][1][Applets][5] +geometry=95,2,1000,25 +immutability=1 +plugin=tasks +zvalue=0 + +[Containments][1][Applets][5][Configuration][Launchers] +browser=preferred://browser, , ,\s +filemanager=preferred://filemanager, , ,\s + +[Containments][1][Applets][5][LayoutInformation] +Order=3 + +[Containments][1][Applets][6] +geometry=1099,2,103,25 +immutability=1 +plugin=systemtray +zvalue=0 + +[Containments][1][Applets][6][Configuration] +DefaultAppletsAdded=true + +[Containments][1][Applets][6][Configuration][Applets][8] +geometry=4,60,24,24 +immutability=1 +plugin=notifications +zvalue=0 + +[Containments][1][Applets][6][Configuration][Applets][8][Configuration][ExtenderItems][1] +extenderIconName=dialog-information +extenderItemName=jobGroup +extenderItemPosition=0 +extenderTitle=Jobs +isCollapsed=true +isGroup=true +sourceAppletId=8 +sourceAppletPluginName=notifications + +[Containments][1][Applets][6][Configuration][Applets][8][PopupApplet] +DialogHeight=64 +DialogWidth=134 + +[Containments][1][Applets][6][Configuration][Applets][9] +geometry=4,4,24,24 +immutability=1 +plugin=notifier +zvalue=0 + +[Containments][1][Applets][6][Configuration][Applets][9][PopupApplet] +DialogHeight=352 +DialogWidth=302 + +[Containments][1][Applets][6][Configuration][Shortcuts] +Systemtray-Klipper-6=Ctrl+Alt+V + +[Containments][1][Applets][6][LayoutInformation] +Order=4 + +[Containments][1][Applets][6][PopupApplet] +DialogHeight=100 +DialogWidth=233 + +[Containments][1][Applets][7] +geometry=1206,2,50,25 +immutability=1 +plugin=digital-clock +zvalue=0 + +[Containments][1][Applets][7][LayoutInformation] +Order=5 + +[Containments][1][Configuration] +maximumSize=1280,27 +minimumSize=1280,27 + +[Containments][8] +ActionPluginsSource=Global +activity=Desktop +activityId=71cd1e2b-1467-4f57-bd72-415158a4d8ad +desktop=-1 +formfactor=0 +geometry=0,0,1280,1024 +immutability=1 +lastDesktop=-1 +lastScreen=0 +location=0 +plugin=desktop +screen=0 +wallpaperplugin=image +wallpaperpluginmode=SingleImage +zvalue=0 + +[Containments][8][Applets][10] +geometry=0,16,107,72 +immutability=1 +plugin=icon +zvalue=0 + +[Containments][8][Applets][10][Configuration] +Url=file:///mo/desktop/Projekty.desktop + +[Containments][8][Applets][11] +geometry=473,16,113,72 +immutability=1 +plugin=icon +zvalue=3 + +[Containments][8][Applets][11][Configuration] +Url=file:///mo/desktop/Manu%C3%A1lov%C3%A9%20str%C3%A1nky.desktop + +[Containments][8][Applets][12] +geometry=476,116,107,72 +immutability=1 +plugin=icon +zvalue=4 + +[Containments][8][Applets][12][Configuration] +Url=file:///mo/desktop/Info.desktop + +[Containments][8][Applets][15] +geometry=120,12,94,72 +immutability=1 +plugin=icon +zvalue=0 + +[Containments][8][Applets][15][Configuration] +Url=file:///usr/share/applications/kde4/konsole.desktop + +[Containments][8][Applets][18] +geometry=0,108,94,72 +immutability=1 +plugin=icon +zvalue=0 + +[Containments][8][Applets][18][Configuration] +Url=file:///mo/desktop/contest.desktop + +[Containments][8][Applets][20] +geometry=454,216,133,72 +immutability=1 +plugin=icon +zvalue=0 + +[Containments][8][Applets][20][Configuration] +Url=file:///mo/documentation/cppreference/en.cppreference.com/CPPReference + +[Containments][8][Applets][23] +geometry=117,105,107,72 +immutability=1 +plugin=icon +zvalue=0 + +[Containments][8][Applets][23][Configuration] +Url=file:///mo/desktop/dolphin.desktop + +[Containments][8][Applets][24] +geometry=452,312,133,72 +immutability=1 +plugin=icon +zvalue=6 + +[Containments][8][Applets][24][Configuration] +Url=file:///mo/desktop/konqbrowser.desktop + +[Containments][8][Wallpaper][image] +slideTimer=10 +slidepaths=/usr/share/wallpapers/ +userswallpapers= +wallpaper=joy +wallpapercolor=0,0,0 +wallpaperposition=2 diff --git a/mop/template/.kde/share/config/plasma-desktoprc b/mop/template/.kde/share/config/plasma-desktoprc new file mode 100644 index 0000000..63dd731 --- /dev/null +++ b/mop/template/.kde/share/config/plasma-desktoprc @@ -0,0 +1,26 @@ +[KFileMetaPropsPlugin] +Height 1024=260 +Width 1280=277 + +[KPropertiesDialog] +Height 1024=356 +Width 1280=387 + +[PlasmaTransientsConfig] +History list=file:///mo/public/documentation/cppreference/en.cppreference.com/w/cpp.html,file:///mo/public/documentation/cppreference/en.cppreference.com/w/index.html,file:///mo/public/documentation/cppreference/en.cppreference.com/index.html +HorizontalScrollValue=0 +Url=file:///mo/public/documentation/cppreference/en.cppreference.com/w/cpp.html +VerticalScrollValue=0 + +[PlasmaViews][1] +panelVisibility=0 + +[PlasmaViews][1][Sizes] +lastsize=1280 + +[Updates] +performed=/usr/share/kde4/apps/plasma-desktop/updates/systray-to-notifications-widget.js,/usr/share/kde4/apps/plasma-desktop/updates/addShowActivitiesManagerPlasmoid.js + +[ViewIds] +1=1 +8=2 diff --git a/mop/template/.kde/share/config/powermanagementprofilesrc b/mop/template/.kde/share/config/powermanagementprofilesrc new file mode 100644 index 0000000..de62f33 --- /dev/null +++ b/mop/template/.kde/share/config/powermanagementprofilesrc @@ -0,0 +1,44 @@ +[AC] +icon=battery-charging + +[AC][DPMSControl] +idleTime=600 + +[AC][DimDisplay] +idleTime=300000 + +[AC][HandleButtonEvents] +lidAction=64 +powerButtonAction=16 + +[Battery] +icon=battery-060 + +[Battery][BrightnessControl] +value=60 + +[Battery][DPMSControl] +idleTime=300 + +[Battery][DimDisplay] +idleTime=120000 + +[Battery][HandleButtonEvents] +lidAction=64 +powerButtonAction=16 + +[LowBattery] +icon=battery-low + +[LowBattery][BrightnessControl] +value=30 + +[LowBattery][DPMSControl] +idleTime=120 + +[LowBattery][DimDisplay] +idleTime=60000 + +[LowBattery][HandleButtonEvents] +lidAction=64 +powerButtonAction=16 diff --git a/mop/template/.kde/share/config/startupconfig b/mop/template/.kde/share/config/startupconfig index a8ccf60..6a4e06b 100644 --- a/mop/template/.kde/share/config/startupconfig +++ b/mop/template/.kde/share/config/startupconfig @@ -1,17 +1,22 @@ #! /bin/sh -# kcminputrc Mouse cursorTheme '' -kcminputrc_mouse_cursortheme="" +# kcminputrc Mouse cursorTheme 'Oxygen_White' +kcminputrc_mouse_cursortheme=Oxygen_White # kcminputrc Mouse cursorSize '' -kcminputrc_mouse_cursorsize="" -# kpersonalizerrc General FirstLogin true -kpersonalizerrc_general_firstlogin="false" +kcminputrc_mouse_cursorsize='' # ksplashrc KSplash Theme Default -ksplashrc_ksplash_theme="Default" -# kcmrandrrc Display ApplyOnStartup false -kcmrandrrc_display_applyonstartup="false" -# kcmrandrrc [Screen0] -# kcmrandrrc [Screen1] -# kcmrandrrc [Screen2] -# kcmrandrrc [Screen3] +ksplashrc_ksplash_theme=joy +# ksplashrc KSplash Engine KSplashX +ksplashrc_ksplash_engine=KSplashX +# krandrrc Display ApplyOnStartup false +krandrrc_display_applyonstartup=false +# krandrrc Display StartupCommands '' +krandrrc_display_startupcommands='' +# krandrrc [Screen0] +# krandrrc [Screen1] +# krandrrc [Screen2] +# krandrrc [Screen3] # kcmfonts General forceFontDPI 0 -kcmfonts_general_forcefontdpi="0" +kcmfonts_general_forcefontdpi=0 +# kdeglobals Locale Language '' # trigger requesting languages from KLocale +kdeglobals_locale_language='' +klocale_languages=en_US diff --git a/mop/template/.kde/share/config/startupconfigfiles b/mop/template/.kde/share/config/startupconfigfiles new file mode 100644 index 0000000..2845681 --- /dev/null +++ b/mop/template/.kde/share/config/startupconfigfiles @@ -0,0 +1,48 @@ +kcminputrc Mouse cursorTheme 'Oxygen_White' +!/home/testuser/.kde/share/config/kcminputrc +!/usr/share/config/kcminputrc +* +kcminputrc Mouse cursorSize '' +!/home/testuser/.kde/share/config/kcminputrc +!/usr/share/config/kcminputrc +* +ksplashrc KSplash Theme Default +!/home/testuser/.kde/share/config/ksplashrc +!/usr/share/config/ksplashrc +* +ksplashrc KSplash Engine KSplashX +!/home/testuser/.kde/share/config/ksplashrc +!/usr/share/config/ksplashrc +* +krandrrc Display ApplyOnStartup false +!/home/testuser/.kde/share/config/krandrrc +!/usr/share/config/krandrrc +* +krandrrc Display StartupCommands '' +!/home/testuser/.kde/share/config/krandrrc +!/usr/share/config/krandrrc +* +krandrrc [Screen0] +!/home/testuser/.kde/share/config/krandrrc +!/usr/share/config/krandrrc +* +krandrrc [Screen1] +!/home/testuser/.kde/share/config/krandrrc +!/usr/share/config/krandrrc +* +krandrrc [Screen2] +!/home/testuser/.kde/share/config/krandrrc +!/usr/share/config/krandrrc +* +krandrrc [Screen3] +!/home/testuser/.kde/share/config/krandrrc +!/usr/share/config/krandrrc +* +kcmfonts General forceFontDPI 0 +!/home/testuser/.kde/share/config/kcmfonts +!/usr/share/config/kcmfonts +* +kdeglobals Locale Language '' # trigger requesting languages from KLocale +!/home/testuser/.kde/share/config/kdeglobals +!/usr/share/config/kdeglobals +* diff --git a/mop/template/.kde/share/config/startupconfigkeys b/mop/template/.kde/share/config/startupconfigkeys index bbafe1b..46fea63 100644 --- a/mop/template/.kde/share/config/startupconfigkeys +++ b/mop/template/.kde/share/config/startupconfigkeys @@ -1,10 +1,12 @@ -kcminputrc Mouse cursorTheme '' +kcminputrc Mouse cursorTheme 'Oxygen_White' kcminputrc Mouse cursorSize '' -kpersonalizerrc General FirstLogin true ksplashrc KSplash Theme Default -kcmrandrrc Display ApplyOnStartup false -kcmrandrrc [Screen0] -kcmrandrrc [Screen1] -kcmrandrrc [Screen2] -kcmrandrrc [Screen3] +ksplashrc KSplash Engine KSplashX +krandrrc Display ApplyOnStartup false +krandrrc Display StartupCommands '' +krandrrc [Screen0] +krandrrc [Screen1] +krandrrc [Screen2] +krandrrc [Screen3] kcmfonts General forceFontDPI 0 +kdeglobals Locale Language '' # trigger requesting languages from KLocale diff --git a/mop/template/.kde/share/config/systemsettingsrc b/mop/template/.kde/share/config/systemsettingsrc new file mode 100644 index 0000000..248577f --- /dev/null +++ b/mop/template/.kde/share/config/systemsettingsrc @@ -0,0 +1,6 @@ +[MainWindow] +Height 1024=604 +MenuBar=Disabled +State=AAAA/wAAAAD9AAAAAAAAAtAAAAI+AAAABAAAAAQAAAAIAAAACPwAAAABAAAAAgAAAAEAAAAWAG0AYQBpAG4AVABvAG8AbABCAGEAcgEAAAAA/////wAAAAAAAAAA +ToolBarsMovable=Disabled +Width 1280=720 diff --git a/mop/template/.kde/share/config/uiserverrc b/mop/template/.kde/share/config/uiserverrc deleted file mode 100644 index 8bf034f..0000000 --- a/mop/template/.kde/share/config/uiserverrc +++ /dev/null @@ -1,21 +0,0 @@ -[ProgressList] -Col0=70 -Col1=222 -Col3=60 -Col4=117 -Col5=65 -Col6=70 -Col7=70 -Col8=613 -Enabled2=false -FixedColumnWidths=false -ShowListHeader=true - -[UIServer] -InitialHeight=150 -InitialWidth=460 -KeepListOpen=false -ShowList=false -ShowStatusBar=false -ShowSystemTray=false -ShowToolBar=true diff --git a/mop/template/.lazarus/compilertest.pas b/mop/template/.lazarus/compilertest.pas new file mode 100644 index 0000000..e69de29 diff --git a/mop/template/.lazarus/editoroptions.xml b/mop/template/.lazarus/editoroptions.xml new file mode 100644 index 0000000..b50d0b6 --- /dev/null +++ b/mop/template/.lazarus/editoroptions.xml @@ -0,0 +1,16 @@ +<?xml version="1.0"?> +<CONFIG> + <EditorOptions Version="9"> + <Display EditorFontSize="-10" DisableAntialiasing="True" DoNotWarnForFont="DejaVu Sans Mono"/> + <KeyMapping> + <default> + <Version Value="6"/> + </default> + </KeyMapping> + <CodeTools CodeTemplateFileName="/home/usertest/.lazarus/lazarus.dci" CompletionLongLineHintTypeCompletionLongLineHintType="sclpExtendRightOnly"/> + <Mouse> + <Default Version="1"/> + </Mouse> + <Color Version="9"/> + </EditorOptions> +</CONFIG> diff --git a/mop/template/.lazarus/environmentoptions.xml b/mop/template/.lazarus/environmentoptions.xml new file mode 100644 index 0000000..554293a --- /dev/null +++ b/mop/template/.lazarus/environmentoptions.xml @@ -0,0 +1,281 @@ +<?xml version="1.0"?> +<CONFIG> + <EnvironmentOptions> + <Version Value="107" Lazarus="1.0.6"/> + <LazarusDirectory Value="/usr/share/lazarus/1.0.6"> + <History Count="2"> + <Item1 Value="/usr/share/lazarus/1.0.6/"/> + <Item2 Value="/usr/lib/lazarus/"/> + </History> + </LazarusDirectory> + <CompilerFilename Value="/usr/bin/fpc"> + <History Count="3"> + <Item1 Value="/usr/local/bin/fpc"/> + <Item2 Value="/usr/bin/fpc"/> + <Item3 Value="/opt/fpc/fpc"/> + </History> + </CompilerFilename> + <FPCSourceDirectory Value="/usr/share/fpcsrc/$(FPCVER)/"> + <History Count="2"> + <Item1 Value="/usr/share/fpcsrc/"/> + <Item2 Value="/usr/share/fpcsrc/$(FPCVER)/"/> + </History> + </FPCSourceDirectory> + <MakeFilename> + <History Count="2"> + <Item1 Value="make"/> + <Item2 Value="/usr/bin/make"/> + </History> + </MakeFilename> + <TestBuildDirectory Value="/tmp/"> + <History Count="2"> + <Item1 Value="/tmp/"/> + <Item2 Value="/var/tmp/"/> + </History> + </TestBuildDirectory> + <AutoSave LastSavedProjectFile="/home/testuser/ziz/zizalky_main.lpi" OpenLastProjectAtStart="False"/> + <Desktop> + <Desktop FormIdCount="30"> + <FormIdList a1="PseudoTerminal" a2="Watches" a3="BreakPoints" a4="Locals" a5="CallStack" a6="EvaluateModify" a7="Registers" a8="Assembler" a9="DbgOutput" a10="Inspect" a11="DbgEvents" a12="Threads" a13="DbgHistory" a14="MainIDE" a15="SourceNotebook" a16="MessagesView" a17="UnitDependencies" a18="CodeExplorerView" a19="FPDocEditor" a20="ClipBrdHistory" a21="PkgGraphExplorer" a22="ProjectInspector" a23="SearchResults" a24="AnchorEditor" a25="TabOrderEditor" a26="CodeBrowser" a27="IssueBrowser" a28="JumpHistory" a29="ComponentList" a30="ObjectInspectorDlg"/> + </Desktop> + <PseudoTerminal> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <CustomPosition Top="40" Width="320" Height="240" Left="24"/> + <Visible Value="True"/> + <Caption Value="Console"/> + </PseudoTerminal> + <Watches> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="Watches"/> + </Watches> + <BreakPoints> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="BreakPoints"/> + </BreakPoints> + <Locals> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="Locals"/> + </Locals> + <CallStack> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="CallStack"/> + </CallStack> + <EvaluateModify> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="EvaluateModify"/> + </EvaluateModify> + <Registers> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="Registers"/> + </Registers> + <Assembler> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <CustomPosition Left="297" Top="143" Width="721" Height="301"/> + <Caption Value="Assembler"/> + </Assembler> + <DbgOutput> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="DbgOutput"/> + </DbgOutput> + <Inspect> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="Inspect"/> + </Inspect> + <DbgEvents> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="DbgEvents"/> + </DbgEvents> + <Threads> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="Threads"/> + </Threads> + <DbgHistory> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="DbgHistory"/> + </DbgHistory> + <MainIDE> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Width="1018" Height="60" Left="40" Top="72"/> + <WindowState Value="Normal"/> + <Visible Value="True"/> + <Caption Value="MainIDE"/> + </MainIDE> + <SourceNotebook> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Left="88" Top="168" Width="970" Height="698"/> + <WindowState Value="Normal"/> + <Caption Value="Source Editor"/> + </SourceNotebook> + <MessagesView> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Left="56" Top="104" Width="750" Height="100"/> + <WindowState Value="Normal"/> + <Visible Value="True"/> + <Caption Value="Messages"/> + </MessagesView> + <UnitDependencies> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="Unit Dependencies"/> + <CustomPosition Left="8" Top="8" Width="400" Height="300"/> + </UnitDependencies> + <CodeExplorerView> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Left="848" Top="125" Width="170" Height="443"/> + <WindowState Value="Normal"/> + <Caption Value="CodeExplorerView"/> + </CodeExplorerView> + <FPDocEditor> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Left="250" Top="576" Width="716" Height="120"/> + <WindowState Value="Normal"/> + <Caption Value="FPDocEditor"/> + </FPDocEditor> + <ClipBrdHistory> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="ClipBrdHistory"/> + </ClipBrdHistory> + <PkgGraphExplorer> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="PkgGraphExplorer"/> + </PkgGraphExplorer> + <ProjectInspector> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Left="8" Top="8" Width="300" Height="400"/> + <WindowState Value="Normal"/> + <Caption Value="Project Inspector"/> + </ProjectInspector> + <SearchResults> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="SearchResults"/> + </SearchResults> + <AnchorEditor> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="AnchorEditor"/> + </AnchorEditor> + <TabOrderEditor> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="TabOrderEditor"/> + </TabOrderEditor> + <CodeBrowser> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="CodeBrowser"/> + </CodeBrowser> + <IssueBrowser> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="IssueBrowser"/> + </IssueBrowser> + <JumpHistory> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="JumpHistory"/> + </JumpHistory> + <ComponentList> + <WindowPlacement Value="RestoreWindowGeometry"/> + <WindowState Value="Normal"/> + <Caption Value="ComponentList"/> + </ComponentList> + <ObjectInspectorDlg> + <WindowPlacement Value="RestoreWindowGeometry"/> + <CustomPosition Top="136" Width="230" Height="493" Left="72"/> + <WindowState Value="Normal"/> + <Caption Value="Object Inspector"/> + </ObjectInspectorDlg> + <Dialogs Count="7"> + <Dialog1> + <Name Value="TLazFindInFilesDialog"/> + <Size Width="0" Height="0"/> + </Dialog1> + <Dialog2> + <Name Value="TLazFindReplaceDialog"/> + <Size Width="0" Height="0"/> + </Dialog2> + <Dialog3> + <Name Value="TOpenInstalledPackagesDlg"/> + <Size Width="0" Height="0"/> + </Dialog3> + <Dialog4> + <Name Value="TIDEOptionsDialog"/> + <Size Width="700" Height="770"/> + </Dialog4> + <Dialog5> + <Name Value="TViewUnitDialog"/> + <Size Width="450" Height="300"/> + </Dialog5> + <Dialog6> + <Name Value="TCodeToolsDefinesDialog"/> + <Size Width="485" Height="450"/> + </Dialog6> + <Dialog7> + <Name Value="TAddToProjectDialog"/> + <Size Width="500" Height="300"/> + </Dialog7> + </Dialogs> + <ComponentPaletteVisible Value="False"/> + <IDESpeedButtonsVisible Value="False"/> + </Desktop> + <FormEditor GuideLineColorLeftTop="16711680" GuideLineColorRightBottom="32768"> + <Rubberband> + <SelectionColor Value="8388608"/> + <CreationColor Value="128"/> + </Rubberband> + </FormEditor> + <BackupProjectFiles AdditionalExtension="bak" MaxCounter="9"/> + <BackupOtherFiles AdditionalExtension="bak" MaxCounter="9"/> + <Debugger Class="TGDBMIDebugger" EventLogLineLimit="100"> + <WatchesDlg ColumnNameWidth="-1" ColumnValueWidth="-1"/> + </Debugger> + <Recent> + <OpenFiles Max="10" Count="3"> + <Item1 Value="/home/testuser/ziz/zizalky.pas"/> + <Item2 Value="/home/usertest/yyy/gamesa.pas"/> + <Item3 Value="/home/usertest/xxx/gamesa-main.pas"/> + </OpenFiles> + <ProjectFiles Max="5" Count="5"> + <Item1 Value="/home/testuser/ziz/zizalky_main.lpi"/> + <Item2 Value="/home/usertest/yyy/gamesa_main.lpi"/> + <Item3 Value="/home/usertest/yyy/gamesa.lpi"/> + <Item4 Value="/home/usertest/xxx/gamesa.lpi"/> + <Item5 Value="/home/usertest/xxx/project1.lpi"/> + </ProjectFiles> + <PackageFiles Max="10"/> + </Recent> + <ExternalTools Count="0"/> + <DebuggerFilename Value="/usr/bin/gdb"> + <History Count="3"> + <Item1 Value="/usr/bin/gdb"/> + <Item2 Value="/usr/local/bin/gdb"/> + <Item3 Value="/opt/fpc/gdb"/> + </History> + </DebuggerFilename> + <DebuggerOptions> + <ShowStopMessage Value="False"/> + </DebuggerOptions> + </EnvironmentOptions> + <ObjectInspectorOptions ShowHints="False"> + <Version Value="3"/> + <ComponentTree> + <Height Value="97"/> + </ComponentTree> + </ObjectInspectorOptions> +</CONFIG> diff --git a/mop/template/.lazarus/fpcdefines.xml b/mop/template/.lazarus/fpcdefines.xml new file mode 100644 index 0000000..23cd593 --- /dev/null +++ b/mop/template/.lazarus/fpcdefines.xml @@ -0,0 +1,186 @@ +<?xml version="1.0"?> +<CONFIG> + <FPCConfigs Count="2"> + <Item1> + <Compiler File="/usr/bin/fpc" Date="1356189141"/> + <RealCompiler File="/usr/lib/fpc/2.6.0/ppc386" Date="1356189141" OS="linux" CPU="i386" InPath="/usr/lib/fpc/2.6.0/ppc386" FullVersion="2.6.0-7"/> + <Configs Count="3"> + <Item1 Filename="/home/usertest/.fpc.cfg"/> + <Item2 Filename="/usr/lib/fpc/etc/fpc.cfg"/> + <Item3 Filename="/etc/fpc.cfg" Exists="True" Date="1363367187"/> + </Configs> + <Defines Count="76"> + <Macro1 Name="CPU32"/> + <Macro2 Name="CPU386"/> + <Macro3 Name="CPU86"/> + <Macro4 Name="CPU87"/> + <Macro5 Name="CPUI386"/> + <Macro6 Name="CPUPENTIUM"/> + <Macro7 Name="ENDIAN_LITTLE"/> + <Macro8 Name="FPC"/> + <Macro9 Name="FPC_ABI_DEFAULT"/> + <Macro10 Name="FPC_FULLVERSION" Value="20600"/> + <Macro11 Name="FPC_HASFIXED64BITVARIANT"/> + <Macro12 Name="FPC_HASINTERNALOLEVARIANT2VARIANTCAST"/> + <Macro13 Name="FPC_HAS_CEXTENDED"/> + <Macro14 Name="FPC_HAS_CONSTREF"/> + <Macro15 Name="FPC_HAS_FEATURE_ANSISTRINGS"/> + <Macro16 Name="FPC_HAS_FEATURE_CLASSES"/> + <Macro17 Name="FPC_HAS_FEATURE_COMMANDARGS"/> + <Macro18 Name="FPC_HAS_FEATURE_CONSOLEIO"/> + <Macro19 Name="FPC_HAS_FEATURE_DYNARRAYS"/> + <Macro20 Name="FPC_HAS_FEATURE_DYNLIBS"/> + <Macro21 Name="FPC_HAS_FEATURE_EXCEPTIONS"/> + <Macro22 Name="FPC_HAS_FEATURE_EXITCODE"/> + <Macro23 Name="FPC_HAS_FEATURE_FILEIO"/> + <Macro24 Name="FPC_HAS_FEATURE_HEAP"/> + <Macro25 Name="FPC_HAS_FEATURE_INITFINAL"/> + <Macro26 Name="FPC_HAS_FEATURE_OBJECTIVEC1"/> + <Macro27 Name="FPC_HAS_FEATURE_OBJECTS"/> + <Macro28 Name="FPC_HAS_FEATURE_PROCESSES"/> + <Macro29 Name="FPC_HAS_FEATURE_RANDOM"/> + <Macro30 Name="FPC_HAS_FEATURE_RESOURCES"/> + <Macro31 Name="FPC_HAS_FEATURE_RTTI"/> + <Macro32 Name="FPC_HAS_FEATURE_SOFTFPU"/> + <Macro33 Name="FPC_HAS_FEATURE_STACKCHECK"/> + <Macro34 Name="FPC_HAS_FEATURE_SUPPORT"/> + <Macro35 Name="FPC_HAS_FEATURE_TEXTIO"/> + <Macro36 Name="FPC_HAS_FEATURE_THREADING"/> + <Macro37 Name="FPC_HAS_FEATURE_VARIANTS"/> + <Macro38 Name="FPC_HAS_FEATURE_WIDESTRINGS"/> + <Macro39 Name="FPC_HAS_INTERNAL_ABS_LONG"/> + <Macro40 Name="FPC_HAS_INTERNAL_BSX"/> + <Macro41 Name="FPC_HAS_INTERNAL_ROX"/> + <Macro42 Name="FPC_HAS_INTERNAL_SAR"/> + <Macro43 Name="FPC_HAS_MEMBAR"/> + <Macro44 Name="FPC_HAS_OPERATOR_ENUMERATOR"/> + <Macro45 Name="FPC_HAS_STR_CURRENCY"/> + <Macro46 Name="FPC_HAS_TYPE_DOUBLE"/> + <Macro47 Name="FPC_HAS_TYPE_EXTENDED"/> + <Macro48 Name="FPC_HAS_TYPE_SINGLE"/> + <Macro49 Name="FPC_HAS_UNICODESTRING"/> + <Macro50 Name="FPC_HAS_VALGRINDBOOL"/> + <Macro51 Name="FPC_HAS_VARSETS"/> + <Macro52 Name="FPC_HAS_WINLIKERESOURCES"/> + <Macro53 Name="FPC_LINK_STATIC"/> + <Macro54 Name="FPC_LITTLE_ENDIAN"/> + <Macro55 Name="FPC_OBJFPC_EXTENDED_IF"/> + <Macro56 Name="FPC_PATCH" Value="0"/> + <Macro57 Name="FPC_REAL2REAL_FIXED"/> + <Macro58 Name="FPC_RELEASE" Value="6"/> + <Macro59 Name="FPC_RTTI_PACKSET1"/> + <Macro60 Name="FPC_SETBASE_USED"/> + <Macro61 Name="FPC_STATICRIPFIXED"/> + <Macro62 Name="FPC_STRTOCHARARRAYPROC"/> + <Macro63 Name="FPC_STRTOSHORTSTRINGPROC"/> + <Macro64 Name="FPC_VERSION" Value="2"/> + <Macro65 Name="FPC_WIDESTRING_EQUAL_UNICODESTRING"/> + <Macro66 Name="FPUX87"/> + <Macro67 Name="HASUNIX"/> + <Macro68 Name="INTERNAL_BACKTRACE"/> + <Macro69 Name="LINUX"/> + <Macro70 Name="REGCALL"/> + <Macro71 Name="RESSTRSECTIONS"/> + <Macro72 Name="STR_CONCAT_PROCS"/> + <Macro73 Name="UNIX"/> + <Macro74 Name="VER2"/> + <Macro75 Name="VER2_6"/> + <Macro76 Name="VER2_6_0"/> + </Defines> + <UnitPaths BaseDir="/usr/lib/fpc/2.6.0" Value="0:units/i386-linux/httpd22;17:rtl;17:fcl-registry;17:zorba;17:opencl;17:aspell;17:fcl-res;18:pmkunit;17:gdbint;17:fcl-fpcunit;17:bfd;17:mysql;17:gtk2;17:ldap;17:tcl;17:unzip;17:postgres;17:fcl-js;17:opengl;17:fpgtk;17:xforms;17:numlib;17:fcl-process;17:libpng;17:gtk1;17:fcl-db;17:uuid;17:libgd;17:ncurses;17:gnome1;17:fcl-async;17:syslog;17:libxml2;17:fcl-base;21:xml;18:v;18:cl-passrc;17:gdbm;17:iconvenc;17:zlib;17:libc;17:users;17:ptc;17:fcl-net;21:web;17:chm;17:fppkg;17:x11;17:pcap;17:fcl-image;17:cairo;17:dbus;17:unixutil;17:hermes;17:bzip2;17:lexyacc;17:imagemagick;17:utmp;17:ibase;17:ggi;17:oracle;17:gmp;17:fcl-extra;17:pthreads;17:odbc;17:pasjpeg;17:fcl-json;18:ftw;17:libsee;17:newt;17:libcurl;17:graph;17:fastcgi;17:proj4;17:svgalib;17:imlib;17:sqlite;17:pxlib;18:aszlib;17:cdrom;17:lua;17:symbolic;17:rsvg;17:openssl;17:hash;17:regexpr;16:;0:"/> + <Units Value="0:/usr/lib/fpc/2.6.0/units/i386-linux/aspell/aspell.ppu;49:dyn.ppu;43:spellcheck.ppu;36:bfd/bfd.ppu;37:zip2/bzip2.ppu;47:comn.ppu;47:stream.ppu;36:cairo/cairo.ppu;47:ft.ppu;47:xlib.ppu;37:drom/cdrom.ppu;42:discid.ppu;42:fpcddb.ppu;42:lincd.ppu;42:major.ppu;37:hm/chmbase.ppu;43:fiftimain.ppu;45:lewriter.ppu;43:reader.ppu;43:sitemap.ppu;44:pecialfiles.ppu;43:types.ppu;43:writer.ppu;40:fasthtmlparser.ppu;40:htmlindexer.ppu;44:util.ppu;40:itolitlsreader.ppu;48:types.ppu;42:sftransform.ppu;40:lzxcompressthread.ppu;40:paslznonslide.ppu;45:x.ppu;46:comp.ppu;36:dbus/dbus.ppu;36:fastcgi/fastcgi.ppu;37:cl-async/fpasync.ppu;46:libasync.ppu;40:base/ascii85.ppu;46:vl_tree.ppu;45:base64.ppu;46:lowfish.ppu;46:ufstream.ppu;45:cachecls.ppu;46:ontnrs.ppu;46:ustapp.ppu;45:eventlog.ppu;45:fpexprpars.ppu;47:mimetypes.ppu;47:template.ppu;48:imer.ppu;45:gettext.ppu;45:idea.ppu;46:nicol.ppu;48:files.ppu;46:ostream.ppu;45:libtar.ppu;45:maskutils.ppu;45:pooledmm.ppu;45:rtfpars.ppu;47:tiutils.ppu;45:streamcoll.ppu;51:ex.ppu;51:io.ppu;46:yncobjs.ppu;45:uriparser.ppu;45:wformat.ppu;46:html.ppu;46:tex.ppu;40:db/bufdataset.ppu;53:_parser.ppu;43:customsqliteds.ppu;43:db.ppu;45:coll.ppu;47:nst.ppu;45:f.ppu;46:_collate.ppu;49:mmon.ppu;48:ursor.ppu;47:dbffile.ppu;47:fields.ppu;47:idxcur.ppu;50:file.ppu;47:lang.ppu;47:memo.ppu;47:parser.ppu;48:gfile.ppu;48:rscore.ppu;50:def.ppu;50:supp.ppu;47:str.ppu;47:wtil.ppu;45:whtml.ppu;43:fpcgcreatedbf.ppu;47:dbcoll.ppu;47:sqlconst.ppu;47:tiopf.ppu;46:svexport.ppu;45:datadict.ppu;46:bexport.ppu;47:fexport.ppu;46:dcodegen.ppu;47:dbf.ppu;48:iff.ppu;47:fb.ppu;47:mysql40.ppu;53:1.ppu;52:50.ppu;47:odbc.ppu;48:racle.ppu;47:popcode.ppu;48:q.ppu;47:regstd.ppu;47:sqldb.ppu;50:ite3.ppu;45:fixedexport.ppu;45:rtfexport.ppu;45:simplejsonexport.ppu;51:xmlexport.ppu;46:qlexport.ppu;48:parser.ppu;48:scanner.ppu;48:tree.ppu;46:tdexports.ppu;45:texexport.ppu;45:xmlxsdexport.ppu;43:ibconnection.ppu;43:memds.ppu;44:ysql40conn.ppu;49:1conn.ppu;49:conn.ppu;48:50conn.ppu;49:1conn.ppu;43:odbcconn.ppu;44:racleconnection.ppu;43:paradox.ppu;44:qconnection.ppu;43:sdfdata.ppu;44:qldb.ppu;46:ite3conn.ppu;50:ds.ppu;49:ds.ppu;46:script.ppu;43:xmldatapacketreader.ppu;40:extra/daemonapp.ppu;40:fpcunit/digesttestreport.ppu;48:fpcunit.ppu;55:report.ppu;48:latextestreport.ppu;48:plaintestreport.ppu;48:testdecorator.ppu;52:registry.ppu;54:port.ppu;52:utils.ppu;48:ubmockobject.ppu;48:xmlreporter.ppu;51:testreport.ppu;40:image/bmpcomn.ppu;46:clipping.ppu;46:ellipses.ppu;47:xtinterpolation.ppu;46:fpcanvas.ppu;49:olhash.ppu;48:ditherer.ppu;48:image.ppu;50:gcanv.ppu;52:mn.ppu;48:pixlcanv.ppu;48:quantizer.ppu;48:readbmp.ppu;52:gif.ppu;52:jpeg.ppu;52:pcx.ppu;53:ng.ppu;54:m.ppu;53:sd.ppu;52:tga.ppu;53:iff.ppu;52:xpm.ppu;53:wd.ppu;48:tiffcmn.ppu;48:writebmp.ppu;53:jpeg.ppu;53:pcx.ppu;54:ng.ppu;55:m.ppu;53:tga.ppu;54:iff.ppu;53:xpm.ppu;47:reetype.ppu;54:h.ppu;47:tfont.ppu;46:pcxcomn.ppu;47:ixtools.ppu;47:ngcomn.ppu;47:scanvas.ppu;46:targacmn.ppu;46:xwdfile.ppu;40:js/jsbase.ppu;45:parser.ppu;45:scanner.ppu;45:tree.ppu;42:on/fpjson.ppu;51:rtti.ppu;45:jsonconf.ppu;49:parser.ppu;49:scanner.ppu;40:net/cnetdb.ppu;44:fpsock.ppu;44:netdb.ppu;44:resolve.ppu;44:ssockets.ppu;40:passrc/pastree.ppu;50:write.ppu;48:parser.ppu;48:scanner.ppu;41:rocess/dbugintf.ppu;52:msg.ppu;48:pipes.ppu;53:ipc.ppu;49:rocess.ppu;48:simpleipc.ppu;40:registry/registry.ppu;49:xmlreg.ppu;42:s/acceleratorsresource.ppu;44:bitmapresource.ppu;44:coffconsts.ppu;48:reader.ppu;48:types.ppu;48:writer.ppu;44:dfmreader.ppu;44:elfconsts.ppu;47:reader.ppu;47:types.ppu;47:writer.ppu;45:xternalreader.ppu;52:types.ppu;52:writer.ppu;44:fpcrestypes.ppu;44:groupcursorresource.ppu;49:iconresource.ppu;49:resource.ppu;44:icocurtypes.ppu;44:machoconsts.ppu;49:reader.ppu;49:types.ppu;49:writer.ppu;44:resdatastream.ppu;47:factory.ppu;47:merger.ppu;47:ource.ppu;52:tree.ppu;47:reader.ppu;47:writer.ppu;44:stringtableresource.ppu;47:table.ppu;44:tlbreader.ppu;44:versionconsts.ppu;51:resource.ppu;51:types.ppu;44:winpeimagereader.ppu;40:web/cgiapp.ppu;45:ustcgi.ppu;48:fcgi.ppu;48:httpapp.ppu;48:web.ppu;44:extjsjson.ppu;49:xml.ppu;45:zcgi.ppu;44:fcgigate.ppu;45:papache.ppu;46:cgi.ppu;46:datasetform.ppu;46:extdirect.ppu;49:js.ppu;46:fcgi.ppu;46:html.ppu;48:tp.ppu;50:app.ppu;50:client.ppu;50:server.ppu;46:jsonrpc.ppu;46:web.ppu;49:data.ppu;49:file.ppu;44:httpdefs.ppu;44:iniwebsession.ppu;44:sqldbwebdata.ppu;44:webjsonrpc.ppu;47:page.ppu;47:session.ppu;47:util.ppu;40:xml/dom.ppu;47:_html.ppu;45:tdmodel.ppu;44:htmldefs.ppu;48:elements.ppu;48:writer.ppu;47:write.ppu;44:sax.ppu;47:_html.ppu;48:xml.ppu;44:xhtml.ppu;45:mlcfg.ppu;48:onf.ppu;47:iconv.ppu;47:read.ppu;47:streaming.ppu;47:utils.ppu;47:write.ppu;45:path.ppu;37:ftw/fftw_s.ppu;37:pgtk/fpglib.ppu;45:tk.ppu;47:ext.ppu;38:mkunit/fpmkunit.ppu;38:pkg/fprepos.ppu;44:xmlrep.ppu;42:pkgcommands.ppu;45:download.ppu;45:fphttp.ppu;47:make.ppu;45:globals.ppu;45:handler.ppu;45:lnet.ppu;45:messages.ppu;46:kconv.ppu;45:options.ppu;45:repos.ppu;45:wget.ppu;37:v/app.ppu;40:sciitab.ppu;39:colortxt.ppu;39:dialogs.ppu;40:rivers.ppu;39:editors.ppu;39:fvcommon.ppu;43:nsts.ppu;39:gadgets.ppu;39:histlist.ppu;39:inplong.ppu;39:memory.ppu;41:nus.ppu;40:sgbox.ppu;39:outline.ppu;39:statuses.ppu;41:ddlg.ppu;40:ysmsg.ppu;39:tabs.ppu;40:ime.ppu;43:ddlg.ppu;39:validate.ppu;40:iews.ppu;36:gdbint/gdbcon.ppu;46:int.ppu;39:m/gdbm.ppu;37:gi/ggi.ppu;43:2d.ppu;41:ii.ppu;37:mp/gmp.ppu;37:nome1/gconf.ppu;48:client.ppu;43:libart.ppu;46:gnome.ppu;51:ui.ppu;46:zvt.ppu;37:raph/ggigraph.ppu;43:raph.ppu;42:ptccrt.ppu;45:graph.ppu;42:sdlgraph.ppu;37:tk1/gdk.ppu;44:pixbuf.ppu;42:lib.ppu;42:module.ppu;42:tk.ppu;44:glarea.ppu;39:2/atk.ppu;41:buildgtk2.ppu;41:gdk2.ppu;45:pixbuf.ppu;45:x.ppu;44:glext.ppu;42:lib2.ppu;42:tk2.ppu;45:ext.ppu;44:glext.ppu;41:libglade2.ppu;41:pango.ppu;46:cairo.ppu;36:hash/crc.ppu;41:md5.ppu;41:ntlm.ppu;41:sha1.ppu;41:unixcrypt.ppu;42:uid.ppu;37:ermes/hermes.ppu;37:ttpd22/apr.ppu;47:iconv.ppu;47:util.ppu;44:httpd.ppu;36:ibase/ibase40.ppu;47:60.ppu;49:dyn.ppu;37:convenc/iconvenc.ppu;53:_dyn.ppu;37:magemagick/buildim.ppu;48:imagemagick.ppu;48:magick_wand.ppu;38:lib/gdk_imlib.ppu;42:imlib.ppu;36:ldap/lber.ppu;42:dap.ppu;37:exyacc/lexlib.ppu;44:yacclib.ppu;37:ibc/kerneldefs.ppu;47:ioctl.ppu;41:libc.ppu;40:url/libcurl.ppu;39:gd/gd.ppu;39:png/png.ppu;39:see/libsee.ppu;39:xml2/xml2.ppu;47:xsd.ppu;50:parser.ppu;37:ua/lauxlib.ppu;41:ua.ppu;43:lib.ppu;36:mysql/my4_sys.ppu;44:sql3.ppu;48:_com.ppu;52:dyn.ppu;49:version.ppu;48:dyn.ppu;47:4.ppu;48:0.ppu;49:dyn.ppu;48:1.ppu;49:dyn.ppu;48:_com.ppu;52:dyn.ppu;49:version.ppu;48:dyn.ppu;47:50.ppu;49:dyn.ppu;48:1.ppu;49:dyn.ppu;36:ncurses/form.ppu;44:menu.ppu;44:ncrt.ppu;46:urses.ppu;44:ocrt.ppu;44:panel.ppu;37:ewt/newt.ppu;37:umlib/det.ppu;44:sl.ppu;43:eig.ppu;46:h1.ppu;47:2.ppu;43:int.ppu;45:v.ppu;44:om.ppu;44:pf.ppu;43:mdt.ppu;43:numlib.ppu;43:ode.ppu;44:mv.ppu;43:roo.ppu;43:sle.ppu;44:pe.ppu;45:l.ppu;43:typ.ppu;36:odbc/odbcsql.ppu;48:dyn.ppu;37:pencl/cl.ppu;45:_gl.ppu;40:gl/freeglut.ppu;43:gl.ppu;45:ext.ppu;45:u.ppu;46:t.ppu;45:x.ppu;40:ssl/openssl.ppu;37:racle/oci.ppu;46:dyn.ppu;44:raoci.ppu;46:types.ppu;36:pasjpeg/buildpasjpeg.ppu;44:jcapimin.ppu;49:std.ppu;46:coefct.ppu;48:lor.ppu;46:dctmgr.ppu;46:huff.ppu;46:init.ppu;46:mainct.ppu;48:rker.ppu;48:ster.ppu;46:omapi.ppu;46:param.ppu;47:huff.ppu;47:repct.ppu;46:sample.ppu;46:trans.ppu;45:dapimin.ppu;49:std.ppu;47:tadst.ppu;49:src.ppu;46:coefct.ppu;48:lor.ppu;47:t.ppu;46:dctmgr.ppu;46:eferr.ppu;46:huff.ppu;46:input.ppu;46:mainct.ppu;48:rker.ppu;48:ster.ppu;47:erge.ppu;46:phuff.ppu;47:ostct.ppu;46:sample.ppu;45:error.ppu;45:fdctflt.ppu;50:st.ppu;49:int.ppu;45:idctflt.ppu;50:st.ppu;49:int.ppu;49:red.ppu;46:nclude.ppu;45:memmgr.ppu;48:nobs.ppu;46:orecfg.ppu;45:peglib.ppu;45:quant1.ppu;50:2.ppu;45:utils.ppu;39:zlib/adler.ppu;44:gzio.ppu;44:infblock.ppu;47:codes.ppu;47:fast.ppu;47:trees.ppu;47:util.ppu;44:paszlib.ppu;44:trees.ppu;44:unzip.ppu;44:zbase.ppu;45:compres.ppu;45:deflate.ppu;45:inflate.ppu;46:p.ppu;47:per.ppu;47:utils.ppu;45:stream.ppu;45:uncompr.ppu;37:cap/pcap.ppu;37:ostgres/dllist.ppu;51:dyn.ppu;45:postgres.ppu;53:3.ppu;54:dyn.ppu;37:roj4/proj.ppu;37:tc/ptc.ppu;43:eventqueue.ppu;43:wrapper.ppu;38:hreads/pthreads.ppu;37:xlib/pxlib.ppu;36:regexpr/oldregexpr.ppu;44:regex.ppu;49:pr.ppu;37:svg/rsvg.ppu;37:tl/baseunix.ppu;40:charset.ppu;41:lasses.ppu;42:ocale.ppu;41:mem.ppu;41:onvutils.ppu;41:pu.ppu;41:rt.ppu;41:threads.ppu;42:ypes.ppu;41:wstring.ppu;40:dateutils.ppu;41:l.ppu;41:os.ppu;41:ynlibs.ppu;40:errors.ppu;41:xeinfo.ppu;40:fgl.ppu;41:mtbcd.ppu;41:pcylix.ppu;42:intres.ppu;40:getopts.ppu;41:pm.ppu;40:heaptrc.ppu;40:initc.ppu;41:pc.ppu;41:so7185.ppu;40:keyboard.ppu;40:lineinfo.ppu;43:ux.ppu;45:vcs.ppu;41:nfodwrf.ppu;40:macpas.ppu;42:th.ppu;43:rix.ppu;41:mx.ppu;41:ouse.ppu;40:objects.ppu;43:pas.ppu;40:ports.ppu;41:rinter.ppu;40:rtlconsts.ppu;40:serial.ppu;41:i_c.ppu;44:21.ppu;46:g.ppu;43:dll.ppu;43:prc.ppu;43:uc.ppu;41:ockets.ppu;41:tdconvs.ppu;42:rings.ppu;43:utils.ppu;41:yscall.ppu;44:onst.ppu;43:tem.ppu;43:utils.ppu;40:terminfo.ppu;45:o.ppu;41:ypes.ppu;43:info.ppu;40:ucomplex.ppu;41:nix.ppu;44:type.ppu;44:util.ppu;40:variants.ppu;43:utils.ppu;41:ideo.ppu;40:x86.ppu;36:sqlite/sqlite.ppu;49:3.ppu;50:db.ppu;51:yn.ppu;49:db.ppu;37:vgalib/svgalib.ppu;44:vgamouse.ppu;37:ymbolic/symbolic.ppu;38:slog/systemlog.ppu;36:tcl/tcl80.ppu;36:unixutil/unixutils.ppu;38:zip/unzip51g.ppu;42:ziptypes.ppu;37:sers/crypth.ppu;42:grp.ppu;42:pwd.ppu;42:shadow.ppu;42:users.ppu;37:tmp/utmp.ppu;37:uid/libuuid.ppu;41:macuuid.ppu;36:x11/cursorfont.ppu;40:keysym.ppu;40:x.ppu;41:atom.ppu;41:cms.ppu;41:f86dga.ppu;44:vmode.ppu;41:i.ppu;42:nerama.ppu;41:kb.ppu;43:lib.ppu;41:lib.ppu;41:randr.ppu;42:ender.ppu;43:source.ppu;41:shm.ppu;41:util.ppu;41:v.ppu;42:lib.ppu;37:forms/xforms.ppu;36:zlib/zlib.ppu;37:orba/xqc.ppu;42:zorba.ppu;47:dyn.ppu"/> + </Item1> + <Item2 TargetOS="linux" TargetCPU="i386"> + <Compiler File="/usr/bin/fpc" Date="1356189141"/> + <RealCompiler File="/usr/lib/fpc/2.6.0/ppc386" Date="1356189141" OS="linux" CPU="i386" InPath="/usr/lib/fpc/2.6.0/ppc386" FullVersion="2.6.0-7"/> + <Configs Count="3"> + <Item1 Filename="/home/usertest/.fpc.cfg"/> + <Item2 Filename="/usr/lib/fpc/etc/fpc.cfg"/> + <Item3 Filename="/etc/fpc.cfg" Exists="True" Date="1363367187"/> + </Configs> + <Defines Count="76"> + <Macro1 Name="CPU32"/> + <Macro2 Name="CPU386"/> + <Macro3 Name="CPU86"/> + <Macro4 Name="CPU87"/> + <Macro5 Name="CPUI386"/> + <Macro6 Name="CPUPENTIUM"/> + <Macro7 Name="ENDIAN_LITTLE"/> + <Macro8 Name="FPC"/> + <Macro9 Name="FPC_ABI_DEFAULT"/> + <Macro10 Name="FPC_FULLVERSION" Value="20600"/> + <Macro11 Name="FPC_HASFIXED64BITVARIANT"/> + <Macro12 Name="FPC_HASINTERNALOLEVARIANT2VARIANTCAST"/> + <Macro13 Name="FPC_HAS_CEXTENDED"/> + <Macro14 Name="FPC_HAS_CONSTREF"/> + <Macro15 Name="FPC_HAS_FEATURE_ANSISTRINGS"/> + <Macro16 Name="FPC_HAS_FEATURE_CLASSES"/> + <Macro17 Name="FPC_HAS_FEATURE_COMMANDARGS"/> + <Macro18 Name="FPC_HAS_FEATURE_CONSOLEIO"/> + <Macro19 Name="FPC_HAS_FEATURE_DYNARRAYS"/> + <Macro20 Name="FPC_HAS_FEATURE_DYNLIBS"/> + <Macro21 Name="FPC_HAS_FEATURE_EXCEPTIONS"/> + <Macro22 Name="FPC_HAS_FEATURE_EXITCODE"/> + <Macro23 Name="FPC_HAS_FEATURE_FILEIO"/> + <Macro24 Name="FPC_HAS_FEATURE_HEAP"/> + <Macro25 Name="FPC_HAS_FEATURE_INITFINAL"/> + <Macro26 Name="FPC_HAS_FEATURE_OBJECTIVEC1"/> + <Macro27 Name="FPC_HAS_FEATURE_OBJECTS"/> + <Macro28 Name="FPC_HAS_FEATURE_PROCESSES"/> + <Macro29 Name="FPC_HAS_FEATURE_RANDOM"/> + <Macro30 Name="FPC_HAS_FEATURE_RESOURCES"/> + <Macro31 Name="FPC_HAS_FEATURE_RTTI"/> + <Macro32 Name="FPC_HAS_FEATURE_SOFTFPU"/> + <Macro33 Name="FPC_HAS_FEATURE_STACKCHECK"/> + <Macro34 Name="FPC_HAS_FEATURE_SUPPORT"/> + <Macro35 Name="FPC_HAS_FEATURE_TEXTIO"/> + <Macro36 Name="FPC_HAS_FEATURE_THREADING"/> + <Macro37 Name="FPC_HAS_FEATURE_VARIANTS"/> + <Macro38 Name="FPC_HAS_FEATURE_WIDESTRINGS"/> + <Macro39 Name="FPC_HAS_INTERNAL_ABS_LONG"/> + <Macro40 Name="FPC_HAS_INTERNAL_BSX"/> + <Macro41 Name="FPC_HAS_INTERNAL_ROX"/> + <Macro42 Name="FPC_HAS_INTERNAL_SAR"/> + <Macro43 Name="FPC_HAS_MEMBAR"/> + <Macro44 Name="FPC_HAS_OPERATOR_ENUMERATOR"/> + <Macro45 Name="FPC_HAS_STR_CURRENCY"/> + <Macro46 Name="FPC_HAS_TYPE_DOUBLE"/> + <Macro47 Name="FPC_HAS_TYPE_EXTENDED"/> + <Macro48 Name="FPC_HAS_TYPE_SINGLE"/> + <Macro49 Name="FPC_HAS_UNICODESTRING"/> + <Macro50 Name="FPC_HAS_VALGRINDBOOL"/> + <Macro51 Name="FPC_HAS_VARSETS"/> + <Macro52 Name="FPC_HAS_WINLIKERESOURCES"/> + <Macro53 Name="FPC_LINK_STATIC"/> + <Macro54 Name="FPC_LITTLE_ENDIAN"/> + <Macro55 Name="FPC_OBJFPC_EXTENDED_IF"/> + <Macro56 Name="FPC_PATCH" Value="0"/> + <Macro57 Name="FPC_REAL2REAL_FIXED"/> + <Macro58 Name="FPC_RELEASE" Value="6"/> + <Macro59 Name="FPC_RTTI_PACKSET1"/> + <Macro60 Name="FPC_SETBASE_USED"/> + <Macro61 Name="FPC_STATICRIPFIXED"/> + <Macro62 Name="FPC_STRTOCHARARRAYPROC"/> + <Macro63 Name="FPC_STRTOSHORTSTRINGPROC"/> + <Macro64 Name="FPC_VERSION" Value="2"/> + <Macro65 Name="FPC_WIDESTRING_EQUAL_UNICODESTRING"/> + <Macro66 Name="FPUX87"/> + <Macro67 Name="HASUNIX"/> + <Macro68 Name="INTERNAL_BACKTRACE"/> + <Macro69 Name="LINUX"/> + <Macro70 Name="REGCALL"/> + <Macro71 Name="RESSTRSECTIONS"/> + <Macro72 Name="STR_CONCAT_PROCS"/> + <Macro73 Name="UNIX"/> + <Macro74 Name="VER2"/> + <Macro75 Name="VER2_6"/> + <Macro76 Name="VER2_6_0"/> + </Defines> + <UnitPaths BaseDir="/usr/lib/fpc/2.6.0" Value="0:units/i386-linux/httpd22;17:rtl;17:fcl-registry;17:zorba;17:opencl;17:aspell;17:fcl-res;18:pmkunit;17:gdbint;17:fcl-fpcunit;17:bfd;17:mysql;17:gtk2;17:ldap;17:tcl;17:unzip;17:postgres;17:fcl-js;17:opengl;17:fpgtk;17:xforms;17:numlib;17:fcl-process;17:libpng;17:gtk1;17:fcl-db;17:uuid;17:libgd;17:ncurses;17:gnome1;17:fcl-async;17:syslog;17:libxml2;17:fcl-base;21:xml;18:v;18:cl-passrc;17:gdbm;17:iconvenc;17:zlib;17:libc;17:users;17:ptc;17:fcl-net;21:web;17:chm;17:fppkg;17:x11;17:pcap;17:fcl-image;17:cairo;17:dbus;17:unixutil;17:hermes;17:bzip2;17:lexyacc;17:imagemagick;17:utmp;17:ibase;17:ggi;17:oracle;17:gmp;17:fcl-extra;17:pthreads;17:odbc;17:pasjpeg;17:fcl-json;18:ftw;17:libsee;17:newt;17:libcurl;17:graph;17:fastcgi;17:proj4;17:svgalib;17:imlib;17:sqlite;17:pxlib;18:aszlib;17:cdrom;17:lua;17:symbolic;17:rsvg;17:openssl;17:hash;17:regexpr;16:;0:"/> + <Units Value="0:/usr/lib/fpc/2.6.0/units/i386-linux/aspell/aspell.ppu;49:dyn.ppu;43:spellcheck.ppu;36:bfd/bfd.ppu;37:zip2/bzip2.ppu;47:comn.ppu;47:stream.ppu;36:cairo/cairo.ppu;47:ft.ppu;47:xlib.ppu;37:drom/cdrom.ppu;42:discid.ppu;42:fpcddb.ppu;42:lincd.ppu;42:major.ppu;37:hm/chmbase.ppu;43:fiftimain.ppu;45:lewriter.ppu;43:reader.ppu;43:sitemap.ppu;44:pecialfiles.ppu;43:types.ppu;43:writer.ppu;40:fasthtmlparser.ppu;40:htmlindexer.ppu;44:util.ppu;40:itolitlsreader.ppu;48:types.ppu;42:sftransform.ppu;40:lzxcompressthread.ppu;40:paslznonslide.ppu;45:x.ppu;46:comp.ppu;36:dbus/dbus.ppu;36:fastcgi/fastcgi.ppu;37:cl-async/fpasync.ppu;46:libasync.ppu;40:base/ascii85.ppu;46:vl_tree.ppu;45:base64.ppu;46:lowfish.ppu;46:ufstream.ppu;45:cachecls.ppu;46:ontnrs.ppu;46:ustapp.ppu;45:eventlog.ppu;45:fpexprpars.ppu;47:mimetypes.ppu;47:template.ppu;48:imer.ppu;45:gettext.ppu;45:idea.ppu;46:nicol.ppu;48:files.ppu;46:ostream.ppu;45:libtar.ppu;45:maskutils.ppu;45:pooledmm.ppu;45:rtfpars.ppu;47:tiutils.ppu;45:streamcoll.ppu;51:ex.ppu;51:io.ppu;46:yncobjs.ppu;45:uriparser.ppu;45:wformat.ppu;46:html.ppu;46:tex.ppu;40:db/bufdataset.ppu;53:_parser.ppu;43:customsqliteds.ppu;43:db.ppu;45:coll.ppu;47:nst.ppu;45:f.ppu;46:_collate.ppu;49:mmon.ppu;48:ursor.ppu;47:dbffile.ppu;47:fields.ppu;47:idxcur.ppu;50:file.ppu;47:lang.ppu;47:memo.ppu;47:parser.ppu;48:gfile.ppu;48:rscore.ppu;50:def.ppu;50:supp.ppu;47:str.ppu;47:wtil.ppu;45:whtml.ppu;43:fpcgcreatedbf.ppu;47:dbcoll.ppu;47:sqlconst.ppu;47:tiopf.ppu;46:svexport.ppu;45:datadict.ppu;46:bexport.ppu;47:fexport.ppu;46:dcodegen.ppu;47:dbf.ppu;48:iff.ppu;47:fb.ppu;47:mysql40.ppu;53:1.ppu;52:50.ppu;47:odbc.ppu;48:racle.ppu;47:popcode.ppu;48:q.ppu;47:regstd.ppu;47:sqldb.ppu;50:ite3.ppu;45:fixedexport.ppu;45:rtfexport.ppu;45:simplejsonexport.ppu;51:xmlexport.ppu;46:qlexport.ppu;48:parser.ppu;48:scanner.ppu;48:tree.ppu;46:tdexports.ppu;45:texexport.ppu;45:xmlxsdexport.ppu;43:ibconnection.ppu;43:memds.ppu;44:ysql40conn.ppu;49:1conn.ppu;49:conn.ppu;48:50conn.ppu;49:1conn.ppu;43:odbcconn.ppu;44:racleconnection.ppu;43:paradox.ppu;44:qconnection.ppu;43:sdfdata.ppu;44:qldb.ppu;46:ite3conn.ppu;50:ds.ppu;49:ds.ppu;46:script.ppu;43:xmldatapacketreader.ppu;40:extra/daemonapp.ppu;40:fpcunit/digesttestreport.ppu;48:fpcunit.ppu;55:report.ppu;48:latextestreport.ppu;48:plaintestreport.ppu;48:testdecorator.ppu;52:registry.ppu;54:port.ppu;52:utils.ppu;48:ubmockobject.ppu;48:xmlreporter.ppu;51:testreport.ppu;40:image/bmpcomn.ppu;46:clipping.ppu;46:ellipses.ppu;47:xtinterpolation.ppu;46:fpcanvas.ppu;49:olhash.ppu;48:ditherer.ppu;48:image.ppu;50:gcanv.ppu;52:mn.ppu;48:pixlcanv.ppu;48:quantizer.ppu;48:readbmp.ppu;52:gif.ppu;52:jpeg.ppu;52:pcx.ppu;53:ng.ppu;54:m.ppu;53:sd.ppu;52:tga.ppu;53:iff.ppu;52:xpm.ppu;53:wd.ppu;48:tiffcmn.ppu;48:writebmp.ppu;53:jpeg.ppu;53:pcx.ppu;54:ng.ppu;55:m.ppu;53:tga.ppu;54:iff.ppu;53:xpm.ppu;47:reetype.ppu;54:h.ppu;47:tfont.ppu;46:pcxcomn.ppu;47:ixtools.ppu;47:ngcomn.ppu;47:scanvas.ppu;46:targacmn.ppu;46:xwdfile.ppu;40:js/jsbase.ppu;45:parser.ppu;45:scanner.ppu;45:tree.ppu;42:on/fpjson.ppu;51:rtti.ppu;45:jsonconf.ppu;49:parser.ppu;49:scanner.ppu;40:net/cnetdb.ppu;44:fpsock.ppu;44:netdb.ppu;44:resolve.ppu;44:ssockets.ppu;40:passrc/pastree.ppu;50:write.ppu;48:parser.ppu;48:scanner.ppu;41:rocess/dbugintf.ppu;52:msg.ppu;48:pipes.ppu;53:ipc.ppu;49:rocess.ppu;48:simpleipc.ppu;40:registry/registry.ppu;49:xmlreg.ppu;42:s/acceleratorsresource.ppu;44:bitmapresource.ppu;44:coffconsts.ppu;48:reader.ppu;48:types.ppu;48:writer.ppu;44:dfmreader.ppu;44:elfconsts.ppu;47:reader.ppu;47:types.ppu;47:writer.ppu;45:xternalreader.ppu;52:types.ppu;52:writer.ppu;44:fpcrestypes.ppu;44:groupcursorresource.ppu;49:iconresource.ppu;49:resource.ppu;44:icocurtypes.ppu;44:machoconsts.ppu;49:reader.ppu;49:types.ppu;49:writer.ppu;44:resdatastream.ppu;47:factory.ppu;47:merger.ppu;47:ource.ppu;52:tree.ppu;47:reader.ppu;47:writer.ppu;44:stringtableresource.ppu;47:table.ppu;44:tlbreader.ppu;44:versionconsts.ppu;51:resource.ppu;51:types.ppu;44:winpeimagereader.ppu;40:web/cgiapp.ppu;45:ustcgi.ppu;48:fcgi.ppu;48:httpapp.ppu;48:web.ppu;44:extjsjson.ppu;49:xml.ppu;45:zcgi.ppu;44:fcgigate.ppu;45:papache.ppu;46:cgi.ppu;46:datasetform.ppu;46:extdirect.ppu;49:js.ppu;46:fcgi.ppu;46:html.ppu;48:tp.ppu;50:app.ppu;50:client.ppu;50:server.ppu;46:jsonrpc.ppu;46:web.ppu;49:data.ppu;49:file.ppu;44:httpdefs.ppu;44:iniwebsession.ppu;44:sqldbwebdata.ppu;44:webjsonrpc.ppu;47:page.ppu;47:session.ppu;47:util.ppu;40:xml/dom.ppu;47:_html.ppu;45:tdmodel.ppu;44:htmldefs.ppu;48:elements.ppu;48:writer.ppu;47:write.ppu;44:sax.ppu;47:_html.ppu;48:xml.ppu;44:xhtml.ppu;45:mlcfg.ppu;48:onf.ppu;47:iconv.ppu;47:read.ppu;47:streaming.ppu;47:utils.ppu;47:write.ppu;45:path.ppu;37:ftw/fftw_s.ppu;37:pgtk/fpglib.ppu;45:tk.ppu;47:ext.ppu;38:mkunit/fpmkunit.ppu;38:pkg/fprepos.ppu;44:xmlrep.ppu;42:pkgcommands.ppu;45:download.ppu;45:fphttp.ppu;47:make.ppu;45:globals.ppu;45:handler.ppu;45:lnet.ppu;45:messages.ppu;46:kconv.ppu;45:options.ppu;45:repos.ppu;45:wget.ppu;37:v/app.ppu;40:sciitab.ppu;39:colortxt.ppu;39:dialogs.ppu;40:rivers.ppu;39:editors.ppu;39:fvcommon.ppu;43:nsts.ppu;39:gadgets.ppu;39:histlist.ppu;39:inplong.ppu;39:memory.ppu;41:nus.ppu;40:sgbox.ppu;39:outline.ppu;39:statuses.ppu;41:ddlg.ppu;40:ysmsg.ppu;39:tabs.ppu;40:ime.ppu;43:ddlg.ppu;39:validate.ppu;40:iews.ppu;36:gdbint/gdbcon.ppu;46:int.ppu;39:m/gdbm.ppu;37:gi/ggi.ppu;43:2d.ppu;41:ii.ppu;37:mp/gmp.ppu;37:nome1/gconf.ppu;48:client.ppu;43:libart.ppu;46:gnome.ppu;51:ui.ppu;46:zvt.ppu;37:raph/ggigraph.ppu;43:raph.ppu;42:ptccrt.ppu;45:graph.ppu;42:sdlgraph.ppu;37:tk1/gdk.ppu;44:pixbuf.ppu;42:lib.ppu;42:module.ppu;42:tk.ppu;44:glarea.ppu;39:2/atk.ppu;41:buildgtk2.ppu;41:gdk2.ppu;45:pixbuf.ppu;45:x.ppu;44:glext.ppu;42:lib2.ppu;42:tk2.ppu;45:ext.ppu;44:glext.ppu;41:libglade2.ppu;41:pango.ppu;46:cairo.ppu;36:hash/crc.ppu;41:md5.ppu;41:ntlm.ppu;41:sha1.ppu;41:unixcrypt.ppu;42:uid.ppu;37:ermes/hermes.ppu;37:ttpd22/apr.ppu;47:iconv.ppu;47:util.ppu;44:httpd.ppu;36:ibase/ibase40.ppu;47:60.ppu;49:dyn.ppu;37:convenc/iconvenc.ppu;53:_dyn.ppu;37:magemagick/buildim.ppu;48:imagemagick.ppu;48:magick_wand.ppu;38:lib/gdk_imlib.ppu;42:imlib.ppu;36:ldap/lber.ppu;42:dap.ppu;37:exyacc/lexlib.ppu;44:yacclib.ppu;37:ibc/kerneldefs.ppu;47:ioctl.ppu;41:libc.ppu;40:url/libcurl.ppu;39:gd/gd.ppu;39:png/png.ppu;39:see/libsee.ppu;39:xml2/xml2.ppu;47:xsd.ppu;50:parser.ppu;37:ua/lauxlib.ppu;41:ua.ppu;43:lib.ppu;36:mysql/my4_sys.ppu;44:sql3.ppu;48:_com.ppu;52:dyn.ppu;49:version.ppu;48:dyn.ppu;47:4.ppu;48:0.ppu;49:dyn.ppu;48:1.ppu;49:dyn.ppu;48:_com.ppu;52:dyn.ppu;49:version.ppu;48:dyn.ppu;47:50.ppu;49:dyn.ppu;48:1.ppu;49:dyn.ppu;36:ncurses/form.ppu;44:menu.ppu;44:ncrt.ppu;46:urses.ppu;44:ocrt.ppu;44:panel.ppu;37:ewt/newt.ppu;37:umlib/det.ppu;44:sl.ppu;43:eig.ppu;46:h1.ppu;47:2.ppu;43:int.ppu;45:v.ppu;44:om.ppu;44:pf.ppu;43:mdt.ppu;43:numlib.ppu;43:ode.ppu;44:mv.ppu;43:roo.ppu;43:sle.ppu;44:pe.ppu;45:l.ppu;43:typ.ppu;36:odbc/odbcsql.ppu;48:dyn.ppu;37:pencl/cl.ppu;45:_gl.ppu;40:gl/freeglut.ppu;43:gl.ppu;45:ext.ppu;45:u.ppu;46:t.ppu;45:x.ppu;40:ssl/openssl.ppu;37:racle/oci.ppu;46:dyn.ppu;44:raoci.ppu;46:types.ppu;36:pasjpeg/buildpasjpeg.ppu;44:jcapimin.ppu;49:std.ppu;46:coefct.ppu;48:lor.ppu;46:dctmgr.ppu;46:huff.ppu;46:init.ppu;46:mainct.ppu;48:rker.ppu;48:ster.ppu;46:omapi.ppu;46:param.ppu;47:huff.ppu;47:repct.ppu;46:sample.ppu;46:trans.ppu;45:dapimin.ppu;49:std.ppu;47:tadst.ppu;49:src.ppu;46:coefct.ppu;48:lor.ppu;47:t.ppu;46:dctmgr.ppu;46:eferr.ppu;46:huff.ppu;46:input.ppu;46:mainct.ppu;48:rker.ppu;48:ster.ppu;47:erge.ppu;46:phuff.ppu;47:ostct.ppu;46:sample.ppu;45:error.ppu;45:fdctflt.ppu;50:st.ppu;49:int.ppu;45:idctflt.ppu;50:st.ppu;49:int.ppu;49:red.ppu;46:nclude.ppu;45:memmgr.ppu;48:nobs.ppu;46:orecfg.ppu;45:peglib.ppu;45:quant1.ppu;50:2.ppu;45:utils.ppu;39:zlib/adler.ppu;44:gzio.ppu;44:infblock.ppu;47:codes.ppu;47:fast.ppu;47:trees.ppu;47:util.ppu;44:paszlib.ppu;44:trees.ppu;44:unzip.ppu;44:zbase.ppu;45:compres.ppu;45:deflate.ppu;45:inflate.ppu;46:p.ppu;47:per.ppu;47:utils.ppu;45:stream.ppu;45:uncompr.ppu;37:cap/pcap.ppu;37:ostgres/dllist.ppu;51:dyn.ppu;45:postgres.ppu;53:3.ppu;54:dyn.ppu;37:roj4/proj.ppu;37:tc/ptc.ppu;43:eventqueue.ppu;43:wrapper.ppu;38:hreads/pthreads.ppu;37:xlib/pxlib.ppu;36:regexpr/oldregexpr.ppu;44:regex.ppu;49:pr.ppu;37:svg/rsvg.ppu;37:tl/baseunix.ppu;40:charset.ppu;41:lasses.ppu;42:ocale.ppu;41:mem.ppu;41:onvutils.ppu;41:pu.ppu;41:rt.ppu;41:threads.ppu;42:ypes.ppu;41:wstring.ppu;40:dateutils.ppu;41:l.ppu;41:os.ppu;41:ynlibs.ppu;40:errors.ppu;41:xeinfo.ppu;40:fgl.ppu;41:mtbcd.ppu;41:pcylix.ppu;42:intres.ppu;40:getopts.ppu;41:pm.ppu;40:heaptrc.ppu;40:initc.ppu;41:pc.ppu;41:so7185.ppu;40:keyboard.ppu;40:lineinfo.ppu;43:ux.ppu;45:vcs.ppu;41:nfodwrf.ppu;40:macpas.ppu;42:th.ppu;43:rix.ppu;41:mx.ppu;41:ouse.ppu;40:objects.ppu;43:pas.ppu;40:ports.ppu;41:rinter.ppu;40:rtlconsts.ppu;40:serial.ppu;41:i_c.ppu;44:21.ppu;46:g.ppu;43:dll.ppu;43:prc.ppu;43:uc.ppu;41:ockets.ppu;41:tdconvs.ppu;42:rings.ppu;43:utils.ppu;41:yscall.ppu;44:onst.ppu;43:tem.ppu;43:utils.ppu;40:terminfo.ppu;45:o.ppu;41:ypes.ppu;43:info.ppu;40:ucomplex.ppu;41:nix.ppu;44:type.ppu;44:util.ppu;40:variants.ppu;43:utils.ppu;41:ideo.ppu;40:x86.ppu;36:sqlite/sqlite.ppu;49:3.ppu;50:db.ppu;51:yn.ppu;49:db.ppu;37:vgalib/svgalib.ppu;44:vgamouse.ppu;37:ymbolic/symbolic.ppu;38:slog/systemlog.ppu;36:tcl/tcl80.ppu;36:unixutil/unixutils.ppu;38:zip/unzip51g.ppu;42:ziptypes.ppu;37:sers/crypth.ppu;42:grp.ppu;42:pwd.ppu;42:shadow.ppu;42:users.ppu;37:tmp/utmp.ppu;37:uid/libuuid.ppu;41:macuuid.ppu;36:x11/cursorfont.ppu;40:keysym.ppu;40:x.ppu;41:atom.ppu;41:cms.ppu;41:f86dga.ppu;44:vmode.ppu;41:i.ppu;42:nerama.ppu;41:kb.ppu;43:lib.ppu;41:lib.ppu;41:randr.ppu;42:ender.ppu;43:source.ppu;41:shm.ppu;41:util.ppu;41:v.ppu;42:lib.ppu;37:forms/xforms.ppu;36:zlib/zlib.ppu;37:orba/xqc.ppu;42:zorba.ppu;47:dyn.ppu"/> + </Item2> + </FPCConfigs> + <FPCSources Count="1"> + <Item1 Directory="/usr/share/fpcsrc/2.6.0" Files="0:compiler/Makefile.fpc;9:aasmbase.pas;13:data.pas;13:sym.pas;13:tai.pas;10:ggas.pas;10:lpha/aasmcpu.pas;16:gaxpgas.pas;16:optcpu.pas;22:b.pas;22:c.pas;22:d.pas;15:cgcpu.pas;16:pubase.pas;18:info.pas;18:node.pas;18:para.pas;19:i.pas;18:targ.pas;15:radirect.pas;17:sm.pas;16:gcpu.pas;15:tgcpu.pas;10:opt.pas;13:base.pas;13:cs.pas;13:da.pas;13:obj.pas;10:rm/aasmcpu.pas;14:garmgas.pas;14:optcpu.pas;20:b.pas;20:c.pas;20:d.pas;14:rmatt.inc;19:s.inc;16:nop.inc;16:op.inc;16:tab.inc;13:cgcpu.pas;14:pubase.pas;16:info.pas;16:node.pas;16:para.pas;17:i.pas;16:targ.pas;13:itcpugas.pas;13:narmadd.pas;17:cal.pas;18:nv.pas;18:on.pas;17:inl.pas;17:mat.pas;17:set.pas;13:raarm.pas;18:gas.pas;15:rmcon.inc;17:dwa.inc;17:nor.inc;18:um.inc;17:rni.inc;17:sri.inc;18:ta.inc;19:d.inc;18:up.inc;14:gcpu.pas;10:smutils.pas;11:semble.pas;10:vr/aasmcpu.pas;14:gavrgas.pas;14:optcpu.pas;20:b.pas;20:d.pas;13:cgcpu.pas;14:pubase.pas;16:info.pas;16:node.pas;16:para.pas;17:i.pas;16:targ.pas;13:itcpugas.pas;13:navradd.pas;17:cnv.pas;17:mat.pas;13:raavr.pas;18:gas.pas;15:vrcon.inc;17:dwa.inc;17:nor.inc;18:um.inc;17:rni.inc;17:sri.inc;18:ta.inc;19:d.inc;18:up.inc;14:gcpu.pas;9:browcol.pas;9:catch.pas;10:charset.pas;11:lasses.pas;10:fidwarf.pas;12:leutl.pas;10:g64f32.pas;11:base.pas;11:obj.pas;11:utils.pas;10:msgs.pas;10:omphook.pas;13:iler.pas;14:nnr.inc;13:rsrc.pas;11:nstexp.pas;10:p1251.pas;11:437.pas;11:850.pas;12:66.pas;12:859_1.pas;16:5.pas;10:refs.pas;12:sstr.pas;10:streams.pas;10:utils.pas;10:windirs.pp;9:dbgbase.pas;12:dwarf.pas;12:stabs.pas;10:efcmp.pas;12:util.pas;9:export.pas;12:unix.pas;9:finput.pas;10:module.pas;10:pccrc.pas;12:defs.inc;11:pu.pas;9:gendef.pas;12:eric/cpuinfo.pas;10:lobals.pas;13:type.pas;9:htypechk.pas;9:i386/aopt386.pas;14:cgcpu.pas;15:pubase.inc;17:info.pas;17:node.pas;17:para.pas;18:i.pas;17:targ.pas;15:sopt386.pas;14:daopt386.pas;14:i386att.inc;21:s.inc;18:int.inc;18:nop.inc;18:op.inc;18:prop.inc;18:tab.inc;14:n386add.pas;18:cal.pas;18:inl.pas;18:mat.pas;19:em.pas;18:set.pas;14:popt386.pas;14:r386ari.inc;19:tt.inc;18:con.inc;18:dwrf.inc;18:int.inc;19:ri.inc;18:nasm.inc;19:or.inc;19:ri.inc;19:um.inc;18:op.inc;19:t.inc;18:rni.inc;18:sri.inc;19:tab.inc;20:d.inc;15:a386att.pas;19:int.pas;15:gcpu.pas;15:ropt386.pas;10:a64/aasmcpu.pas;14:cpubase.pas;17:info.pas;10:mpdef.pas;12:ort.pas;9:link.pas;9:m68k/aasmcpu.pas;15:g68kgas.pas;15:optcpu.pas;21:b.pas;21:d.pas;14:cgcpu.pas;15:puasm.pas;17:base.pas;17:info.pas;17:node.pas;17:para.pas;18:i.pas;17:targ.pas;14:itcpugas.pas;14:n68kadd.pas;18:cal.pas;19:nv.pas;18:mat.pas;14:r68kcon.inc;18:gas.inc;19:ri.inc;18:nor.inc;19:um.inc;18:rni.inc;18:sri.inc;19:ta.inc;20:d.inc;19:up.inc;15:a68k.pas;19:mot.pas;15:gcpu.pas;10:acho.pas;14:utils.pas;10:ips/aasmcpu.pas;15:optcpu.pas;21:b.pas;21:d.pas;14:cgcpu.pas;15:pubase.pas;17:gas.pas;17:info.pas;17:node.pas;17:para.pas;18:i.pas;17:targ.pas;14:itcpugas.pas;14:ncpuadd.pas;18:call.pas;19:nv.pas;18:inln.pas;18:mat.pas;18:set.pas;14:opcode.inc;14:rgcpu.pas;15:mipscon.inc;19:dwf.inc;19:gas.inc;20:ri.inc;20:ss.inc;19:mot.inc;20:ri.inc;19:nor.inc;20:um.inc;19:rni.inc;19:sri.inc;20:ta.inc;21:d.inc;20:up.inc;14:strinst.inc;10:sgidx.inc;12:txt.inc;9:nadd.pas;10:bas.pas;10:cal.pas;11:gadd.pas;12:bas.pas;12:cal.pas;13:nv.pas;13:on.pas;12:flw.pas;12:inl.pas;12:ld.pas;12:mat.pas;13:em.pas;12:objc.pas;13:pt.pas;12:rtti.pas;12:set.pas;12:util.pas;11:nv.pas;11:on.pas;10:flw.pas;10:inl.pas;10:ld.pas;10:mat.pas;11:em.pas;10:obj.pas;13:c.pas;11:de.pas;11:pt.pas;10:set.pas;11:tate.pas;10:utils.pas;9:objcdef.pas;13:gutl.pas;13:util.pas;10:gbase.pas;11:coff.pas;11:elf.pas;11:lx.pas;11:macho.pas;13:p.pas;11:nlm.pas;10:ptbase.pas;12:cse.pas;12:dead.pas;13:fa.pas;12:ions.pas;12:loop.pas;12:tail.pas;12:utils.pas;12:virt.pas;10:war.pas;11:base.pas;9:parabase.pas;13:mgr.pas;12:ser.pas;11:ss_1.pas;14:2.pas;10:base.pas;10:decl.pas;13:obj.pas;13:sub.pas;13:var.pas;10:exports.pas;13:r.pas;10:inline.pas;10:modules.pas;10:owerpc/agppcmpw.pas;22:vasm.pas;18:optcpu.pas;24:b.pas;24:c.pas;24:d.pas;17:cgcpu.pas;18:pubase.pas;20:info.pas;20:node.pas;20:para.pas;21:i.pas;20:targ.pas;17:itcpugas.pas;17:nppcadd.pas;21:cal.pas;22:nv.pas;21:mat.pas;17:rappc.pas;22:gas.pas;18:ppccon.inc;21:dwrf.inc;21:gas.inc;22:ri.inc;22:ss.inc;21:mot.inc;22:ri.inc;21:nor.inc;22:um.inc;21:rni.inc;21:sri.inc;22:tab.inc;23:d.inc;22:up.inc;16:64/aoptcpu.pas;26:b.pas;26:c.pas;26:d.pas;19:cgcpu.pas;20:pubase.pas;22:info.pas;22:node.pas;22:para.pas;23:i.pas;22:targ.pas;19:itcpugas.pas;19:nppcadd.pas;23:cal.pas;24:nv.pas;23:ld.pas;23:mat.pas;19:rappc.pas;24:gas.pas;20:ppccon.inc;23:dwrf.inc;23:gas.inc;24:ri.inc;24:ss.inc;23:mot.inc;24:ri.inc;23:nor.inc;24:um.inc;23:rni.inc;23:sri.inc;24:tab.inc;25:d.inc;24:up.inc;10:p.pas;11:cgen/aasmcpu.pas;17:gppcgas.pas;16:cgppc.pas;16:ngppcadd.pas;21:cnv.pas;21:inl.pas;21:set.pas;16:rgcpu.pas;11:heap.pas;11:u.pas;10:rocinfo.pas;10:statmnt.pas;11:ub.pas;11:ystem.pas;10:tconst.pas;11:ype.pas;9:raatt.pas;11:base.pas;11:sm.pas;11:utils.pas;10:egvars.pas;11:scmn.pas;10:gbase.pas;11:obj.pas;9:scandir.pas;13:ner.pas;11:ript.pas;10:parc/aasmcpu.pas;16:optcpu.pas;22:b.pas;22:d.pas;15:cgcpu.pas;16:pubase.pas;18:gas.pas;18:info.pas;18:node.pas;18:para.pas;19:i.pas;18:targ.pas;15:itcpugas.pas;15:ncpuadd.pas;19:call.pas;20:nv.pas;19:inln.pas;19:mat.pas;19:set.pas;15:opcode.inc;15:racpu.pas;20:gas.pas;16:gcpu.pas;16:spcon.inc;18:dwrf.inc;18:nor.inc;19:um.inc;18:rni.inc;18:sri.inc;19:tab.inc;20:d.inc;19:up.inc;15:strinst.inc;10:witches.pas;10:ymbase.pas;12:const.pas;12:def.pas;12:not.pas;12:sym.pas;12:table.pas;13:ype.pas;12:util.pas;11:stems.inc;17:pas;16:/i_amiga.pas;20:tari.pas;19:beos.pas;20:sd.pas;19:embed.pas;21:x.pas;19:gba.pas;20:o32v2.pas;19:haiku.pas;19:linux.pas;19:macos.pas;20:orph.pas;19:nativent.pas;20:ds.pas;20:wl.pas;21:m.pas;19:os2.pas;19:palmos.pas;19:sunos.pas;20:ymbian.pas;19:watcom.pas;20:dosx.pas;20:ii.pas;21:n.pas;17:t_amiga.pas;20:tari.pas;19:beos.pas;20:sd.pas;19:embed.pas;21:x.pas;19:gba.pas;20:o32v2.pas;19:haiku.pas;19:linux.pas;19:macos.pas;20:orph.pas;19:nativent.pas;20:ds.pas;20:wl.pas;21:m.pas;19:os2.pas;19:palmos.pas;19:sunos.pas;20:ymbian.pas;19:watcom.pas;20:dosx.pas;20:ii.pas;21:n.pas;9:tgobj.pas;10:okens.pas;9:utils/Makefile.fpc;15:dummyas.pp;15:fixlog.pp;18:msg.pp;18:nasm.pp;18:tab.pp;16:pc.pp;18:subst.pp;17:impdef.pp;15:gia64reg.pp;16:ppc386.pp;15:mk68kreg.pp;17:armins.pp;20:reg.pp;18:vrreg.pp;17:mpsreg.pp;17:ppcreg.pp;17:spreg.pp;17:x86ins.pp;20:reg.pp;16:sg2inc.pp;18:dif.pp;15:ppudump.pp;18:files.pp;18:move.pp;15:usubst.pp;9:verbose.pas;12:sion.inc;17:pas;10:is/aasmcpu.pas;13:cpubase.pas;16:info.pas;16:node.pas;16:para.pas;9:widestr.pas;10:po.pas;12:base.pas;12:info.pas;9:x86/aasmcpu.pas;14:gx86att.pas;18:int.pas;18:nsm.pas;13:cga.pas;15:x86.pas;14:pubase.pas;13:itcpugas.pas;15:x86int.pas;13:nx86add.pas;17:cnv.pas;18:on.pas;17:inl.pas;17:mat.pas;17:set.pas;13:rax86.pas;18:att.pas;18:int.pas;14:gx86.pas;12:_64/aoptcpu.pas;23:b.pas;23:d.pas;16:cgcpu.pas;17:pubase.inc;19:info.pas;19:node.pas;19:para.pas;20:i.pas;19:targ.pas;16:nx64add.pas;20:cal.pas;21:nv.pas;20:inl.pas;20:mat.pas;16:r8664ari.inc;22:tt.inc;21:con.inc;21:dwrf.inc;21:int.inc;22:ri.inc;21:nor.inc;22:um.inc;21:op.inc;22:t.inc;21:rni.inc;21:sri.inc;22:tab.inc;23:d.inc;17:ax64att.pas;21:int.pas;17:gcpu.pas;16:x8664ats.inc;23:t.inc;21:int.inc;21:nop.inc;21:op.inc;21:pro.inc;21:tab.inc;0:packages/Makefile.fpc;9:a52/Makefile.fpc;13:fpmake.pp;13:src/a52.pas;10:munits/Makefile.fpc;17:examples/asltest.pas;26:bezier.pas;32:2.pas;26:checkmem.pas;26:deviceinfo.pas;27:irdemo.pas;26:easter.pas;29:ygadtools.pas;26:getdate.pas;29:fontasl.pas;29:multifiles.pas;27:tmenu.pas;26:imagegadget.pas;26:listtest.pas;26:moire.pas;26:otherlibs/amarqueetest.pas;36:bestmodeid.pas;36:checkbox.pas;36:demo.pas;36:envprint.pas;36:gadgetdemo.pas;37:ttest.pas;36:linklib.pas;38:stview.pas;36:modelist.pas;36:openpip.pas;40:screen.pas;36:p96checkboards.pas;37:alette.pas;37:rogindex.pas;36:requestmodeid.pas;37:tdemo.pas;36:scroller.pas;37:lider.pas;37:mallplay.pas;37:tring.pas;36:toolmanager1.pas;47:2.pas;47:3.pas;37:ritongadgets.pas;36:writetruecolordata.pas;26:penshare.pas;26:showdevs.pas;27:imple_timer.pas;27:now.pas;27:ortdemo.pas;27:tars.pas;26:talk2boopsi.pas;26:wbtest.pas;17:fpmake.pp;17:src/coreunits/amigados.pas;36:guide.pas;36:lib.pas;36:printer.pas;32:sl.pas;32:udio.pas;31:bootblock.pas;32:ullet.pas;31:cd.pas;32:lipboard.pas;32:olorwheel.pas;33:mmodities.pas;33:nfigregs.pas;37:vars.pas;34:sole.pas;34:unit.pas;31:datatypes.pas;32:iskfont.pas;31:exec.pp;33:pansion.pas;40:base.pas;31:gadtools.pas;33:meport.pas;32:radientslider.pas;34:phics.pas;31:hardblocks.pas;35:ware.pas;31:icon.pas;32:ffparse.pas;32:nput.pas;36:event.pas;33:tuition.pas;31:keyboard.pas;34:map.pas;31:layers.pas;32:ocale.pas;33:wlevel.pas;31:nonvolatile.pas;31:parallel.pas;32:refs.pas;33:tbase.pas;34:gfx.pas;31:realtime.pas;33:xx.pas;32:omboot_base.pas;31:scsidisk.pas;32:erial.pas;31:tapedeck.pas;32:imer.pas;32:rackdisk.pas;34:nslator.pas;31:utility.pas;31:workbench.pas;21:otherlibs/ahi.pas;34:_sub.pas;32:marquee.pas;31:cybergraphics.pas;31:gtlayout.pas;32:uigfx.pas;31:identify.pas;31:lucyplay.pas;31:mui.pas;32:ysticview.pas;31:picasso96api.pas;32:references.pas;32:treplay.pas;31:render.pas;33:qtools.pas;31:triton.pas;37:macros.pas;32:tengine.pas;31:xadmaster.pas;31:zlib.pas;21:useamigasmartlink.inc;25:utoopenlib.inc;22:tilunits/Makefile.fpc;31:amigautils.pas;31:consoleio.pas;31:deadkeys.pas;32:oublebuffer.pas;31:easyasl.pas;31:hisoft.pas;31:linklist.pas;32:ongarray.pas;31:msgbox.pas;31:pastoc.pas;32:cq.pas;31:systemvartags.pas;31:tagsarray.pas;32:imerutils.pas;31:vartags.pas;31:wbargs.pas;10:spell/Makefile.fpc;16:examples/example.pas;16:fpmake.pp;16:src/aspell.pp;26:dyn.pp;26:types.inc;20:spellcheck.pp;9:bfd/Makefile.fpc;13:fpmake.pp;13:src/bfd.pas;10:zip2/Makefile.fpc;15:examples/pasbzip.pas;15:fpmake.pp;15:src/bzip2.pas;24:comn.pp;24:i386.inc;24:si386.inc;25:tream.pp;9:cairo/Makefile.fpc;15:fpmake.pp;15:src/cairo.pp;24:ft.pp;24:win32.pp;24:xlib.pp;10:drom/Makefile.fpc;15:examples/Makefile.fpc;24:getdiscid.pp;24:showcds.pp;15:fpmake.pp;15:src/cdrom.pp;24:ioctl.pp;24:lin.inc;24:w32.inc;19:discid.pp;19:fpcddb.pp;19:lincd.pp;19:major.pp;19:scsidefs.pp;19:wincd.pp;20:naspi32.pp;10:hm/Makefile.fpc;13:fpmake.pp;13:src/chmbase.pas;20:fiftimain.pas;22:lewriter.pas;20:objinstconst.inc;20:reader.pas;20:sitemap.pas;21:pecialfiles.pas;20:types.pas;20:writer.pas;17:fasthtmlparser.pas;17:htmlindexer.pas;21:util.pas;17:itolitlsreader.pas;25:types.pas;19:sftransform.pas;17:lzxcompressthread.pas;17:paslznonslide.pas;22:x.pas;23:comp.pas;10:ocoaint/Makefile.fpc;18:src/AnonClassDefinitionsCoredata.pas;42:Quartzcore.pas;42:Webkit.pas;22:CocoaAll.pas;24:reData.pas;22:Foundation.pas;22:IBMacros.pp;23:nlineFunctions.inc;23:varSize.pas;22:UndefinedTypes.inc;22:WebKit.pas;22:appkit/AppKit.inc;29:CIColor.inc;29:NSATSTypesetter.inc;32:ccessibility.inc;33:tionCell.inc;32:ffineTransform.inc;32:lert.inc;32:nimation.inc;40:Context.inc;32:ppleScriptExtensions.inc;35:ication.inc;42:Scripting.inc;32:rrayController.inc;32:ttributedString.inc;31:BezierPath.inc;32:itmapImageRep.inc;32:ox.inc;32:rowser.inc;38:Cell.inc;32:utton.inc;37:Cell.inc;31:CIImageRep.inc;32:achedImageRep.inc;32:ell.inc;32:lipView.inc;32:ollectionView.inc;34:or.inc;36:List.inc;36:Panel.inc;37:icker.inc;40:ing.inc;36:Space.inc;36:Well.inc;33:mboBox.inc;39:Cell.inc;33:ntrol.inc;38:ler.inc;32:ursor.inc;33:stomImageRep.inc;31:DatePicker.inc;41:Cell.inc;32:ictionaryController.inc;32:ockTile.inc;34:ument.inc;39:Controller.inc;39:Scripting.inc;32:ragging.inc;34:wer.inc;31:EPSImageRep.inc;32:rrors.inc;32:vent.inc;31:FileWrapper.inc;32:ont.inc;35:Descriptor.inc;35:Manager.inc;35:Panel.inc;33:rm.inc;35:Cell.inc;31:GlyphGenerator.inc;36:Info.inc;32:radient.inc;34:phics.inc;39:Context.inc;31:HelpManager.inc;31:Image.inc;36:Cell.inc;36:Rep.inc;36:View.inc;32:nputManager.inc;36:Server.inc;33:terfaceStyle.inc;31:KeyValueBinding.inc;31:LayoutManager.inc;32:evelIndicator.inc;45:Cell.inc;31:Matrix.inc;32:enu.inc;35:Item.inc;39:Cell.inc;35:View.inc;32:ovie.inc;36:View.inc;36:w.inc;31:Nib.inc;34:Loading.inc;31:ObjectController.inc;32:penGL.inc;37:View.inc;35:Panel.inc;32:utlineView.inc;31:PDFImageRep.inc;32:ICTImageRep.inc;32:ageLayout.inc;33:nel.inc;33:ragraphStyle.inc;33:steboard.inc;41:Item.inc;33:thCell.inc;36:omponentCell.inc;37:ntrol.inc;32:ersistentDocument.inc;32:opUpButton.inc;42:Cell.inc;32:redicateEditor.inc;46:RowTemplate.inc;33:intInfo.inc;36:Operation.inc;36:Panel.inc;36:er.inc;33:ogressIndicator.inc;31:QuickDrawView.inc;31:Responder.inc;32:uleEditor.inc;35:rMarker.inc;36:View.inc;33:nningApplication.inc;31:SavePanel.inc;32:creen.inc;34:ollView.inc;37:er.inc;32:earchField.inc;42:Cell.inc;33:cureTextField.inc;33:gmentedControl.inc;32:hadow.inc;32:lider.inc;37:Cell.inc;32:ound.inc;32:peechRecognizer.inc;37:Synthesizer.inc;34:llChecker.inc;36:Protocol.inc;33:litView.inc;32:tatusBar.inc;37:Item.inc;33:epper.inc;38:Cell.inc;33:ringDrawing.inc;31:TabView.inc;38:Item.inc;34:leColumn.inc;36:HeaderCell.inc;42:View.inc;36:View.inc;32:ext.inc;35:Attachment.inc;35:Container.inc;35:Field.inc;40:Cell.inc;35:InputClient.inc;41:ontext.inc;35:List.inc;35:Storage.inc;42:Scripting.inc;35:Table.inc;35:View.inc;32:okenField.inc;41:Cell.inc;33:olbar.inc;38:Item.inc;42:Group.inc;33:uch.inc;32:rackingArea.inc;33:eeController.inc;35:Node.inc;32:ypesetter.inc;31:UserDefaultsController.inc;35:InterfaceItemSearching.inc;44:Validation.inc;31:ValidatedUserInterfaceItem.inc;32:iew.inc;35:Controller.inc;31:Window.inc;37:Controller.inc;37:Scripting.inc;32:orkspace.inc;22:coredata/AnonIncludeClassDefinitionsCoredata.inc;31:CoreData.inc;39:Defines.inc;39:Errors.inc;31:NSAtomicStore.inc;44:CacheNode.inc;35:tributeDescription.inc;33:EntityDescription.inc;39:Mapping.inc;40:igrationPolicy.inc;34:xpressionDescription.inc;33:FetchRequest.inc;45:Expression.inc;38:edPropertyDescription.inc;33:ManagedObject.inc;46:Context.inc;46:ID.inc;46:Model.inc;35:ppingModel.inc;34:igrationManager.inc;33:PersistentStore.inc;48:Coordinator.inc;34:ropertyDescription.inc;41:Mapping.inc;33:RelationshipDescription.inc;22:foundation/Foundation.inc;33:NSAffineTransform.inc;36:ppleEventDescriptor.inc;45:Manager.inc;40:Script.inc;36:rchiver.inc;37:ray.inc;36:ttributedString.inc;36:utoreleasePool.inc;35:Bundle.inc;35:Cache.inc;37:lendar.inc;43:Date.inc;36:haracterSet.inc;36:lassDescription.inc;36:oder.inc;37:mparisonPredicate.inc;39:oundPredicate.inc;37:nnection.inc;35:Data.inc;38:e.inc;39:Formatter.inc;36:ecimal.inc;42:Number.inc;36:ictionary.inc;37:stantObject.inc;39:ributedLock.inc;46:NotificationCenter.inc;35:Enumerator.inc;36:rror.inc;36:xception.inc;37:pression.inc;35:FileHandle.inc;39:Manager.inc;36:ormatter.inc;35:GarbageCollector.inc;36:eometry.inc;35:HFSFileTypes.inc;36:TTPCookie.inc;45:Storage.inc;36:ashTable.inc;36:ost.inc;35:IndexPath.inc;40:Set.inc;37:vocation.inc;35:KeyValueCoding.inc;43:Observing.inc;38:edArchiver.inc;35:Locale.inc;38:k.inc;35:MapTable.inc;36:etadata.inc;38:hodSignature.inc;35:NetServices.inc;36:otification.inc;47:Queue.inc;36:ull.inc;37:mberFormatter.inc;35:ObjCRuntime.inc;38:ect.inc;41:Scripting.inc;36:peration.inc;36:rthography.inc;35:PathUtilities.inc;36:ointerArray.inc;42:Functions.inc;37:rt.inc;39:Coder.inc;39:Message.inc;39:NameServer.inc;36:redicate.inc;37:ocessInfo.inc;38:pertyList.inc;38:tocolChecker.inc;38:xy.inc;35:Range.inc;36:unLoop.inc;35:Scanner.inc;37:riptClassDescription.inc;42:oercionHandler.inc;43:mmand.inc;48:Description.inc;41:ExecutionContext.inc;41:KeyValueCoding.inc;41:ObjectSpecifiers.inc;41:StandardSuiteCommands.inc;42:uiteRegistry.inc;41:WhoseTests.inc;36:et.inc;36:ortDescriptor.inc;36:pellServer.inc;36:tream.inc;38:ing.inc;35:Task.inc;36:extCheckingResult.inc;36:hread.inc;36:imeZone.inc;39:r.inc;35:URL.inc;38:AuthenticationChallenge.inc;38:Cache.inc;39:onnection.inc;39:redential.inc;48:Storage.inc;38:Download.inc;38:Error.inc;38:Handle.inc;38:ProtectionSpace.inc;42:ocol.inc;38:Request.inc;40:sponse.inc;36:ndoManager.inc;36:serDefaults.inc;35:Value.inc;40:Transformer.inc;35:XMLDTD.inc;41:Node.inc;39:ocument.inc;38:Element.inc;38:Node.inc;42:Options.inc;38:Parser.inc;35:Zone.inc;22:quartzcore/AnonIncludeClassDefinitionsQuartzcore.inc;33:CAAnimation.inc;35:Base.inc;35:CIFilterAdditions.inc;36:onstraintLayoutManager.inc;35:EmitterCell.inc;42:Layer.inc;35:GradientLayer.inc;35:Layer.inc;35:MediaTiming.inc;46:Function.inc;35:OpenGLLayer.inc;35:Renderer.inc;37:plicatorLayer.inc;35:ScrollLayer.inc;36:hapeLayer.inc;35:TextLayer.inc;36:iledLayer.inc;36:ransaction.inc;40:form3D.inc;44:Layer.inc;35:ValueFunction.inc;34:IColor.inc;37:ntext.inc;35:Filter.inc;41:Generator.inc;41:Shape.inc;35:Image.inc;40:Accumulator.inc;40:Provider.inc;35:Kernel.inc;35:PlugIn.inc;41:Interface.inc;35:RAWFilter.inc;35:Sampler.inc;35:Vector.inc;34:VBase.inc;36:uffer.inc;35:DisplayLink.inc;35:HostTime.inc;35:ImageBuffer.inc;35:OpenGLBuffer.inc;47:Pool.inc;41:Texture.inc;48:Cache.inc;35:PixelBuffer.inc;46:Pool.inc;40:FormatDescription.inc;35:Return.inc;33:QuartzCore.inc;22:webkit/AnonIncludeClassDefinitionsWebkit.inc;29:CarbonUtils.inc;29:DOM.inc;32:AbstractView.inc;33:ttr.inc;32:Blob.inc;32:CDATASection.inc;33:SS.inc;35:CharsetRule.inc;35:FontFaceRule.inc;35:ImportRule.inc;35:MediaRule.inc;35:PageRule.inc;36:rimitiveValue.inc;35:Rule.inc;39:List.inc;35:StyleDeclaration.inc;40:Rule.inc;40:Sheet.inc;35:UnknownRule.inc;35:Value.inc;40:List.inc;33:haracterData.inc;33:omment.inc;34:re.inc;34:unter.inc;32:Document.inc;40:Fragment.inc;40:Type.inc;32:Element.inc;33:ntity.inc;38:Reference.inc;33:vent.inc;37:Exception.inc;37:Listener.inc;37:Target.inc;37:s.inc;33:xception.inc;34:tensions.inc;32:File.inc;36:List.inc;32:HTML.inc;36:AnchorElement.inc;37:ppletElement.inc;37:reaElement.inc;36:BRElement.inc;37:aseElement.inc;40:FontElement.inc;37:odyElement.inc;37:uttonElement.inc;36:Collection.inc;36:DListElement.inc;37:irectoryElement.inc;38:vElement.inc;37:ocument.inc;36:Element.inc;37:mbedElement.inc;36:FieldSetElement.inc;37:ontElement.inc;38:rmElement.inc;37:rameElement.inc;41:SetElement.inc;36:HRElement.inc;37:eadElement.inc;40:ingElement.inc;37:tmlElement.inc;36:IFrameElement.inc;37:mageElement.inc;37:nputElement.inc;37:sIndexElement.inc;36:LIElement.inc;37:abelElement.inc;37:egendElement.inc;37:inkElement.inc;36:MapElement.inc;38:rqueeElement.inc;37:enuElement.inc;38:taElement.inc;37:odElement.inc;36:OListElement.inc;37:bjectElement.inc;37:ptGroupElement.inc;39:ionElement.inc;42:sCollection.inc;36:ParagraphElement.inc;40:mElement.inc;37:reElement.inc;36:QuoteElement.inc;36:ScriptElement.inc;37:electElement.inc;37:tyleElement.inc;36:TableCaptionElement.inc;42:ellElement.inc;42:olElement.inc;41:Element.inc;41:RowElement.inc;41:SectionElement.inc;37:extAreaElement.inc;37:itleElement.inc;36:UListElement.inc;32:Implementation.inc;32:KeyboardEvent.inc;32:MediaList.inc;33:ouseEvent.inc;33:utationEvent.inc;32:NamedNodeMap.inc;33:ode.inc;36:Filter.inc;36:Iterator.inc;36:List.inc;34:tation.inc;32:Object.inc;33:verflowEvent.inc;32:ProcessingInstruction.inc;35:gressEvent.inc;32:RGBColor.inc;33:ange.inc;37:Exception.inc;37:s.inc;33:ect.inc;32:StyleSheet.inc;42:List.inc;37:sheets.inc;32:Text.inc;33:raversal.inc;34:eeWalker.inc;32:UIEvent.inc;32:Views.inc;32:WheelEvent.inc;32:XPath.inc;37:Exception.inc;39:pression.inc;37:NSResolver.inc;37:Result.inc;29:HIWebView.inc;29:UndefinedTypes.inc;29:WebArchive.inc;32:BackForwardList.inc;32:DOMOperations.inc;33:ataSource.inc;33:ocument.inc;34:wnload.inc;32:EditingDelegate.inc;32:Frame.inc;37:LoadDelegate.inc;37:View.inc;32:History.inc;39:Item.inc;32:Kit.inc;35:Errors.inc;32:Plugin.inc;38:Container.inc;38:ViewFactory.inc;33:olicyDelegate.inc;33:references.inc;32:Resource.inc;40:LoadDelegate.inc;32:ScriptObject.inc;32:UIDelegate.inc;32:View.inc;18:utils/cocoa-skel/src/CocoaAll.pas;41:reData.pas;39:InlineFunctions.inc;39:UndefinedTypes.inc;39:WebKit.pas;39:appkit/AppKit.inc;46:CIColor.inc;39:coredata/CoreData.inc;39:foundation/Foundation.inc;39:quartzcore/QuartzCore.inc;39:webkit/UndefinedTypes.inc;46:WebKit.inc;24:uikit-skel/src/InlineFunctions.inc;39:UndefinedTypes.inc;39:foundation/Foundation.inc;39:iPhoneAll.pas;39:opengles/OpenGLES.inc;39:quartzcore/QuartzCore.inc;39:uikit/UIKit.inc;9:dbus/Makefile.fpc;14:examples/Makefile.fpc;23:busexample.pp;14:fpmake.pp;14:src/dbus-address.inc;24:rch-deps.inc;23:bus.inc;23:connection.inc;23:errors.inc;23:macros.inc;24:emory.inc;25:ssage.inc;24:isc.inc;23:pending-call.inc;24:rotocol.inc;23:server.inc;24:hared.inc;24:ignature.inc;23:threads.inc;24:ypes.inc;22:.pas;22:_arch_deps.inc;10:ts/Makefile.fpc;13:fpmake.pp;13:src/dts.pas;9:fastcgi/Makefile.fpc;17:fpmake.pp;17:src/fastcgi.pp;10:cl-async/Makefile.fpc;19:fpmake.pp;19:src/fpasync.pp;23:libasync.inc;31:h.inc;23:unix/libasync.pp;13:base/Makefile.fpc;18:examples/Makefile.fpc;27:asiotest.pp;28:vltreetest.pp;27:b64.pp;30:dec.pp;30:enc.pp;30:test.pp;34:2.pp;28:ase64decodingtestcase.pas;27:cachetest.pp;28:fgtest.pp;28:rittest.pp;27:dbugsrv.pp;28:ebugtest.pp;29:codeascii85.pp;28:oecho.pp;28:parser.pp;28:sockcli.pp;32:svr.pp;27:encodeascii85.pp;27:fstream.pp;27:htdump.pp;27:ipcclient.pp;30:server.pp;28:sockcli.pp;32:svr.pp;29:tream.pp;27:list.pp;27:mstream.pp;27:poolmm1.pp;33:2.pp;27:restest.pp;27:showver.pp;28:ockcli.pp;31:svr.pp;28:stream.pp;28:tringl.pp;27:tarmakercons.pas;39:gzip.pas;28:estapp.pp;31:bf.pp;32:s.pp;31:cgi.pp;32:ont.pp;31:exprpars.pp;32:z.pp;31:hres.pp;31:mime.pp;31:nres.pp;31:ol.pp;31:proc.pp;31:reg.pp;32:hre.pp;32:nre.pp;32:sre.pp;32:tf.pp;31:ser.pp;32:res.pp;31:timer.pp;31:unzip.pp;32:r.pp;31:web.pp;31:z.pp;32:2.pp;32:ip.pp;28:hreads.pp;28:idea.pp;28:stelcmd.pp;32:gtk.pp;28:xmlreg.pp;27:xmldump.pp;18:fpmake.pp;18:src/ascii85.pp;23:vl_tree.pp;22:base64.pp;23:lowfish.pp;23:ufstream.pp;22:cachecls.pp;23:ontnrs.pp;23:ustapp.pp;22:dummy/eventlog.inc;22:eventlog.pp;22:fpexprpars.pp;24:mimetypes.pp;24:template.pp;25:imer.pp;22:gettext.pp;23:o32v2/custapp.inc;22:idea.pp;23:nicol.pp;25:files.pp;23:ostream.pp;22:libtar.pp;22:maskutils.pp;22:netware/custapp.inc;26:libc/custapp.inc;22:os2/custapp.inc;26:eventlog.inc;22:pooledmm.pp;22:rtfdata.inc;25:pars.pp;24:tiutils.pp;22:streamcoll.pp;28:ex.pp;28:io.pp;23:yncobjs.pp;22:unix/eventlog.inc;23:riparser.pp;22:wformat.pp;23:html.pp;23:in/eventlog.inc;26:fileinfo.pp;25:ce/fileinfo.pp;23:tex.pp;13:db/Makefile.fpc;16:fpmake.pp;16:src/base/Makefile.fpc;25:bufdataset.pas;35:_parser.pp;25:database.inc;29:set.inc;30:ource.inc;26:b.pas;27:coll.pp;29:nst.pas;27:whtml.pp;26:sparams.inc;25:fields.inc;26:pmake.inc;32:pp;25:sqlscript.pp;25:xmldatapacketreader.pp;20:codegen/Makefile.fpc;28:fpcgcreatedbf.pp;32:dbcoll.pp;32:sqlconst.pp;32:tiopf.pp;30:ddcodegen.pp;32:popcode.pp;20:datadict/Makefile.fpc;29:fpdatadict.pp;32:ddbf.pp;34:iff.pp;33:fb.pp;33:mysql40.pp;39:1.pp;38:50.pp;33:odbc.pp;34:racle.pp;33:pq.pp;33:regstd.pp;33:sqldb.pp;36:ite3.pp;21:base/Makefile.fpc;26:dbf.pas;29:_avl.pas;30:collate.pas;32:mmon.inc;37:pas;31:ursor.pas;30:dbffile.pas;30:fields.pas;30:idxcur.pas;33:file.pas;30:lang.pas;30:memo.pas;30:parser.pas;31:gcfile.pas;32:file.pas;31:rscore.pas;33:def.pas;33:supp.pas;30:reg.pas;30:str.inc;34:pas;33:_es.pas;34:fr.pas;34:ita.pas;34:nl.pas;34:pl.pas;35:t.pas;34:ru.pas;33:uct.inc;30:wtil.pas;26:fpmake.inc;33:pp;26:getstrfromint.inc;26:tdbf_l.pas;27:estdbf.pp;20:export/Makefile.fpc;27:fpcsvexport.pp;29:dbexport.pp;31:fexport.pp;29:fixedexport.pp;29:rtfexport.pp;29:simplejsonexport.pp;35:xmlexport.pp;30:qlexport.pp;30:tdexports.pp;29:texexport.pp;29:xmlxsdexport.pp;20:memds/Makefile.fpc;26:fpmake.inc;33:pp;26:memds.pp;26:testcp.pp;30:ld.pp;30:open.pp;30:pop.pp;20:paradox/Makefile.fpc;28:paradox.pp;20:sdf/Makefile.fpc;24:fpmake.inc;31:pp;24:sdfdata.pp;24:testfix.pp;28:sdf.pp;21:ql/Makefile.fpc;24:fpsqlparser.pas;29:scanner.pp;29:tree.pp;23:db/Makefile.fpc;26:examples/alisttables.pp;35:bcreatetable.pp;35:cfilltable.pp;35:dshowtable.pp;35:efilltableparams.pp;35:fedittable.pp;35:gfiltertable.pp;35:sqldbexampleunit.pp;26:fpmake.inc;33:pp;26:interbase/Makefile.fpc;36:fpmake.inc;43:pp;36:ibconnection.pp;26:mysql/Makefile.fpc;32:fpmake.inc;39:pp;32:mysql40conn.pas;38:1conn.pas;38:conn.pas;37:50conn.pas;38:1conn.pas;37:conn.inc;26:odbc/Makefile.fpc;31:odbcconn.pas;27:racle/Makefile.fpc;33:oracleconnection.pp;26:postgres/Makefile.fpc;35:fpmake.inc;42:pp;35:pqconnection.pp;26:sqldb.pp;29:ite/Makefile.fpc;33:sqlite3conn.pp;26:testsqldb.pp;23:ite/Makefile.fpc;27:browseds.pas;27:concurrencyds.pas;28:reateds.pas;28:ustomsqliteds.pas;27:fillds.pas;28:pmake.inc;34:pp;27:sqlite3ds.pas;33:ds.pas;27:testds.pas;16:tests/Makefile.fpc;22:dbftoolsunit.pas;24:testframework.pas;22:memdstoolsunit.pas;22:sdfdstoolsunit.pas;23:qldbtoolsunit.pas;22:tcgensql.pas;24:parser.pas;24:sqlscanner.pas;23:estbasics.pas;27:ufdatasetstreams.pas;26:datasources.pas;27:bbasics.pas;27:ddiff.pp;26:fieldtypes.pas;26:sqlscript.pas;23:oolsunit.pas;22:xmlxsdexporttestcase1.pas;13:extra/Makefile.fpc;19:examples/Makefile.fpc;28:daemon.pp;19:fpmake.pp;19:src/daemonapp.pp;23:unix/daemonapp.inc;23:win/ServiceManager.pas;27:daemonapp.inc;13:fpcunit/Makefile.fpc;21:fpmake.pp;21:src/DUnitCompatibleInterface.inc;25:demo/consolerunner/suiteconfig.pp;44:testrunner.pp;26:igesttestreport.pp;25:exampletests/Makefile.fpc;38:fpcunittests.pp;38:money.pp;43:test.pp;38:testmockobject.pp;25:fpcunit.pp;32:report.pp;27:make.inc;32:pp;25:latextestreport.pp;25:plaintestreport.pp;25:testdecorator.pp;29:registry.pp;31:port.pp;29:s/Makefile.fpc;31:asserttest.pp;31:frameworktest.pp;31:suitetest.pp;29:utils.pp;25:ubmockobject.pp;25:xmlreporter.pas;28:testreport.pp;13:image/Makefile.fpc;19:examples/Makefile.fpc;28:drawing.pp;28:imgconv.pp;28:xwdtobmp.pas;19:fpmake.pp;19:src/bmpcomn.pp;23:clipping.pp;23:ellipses.pp;24:xtinterpolation.pp;23:fpbrush.inc;25:canvas.inc;32:pp;26:drawh.inc;26:olcnv.inc;28:hash.pas;28:ors.inc;25:ditherer.pas;25:font.inc;25:handler.inc;26:elper.inc;25:image.inc;31:pp;27:gcanv.pp;29:mn.pp;26:nterpolation.inc;25:palette.inc;26:en.inc;26:ixlcanv.pp;25:quantizer.pas;25:readbmp.pp;29:gif.pas;29:jpeg.pas;29:pcx.pas;30:ng.pp;31:m.pp;30:sd.pas;29:tga.pp;30:iff.pas;29:xpm.pp;30:wd.pas;25:tiffcmn.pas;25:writebmp.pp;30:jpeg.pas;30:pcx.pas;31:ng.pp;32:m.pp;30:tga.pp;31:iff.pas;30:xpm.pp;24:reetype.pp;31:h.pp;24:tfont.pp;23:pcxcomn.pas;24:ixtools.pp;24:ngcomn.pp;24:scanvas.pp;23:targacmn.pp;23:xwdfile.pp;13:js/Makefile.fpc;16:fpmake.pp;16:src/jsbase.pp;22:parser.pp;22:scanner.pp;22:tree.pp;16:tests/tcparser.pp;24:scanner.pp;15:on/Makefile.fpc;18:examples/confdemo.pp;27:demoformat.pp;31:rtti.pp;27:parsedemo.pp;27:simpledemo.pp;18:fpmake.pp;18:src/fpjson.pp;28:rtti.pp;22:jsonconf.pp;26:parser.pp;26:scanner.pp;18:tests/jsonconftest.pp;24:testjson.pp;32:conf.pp;32:data.pp;32:parser.pp;32:rtti.pp;13:net/Makefile.fpc;17:examples/Makefile.fpc;26:cnslookup.pp;26:ip6test.pp;26:rpccli.pp;29:serv.pp;26:svrclass.pp;34:_xmlrpc.pp;26:testdns.pp;30:hosts.pp;31:st.pp;30:net.pp;30:proto.pp;30:svc.pp;30:uri.pp;17:fpmake.pp;17:src/cnetdb.pp;21:fpsock.pp;21:httpsvlt.pp;21:netdb.pp;24:ware/resolve.inc;25:libc/resolve.inc;21:os2/resolve.inc;21:resolve.pp;21:ssockets.pp;21:unix/resolve.inc;21:win/resolve.inc;13:passrc/Makefile.fpc;20:examples/test_parser.pp;33:unit1.pp;20:fpmake.pp;20:src/pastree.pp;27:write.pp;25:parser.pp;25:scanner.pp;14:rocess/Makefile.fpc;21:fpmake.pp;21:src/dbugintf.pp;29:msg.pp;26:ummy/pipes.inc;32:rocess.inc;31:simpleipc.inc;25:os2/pipes.inc;29:simpleipc.inc;25:pipes.pp;30:ipc.pp;26:rocess.pp;25:simpleipc.pp;25:unix/pipes.inc;31:rocess.inc;30:simpleipc.inc;25:win/pipes.inc;30:rocess.inc;29:simpleipc.inc;28:ce/process.inc;31:simpleipc.inc;13:registry/Makefile.fpc;22:fpmake.pp;22:src/regdef.inc;29:ini.inc;30:stry.pp;26:winreg.inc;26:xmlreg.pp;27:regreg.inc;22:tests/Makefile.fpc;28:regtestframework.pp;28:testbasics.pp;15:s/Makefile.fpc;17:fpmake.pp;17:src/acceleratorsresource.pp;21:bitmapresource.pp;21:coffconsts.pp;25:reader.pp;25:types.pp;25:writer.pp;21:dfmreader.pp;21:elfconsts.pp;24:defaulttarget.inc;24:reader.pp;24:subreader.inc;27:writer.inc;24:types.pp;24:writer.pp;22:xternalreader.pp;29:types.pp;29:writer.pp;21:fpcrestypes.pp;21:groupcursorresource.pp;26:iconresource.pp;26:resource.pp;21:icocurtypes.pp;21:machoconsts.pp;26:defaulttarget.inc;26:reader.pp;26:subreader.inc;29:writer.inc;26:types.pp;26:writer.pp;21:resdatastream.pp;24:factory.pp;24:merger.pp;24:ource.pp;29:tree.pp;24:reader.pp;24:writer.pp;21:stringtableresource.pp;24:table.pp;21:tlbreader.pp;21:versionconsts.pp;28:resource.pp;28:types.pp;21:winpeimagereader.pp;13:stl/Makefile.fpc;17:doc/dequeexample.pp;21:mapexample.pp;21:priorityqueueexample.pp;21:queueexample.pp;21:setexample.pp;22:ortingexample.pp;22:tackexample.pp;21:vectorexample.pp;17:src/garrayutils.pp;22:deque.pp;22:hashmap.pp;26:set.pp;22:map.pp;22:priorityqueue.pp;22:queue.pp;22:set.pp;23:tack.pp;22:util.pp;22:vector.pp;17:tests/garrayutilstest.pp;24:compositetest.pp;24:dequetest.pp;24:hashmaptest.pp;28:settest.pp;24:maptest.pp;31:zal.pp;24:priorityqueuetest.pp;24:queuetest.pp;24:setrefcounttest.pp;27:test.pp;25:tacktest.pp;24:vectortest.pp;23:suiteconfig.pp;23:testrunner.pp;13:web/Makefile.fpc;17:examples/combined/wmlogin.pp;37:users.pp;26:echo/webmodule/wmecho.pas;26:fptemplate/embedtemplates/webmodule/webmodule.pas;37:fileupload/webmodule/webmodule.pas;37:listrecords/webmodule/webmodule.pas;37:sessions/cookiesessions-auto/webmodule/webmodule.pas;61:login/webmodule/webmodule.pas;46:urlsessions-login/webmodule/webmodule.pas;38:impletemplate/webmodule/webmodule.pas;37:tagparam/webmodule/webmodule.pas;26:helloworld/webmodule/webmodule.pas;27:ttpapp/testhttp.pp;30:client/httpget.pas;41:post.pp;45:file.pp;30:server/simplehttpserver.pas;26:jsonrpc/demo1/wmdemo.pp;34:extdirect/wmext.pp;26:session/wmsession.pp;26:webdata/demo/lazwebdata.pas;39:reglazwebdata.pp;39:wmusers.pp;38:2/wmusers.pp;38:3/tralala.pp;40:wmusers.pp;38:4/dmusers.pp;40:wmjsonusers.pp;42:xmlusers.pp;38:5/wmusers.pp;38:6/wmusers.pp;17:fpmake.pp;17:src/base/Makefile.fpc;26:cgiapp.pp;27:ustcgi.pp;30:fcgi.pp;30:httpapp.pp;30:web.pp;26:ezcgi.pp;26:fcgigate.pp;27:papache.pp;28:cgi.pp;28:datasetform.pp;28:fcgi.pp;28:html.pp;30:tp.pp;32:app.pp;32:client.pp;32:server.pp;33:tatus.pas;28:web.pp;31:file.pp;26:httpdefs.pp;26:iniwebsession.pp;26:webpage.pp;29:session.pp;29:util.pp;21:jsonrpc/Makefile.fpc;29:fpextdirect.pp;31:jsonrpc.pp;29:webjsonrpc.pp;21:webdata/Makefile.fpc;29:extjsjson.pp;34:xml.pp;29:fpextjs.pp;31:webdata.pp;29:sqldbwebdata.pp;17:tests/cgigateway.pp;23:testcgiapp.pp;13:xml/Makefile.fpc;17:fpmake.pp;17:src/dom.pp;24:_html.pp;22:tdmodel.pp;21:htmldefs.pp;25:elements.pp;25:writer.pp;24:write.pp;21:names.inc;21:sax.pp;24:_html.pp;25:xml.pp;21:tagsimpl.inc;26:ntf.inc;21:wtagsimpl.inc;27:ntf.inc;21:xhtml.pp;22:mlcfg.pp;25:onf.pp;24:iconv.pas;29:_windows.pas;24:read.pp;24:streaming.pp;24:utils.pp;24:write.pp;22:path.pp;26:kw.inc;17:tests/domunit.pp;23:extras.pp;29:2.pp;23:testgen.pp;23:xmlts.pp;24:pathts.pp;10:ftw/Makefile.fpc;14:examples/example.pas;14:fpmake.pp;14:src/fftw_s.pas;10:pgtk/Makefile.fpc;15:examples/Makefile.fpc;24:lister.pp;24:testgtk.pp;15:fpmake.pp;15:src/def/objectdef.pp;19:editor/buttonrow.pp;26:finddlgs.pp;26:gtkdef.pp;32:texts.pp;29:editor.pp;26:progwin.pp;26:settingsrec.pp;26:xpms.pp;19:fpglib.pp;22:tk.pp;24:ext.pp;19:pgtk/pgtk.pp;11:make.pp;15:_add.inc;16:proc.inc;12:kunit/Makefile.fpc;18:fpmake.pp;18:src/fpmkunit.pp;11:pkg/Makefile.fpc;15:src/fpmkunitsrc.inc;21:repos.pp;21:xmlrep.pp;19:pkgcommands.pp;22:download.pp;22:fphttp.pp;24:make.pp;22:globals.pp;22:handler.pp;22:messages.pp;23:kconv.pp;22:options.pp;22:repos.pp;22:wget.pp;11:vectorial/Makefile.fpc;21:examples/fpce_mainform.pas;32:vc_mainform.pas;33:modifytest.pas;33:writetest.pas;21:fpmake.pp;21:src/avisocncgcodereader.pas;38:writer.pas;30:zlib.pas;25:cdrvectorialreader.pas;25:dxfvectorialreader.pas;25:epsvectorialreader.pas;25:fpvectbuildunit.pas;31:orial.pas;28:tocanvas.pas;28:utils.pas;25:pdfvectorialreader.pas;29:rlexico.pas;30:semantico.pas;31:intatico.pas;25:svgvectorialreader.pas;37:writer.pas;10:use/Makefile.fpc;14:fpmake_disabled.pp;14:src/fuse.pas;14:tests/fusetest.pp;10:v/Makefile.fpc;12:examples/Makefile.fpc;21:platform.inc;21:testapp.pas;12:fpmake.pp;12:src/amismsg.inc;17:pp.pas;17:sciitab.pas;16:buildfv.pas;16:colorsel.pas;21:txt.pas;16:dialogs.pas;17:rivers.pas;16:editors.pas;16:fvcommon.pas;20:nsts.pas;16:gadgets.pas;17:o32smsg.inc;16:histlist.pas;16:inplong.pas;16:memory.pas;18:nus.pas;17:sgbox.pas;16:outline.pas;16:platform.inc;16:resource.pas;16:statuses.pas;18:ddlg.pas;18:r.inc;19:txt.inc;17:ysmsg.pas;16:tabs.pas;17:ime.pas;20:ddlg.pas;16:unixsmsg.inc;16:validate.pas;17:iews.pas;16:w32smsg.inc;9:gdbint/Makefile.fpc;16:examples/mingw.pas;25:symify.pp;25:testgdb.pp;16:fpmake.pp;16:src/freadlin.pp;20:gdbcon.pp;23:int.pp;23:objs.inc;23:ver.pp;26:_nogdb.inc;12:m/Makefile.fpc;14:examples/Makefile.fpc;23:testgdbm.pp;31:2.pp;14:fpmake.pp;14:src/gdbm.pp;10:gi/Makefile.fpc;13:examples/Makefile.fpc;22:ggi1.pp;13:fpmake.pp;13:src/ggi.pp;20:2d.pp;18:ii.pp;10:mp/Makefile.fpc;13:examples/Makefile.fpc;22:gmp_accept_test.pas;26:test_impl.inc;32:ntf.inc;30:case.pas;22:pidigits_example.pas;38:2.pas;23:rintf_example.pas;36:2.pas;22:scanf_example.pas;35:2.pas;13:fpmake.pp;13:src/gmp.pas;10:nome1/Makefile.fpc;16:examples/gconfcallback1.pp;38:2.pp;30:example.pp;26:nometest.pp;25:testzvt.pp;16:fpmake.pp;16:src/gconf/gconf.pp;31:engine.inc;32:rror.inc;31:glibpublic.inc;31:schema.inc;31:value.inc;25:client/gconfchangeset.inc;38:lient.pp;37:listeners.inc;20:libart.pp;23:gnome/gnomeconfig.inc;34:dentry.inc;34:exec.inc;34:help.inc;34:i18n.inc;34:metadata.inc;35:ime.inc;38:info.inc;34:paper.inc;34:remote.inc;34:score.inc;35:ound.inc;34:triggers.inc;34:url.inc;35:til.inc;29:libgnome.pp;28:ui/gnomeabout.inc;37:nimator.inc;37:pp.inc;39:bar.inc;39:helper.inc;39:util.inc;36:calculator.inc;39:ulator.inc;38:nvas.inc;42:image.inc;42:line.inc;43:oad.inc;42:polygon.inc;42:rectellipse.inc;42:text.inc;42:util.inc;42:widget.inc;37:lient.inc;37:olorpicker.inc;36:dateedit.inc;37:entryedit.inc;37:ialog.inc;42:util.inc;37:ock.inc;37:ruid.inc;41:page.inc;45:finish.inc;45:standard.inc;48:rt.inc;36:entry.inc;36:fileentry.inc;37:ontpicker.inc;36:geometry.inc;36:href.inc;36:iconentry.inc;40:item.inc;40:list.inc;40:sel.inc;40:text.inc;37:nit.inc;36:mdi.inc;39:child.inc;39:genericchild.inc;39:session.inc;37:essagebox.inc;36:numberentry.inc;36:paperselector.inc;37:ixmap.inc;42:entry.inc;37:opuphelp.inc;41:menu.inc;37:rocbar.inc;39:pertybox.inc;36:scores.inc;37:tock.inc;36:typebuiltins.inc;36:uidefs.inc;36:winhints.inc;32:tkclock.inc;34:dial.inc;34:pixmapmenuitem.inc;31:libgnomeui.pp;20:zvt/libzvt.pp;26:sts.inc;24:vt.inc;26:x.inc;10:raph/Makefile.fpc;15:fpmake.pp;15:src/amiga/graph.pp;19:go32v2/graph.pp;26:vesa.inc;30:h.inc;19:inc/clip.inc;23:fills.inc;24:ontdata.inc;23:graph.inc;28:h.inc;24:text.inc;23:makefile.inc;24:odes.inc;23:palette.inc;19:macosx/graph.pp;19:ptcgraph/ptccrt.pp;31:graph.pp;19:sdlgraph/sdlgraph.pp;19:unix/ggigraph.pp;25:raph.pp;29:16.inc;19:win32/graph.pp;25:wincrt.pp;28:mouse.pp;15:tests/drawtest.pas;21:polytest.pas;10:tk1/Makefile.fpc;14:examples/Makefile.fpc;23:clist.pp;23:editform.pp;24:ntry.pp;23:filesel.pp;23:gtkgldemo.pp;23:list.pp;23:notebook.pp;23:paned.pp;24:ixmap.pp;24:rogressbar.pp;23:rulers.pp;23:scribble.pp;24:pinbutton.pp;24:tatusbar.pp;23:tictactoe.pp;24:oolbar.pp;24:tt_test.pp;24:utorial/Makefile.fpc;32:tut2_1.pp;35:3_3.pp;35:4_3.pp;37:5.pp;35:6_1.pp;37:2.pp;37:3.pp;37:4.pp;35:8_5.pp;14:fpmake.pp;14:src/gdk/gdk.pp;25:keysyms.pp;25:main.pp;25:pixbuf.pp;26:rivate.pp;25:rgb.pp;25:types.pp;25:x.pp;19:lib/glib.pp;24:module.pp;19:tk/gtk.pp;25:accelerator.pp;30:group.pp;30:label.pp;26:djustment.pp;26:lignment.pp;26:rg.pp;27:row.pp;26:spectframe.pp;25:bbox.pp;26:in.pp;28:dings.pp;26:ox.pp;26:utton.pp;25:calendar.pp;26:heckbutton.pp;30:menuitem.pp;26:list.pp;26:olorsel.pp;27:mbo.pp;27:ntainer.pp;26:tree.pp;26:urve.pp;25:data.pp;26:ialog.pp;26:nd.pp;26:rawingarea.pp;25:editable.pp;26:ntry.pp;27:ums.pp;26:ventbox.pp;25:features.pp;26:ilesel.pp;27:xed.pp;26:ontsel.pp;26:rame.pp;25:gamma.pp;26:c.pp;25:handlebox.pp;26:bbox.pp;27:ox.pp;26:paned.pp;26:ruler.pp;26:scale.pp;28:rollbar.pp;27:eparator.pp;25:image.pp;26:ncludes.pp;27:putdialog.pp;27:visible.pp;26:tem.pp;29:factory.pp;25:label.pp;27:yout.pp;26:ist.pp;29:item.pp;25:main.pp;27:rshal.pp;26:enu.pp;29:bar.pp;29:factory.pp;29:item.pp;29:shell.pp;26:isc.pp;25:notebook.pp;25:objects.pp;26:ptionmenu.pp;25:packer.pp;27:ned.pp;26:ixmap.pp;26:lug.pp;26:review.pp;27:ivate.pp;27:ogress.pp;33:bar.pp;25:radiobutton.pp;30:menuitem.pp;27:nge.pp;26:c.pp;26:uler.pp;25:scale.pp;27:rollbar.pp;31:edwindow.pp;26:election.pp;27:parator.pp;26:ignal.pp;26:ocket.pp;26:pinbutton.pp;26:tatusbar.pp;27:yle.pp;25:table.pp;26:earoffmenuitem.pp;27:xt.pp;26:hemes.pp;26:ipsquery.pp;26:ogglebutton.pp;27:olbar.pp;29:tips.pp;26:ree.pp;29:item.pp;26:ypeutils.pp;25:vbbox.pp;27:ox.pp;26:iewport.pp;26:paned.pp;26:ruler.pp;26:scale.pp;28:rollbar.pp;27:eparator.pp;25:widget.pp;27:ndow.pp;21:gl/Makefile.fpc;24:gtkglarea.pp;12:2/Makefile.fpc;14:examples/Makefile.fpc;23:filechooser/Makefile.fpc;35:glade.pas;35:simple.pas;23:gettingstarted/Makefile.fpc;38:gettingstarted.pas;24:tk_demo/Makefile.fpc;32:appwindow.inc;32:button_box.inc;32:colorsel.inc;32:dialog.inc;33:rawingarea.inc;32:editable_cells.inc;32:gtk_demo.pas;32:images.inc;33:nit.inc;33:tem_factory.inc;32:list_store.inc;32:menus.inc;32:panes.inc;33:ixbufs.inc;32:sizegroup.inc;33:tock_browser.inc;32:textview.inc;33:ree_store.inc;26:glext/Makefile.fpc;32:gears.pas;23:helloworld/Makefile.fpc;34:helloworld.pas;33:2/Makefile.fpc;35:helloworld2.pas;23:plugins/Makefile.fpc;31:main.pas;31:plugin.pas;23:scribble_simple/Makefile.fpc;39:scribble_simple.pas;14:fpmake.pp;14:src/atk/atk.inc;26:pas;25:action.inc;25:component.inc;25:document.inc;25:editabletext.inc;25:gobjectaccessible.inc;25:hyperlink.inc;30:text.inc;25:image.inc;26:ncludes.inc;25:object.inc;31:factory.inc;25:registry.inc;27:lation.inc;33:set.inc;25:selection.inc;26:tate.inc;30:set.inc;27:reamablecontent.inc;25:table.inc;26:ext.inc;25:util.inc;25:value.inc;18:buildgtk2.pp;18:glib/galloca.inc;25:rray.inc;25:syncqueue.inc;24:backtrace.inc;25:oxed.inc;24:cache.inc;25:losure.inc;25:ompletion.inc;26:nvert.inc;24:dataset.inc;27:e.inc;25:ir.inc;24:enums.inc;25:rror.inc;24:fileutils.inc;24:hash.inc;25:ook.inc;24:includes.inc;25:ochannel.inc;24:lib2.pas;27:config.inc;26:st.inc;24:macros.inc;26:in.inc;26:rkup.inc;27:shal.inc;25:em.inc;26:ssages.inc;25:odule.inc;24:node.inc;24:object.inc;25:ption.inc;24:param.inc;29:specs.inc;26:ttern.inc;25:rimes.inc;24:qsort.inc;25:uark.inc;26:eue.inc;24:rand.inc;25:el.inc;24:scanner.inc;25:hell.inc;25:ignal.inc;25:lice.inc;27:st.inc;25:ourceclosure.inc;25:pawn.inc;25:trfuncs.inc;27:ing.inc;24:thread.inc;30:pool.inc;25:imer.inc;25:ree.inc;25:ype.inc;28:module.inc;28:plugin.inc;28:s.inc;24:unicode.inc;25:tils.inc;24:value.inc;29:array.inc;29:collector.inc;29:types.inc;24:win32.inc;19:tk+/gdk-pixbuf/gdk-pixbuf-loader.inc;37:2pixbuf.pas;26:/gdk2.pas;30:cairo.inc;31:olor.inc;31:ursor.inc;30:display.inc;37:manager.inc;31:nd.inc;31:rawable.inc;30:events.inc;30:font.inc;30:gc.inc;30:i18n.inc;31:mage.inc;31:ncludes.inc;32:put.inc;30:keys.inc;34:yms.inc;30:pango.inc;31:ixbuf.inc;33:map.inc;31:oly-generic.inc;31:rivate.inc;32:operty.inc;30:region-generic.inc;36:.inc;31:gb.inc;30:screen.inc;31:election.inc;31:pawn.inc;30:types.inc;30:visual.inc;30:window.inc;24:tk/fnmatch.inc;27:gtk2.pas;30:aboutdialog.inc;31:ccelgroup.inc;35:label.inc;35:map.inc;34:ssible.inc;32:tion.inc;36:group.inc;31:djustment.inc;31:lignment.inc;31:rrow.inc;31:spectframe.inc;30:bbox.inc;31:in.inc;33:dings.inc;31:ox.inc;31:utton.inc;30:calendar.inc;31:elleditable.inc;34:layout.inc;34:renderer.inc;42:combo.inc;42:pixbuf.inc;43:rogress.inc;42:text.inc;43:oggle.inc;34:view.inc;31:heckbutton.inc;35:menuitem.inc;31:lipboard.inc;33:st.inc;31:olorbutton.inc;35:sel.inc;38:dialog.inc;32:mbo.inc;35:box.inc;38:entry.inc;32:ntainer.inc;31:tree.inc;31:urve.inc;30:debug.inc;31:ialog.inc;31:nd.inc;31:rawingarea.inc;30:editable.inc;31:ntry.inc;35:completion.inc;32:ums.inc;31:ventbox.inc;31:xpander.inc;30:filechooser.inc;41:button.inc;41:default.inc;42:ialog.inc;41:embed.inc;42:ntry.inc;41:private.inc;41:utils.inc;41:widget.inc;34:filter.inc;34:sel.inc;35:ystem.inc;32:xed.inc;31:ontbutton.inc;34:sel.inc;31:rame.inc;30:gamma.inc;31:c.inc;30:handlebox.inc;31:bbox.inc;32:ox.inc;31:paned.inc;31:ruler.inc;31:scale.inc;33:rollbar.inc;32:eparator.inc;32:v.inc;30:iconfactory.inc;34:theme.inc;34:view.inc;31:mage.inc;35:menuitem.inc;32:context.inc;39:simple.inc;32:module.inc;33:ulticontext.inc;31:ncludes.inc;32:putdialog.inc;32:tl.inc;32:visible.inc;31:tem.inc;34:factory.inc;30:keyhash.inc;30:label.inc;32:yout.inc;31:ist.inc;34:item.inc;34:store.inc;30:main.inc;31:enu.inc;34:bar.inc;34:item.inc;34:shell.inc;34:toolbutton.inc;32:ssagedialog.inc;31:isc.inc;30:notebook.inc;30:object.inc;31:ldeditable.inc;31:ptionmenu.inc;30:paned.inc;31:ixmap.inc;31:lug.inc;31:review.inc;32:ogress.inc;38:bar.inc;30:radioaction.inc;35:button.inc;35:menuitem.inc;35:toolbutton.inc;32:nge.inc;31:btree.inc;31:c.inc;31:uler.inc;30:scale.inc;32:rollbar.inc;36:edwindow.inc;31:election.inc;32:parator.inc;39:menuitem.inc;39:toolitem.inc;32:ttings.inc;31:ignal.inc;32:zegroup.inc;31:ocket.inc;31:pinbutton.inc;31:tatusbar.inc;32:ock.inc;32:yle.inc;30:table.inc;31:earoffmenuitem.inc;32:xt.inc;34:btree.inc;35:uffer.inc;34:child.inc;39:private.inc;34:display.inc;34:iter.inc;38:private.inc;34:layout.inc;34:mark.inc;38:private.inc;34:segment.inc;34:tag.inc;37:private.inc;37:table.inc;35:ypes.inc;34:util.inc;34:view.inc;31:hemes.inc;31:ipsquery.inc;31:oggleaction.inc;36:button.inc;36:toolbutton.inc;32:olbar.inc;35:utton.inc;34:item.inc;34:tips.inc;31:ree.inc;34:datalist.inc;35:nd.inc;34:item.inc;34:model.inc;39:filter.inc;39:sort.inc;34:private.inc;34:selection.inc;35:ortable.inc;35:tore.inc;34:view.inc;38:column.inc;31:ypeutils.inc;30:uimanager.inc;30:vbbox.inc;32:ox.inc;31:iewport.inc;31:paned.inc;31:ruler.inc;31:scale.inc;33:rollbar.inc;32:eparator.inc;30:widget.inc;32:ndow-decorate.inc;36:.inc;27:paste.pas;27:xembed.inc;21:2x11/gdk2x.pas;26:include/gdk2x11includes.inc;37:display-x11.inc;38:rawable-x11.inc;37:inputprivate.inc;37:pixmap-x11.inc;38:rivate-x11.inc;37:screen-x11.inc;37:window-x11.inc;37:x.inc;35:xid_proto.inc;34:mwmutil.inc;34:xsettings-client.inc;45:ommon.inc;21:ext/gtk2ext.pp;28:scalebutton.inc;39:h.inc;29:tatusicon.inc;38:h.inc;28:textiter.inc;36:h.inc;32:mark.inc;36:h.inc;28:volumebutton.inc;40:h.inc;21:glext/gdkglconfig.inc;35:text.inc;32:defs.inc;33:rawable.inc;32:enumtypes.inc;33:xt.pas;35:_includes.inc;32:font.inc;32:init.inc;32:pixmap.inc;32:query.inc;32:shapes.inc;32:tokens.inc;33:ypes.inc;32:version.inc;32:window.inc;28:tkgldefs.inc;32:ext.pas;35:_includes.inc;32:init.inc;32:version.inc;32:widget.inc;21:html/dom-document.inc;30:node.inc;30:types.inc;26:gtkhtml.pas;33:context.inc;33:includes.inc;26:htmldocument.inc;30:event.inc;30:focusiterator.inc;32:ntspecification.inc;30:parser.inc;30:selection.inc;31:tream.inc;36:buffer.inc;30:view.inc;18:libglade/glade-init.inc;33:xml.inc;27:libglade2.pas;18:pango/pango-attributes.inc;30:break.inc;30:context.inc;32:verage.inc;30:engine.inc;30:font.inc;34:map.inc;34:set.inc;30:glyph-item.inc;35:.inc;30:item.inc;30:layout.inc;30:matrix.inc;30:renderer.inc;30:tabs.inc;31:ypes.inc;29:.pas;29:includes.inc;29:utils.pas;23:cairo/pangocairo.pas;9:hash/Makefile.fpc;14:examples/Makefile.fpc;23:crctest.pas;23:mdtest.pas;23:sha1test.pp;14:fpmake.pp;14:src/crc.pas;18:md5.pp;18:ntlm.pas;18:sha1.pp;18:unixcrypt.pas;19:uid.pas;10:ermes/Makefile.fpc;16:fpmake.pp;16:src/d_32.inc;20:factconv.inc;20:headp.inc;22:rmconf.inc;24:def.inc;24:es.pp;26:_clearer.inc;28:onverter.inc;27:debug.inc;28:ither.inc;27:factory.inc;28:ormat.inc;27:list.inc;27:palette.inc;27:utility.inc;20:i386/headi386.inc;29:mmx.inc;25:mmx_clr.inc;29:main.inc;28:p2_32.inc;29:_32.inc;25:x8616lut.inc;28:_clr.inc;29:main.inc;28:p_16.inc;30:32.inc;30:cpy.inc;30:i8.inc;30:s32.inc;29:scpy.inc;20:p_16.inc;22:24.inc;22:32.inc;22:clr.inc;23:nv.inc;23:py.inc;22:g.inc;23:a.inc;24:c.inc;23:ca.inc;24:c.inc;22:i8.inc;22:muhmu.inc;10:ttpd13/Makefile.fpc;17:fpmake.pp;17:src/ap.inc;23:_alloc.inc;24:config.inc;24:mmn.inc;21:buff.inc;21:hsregex.inc;22:ttp_config.inc;28:re.inc;26:log.inc;26:main.inc;26:protocol.inc;26:request.inc;26:vhost.inc;25:d.inc;27:pas;21:readdir.inc;21:util_uri.inc;21:win32_os.inc;14:20/Makefile.fpc;17:examples/Makefile.fpc;26:define.inc;26:minimain.pas;27:od_example.pp;30:hello.pp;30:spelling.pp;26:testmodule.pp;17:fpmake.pp;17:src/ap_config.inc;24:mmn.inc;25:pm.inc;24:provider.inc;24:release.inc;23:r/apr.pas;28:_allocator.inc;29:buckets.inc;29:dso.inc;29:errno.inc;29:file_info.inc;35:o.inc;29:general.inc;29:hash.inc;29:lib.inc;29:network_io.inc;29:poll.inc;31:ols.inc;31:rtable.inc;29:signal.inc;30:trings.inc;29:tables.inc;30:hread_proc.inc;30:ime.inc;29:user.inc;29:version.inc;24:iconv/api_version.inc;32:r_iconv.inc;33:iconv.pas;24:util/apr_md5.inc;33:uri.inc;33:xlate.inc;34:ml.inc;32:util.pas;21:http_config.inc;29:nection.inc;28:re.inc;26:log.inc;26:main.inc;26:protocol.inc;26:request.inc;26:vhost.inc;25:d.inc;27:pas;21:pcreposix.inc;21:util_cfgtree.inc;26:filter.inc;26:md5.inc;26:script.inc;26:time.inc;15:2/Makefile.fpc;17:examples/Makefile.fpc;26:define.inc;26:minimain.pas;27:od_example.pp;30:hello.pp;30:spelling.pp;26:testmodule.pp;17:fpmake.pp;17:src/ap_config.inc;24:mmn.inc;25:pm.inc;24:provider.inc;24:regex.inc;26:lease.inc;23:r/apr.pas;28:_allocator.inc;29:buckets.inc;29:dso.inc;29:errno.inc;29:file_info.inc;35:o.inc;29:general.inc;29:hash.inc;29:lib.inc;29:network_io.inc;29:poll.inc;31:ols.inc;31:rtable.inc;29:signal.inc;30:trings.inc;29:tables.inc;30:hread_proc.inc;30:ime.inc;29:user.inc;29:version.inc;24:iconv/api_version.inc;32:r_iconv.inc;33:iconv.pas;24:util/apr_md5.inc;33:uri.inc;33:xlate.inc;34:ml.inc;32:util.pas;21:http_config.inc;29:nection.inc;28:re.inc;26:log.inc;26:main.inc;26:protocol.inc;26:request.inc;26:vhost.inc;25:d.inc;27:pas;21:util_cfgtree.inc;26:filter.inc;26:md5.inc;26:script.inc;26:time.inc;9:ibase/Makefile.fpc;15:examples/Makefile.fpc;24:testib40.pp;30:60.pp;15:fpmake.pp;15:src/ibase40.pp;24:60.inc;27:pp;26:dyn.pp;10:convenc/Makefile.fpc;18:examples/Makefile.fpc;27:iconvtest.pp;18:fpmake.pp;18:src/iconvenc.pas;30:_dyn.pas;28:rt.inc;10:magemagick/Makefile.fpc;21:examples/wandpixelaccess.pas;21:fpmake.pp;21:src/buildim.pp;25:cache.inc;30:_view.inc;26:ompare.inc;27:nstitute.inc;25:draw.inc;29:ing_wand.inc;25:effect.inc;25:fx.inc;25:imagemagick.pas;25:magick_attribute.inc;32:image.inc;32:type.inc;32:wand.pas;25:pixel.inc;30:_iterator.inc;31:wand.inc;25:quantize.inc;25:semaphore.inc;26:tatistic.inc;25:type.inc;11:lib/Makefile.fpc;15:fpmake.pp;15:src/gdk_imlib.pp;19:imlib.pp;9:ldap/Makefile.fpc;14:fpmake.pp;14:src/lber.pas;22:_typesh.inc;22:h.inc;19:dap.pas;22:_featuresh.inc;23:schemah.inc;22:h.inc;10:ibc/Makefile.fpc;14:fpmake.pp;14:src/aineth.inc;20:oh.inc;19:liasesh.inc;20:locah.inc;19:rgph.inc;21:zh.inc;19:socketh.inc;23:iosh.inc;18:bconfnameh.inc;19:direnth.inc;20:lfcnh.inc;19:fcntlh.inc;20:envh.inc;19:inh.inc;20:pch.inc;19:mmanh.inc;20:sqh.inc;19:netdbh.inc;19:pollh.inc;19:resourceh.inc;19:schedh.inc;20:electh.inc;21:mh.inc;20:hmh.inc;20:ockaddrh.inc;23:et.inc;25:h.inc;20:tatfsh.inc;23:h.inc;23:vfsh.inc;21:roptsh.inc;19:termiosh.inc;20:imeh.inc;19:uioh.inc;20:stath.inc;20:tmph.inc;23:xh.inc;21:snameh.inc;19:waitflags.inc;28:h.inc;23:status.inc;29:h.inc;18:cerrno.inc;19:rypth.inc;19:typeh.inc;18:dirent.inc;24:h.inc;19:lfcnh.inc;18:endianh.inc;20:vzh.inc;19:rrh.inc;21:noh.inc;21:orh.inc;18:fcntlh.inc;19:envh.inc;19:ileh.inc;19:mtmsgh.inc;19:nmatchh.inc;19:pmake.inc;25:pp;19:stabh.inc;18:gconfigh.inc;22:vh.inc;19:etopth.inc;19:libc_versionh.inc;20:obh.inc;20:ue.inc;19:rph.inc;18:iconvh.inc;19:gmph.inc;19:nttypesh.inc;19:octl_typesh.inc;23:sh.inc;18:kerneldefs.pp;24:ioctl.pp;19:ioctlsh.inc;18:langinfoh.inc;19:ib_namesh.inc;21:c.pp;21:genh.inc;21:intlh.inc;22:o.inc;23:h.inc;20:mitsh.inc;19:ocal_limh.inc;23:eh.inc;18:malloch.inc;19:checkh.inc;19:ntenth.inc;19:onetaryh.inc;18:nashh.inc;20:th.inc;20:x25h.inc;19:ech.inc;20:tdbh.inc;21:herh.inc;24:net.inc;27:h.inc;19:icmp6.inc;24:h.inc;20:f_arph.inc;22:ether.inc;27:h.inc;22:fddih.inc;22:packeth.inc;23:pp.inc;25:h.inc;22:shaperh.inc;22:trh.inc;21:h.inc;20:gmph.inc;20:n.inc;21:_systmh.inc;21:h.inc;20:p.inc;21:6h.inc;21:_icmp.inc;26:h.inc;21:h.inc;21:xh.inc;19:l_typesh.inc;19:netromh.inc;19:packeth.inc;19:roseh.inc;21:ute.inc;24:h.inc;19:ssh.inc;19:tcph.inc;19:udph.inc;20:pdh.inc;18:pathsh.inc;19:osix1_limh.inc;23:2_limh.inc;23:opth.inc;19:rintfh.inc;20:outedh.inc;20:whodh.inc;19:talkdh.inc;20:hread.inc;25:h.inc;25:typesh.inc;20:imedh.inc;20:yh.inc;19:wdh.inc;18:regexh.inc;23:ph.inc;18:saccth.inc;19:chedh.inc;19:earchh.inc;20:maphoreh.inc;19:fsuidh.inc;19:gttyh.inc;19:hadowh.inc;19:igactionh.inc;21:contexth.inc;21:infoh.inc;21:nalh.inc;22:umh.inc;21:seth.inc;22:tackh.inc;21:threadh.inc;20:octlh.inc;20:pch.inc;19:kdaemonh.inc;20:logh.inc;19:mmaph.inc;20:ounth.inc;20:sgh.inc;19:pawnh.inc;20:ermh.inc;20:ollh.inc;20:traceh.inc;19:quota.inc;24:h.inc;19:raw.inc;22:h.inc;20:ebooth.inc;21:sourceh.inc;19:scsi_ioctlh.inc;23:h.inc;20:elect.inc;25:h.inc;21:mh.inc;21:ndfileh.inc;20:gh.inc;20:hmh.inc;20:ocketh.inc;20:tat.inc;23:fsh.inc;23:h.inc;23:vfsh.inc;20:waph.inc;20:ysctlh.inc;22:infoh.inc;22:log.inc;25:h.inc;19:tdinth.inc;22:o_exth.inc;24:limh.inc;23:h.inc;21:lib.inc;24:h.inc;20:ime.inc;23:bh.inc;23:h.inc;20:ringh.inc;21:optsh.inc;20:tydefaults.inc;30:h.inc;19:ucontexth.inc;20:ioh.inc;20:n.inc;21:h.inc;20:serh.inc;21:tath.inc;20:tsnameh.inc;19:vlimith.inc;20:timesh.inc;19:waith.inc;19:ysexitsh.inc;21:logh.inc;21:typeshh.inc;18:termios.inc;25:h.inc;19:ime.inc;22:h.inc;22:sh.inc;22:xh.inc;19:tyenth.inc;19:ypes.inc;23:h.inc;18:ucontexth.inc;19:limith.inc;19:nistdh.inc;19:timeh.inc;20:mph.inc;22:xh.inc;18:wcharh.inc;20:typeh.inc;19:ordexph.inc;22:sizeh.inc;18:xlocaleh.inc;19:open_limh.inc;13:url/Makefile.fpc;17:examples/Makefile.fpc;26:testcurl.pp;30:stream.pp;17:fpmake.pp;17:src/libcurl.pp;12:gbafpc/Makefile.fpc;19:examples/Makefile.fpc;28:audio/Makefile.fpc;34:PlayBoyScout/Makefile.fpc;47:PlayBoyScout.pp;28:graphics/Makefile.fpc;37:PCXView/Makefile.fpc;45:PcxView.pp;37:SimpleBGScroll/Makefile.fpc;52:SimpleBGScroll.pp;37:ansi_console/Makefile.fpc;50:console.pp;28:template/Makefile.fpc;37:template.pp;19:fpmake.pp;19:src/gba.pp;26:/BoyScout.inc;27:disc.inc;31:_io.inc;28:ldi.inc;27:fade.inc;27:gba.inc;30:_affine.inc;31:base.inc;31:compression.inc;33:nsole.inc;31:dma.inc;31:helper.inc;31:input.inc;33:terrupt.inc;31:multiboot.inc;31:sio.inc;32:ound.inc;32:prites.inc;32:ystemcalls.inc;31:timers.inc;32:ypes.inc;31:video.inc;27:helper.inc;27:mappy.inc;28:bv2.inc;27:pcx.inc;13:d/Makefile.fpc;15:examples/Makefile.fpc;24:gdtest.pp;30:cgi.pp;15:fpmake.pp;15:src/gd.pas;12:ndsfpc/Makefile.fpc;19:examples/Makefile.fpc;28:audio/Makefile.fpc;34:maxmod/Makefile.fpc;41:audio_modes/Makefile.fpc;53:audio_modes.pp;41:basic_sound/Makefile.fpc;53:basic_sound.pp;41:reverb/Makefile.fpc;48:reverb.pp;41:song_events_example/Makefile.fpc;61:song_events_example.pp;60:2/Makefile.fpc;62:song_events_example2.pp;35:icrecord/Makefile.fpc;44:micrecord.pp;28:card/Makefile.fpc;33:eeprom/Makefile.fpc;40:eeprom.pp;28:debugging/Makefile.fpc;38:exceptionTest/Makefile.fpc;52:exceptionTest.pp;29:s_motion/Makefile.fpc;38:dsMotion.pp;30:wifi/Makefile.fpc;35:ap_search/Makefile.fpc;45:apSearch.pp;36:utoconnect/Makefile.fpc;47:autoconnect.pp;35:httpget/Makefile.fpc;43:httpget.pp;28:filesystem/Makefile.fpc;39:embedded_gbfs/Makefile.fpc;53:embedded_gbfs.pp;39:libfat/Makefile.fpc;46:access_dir/Makefile.fpc;57:access_dir.pp;53:file/Makefile.fpc;58:access_file.pp;46:libfatdir/Makefile.fpc;56:libfatdir.pp;39:nitrofs/Makefile.fpc;47:nitrodir/Makefile.fpc;56:nitrodir.pp;28:graphics/3D/3D_Both_Screens/3DBothScreens.pp;56:Makefile.fpc;40:BoxTest/BoxTest.pp;48:Makefile.fpc;40:Display_List/DisplayList.pp;53:Makefile.fpc;52:_2/DisplayList2.pp;55:Makefile.fpc;40:Env_Mapping/EnvMapping.pp;52:Makefile.fpc;40:Makefile.fpc;41:ixed_Text_3D/Makefile.fpc;55:ixedText3D.pp;40:Ortho/Makefile.fpc;46:Ortho.pp;40:Paletted_Cube/Makefile.fpc;54:PalettedCube.pp;41:icking/Makefile.fpc;48:Picking.pp;40:Simple_Quad/Makefile.fpc;52:SimpleQuad.pp;47:Tri/Makefile.fpc;51:SimpleTri.pp;40:Textured_Cube/Makefile.fpc;54:TexturedCube.pp;49:Quad/Makefile.fpc;54:TexturedQuad.pp;41:oon_Shading/Makefile.fpc;53:ToonShading.pp;40:nehe/Makefile.fpc;45:lesson01/Makefile.fpc;54:lesson01.pp;52:2/Makefile.fpc;54:lesson02.pp;52:3/Makefile.fpc;54:lesson03.pp;52:4/Makefile.fpc;54:lesson04.pp;52:5/Makefile.fpc;54:lesson05.pp;52:6/Makefile.fpc;54:lesson06.pp;52:7/Makefile.fpc;54:lesson07.pp;52:8/Makefile.fpc;54:lesson08.pp;52:9/Makefile.fpc;54:lesson09.pp;51:10/Makefile.fpc;54:lesson10.pp;53:b/Makefile.fpc;55:lesson10b.pp;52:1/Makefile.fpc;54:lesson11.pp;37:Backgrounds/16bit_color_bmp/16bitColorBmp.pp;65:Makefile.fpc;49:256_color_bmp/256ColorBmp.pp;63:Makefile.fpc;49:Double_Buffer/DoubleBuffer.pp;63:Makefile.fpc;49:Makefile.fpc;49:all_in_one/Advanced.pp;60:BackgroundAllInOne.pp;62:sic.pp;60:Handmade.pp;60:Makefile.fpc;61:ultilayer.pp;60:RotBackgrounds.pp;60:Scrolling.pp;60:TextBackgrounds.pp;49:rotation/Makefile.fpc;58:Rotation.pp;37:Makefile.fpc;37:Printing/Makefile.fpc;46:ansi_console/AnsiConsole.pp;59:Makefile.fpc;46:console_windows/ConsoleWindows.pp;62:Makefile.fpc;47:ustom_font/CustomFont.pp;58:Makefile.fpc;46:print_both_screens/Makefile.fpc;65:printBothScreens.pp;46:rotscale_text/Makefile.fpc;60:RotscaleText.pp;37:Sprites/Makefile.fpc;45:allocation_test/AllocationTest.pp;61:Makefile.fpc;46:nimate_simple/AnimateSimple.pp;60:Makefile.fpc;45:bitmap_sprites/BitmapSprites.pp;60:Makefile.fpc;45:fire_and_sprites/FireAndSprites.pp;62:Makefile.fpc;45:simple/Makefile.fpc;52:Simple.pp;46:prite_extended_palettes/Makefile.fpc;70:SpriteExtendedPalettes.pp;52:rotate/Makefile.fpc;59:SpriteRotate.pp;28:hello_world/Makefile.fpc;40:helloWorld.pp;28:input/Makefile.fpc;34:Touch_Pad/Makefile.fpc;44:touch_area/Makefile.fpc;55:touchArea.pp;50:look/Makefile.fpc;55:touchLook.pp;50:test/Makefile.fpc;55:touchTest.pp;34:keyboard/Makefile.fpc;43:keyboard_async/Makefile.fpc;58:keyboardAsync.pp;52:stdin/Makefile.fpc;58:keyboardStdin.pp;28:time/Makefile.fpc;33:RealTimeClock/Makefile.fpc;47:realtimeclock.pp;33:stopwatch/Makefile.fpc;43:stopwatch.pp;33:timercallback/Makefile.fpc;47:timercallback.pp;19:fpmake.pp;19:src/dswifi/dswifi7.pp;36:9.pp;30:inc/dswifi7.inc;40:9.inc;40:_version.inc;34:netdb.inc;37:inet/in.inc;34:sgIP_errno.inc;35:ys/socket.inc;23:fat/fat.inc;31:pp;30:helper.inc;28:ilesystem.inc;38:pp;27:gbfs.inc;32:pp;23:maxmod/inc/maxmod.inc;40:7.inc;40:9.inc;35:m_mas.inc;38:sl.inc;37:types.inc;30:maxmod7.pp;36:9.pp;23:nds/arm7/audio.inc;32:clock.inc;32:i2c.inc;33:nput.inc;32:sdmmc.inc;33:erial.inc;32:touch.inc;30:9/background.inc;33:oxtest.inc;32:cache.inc;33:onsole.inc;32:decompress.inc;33:ldi.inc;33:ynamicArray.inc;32:exceptions.inc;32:guitarGrip.inc;32:image.inc;33:nput.inc;32:keyboard.inc;32:linkedlist.inc;32:math.inc;32:ndsmotion.inc;32:paddle.inc;33:cx.inc;33:iano.inc;33:ostest.inc;32:rumble.inc;32:sassert.inc;33:ound.inc;33:prite.inc;32:trig_lut.inc;32:video.inc;37:GL.inc;27:bios.inc;27:card.inc;27:debug.inc;28:isc_io.inc;28:ma.inc;27:fifocommon.inc;31:messages.inc;27:helper.inc;27:input.inc;29:terrupts.inc;28:pc.inc;27:jtypes.inc;27:memory.inc;27:nds.inc;30:include.inc;30:types.inc;27:registers_alt.inc;27:system.inc;27:timers.inc;28:ouch.inc;26:7.pp;26:9.pp;12:ogcfpc/Makefile.fpc;19:examples/Makefile.fpc;28:audio/Makefile.fpc;34:modplay/Makefile.fpc;42:modplay.pp;35:p3player/Makefile.fpc;44:playmp3.pp;28:devices/Makefile.fpc;36:network/Makefile.fpc;44:sockettest/Makefile.fpc;55:sockettest.pp;36:usbgecko/Makefile.fpc;45:gdbstub/Makefile.fpc;53:gdbstub.pp;39:keyboard/Makefile.fpc;48:basic_stdin/Makefile.fpc;60:basic_stdin.pp;28:filesystem/Makefile.fpc;39:directory/Makefile.fpc;49:directory.pp;28:graphics/Makefile.fpc;37:gx/Makefile.fpc;40:gxSprites/Makefile.fpc;50:gxsprites.pp;40:neheGX/Makefile.fpc;47:lesson1/Makefile.fpc;55:lesson1.pp;53:2/Makefile.fpc;55:lesson2.pp;53:3/Makefile.fpc;55:lesson3.pp;53:4/Makefile.fpc;55:lesson4.pp;53:5/Makefile.fpc;55:lesson5.pp;53:6/Makefile.fpc;55:lesson6.pp;53:7/Makefile.fpc;55:lesson7.pp;53:8/Makefile.fpc;55:lesson8.pp;53:9/Makefile.fpc;55:lesson9.pp;40:triangle/Makefile.fpc;49:triangle.pp;28:template/Makefile.fpc;37:template.pp;19:fpmake.pp;19:src/aesndlib.pp;24:sndlib.pp;23:bte/bd_addr.inc;28:te.inc;23:debug.inc;29:pp;24:i/di.inc;23:fat.pp;23:gccore.inc;30:pp;25:modplay.pp;25:types.pp;23:iso9660.pp;23:mp3player.pp;23:network.pp;23:ogc/aram.inc;29:qmgr.inc;30:ueue.inc;28:udio.inc;27:cache.inc;29:rd.inc;29:st.inc;28:olor.inc;29:nd.inc;30:f.inc;30:sol.inc;30:text.inc;27:disc_io.inc;28:sp.inc;28:vd.inc;27:es.inc;28:xi.inc;27:gu.inc;28:x.inc;29:_struct.inc;27:ios.inc;28:pc.inc;28:rq.inc;28:sfs.inc;27:lwp.inc;30:_config.inc;31:heap.inc;31:messages.inc;32:utex.inc;31:objmgr.inc;31:priority.inc;31:queue.inc;31:sema.inc;32:tack.inc;34:tes.inc;31:threadq.inc;37:s.inc;32:qdata.inc;31:watchdog.inc;32:kspace.inc;27:machine/asm.inc;35:processor.inc;35:spinlock.inc;28:essage.inc;28:utex.inc;27:pad.inc;27:semaphore.inc;28:i.inc;28:tm.inc;28:ys_state.inc;30:tem.inc;27:texconv.inc;28:pl.inc;27:usb.inc;30:gecko.inc;30:mouse.inc;30:storage.inc;27:video.inc;32:_types.inc;27:wiilaunch.inc;26:sys.inc;23:sdcard/card_buf.inc;35:cmn.inc;35:io.inc;30:gcsd.inc;30:wiisd_io.inc;23:wiikeyboard/keyboard.inc;35:usbkeyboard.inc;35:wsksymdef.inc;26:use/wiiuse.inc;31:pad.inc;12:png/Makefile.fpc;16:fpmake.pp;16:src/png.pp;12:rsvg/Makefile.fpc;17:fpmake.pp;17:src/rsvg.pas;12:see/Makefile.fpc;16:examples/Makefile.fpc;25:mod_stream.pp;25:teststream.pp;29:write.pp;26:libsee.pp;16:fpmake.pp;16:src/libsee.pas;12:xml/Makefile.fpc;16:examples/Makefile.fpc;25:exutils.pas;25:io1.pas;27:2.pas;25:reader1.pas;31:2.pas;25:tree1.pas;29:2.pas;16:fpmake.pp;16:src/HTMLparser.inc;24:tree.inc;20:SAX.inc;23:2.inc;20:c14n.inc;21:atalog.inc;21:hvalid.inc;20:debugXML.inc;21:ict.inc;20:encoding.inc;22:tities.inc;20:globals.inc;20:hash.inc;20:list.inc;20:nanoftp.inc;24:http.inc;20:parser.inc;26:Internals.inc;22:ttern.inc;20:relaxng.inc;20:schemasInternals.inc;26:tron.inc;20:threads.inc;21:ree.inc;20:uri.inc;20:valid.inc;20:xinclude.inc;21:link.inc;21:ml2.inc;25:pas;24:dyn.pas;23:IO.inc;23:automata.inc;23:error.inc;23:memory.inc;24:odule.inc;23:reader.inc;25:gexp.inc;23:save.inc;24:chemas.inc;30:types.inc;24:tring.inc;23:unicode.inc;23:version.inc;23:writer.inc;23:xsd.pas;26:parser.pas;21:path.inc;25:Internals.inc;22:ointer.inc;10:ua/Makefile.fpc;13:fpmake.pp;13:src/lauxlib.pas;18:ua.pas;20:lib.pas;9:mad/Makefile.fpc;13:fpmake.pp;13:src/mad.pas;11:troska/Makefile.fpc;18:src/matroska.pas;10:odplug/Makefile.fpc;17:fpmake.pp;17:src/modplug.pas;10:ysql/Makefile.fpc;15:examples/Makefile.fpc;24:mysqls.pp;24:testdb3.pp;30:4.pp;15:fpmake.pp;15:src/my4_sys.pp;21:sql.inc;24:3.pp;25:_com.pp;29:dyn.pp;29:types.inc;26:version.pp;25:dyn.pp;25:impl.inc;25:types.inc;24:4.pp;25:0.pp;26:dyn.pp;25:1.pp;26:dyn.pp;25:_com.pp;29:dyn.pp;29:types.inc;26:version.pp;25:dyn.pp;25:impl.inc;25:types.inc;24:50.pp;26:dyn.pp;25:1.pp;26:dyn.pp;26:emb.pp;9:ncurses/Makefile.fpc;17:examples/Makefile.fpc;26:db_demo.pp;26:edit_demo.pp;26:firework.pp;26:menu_demo.pp;26:ocrt_demo.pp;26:screen_demo.pp;26:t1form.pp;28:menu.pp;28:panel.pp;27:2form.pp;28:menu.pp;28:panel.pp;27:3form.pp;27:background.pp;27:clock.pp;27:estn.pp;28:vent.pp;27:mouse.pp;27:nlshello.pp;27:pad.pp;27:window.pp;17:fpmake.pp;17:src/eti.inc;21:form.pp;21:menu.pp;21:ncrt.inc;26:pp;23:urses.pp;21:ocrt.pp;21:panel.pp;22:xpic.inc;17:tests/cotest.pp;23:t1form.pp;25:menu.pp;24:2form.pp;25:menu.pp;24:3form.pp;24:background.pp;24:clock.pp;24:event.pp;24:mouse.pp;24:nlshello.pp;10:ewt/Makefile.fpc;14:examples/Makefile.fpc;23:newt1.pas;27:2.pas;27:3.pas;14:fpmake.pp;14:src/newt.pp;10:umlib/Makefile.fpc;16:examples/Makefile.fpc;25:invgenex.pas;29:pdex.pas;29:syex.pas;26:omremex.pas;30:vex.pas;30:wrsex.pas;28:wrmex.pas;30:vex.pas;16:fpmake.pp;16:src/det.pas;21:irect.inc;21:sl.pas;20:eig.pas;23:h1.pas;24:2.pas;20:int.pas;22:v.pas;21:om.pas;21:pf.pas;20:mdt.pas;20:numlib.pas;20:ode.pas;21:mv.pas;20:roo.pas;20:sle.pas;21:pe.pas;22:l.pas;20:timer.pas;21:pnumlib.pas;21:yp.pas;16:tests/detgpbte.pas;27:dte.pas;26:syte.pas;26:trte.pas;22:eigbs1te.pas;27:2te.pas;27:3te.pas;27:4te.pas;25:ge1te.pas;27:3te.pas;26:g1te.pas;27:2te.pas;27:3te.pas;27:4te.pas;26:s1te.pas;27:2te.pas;27:3te.pas;27:4te.pas;25:sv1te.pas;27:3te.pas;25:ts1te.pas;27:2te.pas;27:3te.pas;27:4te.pas;22:intge1te.pas;27:2te.pas;27:3te.pas;24:vgente.pas;26:pdte.pas;26:syte.pas;23:omwrmte.pas;22:odeiv1te.pas;27:2te.pas;22:roof1rte.pas;26:nrt1.pas;29:e.pas;25:polte.pas;22:sledtrte.pas;25:gbalt.pas;28:te.pas;26:enlt.pas;28:te.pas;26:lslt.pas;28:te.pas;26:pblt.pas;28:te.pas;27:dlt.pas;28:te.pas;26:sylt.pas;28:te.pas;26:trte.pas;23:peentte.pas;25:ge1te.pas;25:maxte.pas;25:polte.pas;27:wte.pas;25:sgnte.pas;22:test.pas;23:imer.pas;23:urte.pas;10:vapi/Makefile.fpc;15:examples/nvapitest.pas;15:fpmake.pp;15:src/nvapi.pas;9:objcrtl/Makefile.fpc;17:examples/objcrtltest.pas;17:fpmake.pp;17:src/objcrtl.pas;28:10.pas;28:20.pas;28:iphoneos.pas;28:macosx.pas;28:utils.pas;10:dbc/Makefile.fpc;14:examples/Makefile.fpc;23:testodbc.pp;14:fpmake.pp;14:src/odbcsql.inc;26:pas;25:dyn.pas;10:ggvorbis/Makefile.fpc;19:fpmake.pp;19:src/ogg.pas;23:vorbis.pas;10:penal/Makefile.fpc;16:examples/Makefile.fpc;25:captureplaybackopenal.pas;25:madopenal.pas;25:wavopenal.pas;16:fpmake.pp;16:src/alch.inc;22:exth.inc;22:h.inc;20:openal.pas;13:cl/Makefile.fpc;16:examples/basicsample.pas;25:clinfo.pp;16:fpmake.pp;16:src/cl.pp;22:_gl.pp;13:gl/Makefile.fpc;16:examples/Makefile.fpc;25:bounce.pp;25:freeglutdemo.pp;25:glutdemo.pp;33:va.pp;27:xtest.pp;25:morph3d.pp;25:radblur.pp;16:fpmake.pp;16:src/freeglut.pp;20:gl.pp;22:ext.pp;22:u.pp;23:t.pp;22:x.pp;20:tinygl.inc;26:h.inc;15:es/Makefile.fpc;18:examples/Makefile.fpc;27:es2example1.pas;27:glutdemoes.pp;18:src/gles11.pp;26:20.pas;13:ssl/Makefile.fpc;17:examples/test1.pas;17:fpmake.pp;17:src/openssl.pas;10:racle/Makefile.fpc;16:examples/Makefile.fpc;25:oraclew.pp;25:test01.pp;16:fpmake.pp;16:src/nzerror.inc;22:t.inc;20:oci.inc;24:pp;23:1.inc;23:ap.inc;23:dfn.inc;24:yn.pp;21:raoci.pp;23:types.pp;22:l.inc;22:o_implementation.inc;25:nterface.inc;22:t.inc;10:s2units/Makefile.fpc;18:examples/Makefile.fpc;27:clktest.pas;27:ftptest.pas;27:lvmtest.pas;27:mciapi1.pas;33:2.pas;18:fpmake.pp;18:src/buildall.pas;22:clkdll.pas;22:dive.pas;22:ftpapi.pas;22:hwvideo.pas;22:lvm.pas;22:mci.pas;25:api.pas;25:drv.pas;23:mbase.pas;24:io.pas;22:som.pas;23:w.pas;22:wpstk.pp;9:palmunits/Makefile.fpc;19:fpmake.pp;19:src/aboutbox.pp;24:larmmgr.pp;24:pplaunchcmd.pp;24:ttentionmgr.pp;23:bitmap.pp;23:category.pp;24:hars.pp;24:lipboard.pp;24:onnectionmgr.pp;26:solemgr.pp;26:trol.pp;25:retraps.pp;24:rc.pp;23:datamgr.pp;26:etime.pp;25:y.pp;24:lserver.pp;23:encrypt.pp;24:rrorbase.pp;24:vent_.pp;24:xglib.pp;26:mgr.pp;25:pansionmgr.pp;23:fatalalert.pp;24:eaturemgr.pp;24:ield.pp;25:lestream.pp;25:nd_.pp;24:loatmgr.pp;24:ont.pp;27:select_.pp;25:rm.pp;24:slib.pp;23:graffiti.pp;31:reference.pp;31:shift.pp;23:hal.pp;24:elper.pp;29:serviceclass.pp;24:wrmiscflags.pp;23:imcutils.pp;24:netmgr.pp;25:spoint.pp;25:tlmgr.pp;24:rlib.pp;23:keyboard.pp;26:mgr.pp;23:launcher.pp;24:ibtraps.pp;25:st.pp;24:ocalemgr.pp;28:ize.pp;24:z77mgr.pp;23:m68khwr.pp;24:emorymgr.pp;25:nu_.pp;24:odemmgr.pp;23:netbitutils.pp;26:mgr.pp;24:otifymgr.pp;23:overlaymgr.pp;23:palmcompatibility.pp;27:locale.pp;27:os.pp;25:ssword.pp;24:diconst.pp;26:lib.pp;24:enmgr.pp;24:honelookup.pp;24:references.pp;25:ivaterecords.pp;25:ogress.pp;23:rect.pp;23:scrollbar.pp;24:elday.pp;26:time.pp;30:zone.pp;25:riallinkmgr.pp;29:mgr.pp;32:old.pp;24:lotdrvrlib.pp;24:mslib.pp;24:oundmgr.pp;24:tringmgr.pp;24:ysevent.pp;28:tmgr.pp;26:temmgr.pp;29:resources.pp;26:util.pp;23:table.pp;24:elephonymgr.pp;35:types.pp;35:ui.pp;25:xtmgr.pp;27:servicesmgr.pp;24:imemgr.pp;23:udamgr.pp;24:icolor.pp;27:ntrols.pp;25:resources.pp;23:vfsmgr.pp;23:window.pp;11:sjpeg/Makefile.fpc;17:examples/cderror.pas;28:jpeg.pas;27:jpeg.pas;26:demo.pas;27:jpeg.pas;26:example.pas;26:fcache.pas;26:jpegtran.pas;26:rdbmp.pas;28:colmap.pas;28:jpgcom.pas;28:ppm.pas;28:switch.pas;28:targa.pas;26:test.pas;30:1.pas;27:ransupp.pas;26:wrbmp.pas;28:jpgcom.pas;28:ppm.pas;28:targa.pas;17:fpmake.pp;17:src/buildpasjpeg.pp;21:jcapimin.pas;26:std.pas;23:coefct.pas;25:lor.pas;23:dctmgr.pas;23:huff.pas;23:init.pas;23:mainct.pas;25:rker.pas;25:ster.pas;23:omapi.pas;24:nfig.inc;25:sts.pas;23:param.pas;24:huff.pas;24:repct.pas;23:sample.pas;23:trans.pas;22:dapimin.pas;26:std.pas;24:tadst.pas;26:src.pas;23:coefct.pas;25:lor.pas;24:t.pas;23:dctmgr.pas;23:eferr.pas;23:huff.pas;23:input.pas;23:mainct.pas;25:rker.pas;25:ster.pas;24:erge.pas;23:phuff.pas;24:ostct.pas;23:sample.pas;23:trans.pas;22:error.pas;22:fdctflt.pas;27:st.pas;26:int.pas;22:idct2d.pas;26:asm.pas;26:flt.pas;27:st.pas;26:int.pas;26:red.pas;23:nclude.pas;22:memdos.pas;28:a.pas;25:mgr.pas;25:nobs.pas;25:sys.pas;23:orecfg.pas;22:peglib.pas;22:quant1.pas;27:2.pas;22:utils.pas;21:pasjpeg.pas;12:zlib/Makefile.fpc;17:examples/Makefile.fpc;26:example.pas;33:2.pas;28:tractodt.pas;26:minigzip.pas;30:unz.pas;30:zip.pas;17:fpmake.pp;17:src/adler.pas;21:gzio.pas;21:infblock.pas;24:codes.pas;24:fast.pas;24:trees.pas;24:util.pas;21:paszlib.pas;21:trees.pas;21:unzip.pas;21:zbase.pas;22:compres.pas;24:nf.inc;22:deflate.pas;22:inflate.pas;23:p.pas;24:per.pp;24:utils.pas;22:stream.pp;22:uncompr.pas;10:cap/Makefile.fpc;14:fpmake.pp;14:src/pcap.pp;10:ostgres/Makefile.fpc;18:examples/Makefile.fpc;27:testpg1.pp;33:2.pp;18:fpmake.pp;18:src/dllist.pp;28:dyn.pp;28:types.inc;22:postgres.pp;30:3.pp;31:dyn.pp;31:types.inc;10:roj4/Makefile.fpc;15:fpmake.pp;15:src/proj.pas;10:tc/Makefile.fpc;13:examples/Makefile.fpc;22:area.pp;22:buffer.pp;22:clear.pp;24:ip.pp;23:on_info.pp;25:sole.pp;22:fire.pp;23:lower.pp;22:hicolor.pp;22:image.pp;22:keyboard.pp;30:2.pp;22:land.pp;23:ights.pp;22:modes.pp;24:jo.pp;24:use.pp;22:palette.pp;23:ixel.pp;22:random.pp;22:save.pp;23:tretch.pp;22:texwarp.pp;23:imer.pp;23:unnel.pp;28:3d.pp;13:fpmake.pp;13:src/c_api/capi_area.inc;32:d.inc;28:clear.inc;33:d.inc;30:ipper.inc;35:d.inc;29:olor.inc;33:d.inc;30:nsole.inc;35:d.inc;30:py.inc;32:d.inc;28:error.inc;33:d.inc;29:xcept.inc;34:d.inc;28:format.inc;34:d.inc;28:index.inc;28:key.inc;31:d.inc;28:mode.inc;32:d.inc;28:palette.inc;35:d.inc;28:surface.inc;35:d.inc;28:timer.inc;33:d.inc;18:ore/aread.inc;26:i.inc;22:baseconsoled.inc;33:i.inc;26:surfaced.inc;33:i.inc;22:cleard.inc;27:i.inc;24:ipperd.inc;29:i.inc;23:olord.inc;27:i.inc;24:nsoled.inc;29:i.inc;24:pyd.inc;26:i.inc;24:reimplementation.inc;27:nterface.inc;22:errord.inc;27:i.inc;23:ventd.inc;27:i.inc;22:formatd.inc;28:i.inc;22:keyeventd.inc;30:i.inc;22:log.inc;22:moded.inc;26:i.inc;24:useeventd.inc;32:i.inc;22:paletted.inc;29:i.inc;22:surfaced.inc;29:i.inc;22:timerd.inc;27:i.inc;17:dos/base/go32fix.pp;26:kbd.inc;29:d.inc;26:mouse33h.pp;31:d.inc;31:i.inc;21:cga/cga.pp;28:consoled.inc;35:i.inc;21:includes.inc;21:textfx2/textfx2.pp;36:consoled.inc;43:i.inc;22:imeunit/timeunit.pp;21:vesa/vesa.pp;30:consoled.inc;37:i.inc;22:ga/vga.pp;28:consoled.inc;35:i.inc;17:ptc.pp;20:wrapper/ptceventqueue.pp;31:wrapper.pp;17:tinyptc/tinyptc.pp;17:win32/base/cursor.inc;34:d.inc;34:moded.inc;28:event.inc;33:d.inc;28:hook.inc;32:d.inc;28:kbd.inc;31:d.inc;28:monitor.inc;35:d.inc;30:used.inc;33:i.inc;28:window.inc;34:d.inc;23:directx/check.inc;31:directxconsoled.inc;45:i.inc;33:splay.inc;38:d.inc;31:hook.inc;35:d.inc;31:library.inc;38:d.inc;31:p_ddraw.pp;32:rimary.inc;38:d.inc;31:translate.inc;23:gdi/gdiconsoled.inc;37:i.inc;27:win32dibd.inc;35:i.inc;20:ce/base/wincekeyboardd.inc;41:i.inc;33:moused.inc;38:i.inc;33:windowd.inc;39:i.inc;23:directx/ddraw.pas;23:gapi/p_gx.pp;28:wincegapiconsoled.inc;44:i.inc;24:di/wincebitmapinfod.inc;42:i.inc;32:gdiconsoled.inc;42:i.inc;23:includes.inc;17:x11/check.inc;21:extensions.inc;21:includes.inc;21:x11consoled.inc;31:i.inc;24:dga1displayd.inc;35:i.inc;27:2displayd.inc;35:i.inc;25:isplayd.inc;31:i.inc;24:imaged.inc;29:i.inc;24:modesd.inc;29:i.inc;24:windowdisplayd.inc;37:i.inc;22:unikey.inc;13:tests/convtest.pp;19:endian.inc;19:view.pp;11:hreads/Makefile.fpc;18:fpmake.pp;18:src/pthrbeos.inc;27:sd.inc;26:eads.pp;26:haiku.inc;26:linux.inc;26:snos.inc;10:xlib/Makefile.fpc;15:examples/Makefile.fpc;24:ppxview.pp;15:fpmake.pp;15:src/pxlib.pp;9:regexpr/Makefile.fpc;17:examples/Makefile.fpc;26:testreg1.pp;17:fpmake.pp;17:src/old/regexpr.pp;24:regexpr.pp;21:regex.pp;26:pr.pas;11:xx/Makefile.fpc;14:examples/Makefile.fpc;23:callrexx.pas;14:fpmake.pp;14:src/rexxsaa.pp;9:sdl/Makefile.fpc;13:fpmake.pp;13:src/jedi-sdl.inc;17:libxmlparser.pas;18:ogger.pas;17:powersdl.inc;25:_gfx.inc;26:image.inc;26:mixer.inc;26:net.inc;26:smpeg.inc;26:ttf.inc;17:sdl.pas;20:_gfx.pas;21:image.pas;21:mixer.pas;26:_nosmpeg.pas;21:net.pas;21:ttf.pas;20:utils.pas;18:mpeg.pas;10:ndfile/Makefile.fpc;17:examples/sfplay.pp;17:fpmake_disabled.pp;17:src/sndfile.pp;10:qlite/Makefile.fpc;16:fpmake.pp;16:src/sqlite.pp;26:3.inc;28:pp;27:db.pas;28:yn.pp;26:db.pas;16:tests/test.pas;26:apiv3x.pp;10:vgalib/Makefile.fpc;17:examples/Makefile.fpc;26:testvga.pp;26:vgatest.pp;17:fpmake.pp;17:src/svgalib.pp;21:vgamouse.pp;10:ymbolic/Makefile.fpc;18:examples/Makefile.fpc;27:easyevalexample.pp;28:valtest.pas;27:rpnthing.pas;18:fpmake.pp;18:src/exprstrs.inc;22:parsexpr.inc;22:rearrang.inc;22:symbexpr.inc;26:olic.pas;22:teval.inc;11:slog/Makefile.fpc;16:examples/Makefile.fpc;25:testlog.pp;16:fpmake.pp;16:src/systemlog.pp;9:tcl/Makefile.fpc;13:fpmake.pp;13:src/tcl80.pp;13:tests/tcl_demo.pp;9:univint/Makefile.fpc;17:examples/Makefile.fpc;26:controldemo.pas;17:fpmake.pp;17:src/ABActions.pas;24:ddressBook.pas;23:Globals.pas;23:PeoplePicker.pas;23:Typedefs.pas;22:EDataModel.pas;23:Helpers.pas;23:Interaction.pas;23:Mach.pas;23:Objects.pas;23:PackObject.pas;23:Registry.pas;23:UserTermTypes.pas;22:IFF.pas;22:SDebugging.pas;23:Registry.pas;22:TSFont.pas;24:LayoutTypes.pas;24:Types.pas;24:UnicodeDirectAccess.pas;32:rawing.pas;31:Flattening.pas;32:onts.pas;31:Glyphs.pas;31:Objects.pas;31:Types.pas;22:UComponent.pas;22:VLTree.pas;22:XActionConstants.pas;24:ttributeConstants.pas;23:Constants.pas;23:Errors.pas;23:NotificationConstants.pas;23:RoleConstants.pas;23:TextAttributedString.pas;23:UIElement.pas;23:Value.pas;28:Constants.pas;22:ccessibility.pas;22:liases.pas;22:ppearance.pas;24:leDiskPartitions.pas;26:Events.pas;26:Help.pas;26:Script.pas;22:udioCodecs.pas;28:mponents.pas;26:Hardware.pas;26:OutputUnit.pas;26:UnitCarbonViews.pas;30:Parameters.pas;31:roperties.pas;23:thSession.pas;25:orization.pas;34:DB.pas;34:Plugin.pas;34:Tags.pas;21:BackupCore.pas;21:CFArray.pas;24:ttributedString.pas;23:Bag.pas;25:se.pas;24:inaryHeap.pas;25:tVector.pas;24:undle.pas;24:yteOrders.pas;23:Calendar.pas;24:haracterSet.pas;23:Data.pas;26:e.pas;27:Formatter.pas;24:ictionary.pas;23:Error.pas;23:FTPStream.pas;23:HTTPAuthentication.pas;27:Message.pas;27:Stream.pas;24:ost.pas;23:Locale.pas;23:MachPort.pas;24:essagePort.pas;23:NetDiagnostics.pas;26:Services.pas;26:workErrorss.pas;24:otificationCenter.pas;24:umber.pas;29:Formatter.pas;23:PlugIn.pas;29:COM.pas;24:references.pas;25:opertyList.pas;26:xySupport.pas;23:RunLoop.pas;23:Set.pas;24:ocket.pas;29:Stream.pas;24:tream.pas;26:ing.pas;29:EncodingExt.pas;29:Tokenizer.pas;23:TimeZone.pas;24:ree.pas;23:URL.pas;26:Access.pas;24:UID.pas;24:serNotification.pas;23:XMLNode.pas;26:Parser.pas;22:GAffineTransforms.pas;23:Base.pas;24:itmapContext.pas;23:Color.pas;28:Space.pas;25:ntext.pas;23:DataConsumer.pas;27:Provider.pas;24:irectDisplay.pas;29:Palette.pas;25:splayConfiguration.pas;30:Fades.pas;23:Errors.pas;24:vent.pas;28:Source.pas;28:Types.pas;23:Font.pas;24:unction.pas;23:GLContext.pas;24:eometry.pas;24:radient.pas;23:Image.pas;28:Destination.pas;28:Properties.pas;28:Source.pas;23:LCurrent.pas;24:Device.pas;24:Profiler.pas;32:FunctionEnums.pas;24:Renderers.pas;24:Types.pas;24:ayer.pas;23:PDFArray.pas;26:ContentStream.pas;31:xt.pas;26:Dictionary.pas;27:ocument.pas;26:Object.pas;27:peratorTable.pas;26:Page.pas;26:Scanner.pas;27:tream.pas;29:ing.pas;24:SConverter.pas;24:ath.pas;26:tern.pas;23:RemoteOperation.pas;23:Session.pas;24:hading.pas;23:Window.pas;29:Levels.pas;22:MCalibrator.pas;22:SIdentity.pas;31:Authority.pas;31:Query.pas;22:TFont.pas;27:Collection.pas;27:Descriptor.pas;27:Manager.pas;34:Errors.pas;27:Traits.pas;24:rame.pas;28:setter.pas;23:GlyphInfo.pas;23:Line.pas;23:ParagraphStyle.pas;23:Run.pas;23:StringAttributes.pas;23:TextTab.pas;24:ypesetter.pas;22:VBase.pas;24:uffer.pas;23:DisplayLink.pas;23:HostTime.pas;23:ImageBuffer.pas;23:OpenGLBuffer.pas;35:Pool.pas;29:Texture.pas;36:Cache.pas;23:PixelBuffer.pas;34:Pool.pas;28:FormatDescription.pas;23:Returns.pas;22:arbonEvents.pas;33:Core.pas;22:odeFragments.pas;23:llections.pas;24:orPicker.pas;26:SyncCMM.pas;30:Deprecated.pas;32:vice.pas;30:Profile.pas;30:Transform.pas;23:mponents.pas;23:nditionalMacros.pas;24:trolDefinitions.pas;28:s.pas;23:reAudioTypes.pas;25:Foundation.pas;25:Graphics.pas;25:Text.pas;21:DADisk.pas;23:Session.pas;22:HCPClientPreferences.pas;22:ateTimeUtils.pas;22:ebugging.pas;22:ialogs.pas;23:ctionary.pas;23:gitalHubRegistry.pas;23:splays.pas;22:rag.pas;24:wSprocket.pas;23:iverServices.pas;28:ynchronization.pas;21:Endian.pas;22:vents.pas;21:FSEvents.pas;22:ileTypesAndCreators.pas;25:s.pas;23:nder.pas;27:Registry.pas;23:xMath.pas;22:olders.pas;23:ntPanel.pas;25:Sync.pas;25:s.pas;21:GPCStrings.pas;22:estaltEqu.pas;21:HFSVolumes.pas;22:IAccessibility.pas;24:rchive.pas;23:ButtonViews.pas;23:ClockView.pas;24:omboBox.pas;25:ntainerViews.pas;23:DataBrowser.pas;24:isclosureViews.pas;23:Geometry.pas;23:ImageViews.pas;23:LittleArrows.pas;23:MenuView.pas;24:ovieView.pas;23:Object.pas;23:PopupButton.pas;24:rogressViews.pas;23:RelevanceBar.pas;23:ScrollView.pas;24:earchField.pas;25:gmentedView.pas;25:parator.pas;24:hape.pas;24:lider.pas;23:TabbedView.pas;24:extLengthFilter.pas;27:Utils.pas;27:Views.pas;24:heme.pas;24:oolbar.pas;28:ox.pas;30:Debugging.pas;23:View.pas;23:WindowViews.pas;22:TMLRendering.pas;22:ostTime.pas;21:IBCarbonRuntime.pas;22:CAApplication.pas;24:Camera.pas;24:Device.pas;22:OKitReturn.pas;23:SurfaceAPI.pas;22:conStorage.pas;25:s.pas;26:Core.pas;22:mageCodec.pas;28:mpression.pas;22:nternetConfig.pas;24:lResources.pas;21:KeyEvents.pas;24:boards.pas;24:chainCore.pas;29:HI.pas;21:LSInfo.pas;23:Open.pas;23:Quarantine.pas;23:SharedFileList.pas;22:anguageAnalysis.pas;22:ists.pas;22:owMem.pas;21:MDExternalDatastore.pas;23:Importer.pas;24:tem.pas;23:Lineage.pas;23:Query.pas;23:Schema.pas;22:IDIDriver.pas;25:Services.pas;27:tup.pas;25:ThruConnection.pas;22:acApplication.pas;24:Errors.pas;24:Help.pas;24:Locales.pas;24:Memory.pas;24:OS.pas;26:All.pas;26:XPosix.pas;25:penGL.pas;24:TextEditor.pas;25:ypes.pas;24:Windows.pas;24:hineExceptions.pas;23:th64.pas;22:ediaHandlers.pas;23:nus.pas;22:ixedMode.pas;22:ovies.pas;27:Format.pas;22:ultiProcessingInfo.pas;26:processing.pas;23:sicDevice.pas;21:NSL.pas;24:Core.pas;22:avigation.pas;22:otification.pas;22:umberFormatting.pas;21:OSA.pas;24:Comp.pas;24:Generic.pas;23:Utils.pas;22:bjCRuntime.pas;22:penTransport.pas;34:Protocol.pas;37:viders.pas;21:PEFBinaryFormat.pas;22:LStringFuncs.pas;22:MApplication.pas;34:Deprecated.pas;23:Core.pas;27:Deprecated.pas;23:Definitions.pas;34:Deprecated.pas;23:Errors.pas;23:PrintAETypes.pas;28:SettingsKeys.pas;28:ingDialogExtensions.pas;22:alettes.pas;23:steboard.pas;22:ictUtils.pas;22:ower.pas;22:rocesses.pas;21:QDCMCommon.pas;23:Offscreen.pas;23:PictToCGContext.pas;22:LBase.pas;23:Generator.pas;23:ThumbnailImage.pas;22:TML.pas;23:SMovie.pas;24:treamingComponents.pas;22:uickTimeComponents.pas;30:Errors.pas;30:Music.pas;30:Streaming.pas;30:VR.pas;32:Format.pas;26:draw.pas;30:Text.pas;31:ypes.pas;21:Resources.pas;21:SCDynamicStore.pas;35:CopyDHCPInfos.pas;39:Specific.pas;35:Key.pas;23:Network.pas;30:Configuration.pas;33:nection.pas;30:Reachability.pas;23:Preferences.pas;34:Path.pas;34:SetSpecific.pas;23:SI.pas;24:chemaDefinitions.pas;22:FNTLayoutTypes.pas;25:Types.pas;22:calerStreamTypes.pas;23:rap.pas;24:ipt.pas;22:ecBase.pas;24:Trust.pas;22:ound.pas;22:peechRecognition.pas;27:Synthesis.pas;22:tringCompare.pas;22:ystemConfiguration.pas;27:Sound.pas;21:TSMTE.pas;22:extCommon.pas;25:Edit.pas;26:ncodingConverter.pas;33:Plugin.pas;25:InputSources.pas;25:Services.pas;25:Utils.pas;22:hreads.pas;22:imer.pas;22:oolUtils.pas;22:ranslation.pas;32:Extensions.pas;32:Services.pas;22:ypeSelect.pas;21:URLAccess.pas;22:TCUtils.pas;24:oreTypes.pas;23:Type.pas;22:nicodeConverter.pas;28:Utilities.pas;24:versalAccess.pas;21:Video.pas;21:WSMethodInvocation.pas;23:ProtocolHandler.pas;23:Types.pas;21:cblas.pas;22:ertextensions.pas;22:ssmapple.pas;25:config.pas;25:err.pas;25:krapi.pas;25:type.pas;21:fenv.pas;22:p.pas;21:gliContexts.pas;24:Dispatch.pas;23:uContext.pas;21:kern_return.pas;21:macgl.pas;26:ext.pas;26:u.pas;24:h_error.pas;21:vBLAS.pas;22:DSP.pas;21:x509defs.pas;22:attr.pas;12:xutil/Makefile.fpc;18:fpmake.pp;18:src/unixutils.pp;11:zip/Makefile.fpc;15:fpmake.pp;15:src/unzip51g.pp;24:dll.pp;19:ziptypes.pp;10:sers/Makefile.fpc;15:examples/Makefile.fpc;24:testpass.pp;32:2.pp;28:user.pp;15:fpmake.pp;15:src/crypth.pp;19:grp.pp;19:pwd.pp;19:shadow.pp;19:users.pp;10:tmp/Makefile.fpc;14:examples/Makefile.fpc;23:testutmp.pp;14:fpmake.pp;14:src/utmp.pp;10:uid/Makefile.fpc;14:examples/Makefile.fpc;23:testlibuid.pp;27:uid.pp;14:fpmake.pp;14:src/libuuid.pp;18:macuuid.pp;9:winceunits/Makefile.fpc;20:src/aygshell.pp;24:bt_api.pp;27:sdp.pp;26:hapi.pp;27:util.pp;25:uildwinceunits.pp;24:cesync.pp;25:ommctrl.pp;28:dlg.pp;26:nnmgr.pp;25:pl.pp;24:devload.pp;27:mgmt.pp;24:extapi.pp;24:gpsapi.pp;25:x.pp;24:htmlctrl.pp;24:imm.pp;25:phlpapi.pp;24:keybd.pp;24:mmreg.pp;26:system.pp;25:sacm.pp;26:gqueue.pp;24:nled.pp;25:otify.pp;24:oleauto.pp;24:phone.pp;25:imstore.pp;25:m.pp;25:np.pas;25:ower.pp;25:rojects.pp;24:rapi.pp;28:types.pp;26:s.pp;27:error.pp;25:il.pp;24:service.pp;25:hellapi.pp;25:immgr.pp;26:p.pp;27:api.pp;25:ms.pp;25:toremgr.pas;24:tapi.pp;25:lhelp32.pas;25:odaycmn.pp;25:sp.pp;24:wap.pp;25:indbase.pp;32:_edb.inc;27:inet.pp;28:octl.pp;25:s2bth.pp;12:units-base/Makefile.fpc;23:fpmake.pp;23:src/activex.pp;27:buildwinutilsbase.pp;27:comconst.pp;30:mctrl.pp;31:dlg.pp;30:obj.pp;30:serv.pp;27:dwmapi.pp;27:flatsb.pp;27:htmlhelp.pp;27:imagehlp.pp;29:m.pas;30:_dyn.pas;27:mmsystem.pp;28:ultimon.pp;27:nb30.pp;27:ole2.pp;30:server.pp;27:richedit.pp;27:shellapi.pp;29:folder.pp;29:lobj.pp;27:tmschema.inc;27:uxtheme.pp;27:win9xwsmanager.pp;30:inet.pp;30:spool.pp;30:utils.pp;30:ver.pp;23:tests/OOHelper.pp;31:Test.pp;29:hhex.pp;33:2.pp;29:testcom1.pp;36:2.pp;33:ver.pp;18:jedi/Makefile.fpc;23:fpmake.pp;23:src/ModuleLoader.pas;27:buildjwa.pp;27:jedi.inc;31:apilib.inc;28:waaccctrl.pas;32:lapi.pas;33:ui.pas;32:tiveds.pas;36:x.pas;31:dsdb.pas;33:err.pas;33:hlp.pas;33:nms.pas;33:prop.pas;33:sts.pas;33:tlb.pas;32:tgen.pas;31:f_irda.pas;31:talkwsh.pas;31:uthif.pas;34:z.pas;30:batclass.pas;31:its.pas;34:1_5.pas;34:cfg.pas;34:msg.pas;31:lberr.pas;32:uetoothapis.pas;31:thdef.pas;33:sdpdef.pas;31:ugcodes.pas;30:carderr.pas;31:derr.pas;31:mnquery.pas;31:olordlg.pas;31:pl.pas;33:ext.pas;31:ryptuiapi.pas;30:dbt.pas;31:de.pas;31:hcpcsdk.pas;34:sapi.pas;35:sdk.pas;31:lgs.pas;31:sadmin.pas;32:client.pas;32:getdc.pas;32:kquota.pas;32:query.pas;32:role.pas;32:sec.pas;30:errorrep.pas;31:xcpt.pas;30:faxdev.pas;33:ext.pas;33:mmc.pas;33:route.pas;30:gpedit.pas;30:hherror.pas;31:tmlguid.pas;34:help.pas;30:iaccess.pas;32:dmext.pas;31:cmpapi.pas;31:iscnfg.pas;31:magehlp.pas;33:pi.pas;35:error.pas;32:e.pas;31:oevent.pas;31:pexport.pas;32:hlpapi.pas;32:ifcons.pas;33:nfoid.pas;32:rtrmib.pas;32:types.pas;31:sguids.pas;32:sper16.pas;30:lm.pas;32:access.pas;33:lert.pas;33:pibuf.pas;33:t.pas;33:udit.pas;32:config.pas;35:s.pas;32:dfs.pas;32:err.pas;35:log.pas;32:join.pas;32:msg.pas;32:remutl.pas;34:pl.pas;32:server.pas;33:hare.pas;33:name.pas;33:tats.pas;33:vc.pas;32:use.pas;35:flg.pas;32:wksta.pas;31:oadperf.pas;31:pmapi.pas;30:mciavi.pas;31:prerror.pas;31:si.pas;33:defs.pas;33:query.pas;32:task.pas;33:cpip.pas;32:wsock.pas;30:native.pas;31:b30.pas;31:etsh.pas;31:spapi.pas;31:tddpar.pas;33:sapi.pas;34:bcli.pas;35:msg.pas;32:ldap.pas;32:query.pas;32:secapi.pas;33:tatus.pas;30:objsel.pas;30:patchapi.pas;35:wiz.pas;31:bt.pas;31:dh.pas;33:msg.pas;31:owrprof.pas;31:rofinfo.pas;33:tocol.pas;32:sht.pas;31:sapi.pas;30:qos.pas;33:name.pas;33:pol.pas;33:sp.pas;30:reason.pas;32:gstr.pas;31:pc.pas;33:async.pas;33:dce.pas;33:nsi.pas;34:terr.pas;33:ssl.pas;30:scesvc.pas;32:hedule.pas;34:madef.pas;31:ddl.pas;31:ecext.pas;33:urity.pas;32:ns.pas;34:api.pas;34:evts.pas;31:fc.pas;31:hlguid.pas;31:isbkup.pas;31:nmp.pas;31:porder.pas;31:rrestoreptapi.pas;31:spi.pas;31:ubauth.pas;31:vcguid.pas;30:tlhelp32.pas;31:mschema.pas;31:raffic.pas;30:userenv.pas;31:xtheme.pas;30:vista.pas;30:wbemcli.pas;31:inable.pas;33:base.pas;34:er.pas;33:con.pas;34:pl.pas;34:red.pas;35:ypt.pas;33:dllnames.pas;34:ns.pas;34:ows.pas;33:efs.pas;34:rror.pas;33:fax.pas;33:gdi.pas;33:ioctl.pas;33:ldap.pas;33:netwk.pas;34:ls.pas;34:t.pas;33:perf.pas;33:reg.pas;35:src.pas;33:safer.pas;34:ock.pas;37:2.pas;34:ta.pas;34:vc.pas;33:ternl.pas;34:ype.pas;33:user.pas;33:ver.pas;33:wlx.pas;31:mistr.pas;31:ownt16.pas;35:32.pas;31:papi.pas;35:msg.pas;32:crsmsg.pas;32:ftpmsg.pas;32:pstmsg.pas;32:spihlp.pas;32:types.pas;32:wizmsg.pas;31:s2atm.pas;33:bth.pas;33:dnet.pas;33:spi.pas;33:tcpip.pas;32:hisotp.pas;32:ipx.pas;32:netbs.pas;33:wlink.pas;32:rm.pas;32:vns.pas;31:tsapi32.pas;30:zmouse.pas;9:x11/Makefile.fpc;13:fpmake.pp;13:src/cursorfont.pp;17:keysym.pp;17:randr.inc;17:x.pp;18:atom.pp;18:cms.pp;18:f86dga.pp;24:1.inc;21:vmode.pp;18:i.pp;19:nerama.pp;18:kb.pp;20:lib.pp;18:lib.pp;18:randr.pp;19:ender.pp;20:source.pp;18:shm.pp;18:util.pp;18:v.pp;19:lib.pp;10:forms/Makefile.fpc;16:examples/Makefile.fpc;25:arrowbutton.pp;25:borderwidth.pp;27:xtype.pp;26:rowserall.pp;32:op.pp;26:uttonall.pp;29:types.pp;25:canvas.pp;26:hartall.pp;30:strip.pp;27:oice.pp;26:olbrowser.pp;28:sel.pp;31:1.pp;27:unter.pp;26:ursor.pp;25:fbrowse.pp;32:1.pp;26:dial.pp;26:lclock.pp;26:onts.pp;26:ree1.pp;25:goodies.pp;26:roup.pp;25:iconify.pp;26:nputall.pp;27:vslider.pp;25:lalign.pp;26:dial.pp;26:l.pp;26:onglabel.pp;25:menu.pp;26:input.pp;26:ultilabel.pp;25:ndial.pp;26:ewbutton.pp;25:objinactive.pp;28:pos.pp;28:return.pp;25:positioner.pp;26:up.pp;27:shbutton.pp;29:me.pp;25:secretinput.pp;26:liderall.pp;25:touchbutton.pp;25:xyplotover.pp;25:yesno.pp;16:fpmake.pp;16:src/cursorfont.inc;20:fd2pascal.pp;20:xforms.pp;9:zlib/Makefile.fpc;14:fpmake.pp;14:src/zlib.pp;10:orba/Makefile.fpc;15:fpmake.pp;15:src/xqc.pas;22:_error.inc;23:static_context_consts.inc;19:zorba.inc;25:pas;24:_options.inc;24:dyn.pas;0:rtl/Makefile.fpc;4:amiga/Makefile.fpc;10:classes.pp;11:rt.pp;10:dos.pp;13:libd.inc;10:m68k/doslibf.inc;15:execd.inc;19:f.inc;15:utild1.inc;20:2.inc;19:f.inc;10:powerpc/doslibf.inc;18:execd.inc;22:f.inc;18:utild1.inc;23:2.inc;22:f.inc;11:rinter.pp;10:sysdir.inc;13:file.inc;13:heap.inc;13:os.inc;15:h.inc;13:tem.pp;13:utils.pp;10:timerd.inc;11:thread.inc;10:varutils.pp;5:rm/arm.inc;8:divide.inc;8:int64p.inc;8:math.inc;12:u.inc;13:h.inc;8:set.inc;11:jump.inc;15:h.inc;9:trings.inc;15:s.inc;8:thumb2.inc;5:tari/os.inc;10:sysatari.pas;13:tem.pas;5:vr/avr.inc;8:int64p.inc;8:math.inc;8:set.inc;11:jump.inc;15:h.inc;4:beos/Makefile.fpc;9:baseunix.pp;10:ethreads.pp;9:classes.pp;9:errno.inc;14:str.inc;9:i386/sighnd.inc;9:osdefs.inc;11:macro.inc;11:sysc.inc;11:types.inc;9:ptypes.inc;9:settimeo.inc;10:ignal.inc;10:uuid.inc;10:yscall.inc;16:h.inc;13:onst.inc;12:heap.inc;12:nr.inc;12:os.inc;14:h.inc;12:tem.pp;9:termio.pp;15:s.inc;16:proc.inc;10:thread.inc;9:unixsock.inc;11:xconst.inc;12:func.inc;12:sockh.inc;5:sd/bsd.pas;9:unxfunch.inc;12:sysc.inc;8:clocale.inc;8:i386/syscall.inc;20:h.inc;9:pcbsd.inc;8:osdefs.inc;10:macro.inc;12:in.inc;10:sysc.inc;10:types.inc;8:powerpc/syscall.inc;23:h.inc;8:suuid.inc;9:ysctl.pp;11:os.inc;13:h.inc;11:tem.pp;8:unxsysch.inc;8:x86_64/syscall.inc;22:h.inc;4:darwin/Makefile.fpc;11:arm/sighnd.inc;11:console.pp;11:errno.inc;16:str.inc;12:xtres_multiarch.inc;11:i386/sig_cpu.inc;19:hnd.inc;11:pmutext.inc;12:owerpc/sig_cpu.inc;22:hnd.inc;18:64/sig_cpu.inc;24:hnd.inc;12:pcgen/ppchnd.inc;18:sig_ppc.inc;12:thread.inc;13:ypes.inc;11:signal.inc;12:ysctlh.inc;11:termio.pp;17:s.inc;18:proc.inc;11:unxconst.inc;14:func.inc;14:sockh.inc;11:x86/sig_x86.inc;15:x86hnd.inc;14:_64/sig_cpu.inc;21:hnd.inc;4:embedded/Makefile.fpc;13:arm/at91sam7x256.pp;17:lpc21x4.pp;17:stellaris.pp;19:m32f103.pp;14:vr/atmega128.pp;17:start.inc;13:check.inc;13:sysdir.inc;16:file.inc;16:heap.inc;16:os.inc;18:h.inc;16:tem.pp;6:x/Makefile.fpc;8:crt.pas;8:dos.pas;8:emx.pas;8:ports.pas;8:sysdir.inc;11:emx.pas;11:file.inc;11:heap.inc;11:os.inc;13:h.inc;11:tem.pas;12:hrd.inc;11:utils.pp;4:fpmake.inc;11:pp;5:reebsd/Makefile.fpc;12:buildrtl.pp;12:console.pp;12:errno.inc;17:str.inc;12:freebsd.pas;12:i386/bsyscall.inc;17:si_crt.inc;20:prc.inc;19:ghnd.inc;17:x86.inc;20:h.inc;12:pmutext.inc;13:thread.inc;14:ypes.inc;12:si_crt.pp;15:intf.inc;14:gnal.inc;13:ysctlh.inc;15:nr.inc;12:termio.pp;18:s.inc;19:proc.inc;12:ucontexth.inc;13:nixsock.inc;14:xconst.inc;15:func.inc;15:sockh.inc;16:ysc.inc;12:x86_64/bsyscall.inc;19:si_c.inc;21:ghnd.inc;4:gba/Makefile.fpc;8:classes.pp;8:dos.pp;8:gbabios.inc;15:h.inc;8:libc.inc;12:h.inc;8:sysdir.inc;11:file.inc;11:heap.inc;11:os.inc;13:h.inc;11:tem.pp;12:hrd.inc;11:utils.pp;8:tthread.inc;8:varutils.pp;5:o32v2/Makefile.fpc;11:classes.pp;12:rt.pp;11:dos.pp;12:pmi.inc;15:excp.pp;12:xeload.pp;14:type.pp;11:emu387.pp;11:go32.pp;11:initc.pp;11:keyboard.pp;11:mouse.pp;12:smouse.pp;11:ports.pp;12:rinter.pp;13:ofile.pp;11:sysdir.inc;14:file.inc;14:heap.inc;14:os.inc;16:h.inc;14:tem.pp;14:utils.pp;11:tthread.inc;11:varutils.pp;12:esamode.pp;12:ideo.pp;4:haiku/Makefile.fpc;10:baseunix.pp;11:ethreads.pp;10:classes.pp;10:errno.inc;15:str.inc;10:i386/sighnd.inc;10:osdefs.inc;12:macro.inc;12:sysc.inc;12:types.inc;10:pthread.inc;12:ypes.inc;10:settimeo.inc;11:ignal.inc;11:uuid.inc;11:yscall.inc;17:h.inc;14:onst.inc;13:heap.inc;13:nr.inc;13:os.inc;15:h.inc;13:tem.pp;10:termio.pp;16:s.inc;17:proc.inc;10:unixsock.inc;12:xconst.inc;13:func.inc;13:sockh.inc;4:i386/cpu.pp;9:fastmove.inc;9:i386.inc;10:nt64p.inc;9:math.inc;13:u.inc;14:h.inc;10:mx.pp;9:set.inc;12:jump.inc;16:h.inc;10:trings.inc;16:s.inc;12:pas.inc;5:nc/aliases.inc;9:strings.inc;8:cgeneric.inc;12:math.inc;12:str.inc;9:harset.pp;9:mem.pp;9:ompproc.inc;9:rt.inc;11:h.inc;9:types.pp;9:urrh.inc;8:dos.inc;11:h.inc;9:ynarr.inc;14:h.inc;11:libs.pas;8:except.inc;10:einfo.pp;10:tres.inc;8:fexpand.inc;9:ile.inc;12:rec.inc;9:pextres.pp;10:intres.pp;8:gencurr.inc;11:eric.inc;11:math.inc;11:set.inc;12:tr.inc;14:s.inc;10:topts.pp;8:heap.inc;12:h.inc;12:trc.pp;8:innr.inc;10:t64.inc;11:res.inc;9:so7185.pp;8:keyboard.inc;12:rdh.inc;11:scan.inc;8:lineinfo.pp;9:nfodwrf.pp;9:strings.pp;8:macpas.pp;10:kefile.inc;10:thh.inc;11:rix.pp;9:matimp.inc;9:ouse.inc;13:h.inc;9:vecimp.inc;8:objc.pp;12:1.inc;12:base.pp;12:nf.inc;11:ects.pp;11:pas.inc;14:h.inc;8:pagemem.pp;9:rinter.inc;15:h.inc;8:real2str.inc;10:sh.inc;9:tti.inc;8:sockets.inc;15:h.inc;12:ovl.inc;10:ftfpu.pp;9:strings.inc;9:tdsock.inc;10:rings.pp;15:i.inc;9:ysres.inc;11:tem.inc;14:h.inc;8:text.inc;12:rec.inc;9:hread.inc;14:h.inc;14:vr.inc;9:ypefile.inc;8:ucomplex.pp;9:float128.pp;9:stringh.inc;15:s.inc;8:varerror.inc;11:iant.inc;15:h.inc;15:s.pp;9:ideo.inc;13:h.inc;8:wstringh.inc;15:s.inc;9:ustrings.inc;4:linux/Makefile.fpc;10:arm/bsyscall.inc;14:sighnd.inc;20:h.inc;15:tat.inc;15:yscall.inc;21:h.inc;17:nr.inc;10:buildrtl.pp;12:nxsysc.inc;10:errno.inc;15:str.inc;10:fpcylix.pp;12:make.inc;10:gpm.pp;10:i386/bsyscall.inc;15:si_c.inc;19:21.inc;21:g.inc;18:dll.inc;18:g.inc;18:prc.inc;18:uc.inc;17:ghnd.inc;21:h.inc;16:tat.inc;16:yscall.inc;22:h.inc;18:nr.inc;11:pccall.inc;13:sys.inc;10:linux.pp;15:vcs.pp;10:m68k/bsyscall.inc;15:sighnd.inc;21:h.inc;16:tat.inc;16:yscall.inc;22:h.inc;18:nr.inc;11:ips/bsyscall.inc;15:sighnd.inc;21:h.inc;16:tat.inc;16:yscall.inc;22:h.inc;18:nr.inc;10:oldlinux.pp;11:sdefs.inc;12:macro.inc;12:sysc.inc;12:types.inc;10:powerpc/bsyscall.inc;18:sighnd.inc;24:h.inc;19:tat.inc;19:yscall.inc;25:h.inc;21:nr.inc;17:64/bsyscall.inc;20:sighnd.inc;26:h.inc;21:tat.inc;21:yscall.inc;27:h.inc;23:nr.inc;11:thread.inc;12:ypes.inc;10:si_c.pp;14:21.pp;16:g.pp;13:dll.pp;13:g.pp;13:intf.inc;13:prc.pp;13:uc.pp;12:gnal.inc;11:parc/bsyscall.inc;16:sighnd.inc;22:h.inc;17:tat.inc;17:yscall.inc;23:h.inc;19:nr.inc;11:uuid.inc;11:ysos.inc;15:h.inc;13:tem.pp;10:termio.pp;16:s.inc;17:proc.inc;10:unixsock.inc;18:ets.inc;21:h.inc;12:xconst.inc;13:func.inc;13:sockh.inc;14:ysc.inc;17:h.inc;10:x86_64/bsyscall.inc;17:si_c.inc;20:prc.inc;19:ghnd.inc;23:h.inc;18:tat.inc;18:yscall.inc;24:h.inc;20:nr.inc;4:m68k/int64p.inc;9:lowmath.inc;9:m68k.inc;10:ath.inc;9:set.inc;12:jump.inc;16:h.inc;10:trings.inc;16:s.inc;5:acos/Makefile.fpc;10:dos.pp;10:macos.pp;15:tp.inc;18:pp;13:utils.inc;19:pp;10:sysdir.inc;13:file.inc;13:heap.inc;13:os.inc;15:h.inc;13:tem.pp;13:utils.pp;5:ips/int64p.inc;9:math.inc;10:ipsel.inc;9:set.inc;12:jump.inc;16:h.inc;10:trings.inc;16:s.inc;5:orphos/Makefile.fpc;12:aboxlib.pas;13:hi.pas;13:sl.pas;12:classes.pp;14:ipboard.pas;12:datatypes.pas;13:os.pp;15:lib.pp;18:d.inc;18:f.inc;12:emuld.inc;13:xec.pp;16:d.inc;16:f.inc;12:get9.pas;13:raphics.pas;12:hardware.pas;12:inputevent.pas;14:tuition.pas;12:keyboard.pp;15:map.pas;13:vm.pp;12:layers.pas;12:mouse.pp;13:ui.pas;15:helper.pas;12:sockets.pp;13:ysdir.inc;15:file.inc;15:heap.inc;15:os.inc;17:h.inc;15:tem.pp;15:utils.pp;12:timer.pp;17:d.inc;17:f.inc;14:nygl.pp;13:thread.inc;12:utild1.inc;17:2.inc;16:f.inc;16:ity.pp;12:varutils.pp;13:ideo.pp;17:data.inc;4:nativent/Makefile.fpc;13:buildrtl.pp;13:classes.pp;13:ddk.pas;16:/ddkex.inc;20:types.inc;13:ndk.pas;16:/iofuncs.inc;19:types.inc;17:ketypes.inc;17:ntdef.inc;19:status.inc;17:obfuncs.inc;17:peb_teb.inc;18:stypes.inc;17:rtlfuncs.inc;20:types.inc;17:umtypes.inc;17:winnt.inc;16:utils.pas;13:sysdir.inc;16:file.inc;16:heap.inc;16:os.inc;18:h.inc;16:tem.pp;17:hrd.inc;16:utils.pp;13:tthread.inc;13:varutils.pp;5:ds/Makefile.fpc;8:classes.pp;8:dos.pp;8:libc.inc;12:h.inc;8:nds.inc;11:bios.inc;15:h.inc;11:h.inc;8:sysdir.inc;11:file.inc;11:heap.inc;11:os.inc;13:h.inc;11:tem.pp;12:hrd.inc;11:utils.pp;8:tthread.inc;8:varutils.pp;5:etbsd/Makefile.fpc;11:errno.inc;16:str.inc;11:i386/bsyscall.inc;16:sighnd.inc;11:pmutext.inc;12:owerpc/bsyscall.inc;19:sighnd.inc;12:types.inc;11:signal.inc;12:yscalls.inc;15:onst.inc;15:tlh.inc;14:nr.inc;14:offt.inc;14:types.inc;11:termio.pp;17:s.inc;18:proc.inc;11:unixsock.inc;13:xconst.inc;14:func.inc;14:sockh.inc;15:ysc.inc;7:ware/Makefile.fpc;12:aio.pp;12:classes.pp;13:rt.pp;12:demos/check.pp;13:os.pp;13:ynlibs.inc;12:errno.inc;12:initc.pp;12:keyboard.pp;12:mouse.pp;12:netware.pp;16:sockh.inc;13:packoff.inc;18:n.inc;13:wcalls.pp;14:nit.pp;14:pre.pp;16:ot.pp;14:serv.pp;15:nut.pp;15:ock.inc;15:ys.inc;12:qos.inc;12:sockets.pp;13:ysdir.inc;15:file.inc;15:heap.inc;15:os.inc;17:h.inc;15:tem.pp;16:hrd.inc;15:utils.pp;12:tests/test.pas;13:thread.inc;12:varutils.pp;13:ideo.pp;12:winsock.pp;8:libc/Makefile.fpc;13:classes.pp;14:rt.pp;13:dos.pp;14:ynlibs.inc;13:errno.inc;13:initc.pp;13:keyboard.pp;13:libc.pp;13:mouse.pp;13:netwsockh.inc;14:wsnut.pp;13:qos.inc;13:sockets.pp;14:ysdir.inc;16:file.inc;16:heap.inc;16:os.inc;18:h.inc;16:tem.pp;17:hrd.inc;16:utils.pp;13:tthread.inc;13:varutils.pp;14:ideo.pp;13:winsock.pp;4:objpas/classes/action.inc;19:bits.inc;19:classes.inc;26:h.inc;20:ollect.inc;21:mpon.inc;21:nstsg.inc;25:s.inc;20:regist.inc;19:dm.inc;19:filer.inc;19:intf.inc;19:lists.inc;19:parser.inc;20:ersist.inc;19:reader.inc;21:sref.inc;19:sllist.inc;20:treams.inc;22:ingl.inc;19:twriter.inc;19:util.inc;19:writer.inc;12:onvutil.inc;20:pp;19:s.pp;12:varutil.inc;11:dateutil.inc;20:pp;19:s.pp;11:fgl.pp;12:mtbcd.pp;12:reebidi.pp;11:math.pp;11:objpas.pp;11:rtlconst.inc;20:pp;19:s.pp;11:stdconvs.pp;13:rutils.pp;12:ysconst.pp;14:utils/dati.inc;24:h.inc;21:iskh.inc;20:filutilh.inc;22:na.inc;24:h.inc;20:intfh.inc;20:osutil.inc;26:sh.inc;20:stre.inc;23:g.inc;21:ysansi.inc;27:h.inc;23:formt.inc;23:int.inc;26:h.inc;23:pch.inc;26:h.inc;23:str.inc;26:h.inc;23:thrdh.inc;23:uintf.inc;24:ni.inc;26:h.inc;24:thrd.inc;25:ilh.inc;27:s.inc;23:wide.inc;27:h.inc;11:types.pp;14:info.pp;11:utf8bidi.pp;11:varutilh.inc;18:s.inc;5:penbsd/Makefile.fpc;12:classes.pp;12:errno.inc;17:str.inc;12:i386/sighnd.inc;12:pmutext.inc;13:types.inc;12:signal.inc;13:yscalls.inc;16:onst.inc;16:tlh.inc;15:nr.inc;15:offt.inc;15:types.inc;12:termio.pp;18:s.inc;19:proc.inc;12:unixsock.inc;17:ysc.inc;14:xsockh.inc;5:s2/Makefile.fpc;8:classes.pp;9:rt.pas;8:dos.pas;11:calls.pas;9:ynlibs.inc;8:exe.pas;8:kbdcalls.pas;9:eyboard.pp;8:moncalls.pas;10:ucalls.pas;11:se.pp;8:newexe.pas;8:os2def.pas;8:pmbidi.pas;12:tmap.pas;10:dev.pas;10:gpi.pas;10:help.pas;10:shl.pas;11:pl.pas;11:tddlg.pas;10:win.pas;11:p.pas;11:sock.pas;9:orts.pas;9:rinter.pas;8:so32dll.pas;10:ckets.pas;9:ysdir.inc;11:file.inc;11:heap.inc;11:os.inc;13:2.pas;13:h.inc;11:tem.pas;12:hrd.inc;11:utils.pp;8:tests/atx.pas;14:basicpm.pas;14:calc_e.pas;14:generic.pas;16:tctry.pas;14:heapsize.pas;16:lloos2.pas;14:modeinfo.pas;14:o2rtlb1.pas;14:pmdemo1.pp;14:testkbd.pas;9:thread.inc;8:varutils.pp;9:ideo.pp;10:ocalls.pas;8:winsock.pas;4:palmos/Makefile.fpc;11:api/common.inc;22:pp;15:font.inc;19:sel.inc;15:init.inc;15:rect.inc;15:sysall.pp;18:traps.inc;24:pp;15:ui.pp;11:os.inc;11:pilot.pp;11:syspalm.pp;14:tem.pp;15:raps.pp;5:owerpc/int64p.inc;12:math.inc;16:u.inc;17:h.inc;12:powerpc.inc;12:set.inc;15:jump.inc;19:h.inc;13:trings.inc;19:s.inc;15:len.inc;15:pas.inc;11:64/int64p.inc;14:math.inc;18:u.inc;19:h.inc;14:powerpc64.inc;14:set.inc;17:jump.inc;21:h.inc;15:trings.inc;21:s.inc;17:len.inc;17:pas.inc;4:qnx/Makefile.fpc;8:dos.inc;8:errno.inc;8:osposix.inc;15:h.inc;8:posix.pp;8:qnx.inc;8:signal.inc;9:ystem.pp;4:solaris/Makefile.fpc;12:clocale.inc;12:errno.inc;17:str.inc;12:i386/sighnd.inc;23:h.inc;18:tart.inc;12:osdefs.inc;14:macro.inc;14:types.inc;12:pthread.inc;14:ypes.inc;12:signal.inc;13:parc/sighnd.inc;24:h.inc;19:tart.inc;13:uuid.inc;13:ysos.inc;17:h.inc;15:tem.pp;12:termio.pp;18:s.inc;19:proc.inc;12:unxconst.inc;15:func.inc;15:sockh.inc;12:x86_64/sighnd.inc;25:h.inc;20:tart.inc;5:parc/int64p.inc;10:math.inc;14:u.inc;15:h.inc;10:set.inc;13:jump.inc;17:h.inc;11:parc.inc;11:trings.inc;17:s.inc;5:ymbian/Makefile.fpc;12:buildrtl.pp;12:symbian.pas;19:inc/e32def.inc;26:err.inc;26:std.inc;14:sdir.inc;15:file.inc;15:heap.inc;15:os.inc;17:h.inc;15:tem.pp;12:uiq.pas;15:classes.pas;15:inc/qikapplication.inc;33:oo.inc;4:unix/aliasctp.inc;14:ptp.inc;9:baseunix.pp;10:unxh.inc;13:ovl.inc;16:h.inc;9:classes.pp;11:ocale.pp;10:onvert.inc;10:rt.pp;10:threads.pp;11:ypes.inc;10:wstring.pp;9:dl.pp;10:os.pp;10:ynlibs.inc;9:errors.pp;9:fpmake.inc;9:genfdset.inc;13:unch.inc;16:s.inc;12:sigset.inc;9:initc.pp;10:pc.pp;12:cdecl.inc;9:keyboard.pp;9:mouse.pp;9:oscdecl.inc;16:h.inc;9:ports.pp;10:rinter.pp;9:serial.pp;11:ttimeo.inc;10:ockets.pp;10:yscall.pp;12:dir.inc;12:file.inc;12:heap.inc;12:unixh.inc;13:tils.pp;9:terminfo.pp;14:osh.inc;10:imezone.inc;10:thread.inc;11:yname.inc;9:unix.pp;13:sockets.pas;13:type.pp;13:util.pp;11:xdeclh.inc;12:ovl.inc;15:h.inc;9:varutils.pp;10:ideo.pp;9:x86.pp;4:watcom/Makefile.fpc;11:classes.pp;12:rt.pp;11:dos.pp;11:sysdir.inc;14:file.inc;14:heap.inc;14:os.inc;16:h.inc;14:tem.pp;14:utils.pp;11:varutils.pp;11:watcom.pp;5:ii/Makefile.fpc;8:classes.pp;8:dos.pp;8:libc.inc;12:h.inc;8:sysdir.inc;11:file.inc;11:heap.inc;11:os.inc;13:h.inc;11:tem.pp;12:hrd.inc;11:utils.pp;8:tthread.inc;8:varutils.pp;8:wii.inc;11:h.inc;6:n/crt.pp;8:dos.pp;9:ynlibs.inc;8:fpcmemdll.pp;10:winsockh.inc;8:keyboard.pp;8:messages.pp;9:ouse.pp;8:printer.pp;8:sharemem.pp;9:ockets.pp;9:ysdir.inc;11:file.inc;11:heap.inc;11:os.inc;13:h.inc;11:thrd.inc;11:utils.pp;11:win.inc;8:tthread.inc;8:varutils.pp;9:ideo.pp;8:windirs.pp;11:event.pp;11:inc/ascdef.inc;18:fun.inc;15:base.inc;15:defines.inc;15:errors.inc;15:func.inc;15:makefile.inc;16:essages.inc;15:redef.inc;15:struct.inc;15:unidef.inc;18:fun.inc;11:res.inc;11:sock.pp;15:2.pp;7:32/Makefile.fpc;10:buildrtl.pp;10:classes.pp;10:initc.pp;10:objinc.inc;10:signals.pp;11:ysinit.inc;17:cyg.pp;17:gprof.pp;17:pas.pp;13:tem.pp;10:windows.pp;13:sysut.pp;7:64/Makefile.fpc;10:buildrtl.pp;10:classes.pp;10:signals.pp;11:ystem.pp;10:windows.pp;7:ce/Makefile.fpc;10:classes.pp;10:dos.pp;11:ynlibs.inc;10:messages.pp;10:system.pp;13:utils.pp;10:varutils.pp;10:windows.pp;13:inc/base.inc;17:cemiss.inc;18:oredll.inc;17:defines.inc;17:errors.inc;17:makefile.inc;18:essages.inc;17:redef.inc;17:struct.inc;13:res.inc;13:sock.pp;17:2.pp;4:x86_64/cpu.pp;11:int64p.inc;11:math.inc;15:u.inc;16:h.inc;11:set.inc;14:jump.inc;18:h.inc;12:trings.inc;18:s.inc;14:len.inc;11:x86_64.inc"/> + </FPCSources> +</CONFIG> diff --git a/mop/template/.lazarus/helpoptions.xml b/mop/template/.lazarus/helpoptions.xml new file mode 100644 index 0000000..61b8a3d --- /dev/null +++ b/mop/template/.lazarus/helpoptions.xml @@ -0,0 +1,14 @@ +<?xml version="1.0"?> +<CONFIG> + <HelpOptions> + <Version Value="1"/> + </HelpOptions> + <Databases> + <RTLUnits> + <BaseURL Value=""/> + </RTLUnits> + <FCLUnits> + <BaseURL Value=""/> + </FCLUnits> + </Databases> +</CONFIG> diff --git a/mop/template/.lazarus/includelinks.xml b/mop/template/.lazarus/includelinks.xml new file mode 100644 index 0000000..cb0f019 --- /dev/null +++ b/mop/template/.lazarus/includelinks.xml @@ -0,0 +1,75 @@ +<?xml version="1.0"?> +<CONFIG> + <IncludeLinks Version="2" ExpirationTimeInDays="365" Data="20130317 +0:/usr/share/fpcsrc/2.6.0/rtl/i386/setjumph.inc +28:linux/system.pp;0 +28:inc/compproc.inc +28:linux/system.pp;0 +28:inc/currh.inc +28:linux/system.pp;0 +28:inc/dynarrh.inc +28:linux/system.pp;0 +28:inc/filerec.inc +28:unix/sysutils.pp;0 +28:inc/heaph.inc +28:linux/system.pp;0 +28:inc/innr.inc +28:linux/system.pp;0 +28:inc/mathh.inc +28:linux/system.pp;0 +28:inc/objpash.inc +28:linux/system.pp;0 +28:inc/resh.inc +28:linux/system.pp;0 +28:inc/systemh.inc +28:linux/system.pp;0 +28:inc/textrec.inc +28:unix/sysutils.pp;0 +28:inc/threadh.inc +28:linux/system.pp;0 +28:inc/ustringh.inc +28:linux/system.pp;0 +28:inc/varianth.inc +28:linux/system.pp;0 +34:osdefs.inc +34:system.pp;0 +37:osh.inc +37:tem.pp;0 +28:objpas/classes/classesh.inc +28:unix/classes.pp;0 +28:objpas/rtlconst.inc +43:s.pp;0 +35:sysutils/datih.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/diskh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/filutilh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/finah.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/intfh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/osutilsh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/sysansih.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/sysinth.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/syspchh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/sysstrh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/systhrdh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/sysunih.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/sysutilh.inc +28:unix/sysutils.pp;0 +28:objpas/sysutils/syswideh.inc +28:unix/sysutils.pp;0 +37:nixh.inc +28:linux/system.pp;0 +11:lazarus/1.0.6/lcl/include/lcl_defines.inc +29:lclproc.pas;0 +"/> +</CONFIG> diff --git a/mop/template/.lazarus/inputhistory.xml b/mop/template/.lazarus/inputhistory.xml new file mode 100644 index 0000000..dbc25d2 --- /dev/null +++ b/mop/template/.lazarus/inputhistory.xml @@ -0,0 +1,6 @@ +<?xml version="1.0"?> +<CONFIG> + <InputHistory> + <Version Value="1"/> + </InputHistory> +</CONFIG> diff --git a/mop/template/.lazarus/jcfsettings.cfg b/mop/template/.lazarus/jcfsettings.cfg new file mode 100644 index 0000000..e95c516 --- /dev/null +++ b/mop/template/.lazarus/jcfsettings.cfg @@ -0,0 +1,184 @@ +<?xml version="1.0" ?> +<JediCodeFormatSettings> + <WriteVersion> 2.44 </WriteVersion> + <WriteDateTime> 41350.6186759491 </WriteDateTime> + <Description> format settings for use with Lazarus </Description> + <Obfuscate> + <Enabled> False </Enabled> + <Caps> 1 </Caps> + <RemoveComments> True </RemoveComments> + <RemoveWhiteSpace> True </RemoveWhiteSpace> + <RemoveIndent> True </RemoveIndent> + <RebreakLines> True </RebreakLines> + </Obfuscate> + <Clarify> + <OnceOffs> 0 </OnceOffs> + <Warnings> True </Warnings> + <WarnUnusedParams> False </WarnUnusedParams> + <IgnoreUnusedParams> Sender </IgnoreUnusedParams> + <FileExtensions> dpr,lpr,pas,pp </FileExtensions> + </Clarify> + <Indent> + <IndentationSpaces> 2 </IndentationSpaces> + <FirstLevelIndent> 0 </FirstLevelIndent> + <HasFirstLevelIndent> False </HasFirstLevelIndent> + <IndentBeginEnd> False </IndentBeginEnd> + <IndentbeginEndSpaces> 2 </IndentbeginEndSpaces> + <IndentLibraryProcs> True </IndentLibraryProcs> + <IndentProcedureBody> False </IndentProcedureBody> + <KeepCommentsWithCodeInGlobals> True </KeepCommentsWithCodeInGlobals> + <KeepCommentsWithCodeInProcs> True </KeepCommentsWithCodeInProcs> + <KeepCommentsWithCodeInClassDef> True </KeepCommentsWithCodeInClassDef> + <KeepCommentsWithCodeElsewhere> True </KeepCommentsWithCodeElsewhere> + <IndentElse> False </IndentElse> + <IndentCaseElse> True </IndentCaseElse> + <IndentNestedTypes> False </IndentNestedTypes> + <IndentVarAndConstInClass> False </IndentVarAndConstInClass> + </Indent> + <Spaces> + <TabsToSpaces> True </TabsToSpaces> + <SpacesToTabs> False </SpacesToTabs> + <SpacesPerTab> 2 </SpacesPerTab> + <SpacesForTab> 2 </SpacesForTab> + <FixSpacing> True </FixSpacing> + <SpaceBeforeClassHeritage> False </SpaceBeforeClassHeritage> + <SpacesBeforeColonVar> 0 </SpacesBeforeColonVar> + <SpacesBeforeColonConst> 0 </SpacesBeforeColonConst> + <SpacesBeforeColonParam> 0 </SpacesBeforeColonParam> + <SpacesBeforeColonFn> 0 </SpacesBeforeColonFn> + <SpacesBeforeColonClassVar> 0 </SpacesBeforeColonClassVar> + <SpacesBeforeColonRecordField> 0 </SpacesBeforeColonRecordField> + <SpacesBeforeColonCaseLabel> 0 </SpacesBeforeColonCaseLabel> + <SpacesBeforeColonLabel> 0 </SpacesBeforeColonLabel> + <SpacesBeforeColonInGeneric> 0 </SpacesBeforeColonInGeneric> + <MaxSpacesInCode> 2 </MaxSpacesInCode> + <UseMaxSpacesInCode> True </UseMaxSpacesInCode> + <SpaceForOperator> 0 </SpaceForOperator> + <SpaceBeforeOpenBracketsInFunctionDeclaration> False </SpaceBeforeOpenBracketsInFunctionDeclaration> + <SpaceBeforeOpenBracketsInFunctionCall> False </SpaceBeforeOpenBracketsInFunctionCall> + <SpaceBeforeOpenSquareBracketsInExpression> False </SpaceBeforeOpenSquareBracketsInExpression> + <SpaceAfterOpenBrackets> False </SpaceAfterOpenBrackets> + <SpaceBeforeCloseBrackets> False </SpaceBeforeCloseBrackets> + <MoveSpaceToBeforeColon> False </MoveSpaceToBeforeColon> + </Spaces> + <Returns> + <WhenRebreakLines> 2 </WhenRebreakLines> + <MaxLineLength> 90 </MaxLineLength> + <NumReturnsAfterFinalEnd> 1 </NumReturnsAfterFinalEnd> + <RemoveBadReturns> True </RemoveBadReturns> + <AddGoodReturns> True </AddGoodReturns> + <UsesOnePerLine> False </UsesOnePerLine> + <BreakAfterUses> False </BreakAfterUses> + <RemoveExpressionReturns> True </RemoveExpressionReturns> + <RemoveVarReturns> True </RemoveVarReturns> + <NoReturnsInProperty> True </NoReturnsInProperty> + <RemoveProcedureDefReturns> True </RemoveProcedureDefReturns> + <RemoveReturns> True </RemoveReturns> + <RemoveVarBlankLines> True </RemoveVarBlankLines> + <RemoveProcHeaderBlankLines> True </RemoveProcHeaderBlankLines> + <Block> 1 </Block> + <BlockBegin> 0 </BlockBegin> + <Label> 1 </Label> + <LabelBegin> 1 </LabelBegin> + <CaseLabel> 1 </CaseLabel> + <CaseBegin> 1 </CaseBegin> + <CaseElse> 0 </CaseElse> + <CaseElseBegin> 0 </CaseElseBegin> + <EndElse> 0 </EndElse> + <ElseIf> 1 </ElseIf> + <ElseBegin> 0 </ElseBegin> + <BeforeCompilerDirectUses> 1 </BeforeCompilerDirectUses> + <BeforeCompilerDirectStatements> 0 </BeforeCompilerDirectStatements> + <BeforeCompilerDirectGeneral> 1 </BeforeCompilerDirectGeneral> + <AfterCompilerDirectUses> 1 </AfterCompilerDirectUses> + <AfterCompilerDirectStatements> 0 </AfterCompilerDirectStatements> + <AfterCompilerDirectGeneral> 1 </AfterCompilerDirectGeneral> + <ReturnChars> 0 </ReturnChars> + <RemoveConsecutiveBlankLines> True </RemoveConsecutiveBlankLines> + <MaxConsecutiveBlankLines> 4 </MaxConsecutiveBlankLines> + <MaxBlankLinesInSection> 1 </MaxBlankLinesInSection> + <LinesBeforeProcedure> 1 </LinesBeforeProcedure> + </Returns> + <Comments> + <RemoveEmptyDoubleSlashComments> True </RemoveEmptyDoubleSlashComments> + <RemoveEmptyCurlyBraceComments> True </RemoveEmptyCurlyBraceComments> + </Comments> + <Capitalisation> + <Enabled> True </Enabled> + <ReservedWords> 1 </ReservedWords> + <Operators> 1 </Operators> + <Directives> 1 </Directives> + <Constants> 1 </Constants> + <Types> 1 </Types> + </Capitalisation> + <SpecificWordCaps> + <Enabled> True </Enabled> + <Words> </Words> + </SpecificWordCaps> + <Identifiers> + <Enabled> True </Enabled> + <Words> ActivePage,AnsiCompareStr,AnsiCompareText,AnsiUpperCase,AsBoolean,AsDateTime,AsFloat,AsInteger,Assign,AsString,AsVariant,BeginDrag,Buttons,Caption,Checked,Classes,ClassName,Clear,Close,Components,Controls,Count,Create,Data,Dec,Delete,Destroy,Dialogs,Enabled,EndDrag,EOF,Exception,Execute,False,FieldByName,First,Forms,Free,FreeAndNil,GetFirstChild,Graphics,Height,idAbort,idCancel,idIgnore,IDispatch,idNo,idOk,idRetry,idYes,Inc,Initialize,IntToStr,ItemIndex,IUnknown,Lines,Math,MaxValue,mbAbort,mbAll,mbCancel,mbHelp,mbIgnore,mbNo,mbOK,mbRetry,mbYes,mbYesToAll,Messages,MinValue,mnNoToAll,mrAbort,mrAll,mrCancel,mrIgnore,mrNo,mrNone,mrNoToAll,mrOk,mrRetry,mrYes,mrYesToAll,mtConfirmation,mtCustom,mtError,mtInformation,mtWarning,Name,Next,Open,Ord,ParamStr,PChar,Perform,ProcessMessages,Read,ReadOnly,RecordCount,Register,Release,Result,Sender,SetFocus,Show,ShowMessage,Source,StdCtrls,StrToInt,SysUtils,TAutoObject,TButton,TComponent,TDataModule,Text,TForm,TFrame,TList,TNotifyEvent,TObject,TObjectList,TPageControl,TPersistent,True,TStringList,TStrings,TTabSheet,Unassigned,Value,Visible,WideString,Width,Windows,Write </Words> + </Identifiers> + <NotIdent> + <Enabled> True </Enabled> + <Words> False,Name,nil,PChar,read,ReadOnly,True,WideString,write </Words> + </NotIdent> + <UnitNameCaps> + <Enabled> True </Enabled> + <Words> ActnColorMaps,ActnCtrls,ActnList,ActnMan,ActnMenus,ActnPopup,ActnRes,ADOConst,ADODB,ADOInt,AppEvnts,AxCtrls,BandActn,bdeconst,bdemts,Buttons,CheckLst,Classes,Clipbrd.pas,CmAdmCtl,ComCtrls,ComStrs,Consts,Controls,CtlConsts,CtlPanel,CustomizeDlg,DataBkr,DB,DBActns,dbcgrids,DBClient,DBClientActnRes,DBClientActns,DBCommon,DBConnAdmin,DBConsts,DBCtrls,DbExcept,DBGrids,DBLocal,DBLocalI,DBLogDlg,dblookup,DBOleCtl,DBPWDlg,DBTables,DBXpress,DdeMan,Dialogs,DrTable,DSIntf,ExtActns,ExtCtrls,ExtDlgs,FileCtrl,FMTBcd,Forms,Graphics,GraphUtil,Grids,HTTPIntr,IB,IBBlob,IBCustomDataSet,IBDatabase,IBDatabaseInfo,IBDCLConst,IBErrorCodes,IBEvents,IBExternals,IBExtract,IBGeneratorEditor,IBHeader,IBIntf,IBQuery,IBRestoreEditor,IBSecurityEditor,IBServiceEditor,IBSQL,IBSQLMonitor,IBStoredProc,IBTable,IBUpdateSQL,IBUtils,IBXConst,ImgList,Jcl8087,JclAbstractContainers,JclAlgorithms,JclAnsiStrings,JclAppInst,JclArrayLists,JclArraySets,JclBase,JclBinaryTrees,JclBorlandTools,JclCIL,JclCLR,JclCOM,JclComplex,JclCompression,JclConsole,JclContainerIntf,JclCounter,JclDateTime,JclDebug,JclDotNet,JclEDI,JclEDISEF,JclEDITranslators,JclEDIXML,JclEDI_ANSIX12,JclEDI_ANSIX12_Ext,JclEDI_UNEDIFACT,JclEDI_UNEDIFACT_Ext,JclExprEval,JclFileUtils,JclFont,JclGraphics,JclGraphUtils,JclHashMaps,JclHashSets,JclHookExcept,JclIniFiles,JclLANMan,JclLinkedLists,JclLocales,JclLogic,JclMapi,JclMath,JclMetadata,JclMIDI,JclMime,JclMiscel,JclMsdosSys,JclMultimedia,JclNTFS,JclPCRE,JclPeImage,JclPrint,JclQGraphics,JclQGraphUtils,JclQueues,JclRegistry,JclResources,JclRTTI,JclSchedule,JclSecurity,JclShell,JclSimpleXml,JclStacks,JclStatistics,JclStreams,JclStrHashMap,JclStringLists,JclStrings,JclStructStorage,JclSvcCtrl,JclSynch,JclSysInfo,JclSysUtils,JclTask,JclTD32,JclUnicode,JclUnitConv,JclUnitVersioning,JclUnitVersioningProviders,JclValidation,JclVectors,JclWideFormat,JclWideStrings,JclWin32,JclWin32Ex,JclWinMIDI,ListActns,Mask,MConnect,Menus,Midas,MidasCon,MidConst,MPlayer,MtsRdm,Mxconsts,ObjBrkr,OleAuto,OleConst,OleCtnrs,OleCtrls,OleDB,OleServer,Outline,Printers,Provider,recerror,ScktCnst,ScktComp,ScktMain,SConnect,ShadowWnd,SimpleDS,SMINTF,SqlConst,SqlExpr,SqlTimSt,StdActnMenus,StdActns,StdCtrls,StdStyleActnCtrls,SvcMgr,SysUtils,TabNotBk,Tabs,TConnect,Themes,ToolWin,ValEdit,VDBConsts,WinHelpViewer,XPActnCtrls,XPMan,XPStyleActnCtrls </Words> + </UnitNameCaps> + <Asm> + <Caps> 0 </Caps> + <BreaksAfterLabel> 1 </BreaksAfterLabel> + <BreaksAfterLabelEnabled> True </BreaksAfterLabelEnabled> + <StatementIndentEnabled> True </StatementIndentEnabled> + <StatementIndent> 7 </StatementIndent> + <ParamsIndentEnabled> True </ParamsIndentEnabled> + <ParamsIndent> 15 </ParamsIndent> + </Asm> + <PreProcessor> + <Enabled> False </Enabled> + <DefinedSymbols> MSWINDOWS </DefinedSymbols> + <DefinedOptions> </DefinedOptions> + </PreProcessor> + <Align> + <AlignAssign> False </AlignAssign> + <AlignConst> False </AlignConst> + <AlignTypedef> False </AlignTypedef> + <AlignVars> False </AlignVars> + <AlignComment> False </AlignComment> + <AlignFields> False </AlignFields> + <InterfaceOnly> False </InterfaceOnly> + <MinColumn> 2 </MinColumn> + <MaxColumn> 60 </MaxColumn> + <MaxVariance> 5 </MaxVariance> + <MaxVarianceInterface> 5 </MaxVarianceInterface> + <MaxUnalignedStatements> 0 </MaxUnalignedStatements> + </Align> + <Replace> + <Enabled> False </Enabled> + <Words> </Words> + </Replace> + <Uses> + <RemoveEnabled> False </RemoveEnabled> + <InsertInterfaceEnabled> False </InsertInterfaceEnabled> + <InsertImplementationEnabled> False </InsertImplementationEnabled> + <FindReplaceEnabled> False </FindReplaceEnabled> + <Remove> </Remove> + <InsertInterface> </InsertInterface> + <InsertImplementation> </InsertImplementation> + <Find> </Find> + <Replace> </Replace> + </Uses> + <Transform> + <BeginEndStyle> 1 </BeginEndStyle> + <AddBlockEndSemicolon> True </AddBlockEndSemicolon> + <SortUsesInterface> False </SortUsesInterface> + <SortUsesImplmentation> False </SortUsesImplmentation> + <SortUsesProgram> False </SortUsesProgram> + <SortUsesBreakOnReturn> False </SortUsesBreakOnReturn> + <SortUsesBreakOnComment> False </SortUsesBreakOnComment> + <SortUsesSortOrder> 0 </SortUsesSortOrder> + <SortUsesNoComments> False </SortUsesNoComments> + </Transform> +</JediCodeFormatSettings> diff --git a/mop/template/.lazarus/laz_indentation.pas b/mop/template/.lazarus/laz_indentation.pas new file mode 100644 index 0000000..a38b7bb --- /dev/null +++ b/mop/template/.lazarus/laz_indentation.pas @@ -0,0 +1,95 @@ +unit Indentation; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils; + +type + TEnums = ( + enum1, + enum2, + enum3 + ); + + TMyRecord = record + i: integer; + end; + PMyRecord = ^TMyRecord; + + { TMyClass } + + TMyClass = class(TObject) + public + procedure DoSomething1(a, b, c: integer); + procedure Code; + end; + +implementation + +{ TMyClass } + +procedure TMyClass.DoSomething1(a, b, c: integer; + LongParameter1: TSomeLongParameter); +var + i: integer; +begin + if i=0 then + begin + repeat + if a=2 then + ; + until b=3; + try + Code; + finally + Code; + end; + try + Code; + except + on e: exception do + ; + end; + end + else + begin + case c of + 1: + Code; + 2: + begin + code; + end; + else + code; + end; + end; +end; + +procedure TMyClass.Code; + + procedure SubProc; + begin + + end; + +var + i: Integer; +begin + writeln('TMyClass.Code '); + repeat + + until ; + for i:=1 to 3 do + Code; + for i:=1 to 3 do + begin + Code; + end; +end; + +end. + diff --git a/mop/template/.lazarus/lazarus.dci b/mop/template/.lazarus/lazarus.dci new file mode 100644 index 0000000..b987233 --- /dev/null +++ b/mop/template/.lazarus/lazarus.dci @@ -0,0 +1,241 @@ +[arrayd | array declaration (var)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +$Param(VariableName): array[0..$Param(HighNumber)] of $Param(String); +| +[arrayc | array declaration (const)] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +array[$param(0)..$param(1)] of $param(Type) = (|); +[cases | case statement] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +case $param(var) of + : |; + : ; +end; +[be | begin end else begin end] +begin + | +end else +begin + +end; +[casee | case statement (with else)] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +case $param(var) of + : |; + : ; +else ; +end; +[classf | class declaration (all parts)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +$Param(ClassName) = class($Param(InheritedClass)) +private + +public + | + constructor Create; + destructor Destroy; override; +end; +[classd | class declaration (no parts)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +$Param(ClassName) = class($Param(InheritedClass)) +| +end; +[classc | class declaration (with Create/Destroy overrides)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +$Param(ClassName) = class($Param(InheritedClass)) +private + +protected + +public + | + constructor Create; override; + destructor Destroy; override; +published +end; +[d | debugln] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +debugln(['$ProcedureName() '|]); +[fors | for (no begin/end)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +for $Param(CounterVar) := $Param(0) to $Param(Count) - 1 do + | +[forb | for statement] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +for $Param(CounterVar) := $Param(0) to $Param(Count) - 1 do +begin + | +end; +[function | function declaration] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +function $param(Name)($param( )): $param(Type); +begin + | +end; +[hexc | HexStr(Cardinal(),8)] +HexStr(PtrUInt(|),8) +[ifs | if (no begin/end)] +if $Param(Conditional) then + | +[ifb | if statement] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +if $Param(Conditional) then +begin + | +end; +[ife | if then (no begin/end) else (no begin/end)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +if $Param(Conditional) then + | +else +[ifeb | if then else] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +if $Param(Conditional) then +begin + | +end +else begin + +end; +[procedure | procedure declaration] +procedure $Param(ProcName)|($Param()); +begin + | +end; +[ofall | case of all enums] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +of +|$OfAll()end; +[trye | try except] +try + | +except + +end; +[tryf | try finally] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +try + | +finally + $Param(FreeStatement,default) +end; +[trycf | try finally (with Create/Free)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +$Param(VarName) := $Param(TMyClassName).Create; +try + | +finally + $Param(VarName,Sync=1).Free; +end; +[whileb | while statement] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +while $Param(LoopCondition) do +begin + | +end; +[whiles | while (no begin)] +while $Param(LoopCondition) do + | +[withb | with statement] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +with $Param(Object) do +begin + | +end; +[b | begin end] +begin + | +end; +[withs | with (no begin)] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +with $Param(Object) do + | +[withc | with for components] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +with $Param(Object) do +begin + Name:='$Param(NameText)'; + Parent:=Self; + Left:=$Param(0); + Top:=$Param(0); + Width:=$Param(0); + Height:=$Param(0); + Caption:='$Param(CaptionText)'; +end; +| +[fpc | Conditional FPC Mode] +$(AttributesStart) +RemoveChar=true +$(AttributesEnd) +{$IFDEF FPC} + {$mode objfpc}{$H+} +{$ENDIF} +| +[todo | ToDo item creator] +$(AttributesStart) +EnableMakros=true +RemoveChar=true +$(AttributesEnd) +{ TODO -o$Param(Author) : $Param(Note) } | +[w | writeln] +$(AttributesStart) +EnableMakros=true +$(AttributesEnd) +writeln('$ProcedureName() '|); diff --git a/mop/template/.lazarus/packagefiles.xml b/mop/template/.lazarus/packagefiles.xml new file mode 100644 index 0000000..d44a837 --- /dev/null +++ b/mop/template/.lazarus/packagefiles.xml @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<CONFIG> + <UserPkgLinks Version="2"/> +</CONFIG> diff --git a/mop/template/.lazarus/protocol.xml b/mop/template/.lazarus/protocol.xml new file mode 100644 index 0000000..8a8f180 --- /dev/null +++ b/mop/template/.lazarus/protocol.xml @@ -0,0 +1,4 @@ +<?xml version="1.0"?> +<CONFIG> + <Protocol Version="1"/> +</CONFIG> diff --git a/mop/template/Desktop/.directory b/mop/template/Desktop/.directory deleted file mode 100644 index fece41a..0000000 --- a/mop/template/Desktop/.directory +++ /dev/null @@ -1,6 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Directory -BgImage= -Icon=desktop - diff --git a/mop/template/Desktop/FPC doc b/mop/template/Desktop/FPC doc deleted file mode 100644 index 30bf87a..0000000 --- a/mop/template/Desktop/FPC doc +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Icon=info -Type=Link -URL=/mo/kdevelop/doc/fpc/fpctoc.html diff --git a/mop/template/Desktop/FPC func index b/mop/template/Desktop/FPC func index deleted file mode 100644 index b37b102..0000000 --- a/mop/template/Desktop/FPC func index +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Icon=info -Type=Link -URL=/mo/kdevelop/doc/fpc_index.html diff --git a/mop/template/Desktop/Home.desktop b/mop/template/Desktop/Home.desktop deleted file mode 100644 index 887cf70..0000000 --- a/mop/template/Desktop/Home.desktop +++ /dev/null @@ -1,159 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Type=Application -Exec=kfmclient openProfile filemanagement -Icon=folder_home -Terminal=false - -Name=Home -Name[af]=Tuiste -Name[ar]=الدليل الخاص -Name[az]=Başlanğıc -Name[be]=Хатняя -Name[bg]=Домашна директория -Name[bn]=ব্যক্তিগত ফোল্ডার -Name[br]=Er-gêr -Name[bs]=Početak -Name[ca]=Inici -Name[cs]=Můj adresář -Name[cy]=Cartref -Name[da]=Hjem -Name[de]=Persönlicher Ordner -Name[el]=Σπίτι -Name[eo]=Hejmo -Name[es]=Personal -Name[et]=Kodu -Name[eu]=Etxea -Name[fa]=آغازه -Name[fi]=Koti -Name[fr]=Dossier personnel -Name[fy]=Thús -Name[ga]=Baile -Name[gl]=Persoal -Name[he]=בית -Name[hi]=घर -Name[hr]=Početak -Name[hu]=Saját könyvtár -Name[id]=Rumah -Name[is]=Heimasvæðið þitt -Name[ja]=ホーム -Name[km]=ផ្ទះ -Name[ko]=홈 -Name[lo]=ພື້ນທີ່ສ່ວນຕົວ -Name[lt]=Pradžia -Name[lv]=Mājas -Name[mk]=Дома -Name[mn]=Гэр -Name[ms]=Laman Utama -Name[mt]=Direttorju Personali -Name[nb]=Hjem -Name[nds]=Tohuus -Name[nn]=Heim -Name[nso]=Gae -Name[oc]=Inici -Name[pa]=ਘਰ -Name[pl]=Katalog domowy -Name[pt]=Pasta Pessoal -Name[pt_BR]=Pasta do Usuário -Name[ro]=Acasă -Name[ru]=Домой -Name[rw]=Urugo -Name[se]=Ruoktu -Name[sk]=Domov -Name[sl]=Domov -Name[sr]=Домаће -Name[sr@Latn]=Domaće -Name[ss]=Ekhaya -Name[sv]=Hem -Name[ta]=தொடக்கம் -Name[tg]=Хона -Name[th]=พื้นที่ส่วนตัว -Name[tr]=Başlangıç -Name[tt]=Anabit -Name[uk]=Домівка -Name[uz]=Уй -Name[ven]=Haya -Name[vi]=Nhà -Name[wa]=MÃ¥jhon -Name[xh]=Ikhaya -Name[zh_CN]=主文件夹 -Name[zh_TW]=家目錄 -Name[zu]=Ikhaya - -GenericName=Personal Files -GenericName[af]=Persoonlike Lêers -GenericName[ar]=الملفات الشخصية -GenericName[az]=Şəxsi Fayllar -GenericName[be]=Пэрсанальныя файлы -GenericName[bg]=Лични файлове -GenericName[bn]=ব্যক্তিগত ফাইলসমূহ -GenericName[br]=Restroù deoc'h -GenericName[bs]=Osobne datoteke -GenericName[ca]=Fitxers personals -GenericName[cs]=Osobní soubory -GenericName[cy]=Ffeiliau Personol -GenericName[da]=Personlige filer -GenericName[de]=Eigene Dateien -GenericName[el]=Προσωπικά αρχεία -GenericName[eo]=Personaj dosieroj -GenericName[es]=Archivos personales -GenericName[et]=Isiklikud failid -GenericName[eu]=Fitxategi pertsonalak -GenericName[fa]=پرونده‌های شخصی -GenericName[fi]=Omat tiedostot -GenericName[fr]=Fichiers personnels -GenericName[fy]=Persoanlike map -GenericName[ga]=Comhaid Phearsanta -GenericName[gl]=Arquivos Persoais -GenericName[he]=קבצים אישיים -GenericName[hi]=निजी फ़ाइलें -GenericName[hr]=Osobne datoteke -GenericName[hu]=Személyes fájlok -GenericName[id]=File Pribadi -GenericName[is]=Skrárnar þínar -GenericName[it]=File personali -GenericName[ja]=個人のファイル -GenericName[km]=ឯកសារ​ផ្ទាល់​ខ្លួន -GenericName[ko]=혼자만 쓰는 파일 -GenericName[lo]=ທີ່ເກັບແຟ້ມແລະເອກະສານສວ່ນຕົວຫລືອື່ນຯ -GenericName[lt]=Asmeninės bylos -GenericName[lv]=Personālie Faili -GenericName[mk]=Лични датотеки -GenericName[mn]=Өөрийн файлууд -GenericName[ms]=Fail Peribadi -GenericName[mt]=Fajls Personali -GenericName[nb]=Personlige filer -GenericName[nds]=De egen Dateien -GenericName[nl]=Persoonlijke map -GenericName[nn]=Personlege filer -GenericName[nso]=Difaele tsa Botho -GenericName[oc]=FiquièRs personals -GenericName[pa]=ਨਿੱਜੀ ਫਾਇਲ਼ਾਂ -GenericName[pl]=Pliki osobiste -GenericName[pt]=Ficheiros Pessoais -GenericName[pt_BR]=Arquivos Pessoais -GenericName[ro]=Fişiere personale -GenericName[ru]=Личные файлы -GenericName[rw]=Amadosiye Yihariye -GenericName[se]=Iežat fiillat -GenericName[sk]=Osobné súbory -GenericName[sl]=Osebne datoteke -GenericName[sr]=Лични фајлови -GenericName[sr@Latn]=Lični fajlovi -GenericName[sv]=Personliga filer -GenericName[ta]=சொந்த கோப்புகள் -GenericName[tg]=Файлҳои шахсӣ -GenericName[th]=แฟ้มส่วนตัว -GenericName[tr]=Kişisel Dosyalar -GenericName[tt]=Şäxsi Biremnär -GenericName[uk]=Особисті файли -GenericName[uz]=Шахсий файллар -GenericName[ven]=Dzifaela dza vhune -GenericName[vi]=Tập tin Cá nhân -GenericName[wa]=Fitchîs da vosse -GenericName[xh]=Iifayile Zobuqu -GenericName[zh_CN]=个人文件 -GenericName[zh_TW]=個人檔案 -GenericName[zu]=Amafayela Omuntu siqu -Categories=Qt;KDE;Core; -OnlyShowIn=KDE; diff --git a/mop/template/Desktop/Libc doc b/mop/template/Desktop/Libc doc deleted file mode 100644 index 3772c9a..0000000 --- a/mop/template/Desktop/Libc doc +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Icon=info -Type=Link -URL=/mo/kdevelop/doc/libstdc/index.html diff --git a/mop/template/Desktop/Libc func index b/mop/template/Desktop/Libc func index deleted file mode 100644 index ab6bb3c..0000000 --- a/mop/template/Desktop/Libc func index +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Icon=info -Type=Link -URL=/mo/kdevelop/doc/libc_index.html diff --git a/mop/template/Desktop/Libc++ doc b/mop/template/Desktop/Libc++ doc deleted file mode 100644 index 4d1dd54..0000000 --- a/mop/template/Desktop/Libc++ doc +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Icon=info -Type=Link -URL=/mo/kdevelop/doc/libstdcpp/documentation.html diff --git a/mop/template/Desktop/MO-P project IDE.desktop b/mop/template/Desktop/MO-P project IDE.desktop deleted file mode 100644 index 4c36615..0000000 --- a/mop/template/Desktop/MO-P project IDE.desktop +++ /dev/null @@ -1,19 +0,0 @@ -[Desktop Entry] -Comment= -Comment[en_US]= -Encoding=UTF-8 -Exec[$e]='/mo/kdevelop/templates/templater.pl' -GenericName= -GenericName[en_US]= -Icon=kdevelop -MimeType= -Name=MO-P project IDE -Name[en_US]=MO-P project IDE -Path[$e]= -StartupNotify=true -Terminal=false -TerminalOptions= -Type=Application -X-DCOP-ServiceType= -X-KDE-SubstituteUID=false -X-KDE-Username= diff --git a/mop/template/Desktop/MO-P submit.desktop b/mop/template/Desktop/MO-P submit.desktop deleted file mode 100644 index 7432ece..0000000 --- a/mop/template/Desktop/MO-P submit.desktop +++ /dev/null @@ -1,19 +0,0 @@ -[Desktop Entry] -Comment= -Comment[en_US]= -Encoding=UTF-8 -Exec[$e]='/mo/public/bin/contest' -GenericName= -GenericName[en_US]= -Icon=server -MimeType= -Name=MO-P submit -Name[en_US]=MO-P submit -Path[$e]= -StartupNotify=true -Terminal=false -TerminalOptions= -Type=Application -X-DCOP-ServiceType= -X-KDE-SubstituteUID=false -X-KDE-Username= diff --git a/mop/template/Desktop/Mc.desktop b/mop/template/Desktop/Mc.desktop deleted file mode 100644 index a40db99..0000000 --- a/mop/template/Desktop/Mc.desktop +++ /dev/null @@ -1,20 +0,0 @@ -[Desktop Entry] -Categories=X-Debian-Apps-Tools -Comment=Midnight Commander -Comment[en_US]=Midnight Commander -Encoding=UTF-8 -Exec=/usr/bin/mc -GenericName= -GenericName[en_US]= -Icon=/usr/share/pixmaps/mc.xpm -MimeType= -Name=Mc -Name[en_US]=Mc -Path= -StartupNotify=true -Terminal=true -TerminalOptions= -Type=Application -X-DCOP-ServiceType= -X-KDE-SubstituteUID=false -X-KDE-Username= diff --git a/mop/template/Desktop/STL doc b/mop/template/Desktop/STL doc deleted file mode 100644 index 12f6869..0000000 --- a/mop/template/Desktop/STL doc +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Icon=info -Type=Link -URL=/mo/kdevelop/doc/stl/index.html diff --git a/mop/template/Desktop/emacs21.desktop b/mop/template/Desktop/emacs21.desktop deleted file mode 100644 index 87661dc..0000000 --- a/mop/template/Desktop/emacs21.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Version=1.0 -Encoding=UTF-8 -Name=Emacs 21 (X11) -GenericName=Emacs -Comment=GNU Emacs 21 Text Editor -Exec=/usr/bin/emacs21 -r -TryExec=emacs21 -Terminal=false -Type=Application -Icon=/usr/share/emacs/21.4/etc/gnu-32x32.xpm -Categories=Application;Utility;TextEditor; -MimeType=text/plain diff --git a/mop/template/Desktop/gvim.desktop b/mop/template/Desktop/gvim.desktop deleted file mode 100644 index efd7810..0000000 --- a/mop/template/Desktop/gvim.desktop +++ /dev/null @@ -1,78 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=GVim Text Editor -Comment=Edit text files -Comment[af]=Redigeer tekslêers -Comment[am]=የጽሑፍ ፋይሎች ያስተካክሉ -Comment[ar]=حرّر ملفات نصية -Comment[az]=Mətn fayllarını redaktə edin -Comment[be]=Рэдагаваньне тэкставых файлаў -Comment[bg]=Редактиране на текстови файлове -Comment[bn]=টেক্স্ট ফাইল এডিট করুন -Comment[bs]=Izmijeni tekstualne datoteke -Comment[ca]=Edita fitxers de text -Comment[cs]=Úprava textových souborů -Comment[cy]=Golygu ffeiliau testun -Comment[da]=Redigér tekstfiler -Comment[de]=Textdateien bearbeiten -Comment[el]=Επεξεργασία αρχείων κειμένου -Comment[en_CA]=Edit text files -Comment[en_GB]=Edit text files -Comment[es]=Edita archivos de texto -Comment[et]=Redigeeri tekstifaile -Comment[eu]=Editatu testu-fitxategiak -Comment[fa]=ویرایش پرونده‌های متنی -Comment[fi]=Muokkaa tekstitiedostoja -Comment[fr]=Édite des fichiers texte -Comment[ga]=Eagar comhad Téacs -Comment[gu]=લખાણ ફાઇલોમાં ફેરફાર કરો -Comment[he]=ערוך קבצי טקסט -Comment[hi]=पाठ फ़ाइलें संपादित करें -Comment[hr]=Uređivanje tekstualne datoteke -Comment[hu]=Szövegfájlok szerkesztése -Comment[id]=Edit file teks -Comment[it]=Modifica file di testo -Comment[ja]=テキスト・ファイルを編集します -Comment[kn]=ಪಠ್ಯ ಕಡತಗಳನ್ನು ಸಂಪಾದಿಸು -Comment[ko]=텍스트 파일을 편집합니다 -Comment[lt]=Redaguoti tekstines bylas -Comment[lv]=Rediģēt teksta failus -Comment[mk]=Уреди текстуални фајлови -Comment[ml]=വാചക രചനകള് തിരുത്തുക -Comment[mn]=Текст файл боловсруулах -Comment[mr]=गद्य फाइल संपादित करा -Comment[ms]=Edit fail teks -Comment[nb]=Rediger tekstfiler -Comment[ne]=पाठ फाइललाई संशोधन गर्नुहोस् -Comment[nl]=Tekstbestanden bewerken -Comment[nn]=Rediger tekstfiler -Comment[no]=Rediger tekstfiler -Comment[or]=ପାଠ୍ଯ ଫାଇଲଗୁଡ଼ିକୁ ସମ୍ପାଦନ କରନ୍ତୁ -Comment[pa]=ਪਾਠ ਫਾਇਲਾਂ ਸੰਪਾਦਨ -Comment[pl]=Edytor plików tekstowych -Comment[pt]=Editar ficheiros de texto -Comment[pt_BR]=Edite arquivos de texto -Comment[ro]=Editare fişiere text -Comment[ru]=Редактор текстовых файлов -Comment[sk]=Úprava textových súborov -Comment[sl]=Urejanje datotek z besedili -Comment[sq]=Përpuno files teksti -Comment[sr]=Измени текстуалне датотеке -Comment[sr@Latn]=Izmeni tekstualne datoteke -Comment[sv]=Redigera textfiler -Comment[ta]=உரை கோப்புகளை தொகுக்கவும் -Comment[th]=แก้ไขแฟ้มข้อความ -Comment[tk]=Metin faýllary editle -Comment[tr]=Metin dosyalarını düzenle -Comment[uk]=Редактор текстових файлів -Comment[vi]=Soạn thảo tập tin văn bản -Comment[wa]=Asspougnî des fitchîs tecses -Comment[zh_CN]=编辑文本文件 -Comment[zh_TW]=編輯文字檔 -Exec=gvim -f %U -Terminal=false -Type=Application -Icon=/usr/share/pixmaps/vim.svg -Categories=Application;Utility;TextEditor; -StartupNotify=true -MimeType=text/plain; diff --git a/mop/template/Desktop/kate.desktop b/mop/template/Desktop/kate.desktop deleted file mode 100644 index 58030a3..0000000 --- a/mop/template/Desktop/kate.desktop +++ /dev/null @@ -1,88 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -GenericName=Advanced Text Editor -GenericName[af]=Gevorderde Teks Redigeerder -GenericName[ar]=محرر النصوص المتقدم -GenericName[az]=Səciyyəvi Mətn Editoru -GenericName[bg]=Текстов редактор -GenericName[bn]=উন্নত টেক্সট সম্পাদক -GenericName[br]=Aozer skrid barek -GenericName[bs]=Napredni editor teksta -GenericName[ca]=Editor de text avançat -GenericName[cs]=Pokročilý textový editor -GenericName[cy]=Golygydd Testun Uwch -GenericName[da]= Avanceret teksteditor -GenericName[de]=Erweiterter Texteditor -GenericName[el]=Προχωρημένος επεξεργαστής κειμένου -GenericName[eo]=Pli bona Tekstredaktilo -GenericName[es]=Editor de texto avanzado -GenericName[et]=Võimas tekstiredaktor -GenericName[eu]=Testu editore aurreratua -GenericName[fa]=ویرایشگر متن پیشرفته -GenericName[fi]=Kehittynyt tekstieditori -GenericName[fr]=Éditeur de texte avancé -GenericName[fy]=avansearre tekstbewurker -GenericName[ga]=Ardeagarthóir Téacs -GenericName[gl]=Editor Avanzado de Textos -GenericName[he]=עורך טקסט מתקדם -GenericName[hi]=विकसित पाठ संपादक -GenericName[hr]=Napredni uređivač teksta -GenericName[hu]=Szövegszerkesztő -GenericName[is]=Þróaður textaritill -GenericName[it]=Editor di testi avanzato -GenericName[ja]=高度なテキストエディタ -GenericName[km]=កម្មវិធី​វាយ​អត្ថបទ​កម្រិត​ខ្ពស់ -GenericName[lt]=Sudėtingesnė teksto rengyklė -GenericName[lv]=Teksta Redaktors -GenericName[mk]=Напреден уредувач на текст -GenericName[mn]=Текст боловсруулагч -GenericName[ms]=Editor Teks Lanjutan -GenericName[mt]=Editur tat-test avvanzat -GenericName[nb]=Avansert skriveprogram -GenericName[nds]=Verwiedert Text-Editor -GenericName[nl]=Geavanceerde teksteditor -GenericName[nn]=Avansert skriveprogram -GenericName[pa]=ਤਕਨੀਕੀ ਪਾਠ ਦਰਸ਼ਕ -GenericName[pl]=Zaawansowany edytor tekstu -GenericName[pt]=Editor de Texto Avançado -GenericName[pt_BR]=Editor de Texto Avançado -GenericName[ro]=Editor avansat de text -GenericName[ru]=Улучшенный текстовый редактор -GenericName[rw]=Muhinduzi Ihanitse y'Umwandiko -GenericName[se]=Erenoamáš čállinprográmma -GenericName[sk]=Pokročilý textový editor -GenericName[sl]=Napredni urejevalnik besedil -GenericName[sr]=Напредни уређивач текста -GenericName[sr@Latn]=Napredni uređivač teksta -GenericName[sv]=Avancerad texteditor -GenericName[ta]=மேம்படுத்த்ப்பட்ட உரை திருத்துபவர் -GenericName[tg]=Муҳаррири матни пешрафта -GenericName[th]=โปรแกรมแก้ไขข้อความแบบขั้นสูง -GenericName[tr]=Gelişmiş Metin Düzenleyici -GenericName[tt]=Yaqşırtılğan Mäten-Tözätkeç -GenericName[uk]=Редактор текстів -GenericName[uz]=Кенгайтирилган матн таҳрирчи -GenericName[vi]=Trình soạn văn bản nâng cao -GenericName[wa]=Aspougneu di tecse avancî -GenericName[zh_CN]=高级文本编辑器 -GenericName[zh_TW]=進階文字編輯器 -Name=Kate -Name[ar]=كيت -Name[bn]=কেট -Name[eo]=Kodredaktilo -Name[hi]=के-एटीई -Name[ko]=카테 -Name[mk]=Кате -Name[pa]=ਕੇਟ -Name[ru]=Редактор Kate -MimeType=text/plain -Exec=kate %U -X-KDE-StartupNotify=true -X-KDE-HasTempFileOption=true -Icon=kate -Path= -DocPath=kate/index.html -Type=Application -Terminal=false -X-DCOP-ServiceType=Multi -Categories=Qt;KDE;TextEditor; diff --git a/mop/template/Desktop/konsole.desktop b/mop/template/Desktop/konsole.desktop deleted file mode 100644 index 8387da4..0000000 --- a/mop/template/Desktop/konsole.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Type=Application -Encoding=UTF-8 -Name=Konsole -GenericName= -Comment= -Icon=/usr/share/pixmaps/konsole.xpm -Exec=/usr/bin/konsole -Terminal=false -Categories=X-Debian-XShells diff --git a/mop/template/Desktop/kwrite.desktop b/mop/template/Desktop/kwrite.desktop deleted file mode 100644 index 0221247..0000000 --- a/mop/template/Desktop/kwrite.desktop +++ /dev/null @@ -1,105 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -GenericName=Text Editor -GenericName[af]=Teks Redigeerder -GenericName[ar]=محرر نصوص -GenericName[az]=Mətn Editoru -GenericName[be]=Тэкставы рэдактар -GenericName[bg]=Текстов редактор -GenericName[bn]=টেক্সট সম্পাদক -GenericName[br]=Aozer skrid -GenericName[bs]=Tekst editor -GenericName[ca]=Editor de text -GenericName[cs]=Textový editor -GenericName[cy]=Golygydd Testun -GenericName[da]= Teksteditor -GenericName[de]=Texteditor -GenericName[el]=Επεξεργαστής κειμένου -GenericName[eo]=Tekstredaktilo -GenericName[es]=Editor de texto -GenericName[et]=Tekstiredaktor -GenericName[eu]=Testu editorea -GenericName[fa]=ویرایشگر متن -GenericName[fi]=Tekstieditori -GenericName[fo]=Tekstritil -GenericName[fr]=Éditeur de texte -GenericName[fy]=Tekstbewurker -GenericName[ga]=Eagarthóir Téacs -GenericName[gl]=Editor de Textos -GenericName[he]=עורך טקסט -GenericName[hi]=पाठ संपादक -GenericName[hr]=Uređivač teksta -GenericName[hsb]=Wobdźěłar tekstow -GenericName[hu]=Szövegszerkesztő -GenericName[is]=Textaritill -GenericName[it]=Editor di testi -GenericName[ja]=テキストエディタ -GenericName[km]=កម្មវិធី​វាយ​អត្ថបទ -GenericName[ko]=글월 편집기 -GenericName[lo]=ເຄື່ອງມືແກ້ໄຂຂໍ້ຄວາມ -GenericName[lt]=Teksto rengyklė -GenericName[lv]=Teksta Redaktors -GenericName[mk]=Уредувач на текст -GenericName[mn]=Текст боловсруулагч -GenericName[ms]=Penyunting Teks -GenericName[mt]=Editur tat-test -GenericName[nb]=Skriveprogram -GenericName[nds]=Texteditor -GenericName[nl]=Teksteditor -GenericName[nn]=Skriveprogram -GenericName[nso]=Mofetosi wa Sengwalwana -GenericName[pa]=ਪਾਠ ਸੰਪਾਦਕ -GenericName[pl]=Edytor tekstu -GenericName[pt]=Editor de Texto -GenericName[pt_BR]=Editor de Texto -GenericName[ro]=Editor de text -GenericName[ru]=Текстовый редактор -GenericName[rw]=Muhinduzi Umwandiko -GenericName[se]=Čállinprográmma -GenericName[sk]=Textový editor -GenericName[sl]=Urejevalnik besedil -GenericName[sr]=Уређивач текста -GenericName[sr@Latn]=Uređivač teksta -GenericName[ss]=Sihleli sembhalo -GenericName[sv]=Texteditor -GenericName[ta]=உரை தொகுப்பாளர் -GenericName[tg]=Муҳаррири матн -GenericName[th]=โปรแกรมแก้ไขข้อความ -GenericName[tr]=Metin Düzenleyici -GenericName[tt]=Mäten Tözätkeçe -GenericName[uk]=Редактор текстів -GenericName[uz]=Матн таҳрирчи -GenericName[ven]=Musengulusi wa Manwalwa -GenericName[vi]=Trình soạn văn bản -GenericName[wa]=Aspougneu di tecse -GenericName[xh]=Umhleli Wombhalo -GenericName[zh_CN]=文本编辑器 -GenericName[zh_TW]=文字編輯器 -GenericName[zu]=Umlungisi wombhalo -Name=KWrite -Name[af]=Kskryf -Name[ar]=كاتب كيدي -Name[bn]=কে-রাইট -Name[eo]=Malnova simpla kodredaktilo -Name[fo]=KSkriva -Name[hi]=के-राइट -Name[lo]=Kwrite -Name[mn]=Кврайт -Name[nso]=KNgwala -Name[pa]=ਕੇ-ਲੇਖਕ -Name[ru]=Редактор KWrite -Name[rw]=K-Kwandika -Name[sv]=Kwrite -Name[tg]=Навиштори K -Name[ven]=Nwala ha K -MimeType=text/plain -Exec=kwrite %U -X-KDE-StartupNotify=true -Icon=kwrite -Path= -DocPath=kwrite/index.html -Type=Application -Terminal=false -InitialPreference=8 -X-DCOP-ServiceType=Multi -Categories=Qt;KDE;TextEditor; diff --git a/mop/template/Desktop/trash.desktop b/mop/template/Desktop/trash.desktop deleted file mode 100644 index 6b86a44..0000000 --- a/mop/template/Desktop/trash.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Comment=Contains removed files -EmptyIcon=trashcan_empty -Encoding=UTF-8 -Icon=trashcan_full -Name=Trash -OnlyShowIn=KDE -Type=Link -URL=trash:/ diff --git a/submit/contest.pl b/submit/contest.pl index 7d54456..5bfbdc2 100755 --- a/submit/contest.pl +++ b/submit/contest.pl @@ -462,6 +462,7 @@ sub run_checks() { defined $part or $part = ""; my $verdict = `$root/bin/check -s "$submit_filename" $task $part 2>&1`; if ($?) { + utf8::decode($verdict); checks_failed($verdict); } else { checks_ok(); diff --git a/submit/create-certs.sh b/submit/create-certs.sh index 2e33caa..c52e3d6 100755 --- a/submit/create-certs.sh +++ b/submit/create-certs.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # A script for creation of all the certificates used by submitd # (c) 2007 Martin Mares <mj@ucw.cz>