User:Claus chr/DPL: Difference between revisions

From KDE UserBase Wiki
Line 211: Line 211:
</DPL>
</DPL>
<DPL>
<DPL>
   namespace = Main
   namespace =  
   nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
   nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
   titleregexp = ^K[A-Z]
   titleregexp = ^K[A-Z]
Line 221: Line 221:
</DPL>
</DPL>
<DPL>
<DPL>
   namespace = Main
   namespace =  
   nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
   nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
   titleregexp = ^K[a-z]
   titleregexp = ^K[a-z]
Line 231: Line 231:
</DPL>
</DPL>
<DPL>
<DPL>
   namespace = Main
   namespace =  
   nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
   nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
   titleregexp = ^[L-Z]
   titleregexp = ^[L-Z]

Revision as of 16:33, 7 August 2018


Reference: DPL Manual
See also Pipesmoker's notes and this page of examples
Example UI on this Template:Catlist page

All the examples on this page have been commented out to prevent the page from being very slow to load. If you want to see the outcome of a search example, just edit the page and remove the comment tags around the desired example. You don't need to save the page, a preview will give you the search results; that way you can experiment with the examples and easily restore the page to its original state when you are done.

Searching for pages containing a certain text string

Text without wiki markup

Enter {{Search|text}} anywhere to get the search results in the form of links. Here text can be plain text or a perl like regexp. Be careful to escape regexp meta characters. If the searched text contain wiki markup this template may nor give the desired results; see the next section.

The Search template searches only the main namespace, and only original English pages.

Example: To find all English pages containing the word 'application' - possibly capitalized enter this:

{{Search|[Aa]pplication}}

Information

The results should just be a link to each page containing the searched text. For some reason, however, some pages include the content at the beginning of the page, typically an info box, an image or tabular material. This can be avoided by ensuring that the pages searched start by <languages />. If the page doesn't have translate tags this directive have no effect, but it prevents the unwanted inclusion of content from the page in the search result.


Translated text

Enter {{SearchLang|text|lang}} anywhere to get the search results in the form of links. Here text can be plain text or a perl like regexp and lang is a language code. Be careful to escape regexp meta characters. If the searched text contain wiki markup this template may nor give the desired results; see the next section.

Example: To find all Danish pages containing the word 'program' - possibly capitalized enter this:

{{SearchLang|[Pp]rogram|da}}

Pages linking to a given page

Use {{LinksTo|full page name}}. The full page name must be the entire wiki link up to (but not including) one of the characters '|', ']' or '#' and excluding Special:myLanguage. Note, that space characters in names are sometimes entered as '_', so in searches you should enter [ _] for spaces.

Example: To find all pages linking to Getting Help enter

{{LinksTo|Getting[ _]Help}}

Text containing wiki markup

In case the Search template does not work for you use code like this to accomplish your desired result:

