http://bugzilla.novell.com/show_bug.cgi?id=597744http://bugzilla.novell.com/show_bug.cgi?id=597744#c0
Summary: alpine: Missing umlaut in date column: our_strftime
does not always return utf8-encoded strings
Classification: openSUSE
Product: openSUSE 11.1
Version: Final
Platform: x86-64
OS/Version: openSUSE 11.1
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: kdevel(a)vogtner.de
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
User-Agent:
Alpine does not correctly encode non-utf-8-data from locale's time and date
formatting.
Reproducible: Always
Steps to Reproduce:
1. open console/xterm with 8-Bit character encoding (i.e. ISO-8859-1)
2. start alpine with LANG=de_DE@euro
3. have an e-mail in your inbox with a date of March.
Actual Results:
The Date displayed is "M"
Expected Results:
"Mär"
strftime may return non-utf8 data if operated in a non-utf8 environment. In The
non-WINDOWS-case no change of encoding to utf8 is performed in our_strftime
(pith/string.c) but utf8 is expected from functions calling our_strftime.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=558841http://bugzilla.novell.com/show_bug.cgi?id=558841#c0
Summary: alpine: incorrect transformation patch included
Classification: openSUSE
Product: openSUSE 11.2
Version: Final
Platform: All
OS/Version: Linux
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Basesystem
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: jengelh(a)medozas.de
QAContact: qa(a)suse.de
Found By: Beta-Customer
Blocker: ---
In alpine's operation-may-be-undefined-warning.diff, there is:
- m = strtoul (++s,(char **) &s,10);
- y = (*s == ':') ? strtoul (++s,(char **) &s,10) : 0;
+ s++;
+ m = strtoul (s,(char **) &s,10);
+ s++;
+ y = (*s == ':') ? strtoul (s,(char **) &s,10) : 0;
But the last two + lines seem wrong. SUSE is incrementing s here before the
test for ':', while the original patch only did it _after_.
It should probably have been:
s++;
m = strtoul(s, (char **)&s, 10);
if (*s == ':') {
++s;
y = strtoul(s, (char **)&s, 10);
} else {
y = 0;
}
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=578994http://bugzilla.novell.com/show_bug.cgi?id=578994#c0
Summary: hwinfo cuts off list of cpu features
Classification: openSUSE
Product: openSUSE 11.3
Version: Factory
Platform: x86-64
OS/Version: Linux
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: HMWiesinger(a)gmx.at
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (compatible; Konqueror/4.3; Linux) KHTML/4.3.1
(like Gecko)
The list of supported features is cut off at some point. hwinfo (16.10) shows
the following list:
Features:
fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,
clflush,dts,acpi,mmx,fxsr,sse,sse2,ss,ht,tm,pbe,syscall,nx,lm,constant_tsc,
arch_perfmon,pebs,bts,rep_good,aperfmperf,pni,dtes64,monitor,ds_cpl,vmx,
smx,est,tm2,ssse3,cx16,xtpr,pdcm,sse
whereas "cat /proc/cpuinfo" shows:
fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush
dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon
pebs bts rep_good aperfmperf pni dtes64 monitor ds_cpl vmx smx est tm2 ssse3
cx16 xtpr pdcm sse4_1 xsave lahf_lm ida tpr_shadow vnmi flexpriority
Reproducible: Always
Steps to Reproduce:
1. hwinfo --cpu
2. cat /proc/cpuinfo
3. compare output
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=559704http://bugzilla.novell.com/show_bug.cgi?id=559704#c0
Summary: gnome-web-photo doesn't work because it can't find
libxul.so
Classification: openSUSE
Product: openSUSE 11.2
Version: Final
Platform: x86
OS/Version: openSUSE 11.2
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: arizonagroovejet(a)gmail.com
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.1.5)
Gecko/20091103 SUSE/3.5.5-1.1.2 Firefox/3.5.5
mike@continuity:/tmp$ gnome-web-photo http://news.bbc.co.uk foo.png
gnome-web-photo: error while loading shared libraries: libxul.so: cannot open
shared object file: No such file or directory
Reproducible: Always
Steps to Reproduce:
1. Try and use gnome-web-photo
Actual Results:
Error message as shown above.
Expected Results:
That it works.
It can be made to work like this:
mike@continuity:/tmp$ LD_LIBRARY_PATH="/usr/lib/xulrunner-1.9.1.5/"
gnome-web-photo http://news.bbc.co.uk foo.png
*** nss-shared-helper: Shared database disabled (set NSS_USE_SHARED_DB to
enable).
mike@continuity:/tmp$ identify foo.png
foo.png PNG 1024x1710 1024x1710+0+0 8-bit DirectClass 530kb
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=578053http://bugzilla.novell.com/show_bug.cgi?id=578053#c0
Summary: postgresql-plperl looks for libperl.so in the wrong
place
Classification: openSUSE
Product: openSUSE 11.3
Version: Factory
Platform: All
OS/Version: openSUSE 11.3
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: eggyknap(a)gmail.com
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.8
(KHTML, like Gecko) Chrome/4.0.299.0 Safari/532.8
On a completely new openSUSE 11.3 machine, I installed the postgresql-server,
postgresql, and postgresql-plperl packages. After starting PostgreSQL and
letting it initialize a new database, I sudo-d to the postgres user, and tried
to add the PL/Perl language, as follows, with the error below:
postgres@linux-e16r:~> createlang plperl
createlang: language installation failed: ERROR: could not load library
"/usr/lib/postgresql/plperl.so": libperl.so: cannot open shared object file: No
such file or directory
libperl.so lives in
/usr/lib/perl5/5.10.0/i586-linux-thread-multi/CORE/libperl.so. Creating a
symlink at /usr/lib/libperl.so to the installed libperl.so binary works around
the problem. This also exists in at least one of the 10.x versions, though I
don't have access to the servers to know the precise version(s)
As a secondary note, the description of the postgresql-plperl package, at least
as it appears in YaST2, says the package also includes PL/Tcl and PL/Python.
This is incorrect.
Thirdly, the documentation also claims "PostgreSQL also offers the builtin
procedural language PL/SQL". This is also incorrect -- PL/SQL is an
Oracle-specific language. PostgreSQL offers PL/pgSQL, which fact might be worth
noting in the PL/Perl documentation, or it might not.
Reproducible: Always
Steps to Reproduce:
1.install postgresql, postgresql-server, and postgresql-plperl
2.start postgresql (/etc/init.d/postgresql start)
3.become the postgres user (sudo su - postgres)
4.create the plperl language in the default database: createlang plperl
Actual Results:
# createlang plperl
createlang: language installation failed: ERROR: could not load library
"/usr/lib/postgresql/plperl.so": libperl.so: cannot open shared object file: No
such file or directory
Expected Results:
createlang should have no output, and a 0 exit status
I realize this is a packaging bug, and likely not something distributed by
Novell directly. I saw nowhere else to file the bug.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=551014
Summary: one click install: error ccoured while initializing
the software repository
Classification: openSUSE
Product: openSUSE 11.2
Version: RC 1
Platform: Other
OS/Version: openSUSE 11.2
Status: NEW
Severity: Normal
Priority: P5 - None
Component: YaST2
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: suse-beta(a)cboltz.de
QAContact: jsrain(a)novell.com
Found By: Beta-Customer
Created an attachment (id=324701)
--> (http://bugzilla.novell.com/attachment.cgi?id=324701)
y2logs
(11.2 repo from today, probably near RC2)
I tried to install YaBSC from the openSUSE:Tools repo using one click install.
After entering the root password, YaST showed an error dialog:
An error ccoured while initializing the software repository.
Details:
Try again?
[Ja] [Nein] (= Yes / No)
Yes, the line after "Details:" was really empty. Therefore this bug has two
parts:
- the missing information about details in the error dialog
- maybe the failure itsself is also a bug
The last lines from y2log when the error dialog was open:
2009-10-29 15:48:16 <1> geeko(26435) [zypp]
RepoManager.cc(init_knownRepositories):557 end construct known repos
2009-10-29 15:48:16 <3> geeko(26435) [Pkg] Source_Create.cc(RepositoryAdd):449
alias openSUSE:Tools already exists
[That's probably the disabled 11.1 version of the openSUSE:tools repo]
2009-10-29 15:48:16 <1> geeko(26435) [Pkg]
OneClickInstallWorkerFunctions.ycp:113 Pkg Builtin called: SourceRefreshNow
2009-10-29 15:48:16 <3> geeko(26435) [Interpreter]
OneClickInstallWorkerFunctions.ycp:113 Parameter 1 is nil, Integer is required
2009-10-29 15:48:16 <1> geeko(26435) [Pkg]
OneClickInstallWorkerFunctions.ycp:116 Pkg Builtin called: LastError
2009-10-29 15:48:16 <1> geeko(26435) [ui] YPushButton.cc(setFunctionKey):183
Guessing button role YOKButton for YPushButton "Ja" at 0x18fb1b8 from
function key F10
2009-10-29 15:48:16 <1> geeko(26435) [ui] YPushButton.cc(setFunctionKey):183
Guessing button role YCancelButton for YPushButton "Nein" at 0x198aac
8 from function key F9
The full y2logs are attached. Search for [cb] in y2log - I have marked when
the error dialog popped up.
BTW: After answering the dialog with yes (= try again) and confirming the repo
details, the installation worked.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=549849
Summary: Eclipse doesn't accept mouse clicks on buttons
Classification: openSUSE
Product: openSUSE 11.2
Version: RC 1
Platform: x86
OS/Version: openSUSE 11.2
Status: NEW
Severity: Major
Priority: P5 - None
Component: Development
AssignedTo: pth(a)novell.com
ReportedBy: davor.cengija(a)gmail.com
QAContact: qa(a)suse.de
Found By: ---
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.3)
Gecko/20090909 SUSE/3.5.3-3.2 Firefox/3.5.3
As described on Beta and Pre-release forum,
http://forums.opensuse.org/pre-release-beta/424021-eclipse-doesnt-accept-mo…
I just downloaded the newest Eclipse, just to be sure, but I had the same
problem with some older version.
Start Eclipse, and for example try to create a new project. Enter the project's
name and click Next. The button recognizes that it's being clicked (e.g. gets
focus, changes color etc) but nothing happens. Pressing enter works (as the
button has focus now). The same thing happens on the next screen with the
Finish button.
Reproducible: Always
Steps to Reproduce:
1. Start Eclipse
2. Click File>New>Java Project
3. Enter project's name, click Next - nothing happens
4. Press Enter button - wizard advances to next step, as expected
It seems that this problems is easiliy reproducible, and is related to
https://bugs.eclipse.org/bugs/show_bug.cgi?id=288909
However, it is quite serios, almost a showstopper for a number of users.
If you need additional details, don't hesitate to ask, I'm more than willing to
assist here.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=601501http://bugzilla.novell.com/show_bug.cgi?id=601501#c0
Summary: connecting to secure wireless network fails most of
the time.
Classification: openSUSE
Product: openSUSE 11.3
Version: Milestone 6
Platform: Other
OS/Version: Other
Status: NEW
Severity: Major
Priority: P5 - None
Component: Network
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: bwhiteley(a)novell.com
QAContact: qa(a)suse.de
Found By: Development
Blocker: ---
Created an attachment (id=358310)
--> (http://bugzilla.novell.com/attachment.cgi?id=358310)
/var/log/NetworkManager
Most of the time, connecting to a secure wireless network with NetworkManager
fails. Occasionally it works, after several tries. Sometimes countless
attempts will yield no success. If I reboot back into 11.2, I can connect
immediately.
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=601392http://bugzilla.novell.com/show_bug.cgi?id=601392#c0
Summary: Cannot launch Firefox from url link in Thunderbird
3.04
Classification: openSUSE
Product: openSUSE 11.3
Version: Milestone 6
Platform: x86-64
OS/Version: openSUSE 11.3
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Other
AssignedTo: bnc-team-screening(a)forge.provo.novell.com
ReportedBy: rb03884(a)gmail.com
QAContact: qa(a)suse.de
Found By: ---
Blocker: ---
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.4)
Gecko/20100417 SUSE/3.6.4-1.1 Firefox/3.6.4
When I click on an html link in an email link in Thunderbird 3.0.4, Firefox
3.6.4 will never start. In addition, the Help in Thunderbird cannot access the
Internet.
Reproducible: Always
Steps to Reproduce:
1. Open Thunderbird
2. Click on an url link in an email in Thunderbird
3. Firefox will not launch
Actual Results:
Firefox will not start up from within Thunderbird
Expected Results:
Firefox starts from within Thunderbird
A temporary fix is:
1. Open konsole, copy and paste the following line of code:
gconftool-2 -s --type=string /desktop/gnome/url-handlers/http/command
"/usr/bin/firefox \"%s\""
2. Copy and paste the next line of code:
gconftool-2 -s --type=string /desktop/gnome/url-handlers/https/command
"/usr/bin/firefox \"%s\""
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
http://bugzilla.novell.com/show_bug.cgi?id=600505http://bugzilla.novell.com/show_bug.cgi?id=600505#c0
Summary: cups-drivers contains PPDs which use non-existent
filters
Classification: openSUSE
Product: openSUSE 11.3
Version: Factory
Platform: All
OS/Version: openSUSE 11.3
Status: ASSIGNED
Severity: Normal
Priority: P5 - None
Component: Printing
AssignedTo: jsmeix(a)novell.com
ReportedBy: jsmeix(a)novell.com
QAContact: jsmeix(a)novell.com
Found By: Development
Blocker: ---
The "filters" package was dropped for openSUSE 11.2
but cups-drivers still contains PPDs which use
filters from the "filters" package, e.g. see
http://bugzilla.novell.com/show_bug.cgi?id=566312#c5
Accordingly such PPDs should be dropped from cups-drivers.
The initial suspects are:
---------------------------------------------------------------------
root@host# for p in $( rpm -ql cups-drivers | grep '\.ppd\.gz' ) ; \
do zgrep -q '\*driverType F' $p && echo $p ; done
/usr/share/cups/model/Canon/LBP-4U-cjet.ppd.gz
/usr/share/cups/model/Canon/LBP-8A1-cjet.ppd.gz
/usr/share/cups/model/HP/DeskJet_1000C-pnm2ppa.ppd.gz
/usr/share/cups/model/HP/DeskJet_710C-pnm2ppa.ppd.gz
/usr/share/cups/model/HP/DeskJet_712C-pnm2ppa.ppd.gz
/usr/share/cups/model/HP/DeskJet_720C-pnm2ppa.ppd.gz
/usr/share/cups/model/HP/DeskJet_722C-pnm2ppa.ppd.gz
/usr/share/cups/model/HP/DeskJet_820C-pnm2ppa.ppd.gz
/usr/share/cups/model/Lexmark/1000-lm1100.ppd.gz
/usr/share/cups/model/Lexmark/1020-lm1100.ppd.gz
/usr/share/cups/model/Lexmark/1100-lm1100.ppd.gz
/usr/share/cups/model/Lexmark/2030-pbm2l2030.ppd.gz
/usr/share/cups/model/Lexmark/2070-c2070.ppd.gz
/usr/share/cups/model/Minolta/PagePro_1200W-min12xxw.ppd.gz
/usr/share/cups/model/Minolta/PagePro_1250W-min12xxw.ppd.gz
/usr/share/cups/model/Minolta/PagePro_1300W-min12xxw.ppd.gz
/usr/share/cups/model/Minolta/PagePro_1350W-min12xxw.ppd.gz
/usr/share/cups/model/Minolta/PagePro_1400W-min12xxw.ppd.gz
---------------------------------------------------------------------
--
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.