By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1936
Collapse All | Expand All

(-)tools-orig/thesaurus/extract.pl (-2 / +2 lines)
Lines 1-6 Link Here
1
#!/usr/bin/perl -w
1
#!/usr/bin/perl -w
2
# $Id: extract.pl 490579 2005-12-22 12:32:17Z scripty $
2
# $Id: extract.pl 490579 2005-12-22 12:32:17Z scripty $
3
# This file is part of the KDE project
3
# This file is part of the TDE project
4
# Copyright (C) 2001 Daniel Naber <daniel.naber@t-online.de>
4
# Copyright (C) 2001 Daniel Naber <daniel.naber@t-online.de>
5
5
6
# This program is free software; you can redistribute it and/or
6
# This program is free software; you can redistribute it and/or
Lines 20-26 Link Here
20
# Extract information from WordNet data files - only useful for development.
20
# Extract information from WordNet data files - only useful for development.
21
# cat together all of WordNet's data.* files and call this script. As a second
21
# cat together all of WordNet's data.* files and call this script. As a second
22
# argument you can use a word frequency list as "Alphabetical frequency list of 
22
# argument you can use a word frequency list as "Alphabetical frequency list of 
23
# the whole corpus (lemmatized)" on http://www.comp.lancs.ac.uk/ucrel/bncfreq/flists.html
23
# the whole corpus (lemmatized)" on http://ucrel.lancs.ac.uk/bncfreq/flists.html
24
# This will remove all words whcih are not in the list, i.e. words that are rare.
24
# This will remove all words whcih are not in the list, i.e. words that are rare.
25
# 
25
# 
26
# Output of this script is:
26
# Output of this script is:
(-)tools-orig/thesaurus/main.cc (-2 / +2 lines)
Lines 632-639 Link Here
632
        m_resultbox->setText(i18n("<b>Error:</b> Failed to execute WordNet program 'wn'. "
632
        m_resultbox->setText(i18n("<b>Error:</b> Failed to execute WordNet program 'wn'. "
633
            "WordNet has to be installed on your computer if you want to use it, "
633
            "WordNet has to be installed on your computer if you want to use it, "
634
            "and 'wn' has to be in your PATH. "
634
            "and 'wn' has to be in your PATH. "
635
            "You can get WordNet at <a href=\"http://www.cogsci.princeton.edu/~wn/\">"
635
            "You can get WordNet at <a href=\"http://wordnet.princeton.edu/wordnet/download/current-version/">"
636
            "http://www.cogsci.princeton.edu/~wn/</a>. Note that WordNet only supports "
636
            "http://wordnet.princeton.edu/wordnet/download/current-version/</a>. Note that WordNet only supports "
637
            "the English language."));
637
            "the English language."));
638
        m_combobox->setEnabled(false);
638
        m_combobox->setEnabled(false);
639
        TQApplication::restoreOverrideCursor();
639
        TQApplication::restoreOverrideCursor();

Return to bug 1936