<DPL>
  namespace = Main
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  titleregexp = ^[A-J]
  include = *
  includematch = @\{\{Remember\|3=@
  includemaxlength = 0
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages beginning with A-J\n
</DPL>
<DPL>
  namespace = Main
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  titleregexp = ^K[A-Z]
  include = *
  includematch = @\{\{Remember\|3=@
  includemaxlength = 0
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages beginning with KA-KZ\n
</DPL>
<DPL>
  namespace = Main
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  titleregexp = ^K[a-z]
  include = *
  includematch = @\{\{Remember\|3=@
  includemaxlength = 0
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages beginning with Ka-Kz\n
</DPL>
<DPL>
  namespace = Main
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  titleregexp = ^[L-Z]
  include = *
  includematch = @\{\{Remember\|3=@
  includemaxlength = 0
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages beginning with L-Z\n
</DPL>

Normally, you'd want to copy all of this into your page and modify the includematch lines to the pattern you want to search for. Note the two @-characters; they mark the beginning and end of the actual search pattern. You can use any character instead of @ as long as it does not appear in the actual pattern.

Note

Some characters such as ¤ do not work as pattern delimiters; perhaps only ASCII characters can be used?


Be aware!

The page count reported by each query is not the number of matching pages found, but the total number of pages searched in that group. That number should always be less than 500! If it is not then some of the pages will not have been searched.


If you want to search other namespaces than Main, just change that line. The nottitleregexp lines filters out all translated pages including lingering old style translations and should not be touched. The titlematch lines are needed to split up the search into manageable chunks. There is a maximum of pages that can be handled by the includematch search; if too many pages pass through the title filters the first ones up to the maximum number will be searched; the rest will be silently ignored! Currently, the maximum seems to be 1000. The include and includemaxlength should never be modified.


Finding all pages not yet marked for translation

<DPL>
  namespace = Main
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  titleregexp = ^[A-J]
  include = *
  includenotmatch = #<languages[ ]?/>#
  includemaxlength = 0
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages beginning with A-J\n
</DPL>
...

< !-- There are 2019 pages beginning with A-J

Information

This page no longer exists on UserBase. The contents have been moved to docs.kde.org. Sorry for the inconvenience.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Information

This page no longer exists on UserBase. The contents have been moved to community.kde.org/KDE_PIM. Sorry for the inconvenience.

Information

This page no longer exists on UserBase. The contents have been moved to docs.kde.org/index.php?package=artikulate. Sorry for the inconvenience.

Information

Please refer to community.kde.org/KPhotoAlbum/build_instructions. Sorry for the inconvenience.

Information

This page no longer exists on UserBase. The contents have been moved to invent.kde.org/sdk/heaptrack/-/blob/master/README.md?ref_type=heads. Sorry for the inconvenience.

Current Category Translation rule is listed in Translation Help Needed.

  • Artikulate/ScenarioTrainingUnits
  • ElisaElisa is a music player developed by the KDE community that strives to be simple and nice to use. Elisa is focused on a very good integration with the Plasma desktop of the KDE community without compromising the support for other platforms (other Linux desktop environments, Windows and Android).
Elisa's main window.

Elisa's changelog is accessible on the community page.

Currently the following pages are in Draft:

Die Abfrage des Status ergibt '70'; gibt es dafür eine Erklärung?:

muelux@muelux-LT70B-T61:~$ qdbus --system org.freedesktop.NetworkManager /org/freedesktop/NetworkManager org.freedesktop.NetworkManager.state
70
muelux@muelux-LT70B-T61:~$

Gruß

mue.de

Ways to get KDE software
A catalog of KDE software

KDE Manuals

https://docs.kde.org/stable5/en/applications/konqueror/index.htmlThe Konqueror Manual

Proposed for Deletion

This page has been proposed for deletion for the following reason:

This page is about Kubuntu from the year 2013.

Please use the discussion section of this page to voice your opinion on this.

For the best result, ensure that:

  • Your computer has enough room for Kubuntu and your data - your songs, pictures, videos, and documents.
  • Your computer is connected to the Internet so that you can download updates and third-party software as Kubuntu is installing.

"Third-party software" includes software that either does not follow the Open Source model or the Ubuntu Philosophy, but is safe for use on your system.

Downloading the updates while installing will ensure that you have the latest bug and security fixes included and applied once the installation is complete.

To avoid edit conflicts, please also use {{Being_Edited}} (then save before continuing) while you work, and remove it when you have finished.


Category Translations, Language1 to Language4
English Language1 Language2 Language3 Language4
Accessibility
Admin
Advanced Users
Applications
Desktop
Development
Education
File Management
Games
Getting Started
Graphics
Hidden Categories
Home and Hobby
Internet
KDE3
Multimedia
Office
Plasma
Security
System
Template
Tutorials
Utilities

My computer boots to a Black screen

Please keep in mind that this page is just an experiment to collect the working solutions to common problems from hundreds of forum posts to a wiki-like troubleshooting page. It assumes you are running KDE Neon or another Debian based distribution. It needs to be checked by experienced users.

Has something crashed when you turned off your PC?

Have you recently updated?

Blumen wrote on Reddit: If you can see your cursor, but there is no wallpaper and panel, this means the process plasmashell crashed. Try running:

   plasmashell --replace ; kwin_x11 --replace  

tinny123 wrote:

Do you have offline updates turned off?

Then it's possible you didn't let discover finish installing updates so you have now broken packages. When you get to the black screen hit ctrl+alt+f1 and log in into terminal with your username and password. It would be good if you can connect your pc to the internet.

In terminal run these commands:

   sudo apt update  
   sudo apt dist-upgrade  
   sudo apt install -f   
Do you have python modules installed?

You can try fixing update errors with already existing python modules: remove the old version from the system installation with

   sudo pip uninstall python-<the module to uninstall>
Have you installed kernel updates lately?

You can try booting with a different kernel from the GRUB menu (Advanced options for GNU/Linux).

If you can't see your mouse:

You can try hitting ctrl+alt+f2 to a terminal then running:

   startx

It's possible that your home directory is so full it stops the GUI from loading. You can try booting from a live-USB and cleaning up some space. If you can't boot from a live-USB it's likely you have a hardware problem with your PC.

To avoid edit conflicts, please also use {{Being_Edited}} (then save before continuing) while you work, and remove it when you have finished.

Category Translations, Amharic, Arabic, Asturianu
English Amharic عربية Asturianu
Accessibility سهولة/ar
Admin مشرف/ar
Advanced Users مستخدم خبير/ar
Applications برامج/ar
Contributing مساهمة/ar
Configuration الضبط/ar
Desktop سطح المكتب/ar
Development تطوير/ar
Education تعليم/ar/
File Management إدارة الملفات/ar
Games العاب/ar
Getting Started البداية/ar
Graphics رسوم/ar
Help
Home and Hobby المنزل و الهواية/ar
Internet الشبكة العالمية/ar
KDE3 كي دي إي 3/ar KDE3/ast
KDE on Windows كي دي اي على النوافذ/ar
Mobile
Multimedia متعدد الوسائط/ar
New Users مستخدم جديد/ar
Office مكتب/ar)
Photography التصوير/ar
Plasma بلازما/ar
Privacy
Science علم/ar
Security أمن/ar
System نظام/ar
Template نموذج/ar
Terminology
Tutorials تدريب/ar
Utilities خدمات/ar
Widgets
Pages in (your_language)
(e.g.sider på dansk)

To avoid edit conflicts, please also use {{Being_Edited}} (then save before continuing) while you work, and remove it when you have finished.


Category Translations, Galego, Hebrew, Hindi
English Galego Hebrew Hindi
Accessibility Accesibilidade/gl נְגִישׁוּת
Admin Administración/gl
Advanced Users Usuarios avanzados/gl
Applications Aplicativos/gl יִשּׂוּמִים
Configuration Configuración/gl
Contributing Contribuír/gl
Desktop Escritorio/gl שולחן העבודה
Development Desenvolvemento/gl פִּתּוּחַ
Education Ensino/gl חִנּוּךְ
File Management Xestión de ficheiros/gl נִהוּל קבצים
Games Xogos/gl מִשְׂחָקים
Getting Started Primeiros pasos/gl
Graphics Imaxe/gl גְּרָפִיקָה
Help
Home & Hobby Lecer/gl
Internet Internet/gl אִינְטֶרְנֶט
KDE3 KDE 3/gl
KDE on Windows
Mobile
Multimedia Son e vídeo/gl מוּלְטִימֶדְיָה
New Users
Office Oficina/gl
Photography
Plasma Plasma/gl
Privacy
Science
Security Seguridade/gl אַבְטָחָה
System Sistema/gl מַעֲרֶכֶת
Template Modelo/gl
Terminology
Tutorials Aprendizaxes/gl
Utilities Utilidades/gl
Widgets
Pages in (your_language)
(e.g. sider på dansk)

There are 1436 pages beginning with KA-KZ

Information

This page no longer exists on UserBase. The contents have been moved to docs.kde.org. Sorry for the inconvenience.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Under Construction

This is a new page, currently under construction!

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

The Snippets tool view

Information

KOffice is no longer maintained. It has been succeded by Calligra. Sorry for the inconvenience.

Under Construction

This is a new page, currently under construction!


List of tutorials wiki page related to KDE Connect

Proposed for Deletion

This page has been proposed for deletion for the following reason:

This wiki page does not have a parent wiki page.

Please use the discussion section of this page to voice your opinion on this.

KMail Stable

KMail is available in the extra repository.


Type as root: pacman -S kdepim-kmail

Setting up a new project from scratch

Appendix: A list of all available tools

Setting up a new project from scratch

Appendix: A list of all available tools

3D Graph
2d Graph
2d Graph
Console
Dictionary

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Kword MIME types

The KWord MIME type is : application/x-kword


Prev Contents Next
Key Bindings Summary (Shortcuts) Glossary

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Compilation and Installation

Complete instructions on installing KOffice from source are located at http://www.koffice.org/download/source.php.


Prev Contents Next
Requirements Command Line Options

To make use of that tool you need to open a document in hex editor that comes in hex editor plugin. The data you select with mouse pointer will be automatically put into the decoding table, though be careful because it does translate only the raw data and therefore the ASCII "1", for example, will be interpreted as decimal 49.

Templates can only be removed using the Create Template dialog. For instructions, click Removing template group.


Prev Contents Next
Create a .pdf file Introduction to the Menubar and Toolbars

KGpg

Program copyright (c) 2002-2003 Jean-Baptiste Mardelle (bj altern.org).

(c) 2006-2007 Jimmy Gilles (jimmygilles gmail.com)

(c) 2006,2007,2008,2009,2010 Rolf Eike Beer (kde opensource.sf-tec.de)

This documentation is licensed under the terms of the GNU Free Documentation License.

This program is licensed under the terms of the GNU General Public License.


Contents

The Project performance view is a project management chart where can be understood the actual situation of the project according the Earned Value Method.

where:

  • BCWS means Budgeted Cost Work Scheduled,
  • BCWP means Budgeted Cost Work Performed,
  • ACWP means Actual Cost Work Performed.

All these are considered as effort in hours and costs.

PI are the Performance Indexes, where:

Home » Applications » Education » KTurtle » DPL

Under Construction

This is a new page, currently under construction!


Some screenshots taken from KTurtle, scroll down for screenshots of older versions of KTurtle. You may also want to search for KTurtle images with google.

0.8

A fresh start of KTurtle
After a little drawing

0.7

nothing yet...

0.3

nothing yet...

The following image illustrates the functionality of the toolview:

  • The Unit Tests toolview lists all defined CTests in the view
    • Tests are defined in the CMakeFile of the project
  • The toolview highlights the results of the tests
    • Successful tests are highlighted with a green arrow
    • Failed tests are highlighted with a red cross
  • Tests can be started individually or all tests can be run
    • The click on the lfa test case starts the lfa test which appears in the "Run" toolview
    • The small Execute button in the Unit test toolview runs all test cases
  • KPlato/Manual/Task Performance View==Task performance chart==

On the task performance chart we can analyze deeply each sub task or task with the same indexes as for the project performance view. This is really useful in long and complicated project

On the left window you can choose each single sub task as well as an entire task, than on the right window will appear the corresponding chart.

where:

  • BCWS means Budgeted Cost Work Scheduled,
  • BCWP means Budgeted Cost Work Performed,
  • ACWP means Actual Cost Work Performed.

All these are considered as effort in hours and costs.

PI are the Performance Indexes, where:

KGpg is a simple interface for GnuPG, a powerful encryption utility. GnuPG (also known as gpg) is included in most distributions and should be installed on your system. You can get the latest version on gnupg.org.

With KGpg you will be able to encrypt and decrypt your files and emails, allowing much more secure communications. A mini howto on encryption with gpg is available on GnuPG's web site.

With KGpg, you don't need to remember gpg's command lines and options. Almost everything can be done with a few mouse clicks.


Next
Getting Started

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Insert Toolbar

The Insert toolbar consists of 4 buttons. Each button performs a task from the menubar. Click on that task for more details.


Button Command
Insert Picture
Insert Text Frame
Insert Formula Frame
Insert Object Frame


Prev Contents Next
The Format Toolbar The Edit Toolbar

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

How to obtain KWord

KWord is part of the KDE project http://www.kde.org. KWord is located in the KOffice package which can be obtained from ftp://ftp.kde.org/pub/kde/, the main ftp site of the KDE project.

Many distributions offer precompiled binaries on their ftp sites. Please check your distribution's web sites for more information.

If you want to compile KWord from source, then you should read through the next few sections for help on compilation.


Prev Contents Next
Credits and Licenses Requirements

Hopefully this tutorial has introduced you to the most basic tasks in KWord.

At this point, you have :

  • Started a new document using a template
  • Added text to a frame.
  • Resized text.
  • Created, moved, resized and deleted frames.

The purpose of this tutorial was not to explore every aspect of KWord, but to introduce you to the bare essentials. Hopefully you understand the basic manipulation of frames. From this point, you can refer to the specific sections of the manual for help, tips and advanced features of KWord.

Prev Contents Next
Deleting a Frame Window Overview

Mike McBride

KWord can be started one of four ways:

1. You can select KWord through the system menus, under: K-Button->Office->KWord.
2. If you are in a terminal program (Konsole, Xterm, etc.), you can type:
$ kword &

Or

$ kword filename &


3. Using Konqueror, you can click on your data file (KWord documents end in .kwd). This will automatically start KWord and begin editing the file.
4. Using the KOffice Workspace.
Prev Contents Next
What parts of this guide should I read? Introduction to Templates

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

File Toolbar

The File toolbar consists of 5 buttons. Each button performs a task from the menubar. Click on that task for more details.


Button Command
Open New File
Open Saved File
KWord/1.5/Manual/SaveDoc
Print File
Print Preview
Prev Contents Next
The Menubar The Format Toolbar

The Paragraph toolbar consists of 9 buttons. Each button performs a task from the menubar.


Button Command
Select Character Style
Left Text Align
Center Text Align
Right Text Align
Justify Text
Numbered Text paragraphs
Bulleted Text paragraphs
Reduce paragraph indent
Increase Paragraph Indent


Prev Contents Next
The Edit Toolbar The Border Toolbar

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Tutorial: Deleting a frame

Now we will delete an unneeded frame. We will delete the long text frame on the right side of the page.

Step 21: Place the mouse pointer over the frame border of the right hand text frame (Remember: watch for the pointer to change), and click with the left mouse button.

This selects the frame.

Step 22: Select Frames->Delete Frame.

A small dialog box appears, checking that you really intended to delete this frame.

Step 23: Select Delete.

This deletes the frame.

Prev Contents Next
Adding a new frame and Making text flow between two frames Tutorial Summary

Decrypting Your Data

Decrypting a file from Konqueror or Dolphin

Left click on the file you want to decrypt. Enter your passphrase and it will be decrypted. You can also drag an encrypted text file and drop it into KGpg's editor window. It will then ask the passphrase and open the decrypted text in KGpg's editor. You can even drop remote files ! You can also use the File->Decrypt File and choose a file to decrypt.

Decrypting text with KGpg's applet

You can also decrypt the contents of the clipboard with the decrypt clipboard menu entry of the KGpg applet. An editor window will show up with the decrypted text.

Decrypting a text from the editor

Copy or Drag and Drop the text you want to decrypt, and click on the Decrypt button. You will be prompted for the passphrase.


Next
Key Management

Important

Hey there stranger! Please help us by extending the documentation around KDevelop. Feel free to create new pages or add useful information to existing ones. We need you!
Thanks, Milian.


Additional pages for KDevelop5

Category: Development

Under Construction

This is a new page, currently under construction!


Setup

Xdebug - Debugger and Profiler Tool for PHP

KDevelop uses Xdebug through the kdev-xdebug plugin. Setting up Xdebug is tricky, so we recommend you to use the XDebug installation wizard. The main step once xdebug is installed is to configure PHP to use Xdebug by adding

 zend_extension=path/to/xdebug 

to your php.ini. The path of your php.ini is shown in your phpinfo() output under "Loaded Configuration File".

Enable remote debugging in your php.ini:

 [XDebug]
 xdebug.remote_enable = 1
 xdebug.remote_autostart = 1

If you are doing web development, don't forget to restart your webserver to reload the settings

Verify your installation by checking your phpinfo() output for an Xdebug section.

KDevelop plugins

You need to install these two plugins:

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Inserting files

Mike McBride

KWord has the ability to insert a previously saved KWord file into the current document. This is especially useful for large documents that have multiple authors.

To insert a KWord file into the current document, place the cursor at the desired insertion point of the document.

Selecting Insert->File... from the menubar. You will be given a file selection dialog to select the KWord file you want to insert.

When you have located the KWord file, click OK, and the new KWord file will be inserted into the current document at the current cursor position.

KWord will integrate the newly inserted document into the structure of the current document.

Prev Contents Next
KOffice Data Integration Document Bookmarks

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Introduction to Filters

KWord has the ability (with varying success) to load data from foreign (non-KOffice) data files. KWord also has the ability to save data as non-KOffice data files. This is provided to help users of KWord to interact more seamlessly with people who use other operating systems and wordprocessors.

KWord does this by loading a non-KOffice datafile into memory and passing the data through a filter to extract as much information as possible from the data file. Some formatting information will be lost or changed by the filter in the attempt.

When KWord reads data into KWord from a non-KOffice file format, it is importing the data.

When KWord saves a KWord document as a non-KOffice file format, it is exporting the data.


Prev Contents Next
Command ine Options Filters included in KWord

KWord differs slightly from other word processors here. Instead of saving your file as a .pdf file, you print your file to create the .pdf file.

When you are ready to create a .pdf file from your document:

1. Select File->Print from the menubar. This will bring up the Print dialog.
2. In the combo box labeled Name, select Print to File (PDF)
3. Enter your desired filename in the Output file: text box.
4. If you wish to make any changes to the PDF formatting, select Properties.
A complete explanation to all these properties, is beyond the scope of this document.
5. Click OK.

Your PDF file will be created and saved at the location specified in Output file.

For more information on printing in KDE, visit The KDE Print web page.

Prev Contents Next
Book-like Headers and Footers Removing Template Categories

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Filters included in KWord

KWord comes with the following filters:

Application Import Export
Abiword Yes Yes
AmiPro Yes Yes
Applixword Yes No
HTML Yes Yes
KPresenter Yes No
Hancom Word Yes No
Magic Point Presentation Yes No
Microsoft® Powerpoint Yes No
Microsoft® Word Yes No
Microsoft® Write Yes Yes
Oasis OpenDocument Yes Yes
OpenOffice.org Presentation Yes No
OpenOffice.org Text Document Yes Yes
Palm Document Yes Yes
PDF Yes No
Plain Text Yes Yes
RTF Yes Yes
SGML No Yes
TeX Document No Yes
WML Yes Yes
WordPerfect® Yes Yes
XML Yes No

For details on each filter, please refer to the KOffice filters web page.


Prev Contents Next
Import and Export Filters Key Bindings Summary

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Format ToolBar

The Format toolbar consists of 9 buttons. Each button performs a task from the format character dialog.


Button Command
Select Font Face
Character Size
Toggle Bold Text
Toggle Italics
Toggle Underline
Toggle Strikeout
Toggle Superscript Text
Toggle Subscript Text
Change Font Color

Clicking on the letter changes the selected text to the color previewed in the underline. Clicking the arrow to the right of the letter will let you select a new color.


Prev Contents Next
The File Toolbar The Insert Toolbar

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Border Toolbar

The Border toolbar consists of 10 buttons. Each button performs a task from the menubar. Click on that task for more details.


Button Command
Set framestyle
Toggle border outline
Toggle Left Frame Border
Toggle Right Frame Border
Toggle Top Frame Border
Toggle Bottom Frame Border
Select Border Size
Select Border Style
Select Border Color
Select Background Color


Prev Contents Next
The Paragraph Toolbar Selecting Colors from a Select Color dialog

The Open... command can be invoked 4 ways:

  • By selecting File->Open... from the menubar
  • You can use the keyboard shortcut: Ctrl-O
  • or by clicking on the toolbar.

Any of these methods results in the same action by KWord.

Using the dialog box

When trying to open a file, a dialog appears.

For more information on using this dialog, see the section entitled Using the file dialog.

Use this dialog to locate the document you want to load. Once located, click once with the left mouse button on the filename. Once the filename is selected click OK. The file will be loaded.

There is a Cancel button, if you click this button, the load will be aborted.

Prev Contents Next
Saving a Document Printing a Document

This section of the documentation discusses accessibility features in KWord for users with disabilities. Some of these features apply to KDE as a whole and are controlled from the KDE Control Center. Some apply to all KOffice applications, and some are specific to KWord.

Installing the kdeaccessibility Module

Most of the features described in this chapter are enabled by installing the kdeaccessibility module. The kdeaccessibility module is part of the KDE project http://www.kde.org. The kdeaccessibility package can be obtained from ftp://ftp.kde.org/pub/kde/, the main ftp site of the KDE project.

Many distributions offer precompiled binaries on their ftp sites. Please check your distribution's web sites for more information.

More information about KDE accessibility can be obtained by visiting http://accessibility.kde.org/.

Prev Contents Next
Formulae Visual Impairments

The key to getting the most out of KWord, is found in the menu bars and the toolbars.

The menubar is organized into groups of functions (e.g. file functions, table functions, etc.). Below each of these groups, is a submenu of actions. Some of these submenus will have sub menus of their own.

The toolbars are also organized into groups. Each toolbar consists of a set of buttons. Each button performs a specific function. The toolbars are designed to act as shortcuts for more commonly used functions.

The first part of this section of the manual discusses the manipulation of KWord's toolbars to suit your needs.

The second part of this section, takes a detailed look at each menubar function, and each standard toolbar button, and provides you with a brief summary of its action. Many of these sections also provide you with a link to more detailed information located elsewhere in the KWord Handbook.

Prev Contents Next
Removing Template Categories Hiding, Changing and Moving Toolbars

Proposed for Deletion

This page has been proposed for deletion for the following reason:

KWord has been superseded by Calligra Words.

Please use the discussion section of this page to voice your opinion on this.

Columns

Mike McBride

You can divide the page into several columns, of equal width, with a user controlled space in between each column.

Note
This feature is only available in Text Oriented documents.
If you are working in a Page Layout document, you can build up several columns using a different frame for each column.

To change the number and width of columns select Format->Page Layout... from the menubar.

This will bring up a dialog box.

Click on the tab labeled Columns.

This will change the dialog box.

You can now select the number of columns in the spin box labeled Columns:, and the spacing between columns in the text box labeled Column spacing:.

The preview box shows you what your page will look like.

Click OK when you are done.

Click Cancel to abort changes.

Prev Contents Next
Text Styles Lists

There are 1553 pages beginning with Ka-Kz

Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Information

This page no longer exists on UserBase. The contents have been moved to docs.kdenlive.org. Sorry for the inconvenience.


Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Werkzeuge

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Under Construction

This is a new page, currently under construction!

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

alle Dinge Krypto

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Glow (GLSL)

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Note

Please refer to the official Krita manual.

Placeholder

Placeholder

Placeholder

Placeholder

This page was moved to the Community Wiki

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Parent page redirects to docs.kdenlive.org.

Please use the discussion section of this page to voice your opinion on this.

threelay0r

Proposed for Deletion

This page has been proposed for deletion for the following reason:

This app is unmaintained and no longer released by the KDE community. Empty page.

Please use the discussion section of this page to voice your opinion on this.

Information

{{{1}}}

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Does not have a parent wiki page.

Please use the discussion section of this page to voice your opinion on this.

PDF Filter

The import can import a good range of documents.

For exporting to PDF, please print to PDF.

Frei0r.colorize

Colorizes image to selected hue, saturation and lightness

Frei0r-addition_alpha

Perform an RGB[A] addition_alpha operation of the pixel sources

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Instead, use https://userbase.kde.org/Khipu

Please use the discussion section of this page to voice your opinion on this.


Yellow clip has a triangle alpha shape with min = 0 and max =618.

Green clip has rectangle alpha shape with min=0 and max =1000

Alphaover is the transition in between

KWord can read ApplixWord documents quite good. However, there's limitations because text formatting, colors, paragraph, and special characters are supported. Styles and inline images will be lost during conversion.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

The parent wiki page has moved to docs.kdenlive.org.

Please use the discussion section of this page to voice your opinion on this.

addition transition

Frei0r-addition Perform an RGB[A] addition operation of the pixel sources.

  • Kword/1.6/DocBookKWord can save DocBook documents in the SGML version only. It saves texts, lists, pictures, tables and hyperlinks. Only the simplest formatting (bold and italic) are supported. Pictures are saved into a sub-directory.

KWord cannot load any DocBook document.

KWord can not import LaTeX documents.

KWord can export to text to LaTeX documents. Formulas, pictures, and simple tables are partially supported.

KWord is used only as a text editor and does not function as a WYSIWYG editor for LaTeX documents.

View>Timeline

Toggles the display of the Timeline

Audio Signal

You can monitor the levels of the audio as the clip plays with this widget.

View>Effect Stack

Toggles the display of the Effect Stack

View>Transition

Toggles the display of the Transition Tab

Toggles the display of the Project Monitor.

View>Project Tree

Toggles the display of the The Project Tree

This window allows you to monitor the colour properties of your clip in detail.

See Granjow's blog here and here on the Vectorscope.

Frei0r-alphain The alpha IN operation.

Yellow clip has a triangle alpha shape with min = 0 and max =618.

Green clip has rectangle alpha shape with min=0 and max =1000

alphain is the transition in between

Full Screen Mode

Selecting this causes Kdenlive to fill the entire screen. Select this menu item again to undo full screen mode.

Frei0r-alphaout

the alpha OUT operation

Yellow clip has a triangle alpha shape with min = 0 and max =618.

Green clip has rectangle alpha shape with min=0 and max =1000

alphaout is the transition in between

Toolbars Shown

Toggles the display of the Main and Extra Toolbars

Frei0r-alphaatop The alpha ATOP operation.

Yellow clip has a triangle alpha shape with min = 0 and max =618.

Green clip has rectangle alpha shape with min=0 and max =1000

alphaatop is the transition in between .

TODO - Appears to be deprecated in 2.9

WML (Wireless Mark-up Language) is the mark-up language used to deliver content to mobile devices. WML is like a mobile version of HTML.

KWord can read from and save to WML format files and already understand most WML tags.

There is no support for WBMP (Wireless Bitmap), which is the monochrome image format used as inline image inside WML documents.

Main Khipu Dashboard
Dictionary feature for 2D
3D Space
2D Space
User's work shown on Dashboard

KWord is able to read and write PalmDoc files, even with compression. The PalmDoc format doesn't specify text formatting, so all character formatting (bold, italics, etc) is lost when exporting to this format.

Note

In order to read PalmDoc files on your handheld, you will need a reader. Three common readers are the Weasel Reader, AportisDoc, or iSilo.

twolay0r

This is the Frei0r-twolay0r filter.

Dynamic thresholding

The #evp parser function was deprecated in EmbedVideo 2.0. Please convert your parser function tag to #ev.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Almost no content, and what's present is not substantial.

Please use the discussion section of this page to voice your opinion on this.

Cloning Displays

Displays can be easily be cloned by dragging them on top of one another when viewing the display layout. To use the maximum amount of screen real estate, switch the primary output to the larger-resolution display using the icons at the bottom of the display shown in the layout.

This allows you to open up the automatic backups of the projects that Kdenlive creates.

See Backup.

Yellow clip has a triangle alpha shape with min = 0 and max =618.

Green clip has rectangle alpha shape with min=0 and max =1000

Alphaover is the transition in between

KWord can read and write simple AmiPro documents. Only formatted text, paragraph, and styles are supported. More advanced features such as frames, embedded images and equations are not supported.

Note

WordPro, the latest wordprocessor from Lotus, uses a different format than AmiPro. Therefore, if you want to read WordPro documents from KWord, you should save it in AmiPro format.

File Menu - Close

Not sure what this is supposed to do. It is always greyed out on my Kdenlive.

Maybe it is there ready for a version of Kdenlive that can have more than one project open at a time.

Final

RC1

Packages

Under Construction

This is a new page, currently under construction!

Information

This handbook for Kexi 2.2 is meant to be based on the Kexi Handbook for Kexi 1.1.
Please coordinate any effort with Jarosław Staniek, email: kexi at kde.org


TITLE

Page template for Kexi manual

Previous Next
XXX XXX

KWord can read and write WordPerfect documents, starting from WordPerfect version 5.1, and including the latest WordPerfect 2002.

The filter is still in development, only a subset of WordPerfect features are supported including text formatting, WordPerfect character sets, and paragraph settings.

WordPerfect 4.x format or earlier versions are not supported. There is no support for styles, frames, or graphics (WPG).

This is the Frei0r-nosync0r MLT filter

Video looks like a broken TV with bottom half of picture on the top of screen

Used to create a clip with either a countdown timer or noise.

This option is also available from the Add Clip icon in the Project Tree — see Generators.

Note

This Cheat Sheet should contain most frequently used and hard to remember hints.
Issue https://invent.kde.org/office/kexi/-/issues/114


See https://www.customguide.com/cheat-sheet/microsoft-access-cheat-sheet.pdf as an example

Note

How to start? First let's collect information here before designing graphical layout for the sheets. Instead of pasting information, we can reference it if already available in the Kexi/Handbook.

Configure Notifications

This feature allows you to customize the feedback the application provides when certain events happen. For example, you can change the sound effect that fires when rendering finishes.

threshold0

This is the Frei0r-threshold0r filter

Thresholds a source image.


The #evp parser function was deprecated in EmbedVideo 2.0. Please convert your parser function tag to #ev.

Different to Threshold

This rather minimally named effect is the frei0r.B effect from Richard Spindler.

This is down as "Extract Blue from Image". But to me it removes all colour and I get a grey image.

This effect appeared in Kdenlive ver 0.9.3 in the Color group. There are also frei0r.G and frei0r.R filters that extract Green and Red - but they are not in Kdenlive - dunno why.

Removed from Kdenlive ~ ver 17.04

Brings up a list of pre-configured color themes to choose from. Some people have strong preferences about whether light or dark themes are better for a video editor. There are some of both to choose from here.

Analyse Keyframes

<Place holder > What is this menu Item supposed to do ?

This menu item is available from the Clip Jobs menu that appears when you right-click on a clip in the Project Tree

Note:This tool has been moved into the Add Shape Docker along with an entire set of other geometric shapes

<!DOCTYPE knewstuff SYSTEM "knewstuff.dtd"> <knewstuff> <stuff category="application/x-khipu">

       <name>The name of the test</name>
       <author>The author</author>
       <email>[email protected]</email>
       <license>Public Domain</license>
       <summary>This is a summary</summary>
       <version>1.0</version>
       <releasedate>some date</releasedate>
       <payload>http://userbase.kde.org/Khipu/newstuff/data/test.khipu</payload>

</stuff> </knewstuff>

Bluetooth-Geräte in KDE einbinden

Kbluetooth wird die Aufgabe übernehmen, die bisher von Kdebluetooth erfüllt wurde. Am 12. November 2009 wurde der zweite Veröffentlichungskandidat angekündigt - man kann also davon ausgehen, dass es sich in Kürze in den Distributionen wiederfinden lassen wird.

Den Fortschritt kann man auf der Projektseite verfolgen.

Since Version 21.04.0

The new Media Browser allows you to easily navigate through your file system and add clips directly to the Bin or Timeline. You can enable it from View menu.


Under Construction

This is a new page, currently under construction!

Information

This manual is a rewrite of the 1.6 manual. It is not complete.


The Resource Manager

The Resource Manager will be availeble in Krita 2.9. It is a tool to allow artists to manage the resources in their copy of Krita. This page will be updated as more details are known.


Khipu is an Advanced Mathematical function plotter application.
It is part of the KDE Education Project and a replacement of an earlier function plotting application KmPlot.

Khipu space-3D

Stop Motion Capture

Capture images a frame at a time from a camera plugged into the HDMI port of a Linux-compatible capture card to create stop motion animation. You can also transparently overlay the last captured frame on the monitor to easily see the difference with current live feed.

See j-b-m's blog on this feature.

The pan tool is used to move or rotate your canvas. To pan across the image simply click on the image and drag. To rotate your image hold Shift and then click and drag. This will not affect the position or rotation of your image file but only your perspective of your image.

Run Config Wizard

This feature re-runs the config wizard that runs when you first install or upgrade Kdenlive. It gives you the opportunity to choose the default settings again for things like the default project settings. It also resets many settings back to "factory defaults" so it can be useful to run this if the Kdenlive application is misbehaving.

Note: Since around August, 2013 when the kdenlive.org web site was refurbished, this feature has been unavailable and the "Get Hot New Stuff" window will wait forever to update. See Mantis 3133.

The Download new Render profiles is now working as at Oct 2105. However the download New Project Profiles is still not working as at Oct 2015.

Adjust Profile to Current Clip

This function is available from the Project menu.

This function offers up a suggested Project Profile that would be most suitable for the properties of the currently selected clip (selected in the Project Tree?).

You get to see the profile it suggests and accept the suggestion or cancel.

Reload clip menu

This menu item is available from right-clicking a clip in the Project Bin. Reload Clip will re-import the clip into Kdenlive from the system. This is useful when you edit a clip outside of Kdenlive and want Kdenlive to update it in the project.


This feature allows you to download and install files that can be used as Wipe files in the Wipe transition. These files are greyscale images in the pgm format.

If you have your own wipe files that you would like to share with the community you can upload them to store.kde.org which should make them available from this Download New Wipes function.

Zum Vergrößern anklicken
Ein klassischer CD-Player

Funktionen

Die Buttons zur Linken -
Nächstes Stück, letztes Stück, Stopp und Auswerfen
Auf der Anzeige -
Künster- und AlbumnamenThe artist and album names
Zeitpunkt des aktuell gespielten Stückes
Lautstärke
Auf dem Rad -
Lautstärkekontrolle, stellt einen Lautstärkedrehschalter nach.
Unterhalb der Anzeigt -
Zufallswiedergabe, Schleife, Abspielliste und Lautlos-Schalter
Die Abspielliste öffnet ein neues Fenster, das alle Stücke mit Nummer, Name und Länge aufzählt.
Duplicate clip menu

This menu item is available from right-clicking a clip in the Project Bin. Duplicate Clip will add another clip in the project bin from the first clip. This can be useful when applying effects to clips, and allowing you to have the same source file with two different sets of applied effects.


This is only for Vector Layers.

This docker determines where or not a manipulated vector shape will snap, and in what ways it will snap.

The little number box is for snapping to a grid.

Node
For snapping to other vector nodes.
Extensions of Line
For snapping to a point that could have been part of a line, had it been extended.
Bounding Box
For snapping to the bounding box of a vector shape.
Orthogonal
For snapping to only horizontal or vertical lines.
Intersection
for snapping to other vector lines.
Guides
Guides don't exist in krita, therefore this one is useless.

Manage Project Profiles

This is available from the Settings menu.

Once the dialog appears, select a profile to modify from the drop down.

Next, click the button with a green plus on it. This will make all the Properties fields editable.

Fill in the settings for your project profile, give it a new Description and click the OK button.

See also HOWTO Produce 4k and 2K videos, YouTube compatible

This window allows you to monitor the colour properties of your clip in detail.

The Vectorscope shows the hue and saturation distribution in a way we can understand without problems. This is useful for quickly recognizing color casts, but also helps judging the color distribution of a clip and matching it to others.

See Granjow's blog here and here on the Vectorscope.

Refers to Khipu 1.0.0 (September 2013).

Table of Contents

  1. Introduction
  2. Quick Start Guide
  3. Playing with Plot-Dictionary
  4. Khipu : Beyond just plotting
  5. Inside .khipu files
  6. Credits and License

Mono to stereo

There is a small bug in Kdenlive that makes this mono to stereo effect confusing (in 0.9.4). In 0.9.4 you should set both "To" parameters to the track you want to copy to and "From" as the track you want to copy from. The swap option exchanges the two tracks instead of copying one onto the other.

Keep in mind that this effect (name is probably misleading) is not for mono clips. This "Mono to Stereo" effect is designed for clips that have 2 or more audio tracks, and allows you to duplicate one of the tracks on the other. For example if your left channel is bad for some reason, this will allow you to have the right channel copied onto the left one.

Source: this forum post by J-B-M.

Clean Project

Available from the Project menu this function removes any clips from the Project Tree that are not currently being used on the timeline. The files remain on the hard drive and are only removed from the Project Tree.

You can undo this action with Ctrl+Z.

This is different from the Delete files button on the Project Files tab in Project Settings which deletes files not used by the project from the hard drive.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

This app is unmaintained and no longer released by the KDE community. Translated page without English page.

Please use the discussion section of this page to voice your opinion on this.
Karbon14 importando un clipart
 Su aplicación de diseño vectorial escalable


  • Cree clip-arts y caricaturas escalables
  • Importe sus diagramas de Kivio o imágenes de KChart y añada detalles de diseño gráfico
  • Modifique clip-arts existentes para crear imágenes escalables de alta calidad



Añada formas y gradientes
 
Importe y trabaje en clip-arts

Vea más capturas de pantalla aquí

Consejos, Claves y Tutoriales

Information

Este sitio se encuentra en construcción

Automatic Scene Split

This job detects Scene changes in the clip and create markers or cut the clip into sub clips.

Cut scenes are numbered and sorted under the clip in the project bin window and will be saved with your project


This menu item is available from the Clip Jobs menu that appears when you right-click on a clip in the Project Tree


Since version 20.04.0

Replace Clip Menu

This menu item is available from right-clicking a clip in the Project Bin. Replace Clip will allow you to select a different file but keep all of the uses on the timeline. This can be useful if you work first with placeholder clips (i.e. low resolution) and on the end, before rendering, you replace the clip with the final clip.

Motion Effects - Speed

Make clip play faster or slower. Use of this effect mutes the audio of the clip.

The Stroboscope setting defines the number frames the effect skips when playing back. For example, if Stroboscope is set to 5 then the efect will only show every fifth frame but will show these frames for five times as long, producing a jumpy, stroboscopic effect.

It has been reported that the Speed effect does not work very well on H.264-formatted source video. It is recommended to transcode your source material into the DNxHD format and apply the Speed effect to that. (forum post)

This feature is only enabled while an Edit -> Find operation is in progress and only after a successful match has been found. If you have the same clip used more than once in the timeline or you have multiple clips with similar names, you can find the additional occurrences of those clips using this feature. Once you get your first match using Edit -> Find, you can click Edit -> Find Next (or better yet, the default keyboard shortcut F3, since you've only got five seconds to execute it!) and the cursor will move to the next clip(s) that contain a match for the characters you typed.

This scope displays a frequency histogram of the luminance of the color components of the video. This information is useful when used in combination with color correction effects to perform color correction on the video. Color correction includes increasing the brightness or adjusting the white balance to ensure that white remains white and not blue.

The histograms have the luminance on the horizontal axis going from 0 on the left to 255 on the right. The vertical (Y) axis represents the count of the total number of pixels in the current video frame with a given luminance.

For more information read Granjow's blog on the histogram scope.

Ideas and Categories

Animation

  • Animated titles
    • Vector graphic primatives
      • Rect, Oval, Polygon, Star, Curve
    • Shape tweens
    • Text transitions
  • Particle system

Scripting/Programming

  • Embed Processing animations/graphics
  • JavaScript console
  • Python console

User Interface

  • Node-based compositor
  • Audio meter
    • Spectrogram
    • Volume Units (i.e. dB)
  • Color analysis
    • Histogram

Discussion



3.0.0

RC1

Alpha

Packages

KaOS

Kamoso Frameworks 5 based has been part of a default KaOS install since February 2015. If not installed, it can be obtained with

sudo pacman -Syu
sudo pacman -S kamoso

Kubuntu

Available for Xenial and Zesty in the archive

sudo apt install kamoso

Waveform

This data is a 3D histogram. It represents the Luma component (whiteness) of the video. It is the same type of graph as for the RGB Parade. The horizontal axis represents the horizontal axis in the video frame. The vertical axis is the pixel luma from 0 to 255. The brightness of the point on the graph represents the count of the number of pixels with this luma in this column of pixels in the video frame.

For more information see Granjow's blog on the waveform and RGB parade scopes. This blog gives some information on how to use the data provided by the RGB parade to do color correction on video footage.

This allows you to monitor the audio properties of your clip in detail. The spectrogram displays the loudness (in decibels) of the audio at different audio frequencies over the entire length of the clip. In the spectrogram, the horizontal axis represents the audio frequency and the loudness is represented by the brightness (versions <= 0.9.8) or the colour (versions >= 0.9.10) of the pixel on the graph. The vertical axis represents frame number.


Spectogram monitor in versions 0.9.8 or lower.
Spectogram monitor in versions 0.9.10 or higher.


For more information see Granjow's blog on Spectogram

Kubuntu uses Launchpad to keep track of bugs and their fixes. To file a bug you first need to create an account. Once you have an account you can use the tools we've provided you on your Kubuntu system to file bug reports. For the desktop environment and most applications, the KDE Bug Tracker is also used. Reporting bugs there will get them closer to the actual developer of the application, but be wary of bugs that may be specific to Kubuntu. If you aren't sure, please file bugs in Launchpad first.

Reporting bugs

Use the menu - try this first!

Dummy Picture

Dummy Picture

Crashes

Dummy Picture

Dummy Picture

Filing with ubuntu-bug

Dummy Picture

Dummy Picture

Choosing the right package

When to not file a bug

Getting advice

Further reading

Imports almost everything except OLE from MS Write (3.0 & 3.1) documents:

  • Character formatting (fonts, bold, italic, underline, superscript, subscript, "(page)" numbering)
  • Optional/Soft Hyphenation
  • Paragraph formatting (alignment, linespacing, indentation, tabulation)
  • Paragraphs with multiple newlines
  • Pagebreaking (at the start or end of the line and on the next line)
  • Images (Standard WMFs, monochrome BMPs, position from left margin)
  • Character Set Conversion
  • Headers & Footers (including whether or not they are printed on first page)
  • Page formatting (margins, positioning of headers & footers, page numbers starting from any number)

Exports text, images and a useful amount of formatting to MS Write 3.0 documents:

  • This import/export filter pair is almost "symmetric" i.e. export (import (f)) = f
  • It can export everything that the import filter can import except Page Layout
  • Images of various types (e.g. BMP, JPEG, WMF, PNG) are supported
  • Tables are simply dumped out as paragraphs
  • Basic list support

This is a measurement tool, not an effect. It can show color values of single pixels or statistics of small rectangular areas. It is also useful as a pixel-peeping "loupe".

It can display the following values:

  • RGB
  • YCC in either rec 601 or rec 709 standards
  • HSV
  • HSL

The position and size of the measured area is set by the X, Y, Xsize and Ysize parameters. A small crosshair marker is shown in the image, where the measurement is being made.

If "256 scale" is checked, values are displayed as 0...255 integers, otherwise they are displayed as 0...1 floating point numbers.

If "Show alpha" is checked, alpha channel values are displayed too.

If "Big window" is checked, a bigger area around the center pixel is displayed in the "loupe".

Pr0be can also be used to measure image noise. Just place the measurement rectangle on an uniform part of the image, that contains no image detail or gradient, and read the RMS value.

Note

The values are displayed with a rather small font, so they might not be readable, if the image is not displayed at a big enough scale (1:1 pixel is optimum)

There are 2280 pages beginning with L-Z

<translate>

Definitions

Introduction

In project management, terms may be used in different ways in different programs or different companies or project types. Looking at more exhaustive project management glossaries, one will find alternative definitions for most terms.

This list defines how certain terms are used in Plan.

Terms

</translate>

<translate>

Account
An account is used in a Cost Breakdown Structure (CBS) to represent a place where cost from tasks or resources can be aggregated.

</translate>

<translate>

Allocation
Tasks are allocated to Resources during the planning stage of the project. The actual assignment is done during scheduling. Note that assignment is not guaranteed as the resource may not be available.

</translate>

<translate>

Assignment
Tasks are assigned to Resources during scheduling.

</translate>

<translate>

CBS
Cost Breakdown Structure

</translate>

<translate>

CPI
Is the Cost Performance Index and is equal to BCWP/ACWP. When this index is below 1, means that you are over budget. If the index is greater than 1 means that the costs are under budget.

</translate>

<translate>

Cost Breakdown structure
The CBS organizes accounts into a structure to enable cost to be aggregated independent of the WBS and RBS.

</translate>

<translate>

Estimate
The estimate is the expected amount of effort or time needed to complete a task.

</translate>

<translate>

Milestone
A milestone is a task with an effort of 0.00h. It is typically used to mark a major outcome, for example the completion of a deliverable upon customer acceptance.

</translate>

<translate>

PERT
Program Evaluation and Review Technique

</translate>

<translate>

Program Evaluation and Review Technique
The Program Evaluation and Review Technique is an enhancement to the Critical Path Method. Task effort estimates in CPM are point estimates, while task effort estimates in PERT are computed by weighting the Optimistic, Most Likely, and Pessimistic estimates (O+(4*M)+P)/6.

</translate>

<translate>

PERT Distribution
A simplified way to calculate Expected estimate from Optimistic-, Most Likely- and Pessimistic estimate.

</translate>

<translate>

RBS
Resource Breakdown Structure

</translate>

<translate>

Resource Breakdown Structure
The RBS organizes resources into resource groups.

</translate>

<translate>

Resource
A resource can be of type Work, Material or Team. A resource must always belong to a Resource Group.

</translate>

<translate>

Resource Group
A resource group is used to group similar resources.

</translate>

<translate>

Resource Team
A resource team is a resource that consists of a number of other resources.

</translate>

<translate>

SPI
Is the Schedule Performance Index and is equal to BCWP/BCWS. When this index is below 1, means that you are behind schedule. If the index is greater than 1 means that you are ahead of the schedule.

</translate>

<translate>

Summary Task
A Summary Task has subordinate Sub-Tasks, and rolls up information based on the Sub-Tasks.

</translate>

<translate>

Task
A Task is a unit of work. Resources are generally allocated at the Task level.

</translate>

<translate>

vCard
vCard is a file format standard for electronic business cards.

</translate>

<translate>

WBS
Work Breakdown Structure

</translate>

<translate>

Work Breakdown Structure
The WBS is used to break down large projects into manageable chunks to ease planning and management.

</translate>

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

{{#UseLiquidThreads:1}}

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Placeholder

Proposed for Deletion

This page has been proposed for deletion for the following reason:

This content does not exist.

Please use the discussion section of this page to voice your opinion on this.

Working with Languages

Note

This document is work in progress


Create New Project

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Empty page.

Please use the discussion section of this page to voice your opinion on this.

Here will be the User Manual of Macaw-Movies

https://techbase.kde.org/Projects/Usability/HIG/Layout


Under Construction

This is a new page, currently under construction!



  • LabPlot/Cursor toolSee the video on how to use the Cursor Tool to measure the positions and distances on plots.
  • LabPlot/CursorToolSee the video on how to use the Cursor Tool to measure the positions and distances on plots.
  • LabPlot/StatisticsSee the video on how to quickly get descriptive statistics and visual overview of your data.

Proposed for Deletion

This page has been proposed for deletion for the following reason:

Nothing links here.

Please use the discussion section of this page to voice your opinion on this.

See the video on how to smooth your data in LabPlot.

Under Construction

This is a new page, currently under construction!

Cost Breakdown View

Under Construction

This is a new page, currently under construction!

Work Package View

Under Construction

This is a new page, currently under construction!

Configure Plan Dialog

Note

This document is work in progress


Shared Resources is created in a separate file and then referenced when you create a new project.

Under Construction

This is a new page, currently under construction!

Task Progress Dialog

Under Construction

This is a new page, currently under construction!

Define Currency Dialog

Information

Your Team Leader is Gallaecio
Remember that if you ask questions on the Discussion page others may benefit from it.

Under Construction

This is a new page, currently under construction!

Project Settings Dialog

TODO

Under Construction

This is a new page, currently under construction!

Task Settings Dialog

Under Construction

This is a new page, currently under construction!

Summary Task Settings Dialog

Under Construction

This is a new page, currently under construction!

Edit Work Intervals Dialog

Under Construction

This is a new page, currently under construction!

Define Estimate Conversions Dialog

Under Construction

This is a new page, currently under construction!

Resource Settings Dialog

Under Construction

This is a new page, currently under construction!

Insert File Dialog

Information

Your Team Leader is Periliocastrol
Remember that if you ask questions on the Discussion page others may benefit from it.

Under Construction

This is a new page, currently under construction!

Define WBS Pattern Dialog


Proposed for Deletion

This page has been proposed for deletion for the following reason:

This wiki page does not have a parent wiki page.

Please use the discussion section of this page to voice your opinion on this.

Template: Introducing Plan


See the video on how to fit a probability distribution in LabPlot.

Properties Explorer allows the user to modify the properties of the currently selected object in the Project Explorer.

Information

Cette page est en construction, vous pouvez y déposer les ressources qui vous sont utiles pour la traduction du wiki. Plus de détails suivront bientôt avec l'intégration de pology.

The .dtd for kvtml 2 can be found here: http://edu.kde.org/kvtml/kvtml2.dtd

Note

This document is work in progress

The Plan How to

Organize your projects
Create new project
Create shared resources

See the video on how to import a SPSS file and export it to text in LabPlot.

Import a Binary Logging File (BLF)

See the video on how to import a Binary Logging File (BLF) and export it to text in LabPlot.

|

|Global Policy Configurations |}

Information

If you know something about these preferences then please help us by adding information. Don't worry about formatting. We will help you ensure that your text is properly formatted.

Information

This page is under construction


The PlanWork Handbook

Introduction

Introducing PlanWork


Next
Introducing PlanWork

|

|Setting permissions for the K3b disc burning application |}

Information

If you know something about these preferences then please help us by adding information. Don't worry about formatting. We will help you ensure that your text is properly formatted.

Additionally, you can find the relevant api documentation on api.kde.org.

They provide similar functionality but have different strengths and weaknesses.

While converters do exist, in general, speech models (and base models) can not be transferred between the two systems.

Under Construction

This is a new page, currently under construction!

Task Dependency Editor (List)

Note

This view is not shown by default. For large projects, it can impact performance severely


It can be activated using the View Selector context menu.


|

|Integrating hardware with your workspace |}

Information

If you know something about these preferences then please help us by adding information. Don't worry about formatting. We will help you ensure that your text is properly formatted.


This configuration dialog is used to manage the backends used by Solid to retrieve information from and handle hardware.

See the video on how to make a scatter plot in Labplot.

How to make a line plot

See the video on how to make a line plot in Labplot.

How to make multi-axes and multi-range plots

See the video on how to make multi-axes and multi-range plots in Labplot.

  • System Settings/Notifications/en
  • LabPlot/DataContainersData containers in LabPlot are used to hold the data that is used for the visualisation and for the data analysis. This data is either directly generated in LabPlot or imported from internal sources like files, network sockets, MQTT sources, etc.

Under Construction

This is a new page, currently under construction!

Context Help

Many functions and views have help and hints that can be displayed with the What's This function. You can activate it with the menu entry Help->WhatsThis or keyboard shortcut Shift+F1.

In dialogs it is activated by pressing the ? in the dialogs title bar.

OpenMARY does include a couple of languages by default (English, German,...). A voice for brazilian portoguese is currently being added. At the moment it can be found on the creators website.

Plotting

Data manupilation

|

|Installing, updating and removing software |}

Information

If you know something about these preferences then please help us by adding information. Don't worry about formatting. We will help you ensure that your text is properly formatted.



Get and Remove Software


Software Updates


Settings

  • Welcome
  • Common Tasks - What fits here - not things that are advanced or rarely met

Definition pages - e.g. how to find versions - not linked from front page, but linked from other pages (eg kde4-config --version, uname, etc.)

    • Installing a new application
      • Distro
      • Other
        • From additional repo (eg google or adobe)
        • From distro-type binary
        • From source?


    • Installing hardware drivers
      • Identifying what driver is needed
      • Does the distro have that?
      • If not...


  • Tutorials
  • Getting More Help

Contents

The Startup View is shown at startup and when File->New is selected.

It has 3 sections for:

  • Opening existing projects. This section gives you the possibility to open an existing project file or one of the 10 most recent projects you have opened.
  • The Help section gives you links to introductory pages, documentation and community forum.

Description

The Project performance view is a project management chart where can be understood the actual situation of the project according to the Earned Value Method.

where:

  • BCWS means Budgeted Cost Work Scheduled,
  • BCWP means Budgeted Cost Work Performed,
  • ACWP means Actual Cost Work Performed.

All these are considered as effort in hours and costs.

PI are the Performance Indexes, where:

  • CPI is the Cost Performance Index,
  • SPI is the Schedule Performance Index.

Matrix is another container for matrix-like data. This container is presented like a table or, alternatively, as a two-dimensional greyscale image. The elements of such a table/matrix can be thought as being the$z$-values, $z=z(x,y)$, with $x$ and $y$ values being the row and column numbers, respectively. The transition from the row and column numbers to the logical coordinates is done via an explicit user-defined mapping of both representations.

The matrix data can either be entered manually or via an import from an external file. Similar to the data generation for a column in a spreadsheet, the matrix can be filled with constant values or via a formula, too.

Last 7 days (Top 10)

Top 20 contributors of last 10 years

Last 3,700 days (Top 20)

Graphs

Edits over the past 4 days:


Daily Edits, for the past month:


Daily Edits, for the last 3 months:


Active translators:


New registrations, by month, over 1 year:


Print version

  • Import an image containing plots and curves where you want to read the data points from
  • Select the plot type (Cartesian, polar, etc.)
  • Select tree reference points and provide values for them. With the help of these points, the logical coordinate system is determined
  • Create a new Data Extractor curve and set the type of error bars.
  • Switch to the mouse mode "Set Curve Points" and start selecting points on the imported image - the coordinates for the selected points are determined and added to the spreadsheet "Data".

Note: The Data Extractor is a renamed version of Data Picker.

For example: If you want to control Firefox, just install the Firefox scenario.

Scenarios include your vocabulary, grammar, trainings texts and commands.

You can download and import scenarios through the manage scenarios dialog (Manage scenarios > Import > Download). You can also browse this repository online.

If you create new scenarios, please upload them through the upload feature from within Simon or directly on KDE Files (see above) to share them with other Simon users.

Next to scenarios, you need to train / create / get an acoustic model before Simon will recognize your voice. You might want to look at base models for more information.

The pvfViewer application allows the opening of PC Stitch Pattern Viewer files that can be obtained from the PatternsOnline website. These files have a .pvf extension.

The application has had limited testing so far, but appears to work well with the small number of files tested. If you come across any that it will not open please let me know.

Manual

A User manual is installed with the application.

Screenshots

The Main Window
The Main Window

Features

  • Open multiple .pvf files concurrently using a tabbed interface
  • Print pattern
  • Export PDF

Download

Development code is available here

An example pattern is available here.

Let's suppose your collection is already on your hard disk.

This is what the screen will look like the first time you start Parley:



Click on Open an Existing Collection.

In the file selection dialog, navigate to the directory containing the data file, and select it by clicking on it. Depending on your system the file either opens immediately, or you have to click <menucohice>OK</menuchoice>



Now, the file is loaded, and you move on to the Practice setup screen: see the following section for further details.

On the task performance chart, we can analyze deeply each subtask or task with the same indexes as for the project performance view.

This is really useful in a long and complicated project.

On the left window, you can choose every single sub-task as well as an entire task, then on the right window will appear in the corresponding chart.

where:

  • BCWS means Budgeted Cost Work Scheduled,
  • BCWP means Budgeted Cost Work Performed,
  • ACWP means Actual Cost Work Performed.

All these are considered as effort in hours and costs.

PI are the Performance Indexes, where:

  • CPI is the Cost Performance Index,
  • SPI is the Schedule Performance Index.

Under Construction

This is a new page, currently under construction!

Manage your tasks with PlanWork

Features

PlanWork is a personal task manager for Plan projects.

PlanWork assists project members during execution of the tasks they have been assigned to. Data is tranferred between the project manager and the individual member as work packages sent by mail. A work package consists of the information the member needs to perform the task, like name and description, planned start- and finish time, planned effort and relevant documents.

Links

The PlanWork Manual

Gesty myszy dla wszystkich przeglądarek

Kliknij tu i ściągnij plik browsergestures.khotkeys.(wymaga KDE SC 4.3 lub nowszego)

Wsparcie dla:

- Konqueror

- Firefox

- Opera

- Arora

- Rekonq

- Chromium

- Dolphin

- Kontact

Następnie: Wejdź w Ustawienia systemowe -> Akcje klawiszowe -> Edytuj -> Importuj... ->Importuj plik browsergestures.khotkeys. Kliknij "Ustawienia", zaznacz "Gesty", domyślny przycisk myszki jest ustawiony na "2" (kółko myszy), możesz wybrać "3" (prawy przycisk).

Ponieważ Opera obsługuje własne gesty, możesz ją usunąć w zakładce Warunki.

Description

You can create resources for a project using the Resource Editor and Work and Vacation Editor.

However, if you are going to use the same resources in many projects (which is often the case) it is more convenient to maintain resources in a separate file. The best way to do this is to create your resources file first and then set up Plan to always load this file when creating a new project.

If you are managing projects that use totally different resource pools you can create multiple resource files, but one project can only refer to one resource file.

You can select the resource file to use when creating a new project.

Under Construction

This is a new page, currently under construction!


Devices that were reported to works

x86_64 with 32 bits UEFI support (Windows tablets)

Devices Wifi Touchscreen Dock Auto rotation
HP Stream 8 Yes Yes Unknown Unknown
Dell Venue 8 Pro Yes as Alpha6 Yes Unknown Unknown
Wacom cintiq companion 2 Yes Yes Unknown Unknown
ASUS Transformer T100TAL Yes Yes Yes No
ACER ONE S1003 (N16H1) No Yes Yes No

Source:

ARM based device

TODO

More Information

The wizard pattern is useful for guiding the user step by step through a process of either gathering information or basic configuration of an application.

Guidelines

Information

Your Team Leader is Yurchor
Remember that if you ask questions on the Discussion page others may benefit from it.


Ukrainian guides can be found on the following pages:

Настанови щодо перекладу UserBase

Загальні настанови щодо перекладу українською для багатьох проектів вільного програмного забезпечення

Настанови щодо перекладу KDE

Настанови щодо перекладу у Lokalize

Переклад категорій українською

User Name Language Lang.Code Comment Off-line? Date added
Fuhrmann Portuguese pt-BR No 20170123
Epsilon Italian, French it, fr No 20170213
Areis Brazilian Portuguese pt-BR yes 20170215
vkarpus Ukrainian uk No 20170330
mauelas Portuguese pt Yes 20170405
ncramarossa Italian it Yes 20170609
TFella German de No 20170609
RobberPhex Chinese (China) zh-CN No 20170609
M.bmb5 French fr Yes 20170628
Dfcastelao Spanish es no 20170821
Benk2x_at_k2xSoftware (benjaminkestler) German de yes 20170908
pfollas Greek el Yes! 20170916
Firef German, French de, fr Yes! 20170924
Rgomeza Spanish es Yes 20171202

-->

Find all templates using a given template

<DPL>
  namespace = Template
  include = *
  includematch = /{{Icon/
  includemaxlength = 0
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% templates using the Icon template\n
</DPL>


Find discussion threads contributed by a user

Perhaps more talk namespaces needs to be searched.

<DPL>
  namespace = Talk | Thread
  createdby = AmirHP
</DPL>


All English manual pages

<DPL>
  titlematch = %/Manual%
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  namespace = Main | User | Draft
  resultsheader = Manual Pages:
  format = ,\n* [[%PAGE%|%TITLE%]]\n,,
</DPL>


All English pages linking to a given page

{{LinksTo|Plasma/Panels}}


Kopete Subpages in 3 columns

<DPL>
  titlematch = Kopete/%
  notnamespace = Translations
  columns = 3
  format = ,\n* [[%PAGE%|%TITLE%]],,
</DPL>

Akonadi Subpages in Danish

<DPL>
  titlematch = Akonadi%/da
  notnamespace = Translations
  format = ,\n* [[%PAGE%|%TITLE%]],,
</DPL>

Archived pages

<DPL>
  titlematch = %
  namespace = Archive
  columns = 2
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages in the Archive namespace. These are:\n
</DPL>

NoIndexed pages

<DPL>
  titlematch = %
  category = Noindexed_pages
  columns = 2
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages in the Archive namespace. These are:\n
</DPL>

Ignoring Deleted Pages

"As for DPL. If you hit a page with ?action=purge attached to the URL (i.e. http://en.wikinews.org/wiki/Template:Latest_news?action=purge ), it will dump all the removed pages."

Remaining old-style translations

<DPL>
  titlematch = %_(%)
  notcategory = Template
  notnamespace = Thread
  notnamespace = Summary
  columns = 2
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages (partly) remaining in old-style translations. These are:\n
</DPL>

Pages with old i18n bar

<DPL>
  titlematch = %
  namespace = Main
  uses = Template:I18n/Language Navigation Bar
  columns = 3
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages that still display the old i18n language bar\n
</DPL>

Pages with old i18n bar but w/o old-way-translated ones

<DPL>
  nottitlematch = %_(%)
  namespace = Main
  uses = Template:I18n/Language Navigation Bar
  columns = 3
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% relevant pages that still display the old i18n language bar\n
</DPL>

Pages not updated since 1st July 2010

<DPL>
  namespace = Main
  lastrevisionbefore = 201007010000
  columns = 2
  ordermethod=lastedit
  format = ,\n* (%DATE%) [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages without recent updates\n
</DPL>

Listing Non-Translation Pages

<DPL>
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  titlematch = Amarok%
  namespace = Main
  columns = 1
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% Amarok pages, not counting translations\n
</DPL>

List all pages in a specific namespace

<DPL>
  nottitleregexp = .*((/[a-z][a-z](.|-..)?)|([ _][(][a-z][a-z](...)?[)]))$
  namespace = MediaWiki
  columns = 3
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = These %TOTALPAGES% pages are in the Mediawiki namespace\n
</DPL>

To count translated pages in a specific language:

<DPL>
  titlematch = %/en
  notnamespace = Translations
  columns = 3
  format = ,\n* [[%PAGE%|%TITLE%]],,
  resultsheader = There are %TOTALPAGES% pages (partly) translated to English. These are:\n
</DPL>