diff -Nru kile-2.1.0~svn1112278beta4/ChangeLog kile-2.1.0~svn2010122beta5/ChangeLog --- kile-2.1.0~svn1112278beta4/ChangeLog 2010-04-06 21:44:33.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/ChangeLog 2010-12-27 12:14:27.000000000 +0100 @@ -1,3 +1,41 @@ +version 2.1 beta 4 -> 2.1 beta 5 + +Fixes: + +- Ensure that LaTeX root documents are recognised correctly when Kile is starting up (#233667) +- Don't prepend the base directory to absolute file names returned by 'grep' (#234235) +- Fix some crashes in the find-in-files dialog +- Fix problems that could occur when using custom tools in combination with a translated GUI (#224130) +- Make the 'smart new line' feature respect custom indentation (#226161) +- Restore the master document setting (for single files) when Kile is starting up (#222029) +- Correct the tool tip for the symbol panel in the side bar (Patch by Christian Herzberg) +- Fix the problem that the LaTeX root icon isn't shown for project items if they aren't opened +- Fix problems related to opening files from the file browser widget (#222325) +- Correctly split strings containing line breaks in the log widget (#237885) +- Fix some bugs related to the new-document wizard (#238544) +- Correct the problem of changing the focus when auto-save is triggered (#228321) +- Rename the 'BibTeX' and 'Biblatex' actions in the LaTeX menu to avoid confusion within the shortcut configuration dialog (#184847) +- After a manual invocation, abbreviations are now replaced immediately even if longer matches are possible (#238897). +- Add icons for the 'Split Cells' and 'Join Cells' actions in the tabular dialog (#237897) +- Add missing fields to 'bibtexentries.rc' (Patch by Martin Weis) +- Add support for the '%absolute_target' keyword, which enables ForwardPDF (with Okular) to work correctly in embedded mode (#245483) +- Reduce GUI flickering a little more +- Ensure that the $PATH variable is respected when tools are launched (#204397) +- Fix a problem related to opening non-existing files in projects which can freeze the GUI (#241181) +- Fix the bug which causes keyboard shortcuts to change when switching between documents (#247646) +- Correct a bug which results in references to appear as undefined (#241730) +- Fix restoring of user-defined LaTeX commands and environments (#257463) +- Fix a crash which could occur after clicking on 'Ok' in the shortcut configuration dialog when at least one project is open (#257318) + +Features: +- Make it configurable whether the splash screen is shown or not (#244909) +- Add an embedded viewer configuration for the 'ForwardPDF' tool +- Add completion files for 'units.sty' and 'nomencl.sty' (Patch by Andreas Weder) +- Update 'todonotes.sty' (2009/12/25) (Patch by by Andreas Weder) +- Make the document tabs movable (Initial patch by Nicolas Pavillon, #200890) +- New CWL file for the 'fancyref' package + + version 2.1 beta 3 -> 2.1 beta 4 Fixes: @@ -46,6 +84,7 @@ - Add a sidebar tab which allows to display CWL word lists - Improve the graphics inclusion dialog + version 2.1 beta 1 -> 2.1 beta 2 Fixes: diff -Nru kile-2.1.0~svn1112278beta4/CMakeLists.txt kile-2.1.0~svn2010122beta5/CMakeLists.txt --- kile-2.1.0~svn1112278beta4/CMakeLists.txt 2010-02-22 22:48:21.000000000 +0100 +++ kile-2.1.0~svn2010122beta5/CMakeLists.txt 2010-12-27 12:14:27.000000000 +0100 @@ -5,6 +5,8 @@ find_package(KDE4 4.2.0 REQUIRED) include (KDE4Defaults) +find_package( SharedMimeInfo REQUIRED ) + SET( KILE_VERSION CACHE STRING "Kile's version; can be used to install special documentation files in share/doc/kile-$KILE_VERSION/" ) @@ -126,11 +128,13 @@ ADD_CUSTOM_TARGET(translations ALL DEPENDS ${kile_TRANSLATION_SOURCES}) ENDIF( kile_TRANSLATION_SOURCES) +ADD_SUBDIRECTORY( doc ) ADD_SUBDIRECTORY( src ) ########### install files ############### -INSTALL( FILES x-kilepr.desktop DESTINATION share/mimelink/text ) +install( FILES kile.xml DESTINATION ${XDG_MIME_INSTALL_DIR} ) +update_xdg_mimetypes( ${XDG_MIME_INSTALL_DIR} ) INSTALL( FILES kile.upd kile1.6_upd.pl kile1.7_upd.pl kile1.9_upd.pl kile1.9-1_upd.pl kile2.0-1_upd.pl kile2.0-2_upd.pl kile2.0-3_upd.pl diff -Nru kile-2.1.0~svn1112278beta4/debian/changelog kile-2.1.0~svn2010122beta5/debian/changelog --- kile-2.1.0~svn1112278beta4/debian/changelog 2011-02-24 22:06:04.000000000 +0100 +++ kile-2.1.0~svn2010122beta5/debian/changelog 2011-05-06 17:43:11.000000000 +0200 @@ -1,3 +1,38 @@ +kile (1:2.1.0~svn2010122beta5-1ubuntu1) oneiric; urgency=low + + * Merge from debian unstable. (LP: #778505, #777728, #776190, #772631) + Remaining changes: + - Drop from Depends: texlive+base-bin + - Add to Recommends: texlive + - Demote to Suggests: + + lilypond + + texlive-xetex + + asymptote + + context + + dblatex + + latex2html + + tex4ht + - Drop from Recommends: + + okular | evince | gv + + kbibtex | pybliographer | gbib | jabref + + konqueror | firefox + + dvipdfmx + + texlive-metapost + + -- Philip Muškovac Fri, 06 May 2011 14:54:31 +0200 + +kile (1:2.1.0~svn2010122beta5-1) unstable; urgency=low + + * New upstream release 2.1 beta 5 - git commit + f58bf5ccbe9b6e382e22b27e6cd12ee16f0ac5a5. + * Remove patches: + - 00_root_document_not_detected_kde_bug_233667.diff - stolen upstream. + - 01_install_doc.diff - not needed anymore. + - 03_mime_install_dir.diff - merged upstream. + * Recommend www-browser instead of custom browser list. (Closes: #581498) + + -- Fathi Boudra Sun, 01 May 2011 18:58:58 +0300 + kile (1:2.1.0~svn1112278beta4-2ubuntu2) natty; urgency=low * Clean up package dependencies. (LP: #577595) diff -Nru kile-2.1.0~svn1112278beta4/debian/control kile-2.1.0~svn2010122beta5/debian/control --- kile-2.1.0~svn1112278beta4/debian/control 2011-02-24 22:06:31.000000000 +0100 +++ kile-2.1.0~svn2010122beta5/debian/control 2011-05-06 15:10:30.000000000 +0200 @@ -6,7 +6,7 @@ Uploaders: Fathi Boudra , Mark Purcell Build-Depends: debhelper (>= 7.4.15), cmake, pkg-kde-tools (>= 0.9.0), kdelibs5-dev (>= 4:4.4.4), shared-mime-info -Standards-Version: 3.8.4 +Standards-Version: 3.9.2 Homepage: http://kile.sourceforge.net Vcs-Browser: http://svn.debian.org/wsvn/pkg-kde/kde-extras/kile/trunk Vcs-Svn: svn://svn.debian.org/pkg-kde/kde-extras/kile/trunk @@ -16,8 +16,7 @@ Depends: ${shlibs:Depends}, ${misc:Depends}, konsole, texlive-latex-base Recommends: texlive, dvipng, ghostscript, imagemagick, psutils -Suggests: - asymptote, context, dblatex, latex2html, +Suggests: asymptote, context, dblatex, latex2html, tex4ht, texlive-xetex, lilypond, zip, kile-doc, texlive-doc-base, aspell | ispell | hspell diff -Nru kile-2.1.0~svn1112278beta4/debian/patches/00_root_document_not_detected_kde_bug_233667.diff kile-2.1.0~svn2010122beta5/debian/patches/00_root_document_not_detected_kde_bug_233667.diff --- kile-2.1.0~svn1112278beta4/debian/patches/00_root_document_not_detected_kde_bug_233667.diff 2010-06-14 14:41:39.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/debian/patches/00_root_document_not_detected_kde_bug_233667.diff 1970-01-01 01:00:00.000000000 +0100 @@ -1,297 +0,0 @@ ---- a/src/kiledocmanager.cpp -+++ b/src/kiledocmanager.cpp -@@ -1,6 +1,6 @@ - /***************************************************************************** - * Copyright (C) 2004 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net) * --* (C) 2006-2010 by Michel Ludwig (michel.ludwig@kdemail.net) * -+* (C) 2006-2009 by Michel Ludwig (michel.ludwig@kdemail.net) * - * (C) 2007 by Holger Danielsson (holger.danielsson@versanet.de) * - ******************************************************************************/ - -@@ -469,7 +469,7 @@ void Manager::recreateTextDocumentInfo(T - - removeTextDocumentInfo(oldinfo); - -- emit(updateStructure(false, newinfo)); -+ emit(updateStructure(true, newinfo)); - } - - bool Manager::removeTextDocumentInfo(TextInfo *docinfo, bool closingproject /* = false */) -@@ -605,6 +605,7 @@ KTextEditor::View* Manager::loadText(Kil - KTextEditor::Document *doc = createDocument(url, docinfo, encoding, mode, highlight); - - m_ki->structureWidget()->clean(docinfo); -+ m_ki->structureWidget()->update(docinfo, true); - - if(!text.isEmpty()) { - doc->setText(text); -@@ -831,6 +832,11 @@ void Manager::newDocumentStatus(KTextEdi - m_ki->texKonsole()->sync(); - - emit(documentModificationStatusChanged(doc, doc->isModified(), KTextEditor::ModificationInterface::OnDiskUnmodified)); -+ -+ //updatestructure if active document changed from modified to unmodified (typically after a save) -+ if (!doc->isModified()) { -+ emit(updateStructure(true, textInfoFor(doc))); -+ } - } - - bool Manager::fileSaveAll(bool amAutoSaving, bool disUntitled) -@@ -925,7 +931,7 @@ bool Manager::fileSaveAll(bool amAutoSav - This may look superfluos but actually it is not, in the case of multiple modified docs it ensures that the structure view keeps synchronized with the currentTextView - And if we only have one masterdoc or none nothing goes wrong. - */ -- emit(updateStructure(false, NULL)); -+ emit(updateStructure(false,NULL)); - m_currentlySavingAll = false; - return !oneSaveFailed; - } -@@ -967,7 +973,7 @@ void Manager::fileOpen(const KUrl& url, - item->loadDocumentAndViewSettings(); - } - -- emit(updateStructure(false, NULL)); -+ emit(updateStructure(true, 0L)); - emit(updateModeStatus()); - // update undefined references in this file - emit(updateReferences(textInfoFor(realurl.toLocalFile()))); -@@ -989,7 +995,6 @@ bool Manager::fileSave(KTextEditor::View - } - else { - bool ret = view->document()->documentSave(); -- emit(updateStructure(false, textInfoFor(view->document()))); - return ret; - } - } -@@ -1270,7 +1275,7 @@ void Manager::projectNew() - mapItem(docinfo, item); - - //docinfo->updateStruct(m_kwStructure->level()); -- emit(updateStructure(false, docinfo)); -+ emit(updateStructure(true, docinfo)); - } - } - -@@ -1502,7 +1507,7 @@ KileProject* Manager::projectOpen(const - kp->buildProjectTree(); - addProject(kp); - -- emit(updateStructure(false, NULL)); -+ emit(updateStructure(false, 0L)); - emit(updateModeStatus()); - // update undefined references in all project files - updateProjectReferences(kp); -@@ -2155,7 +2160,7 @@ void Manager::projectAddFile(QString fil - - //ok, we have a project and an existing file - KILE_DEBUG() << "\tadd file: " << filename; -- m_ki->viewManager()->updateStructure(false); -+ m_ki->viewManager()->updateStructure(true); - - KUrl url; - url.setPath(filename); ---- a/src/documentinfo.cpp -+++ b/src/documentinfo.cpp -@@ -2,7 +2,7 @@ - begin : Sun Jul 20 2003 - copyright : (C) 2003 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net) - (C) 2005-2007 by Holger Danielsson (holger.danielsson@versanet.de) -- (C) 2006-2010 by Michel Ludwig (michel.ludwig@kdemail.net) -+ (C) 2006-2009 by Michel Ludwig (michel.ludwig@kdemail.net) - *********************************************************************************************/ - - /*************************************************************************** -@@ -169,11 +169,7 @@ KUrl Info::makeValidTeXURL(const KUrl& u - return newURL; - } - --Info::Info() : -- m_bIsRoot(false), -- m_dirty(false), -- m_config(KGlobal::config().data()), -- documentTypePromotionAllowed(true) -+Info::Info() : m_bIsRoot(false), m_config(KGlobal::config().data()), documentTypePromotionAllowed(true) - { - updateStructLevelInfo(); - } -@@ -237,17 +233,6 @@ void Info::setDocumentTypePromotionAllow - documentTypePromotionAllowed = b; - } - --bool Info::isDirty() const --{ -- return m_dirty; --} -- --void Info::setDirty(bool b) --{ --KILE_DEBUG() << b; -- m_dirty = b; --} -- - KUrl Info::url() - { - return KUrl(); -@@ -406,7 +391,6 @@ void Info::updateBibItems() - - void Info::slotCompleted() - { -- setDirty(true); - emit completed(this); - } - -@@ -476,7 +460,6 @@ void TextInfo::setDocument(KTextEditor:: - connect(m_doc, SIGNAL(documentNameChanged(KTextEditor::Document*)), this, SLOT(slotFileNameChanged())); - connect(m_doc, SIGNAL(documentUrlChanged(KTextEditor::Document*)), this, SLOT(slotFileNameChanged())); - connect(m_doc, SIGNAL(completed()), this, SLOT(slotCompleted())); -- connect(m_doc, SIGNAL(modifiedChanged(KTextEditor::Document*)), this, SLOT(makeDirtyIfModified())); - // this could be a KatePart bug, and as "work-around" we manually set the highlighting mode again - connect(m_doc, SIGNAL(completed()), this, SLOT(activateDefaultMode())); - setMode(m_defaultMode); -@@ -497,13 +480,6 @@ void TextInfo::detach() - m_doc = NULL; - } - --void TextInfo::makeDirtyIfModified() --{ -- if(m_doc && m_doc->isModified()) { -- setDirty(true); -- } --} -- - const long* TextInfo::getStatistics(KTextEditor::View *view) - { - /* [0] = #c in words, [1] = #c in latex commands and environments, -@@ -1360,7 +1336,6 @@ void LaTeXInfo::updateStruct() - emit(doneUpdating()); - emit(isrootChanged(isLaTeXRoot())); - emit(parsingCompleted()); -- setDirty(false); - } - - void LaTeXInfo::checkChangedDeps() -@@ -1471,7 +1446,6 @@ void BibInfo::updateStruct() - } - emit(parsingCompleted()); - emit(doneUpdating()); -- setDirty(false); - } - - Type BibInfo::getType() ---- a/src/widgets/structurewidget.cpp -+++ b/src/widgets/structurewidget.cpp -@@ -2,7 +2,7 @@ - begin : Sun Dec 28 2003 - copyright : (C) 2003 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net - 2005-2007 by Holger Danielsson (holger.danielsson@versanet.de) -- 2008-2010 by Michel Ludwig (michel.ludwig@kdemail.net) -+ 2008 by Michel Ludwig (michel.ludwig@kdemail.net) - *************************************************************************************************/ - - /*************************************************************************** -@@ -948,10 +948,10 @@ void StructureViewItem::setLabel(const Q - - void StructureWidget::update(KileDocument::Info *docinfo) - { -- update(docinfo, false); -+ update(docinfo, true); - } - -- void StructureWidget::update(KileDocument::Info *docinfo, bool forceParsing, bool activate /* =true */) -+ void StructureWidget::update(KileDocument::Info *docinfo, bool parse, bool activate /* =true */) - { - KILE_DEBUG() << "==KileWidget::StructureWidget::update(" << docinfo << ")============="; - -@@ -961,24 +961,18 @@ void StructureViewItem::setLabel(const Q - } - - m_docinfo = docinfo; -- bool needParsing = forceParsing || m_docinfo->isDirty() || !viewExistsFor(docinfo); -+ -+ bool needParsing = parse || ( ! viewExistsFor(m_docinfo) ); - - //find structview-item for this docinfo - StructureView *view = viewFor(m_docinfo); -- if(!view) { -- m_default->activate(); -- return; -- } - - if(needParsing) { //need to reparse the doc - int xtop = view->horizontalScrollBar()->value(); - int ytop = view->verticalScrollBar()->value(); - //KILE_DEBUG() << "\tStructure::update parsing doc"; -- // avoid flickering when parsing -- view->setUpdatesEnabled(false); - view->cleanUp(); - m_docinfo->updateStruct(); -- view->setUpdatesEnabled(true); - view->showReferences(m_ki); - view->horizontalScrollBar()->setValue(xtop); - view->verticalScrollBar()->setValue(ytop); ---- a/src/widgets/structurewidget.h -+++ b/src/widgets/structurewidget.h -@@ -2,7 +2,7 @@ - begin : Sun Dec 28 2003 - copyright : (C) 2003 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net) - 2005-2007 by Holger Danielsson (holger.danielsson@versanet.de) -- 2008-2010 by Michel Ludwig (michel.ludwig@kdemail.net) -+ 2008 by Michel Ludwig (michel.ludwig@kdemail.net) - **************************************************************************************************/ - - /*************************************************************************** ---- a/src/documentinfo.h -+++ b/src/documentinfo.h -@@ -1,7 +1,7 @@ - /************************************************************************************* - begin : Sun Jul 20 2003 - copyright : (C) 2003 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net) -- (C) 2006-2010 by Michel Ludwig (michel.ludwig@kdemail.net) -+ (C) 2006 by Michel Ludwig (michel.ludwig@kdemail.net) - *************************************************************************************/ - - /*************************************************************************** -@@ -159,12 +159,6 @@ public: - virtual bool isDocumentTypePromotionAllowed(); - void setDocumentTypePromotionAllowed(bool b); - -- /** -- * Returns true iff new parsing is required. -- **/ -- bool isDirty() const; -- void setDirty(bool b); -- - public Q_SLOTS: - /** - * Never call this function directly, use KileWidget::Structure::update(KileDocument::Info *, bool) instead -@@ -197,7 +191,6 @@ protected: - }; - - bool m_bIsRoot; -- bool m_dirty; - QStringList m_labels; - QStringList m_bibItems; - QStringList m_deps, m_depsPrev; -@@ -295,11 +288,8 @@ protected Q_SLOTS: - void slotViewDestroyed(QObject *object); - void activateDefaultMode(); - -- void makeDirtyIfModified(); -- - protected: - KTextEditor::Document *m_doc; -- bool m_dirty; - long *m_arStatistics; - QString m_defaultMode; - QHash > m_eventFilterHash; ---- a/src/kile.cpp -+++ b/src/kile.cpp -@@ -1,7 +1,7 @@ - /**************************************************************************************** - begin : sam jui 13 09:50:06 CEST 2002 - copyright : (C) 2003 by Jeroen Wijnhout (Jeroen.Wijnhout@kdemail.net) -- (C) 2007-2010 by Michel Ludwig (michel.ludwig@kdemail.net) -+ (C) 2007-2009 by Michel Ludwig (michel.ludwig@kdemail.net) - (C) 2007 Holger Danielsson (holger.danielsson@versanet.de) - (C) 2009 Thomas Braun (thomas.braun@virtuell-zuhause.de) - ****************************************************************************************/ diff -Nru kile-2.1.0~svn1112278beta4/debian/patches/01_install_doc.diff kile-2.1.0~svn2010122beta5/debian/patches/01_install_doc.diff --- kile-2.1.0~svn1112278beta4/debian/patches/01_install_doc.diff 2010-06-14 14:41:39.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/debian/patches/01_install_doc.diff 2011-05-01 18:01:57.000000000 +0200 @@ -1,6 +1,6 @@ --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -104,7 +104,8 @@ ENDIF( EXISTS ${kile_SOURCE_DIR}/doc OR +@@ -106,7 +106,8 @@ ENDIF( EXISTS ${kile_SOURCE_DIR}/doc OR IF( EXISTS ${kile_SOURCE_DIR}/doc ) IF( KDE4_MEINPROC_EXECUTABLE ) MESSAGE( STATUS "Building standard documentation") diff -Nru kile-2.1.0~svn1112278beta4/debian/patches/02_tex_doc_location.diff kile-2.1.0~svn2010122beta5/debian/patches/02_tex_doc_location.diff --- kile-2.1.0~svn1112278beta4/debian/patches/02_tex_doc_location.diff 2010-06-14 14:41:39.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/debian/patches/02_tex_doc_location.diff 2011-05-01 18:02:00.000000000 +0200 @@ -1,6 +1,6 @@ --- a/src/kile.kcfg +++ b/src/kile.kcfg -@@ -282,7 +282,7 @@ +@@ -286,7 +286,7 @@ diff -Nru kile-2.1.0~svn1112278beta4/debian/patches/03_mime_install_dir.diff kile-2.1.0~svn2010122beta5/debian/patches/03_mime_install_dir.diff --- kile-2.1.0~svn1112278beta4/debian/patches/03_mime_install_dir.diff 2010-06-14 14:41:39.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/debian/patches/03_mime_install_dir.diff 1970-01-01 01:00:00.000000000 +0100 @@ -1,101 +0,0 @@ -Description: convert the mimetype definitions to the XDG format - also remove the old KDE 3 definition -Author: Pino Toscano - ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -5,6 +5,8 @@ PROJECT( kile ) - find_package(KDE4 4.2.0 REQUIRED) - include (KDE4Defaults) - -+find_package( SharedMimeInfo REQUIRED ) -+ - - SET( KILE_VERSION CACHE STRING "Kile's version; can be used to install special documentation files in share/doc/kile-$KILE_VERSION/" ) - -@@ -131,7 +133,8 @@ ADD_SUBDIRECTORY( src ) - - ########### install files ############### - --INSTALL( FILES x-kilepr.desktop DESTINATION share/mimelink/text ) -+install( FILES kile.xml DESTINATION ${XDG_MIME_INSTALL_DIR} ) -+update_xdg_mimetypes( ${XDG_MIME_INSTALL_DIR} ) - - INSTALL( FILES kile.upd kile1.6_upd.pl kile1.7_upd.pl kile1.9_upd.pl - kile1.9-1_upd.pl kile2.0-1_upd.pl kile2.0-2_upd.pl kile2.0-3_upd.pl ---- /dev/null -+++ b/kile.xml -@@ -0,0 +1,7 @@ -+ -+ -+ -+ Kile project -+ -+ -+ ---- a/x-kilepr.desktop -+++ /dev/null -@@ -1,63 +0,0 @@ --[Desktop Entry] --Encoding=UTF-8 --Comment=Kile Project --Comment[ar]=مشروع Kile --Comment[ast]=Proyeutu Kile --Comment[be]=Праект Kile --Comment[bg]=Проект на Kile --Comment[ca]=Projecte Kile --Comment[ca@valencia]=Projecte Kile --Comment[cs]=Kile projekt --Comment[csb]=Projekt Kile --Comment[da]=Kile-projektet --Comment[de]=Kile-Projekt --Comment[el]=Έργο Kile --Comment[en_GB]=Kile Project --Comment[eo]=Kile Projekto --Comment[es]=Proyecto Kile --Comment[et]=Kile Projekt --Comment[fi]=Kile-projekti --Comment[fr]=Projet Kile --Comment[ga]=Tionscadal Kile --Comment[gl]=O proxecto Kile --Comment[hi]=काइल परियोजना --Comment[hne]=काइल परियोजना --Comment[hr]=Projekt Kile --Comment[hu]=Kile Projekt --Comment[it]=Progetto di Kile --Comment[ja]=Kile プロジェクト --Comment[kk]=Kile жобасы --Comment[km]=គម្រោង Kile --Comment[ko]=Kile 프로젝트 --Comment[lt]=Kile projektas --Comment[lv]=Kile projekts --Comment[ml]=കൈല്‍ സംരംഭം --Comment[ms]=Projek Kile --Comment[nb]=Kile-prosjektet --Comment[nds]=Kile-Projekt --Comment[ne]=किल परियोजना --Comment[nl]=Kile-project --Comment[nn]=Kile-prosjekt --Comment[pa]=ਕਿਲੀ ਪਰੋਜੈਕਟ --Comment[pl]=Projekt Kile --Comment[pt]=Projecto do Kile --Comment[pt_BR]=Projeto Kile --Comment[ro]=Proiect Kile --Comment[ru]=Проект Kile --Comment[sk]=Kile projekt --Comment[sv]=Kile-projekt --Comment[th]=Kile Project --Comment[tr]=Kile Projesi --Comment[uk]=Проект Kile --Comment[wa]=Pordjet Kile --Comment[x-test]=xxKile Projectxx --Comment[zh_CN]=Kile 工程 --Comment[zh_TW]=Kile 專案 --Icon=kile --MimeType=text/x-kilepr --Patterns=*.kilepr; --Type=MimeType -- --[Property::X-KDE-text] --Type=bool --Value=true diff -Nru kile-2.1.0~svn1112278beta4/debian/patches/kubuntu_01_improved_viewpart_warning.diff kile-2.1.0~svn2010122beta5/debian/patches/kubuntu_01_improved_viewpart_warning.diff --- kile-2.1.0~svn1112278beta4/debian/patches/kubuntu_01_improved_viewpart_warning.diff 2010-06-14 14:41:39.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/debian/patches/kubuntu_01_improved_viewpart_warning.diff 2011-05-01 18:02:39.000000000 +0200 @@ -1,6 +1,6 @@ --- a/src/kilelauncher.cpp +++ b/src/kilelauncher.cpp -@@ -360,6 +360,7 @@ namespace KileTool { +@@ -396,6 +396,7 @@ namespace KileTool { KPluginFactory *factory = pluginLoader.factory(); if (!factory) { emit(message(Error, i18n("Could not find the %1 library.", m_libName))); diff -Nru kile-2.1.0~svn1112278beta4/debian/patches/series kile-2.1.0~svn2010122beta5/debian/patches/series --- kile-2.1.0~svn1112278beta4/debian/patches/series 2010-06-14 14:41:39.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/debian/patches/series 2011-05-01 18:16:02.000000000 +0200 @@ -1,6 +1,3 @@ -00_root_document_not_detected_kde_bug_233667.diff -01_install_doc.diff 02_tex_doc_location.diff -03_mime_install_dir.diff kubuntu_01_improved_viewpart_warning.diff kubuntu_02_disable_embedded_kbibtex.diff diff -Nru kile-2.1.0~svn1112278beta4/dist/createPackage.sh kile-2.1.0~svn2010122beta5/dist/createPackage.sh --- kile-2.1.0~svn1112278beta4/dist/createPackage.sh 2009-06-07 13:31:41.000000000 +0200 +++ kile-2.1.0~svn2010122beta5/dist/createPackage.sh 1970-01-01 01:00:00.000000000 +0100 @@ -1,942 +0,0 @@ -#!/bin/bash -# -# Extract an application from KDE svn, including documentation and translations. -# -# Authors: Michael Buesch -# Jeroen Wijnhout -# Sebastian Trueg -# Aurelien Gateau -# Klas Kalass -# Michel Ludwig -# License: GPL (http://www.gnu.org/) -# -# -# Directory lay-out of packages -# Application: -# + name-version -# + admin -# + src -# + doc -# + translations -# + nl -# + messages -# + doc -# + de (etc.) -# -# If the --notoplevel parameter is used everything under src is put into the root dir -# -# Translations: -# + nl -# + messages -# + doc -# + de (etc.) - -COPYRIGHT="2009 Michel Ludwig - 2005 Michael Buesch - 2004-2005 Jeroen Wijnhout - 2003-2004 Sebastian Trueg - 2002 Aurelien Gateau - 2002-2004 Klas Kalass" -LICENSE="GNU General Public License v2 or later" - -SCRIPTNAME="createPackage.sh" -SCRIPTVERSION='$Revision$' -SCRIPTVERSION="`echo $SCRIPTVERSION | cut -d ' ' -f2`" - - -function showVersion -{ - echo "$SCRIPTNAME revision $SCRIPTVERSION" -} - -function showHelp -{ - showVersion - echo -e " -Extract an application from KDE svn, including documentation and translations. - -Copyright $COPYRIGHT -License: $LICENSE - -usage: - $0 -ab -a [OPTIONS] - -These parameters are mandatory: - - -ab|--app-base Relative (to svnroot) path to the KDE or extragear module. - Example: - trunk/extragear/utils - If you want to checkout from a branch, you might use: - branches/foobar/1.2 - - -a|--app Name of the application to checkout. - This is the subdir you want to checkout in --app-base. - -The following options are available: - - -d|--svnroot Base URL of the svn repository. - svn://anonsvn.kde.org/home/kde is the default. - - -ib|--i18n-base Path to the i18n translations base. - Default: - trunk/l10n - - -is|--i18n-sub Path to the i18n files under the - \$i18n-base/\$LANGUAGE/messages - directories. Example: - extragear-office - - -ids|--i18n-docsub Path to the i18n docbook files under the - \$i18n-base/\$LANGUAGE/docs - directories. Example: - kdeextragear-2 - Default: - path of --i18n-sub - - -tb|--tag-base Path to the tag base. - Default: - tags/ - - --tag Create tag directory. - - --admin Path to the /admin/ directory. - Default: - trunk/KDE/kde-common/admin - - -b|--builddir Name of the temporary working directory where - all files will be put. Default is \"./build\" - - -av|--appversion Version of the application (only for correct - naming of the tar archives). - - --nodoc Do not try to get any documentation. - - --noi18n Do not search for any translations. - - --split Make separate packages for the application and translations. - - --package [TYPE] Create tarballs (.tar.gz and/or .tar.bz2). - You can specify an optional package type: \"gzip\" or \"bzip2\" - If no type is given, both types will be generated. - - --packagedir Place a copy of the packages into TARBALLDIR. - - --postprocess