|
Administrator
|
Hello ,
can we release 0.9.4 ? I mean in debian sid for example the 0.9.3 snapshots are packaged and seems to be quite stable to me Or there are any other bugs that holds a release we need to put one online (didn't released a version in 2 years already) I think we can tag/branch the tree and make zip with it and call it 0.9.4 ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2dcopy2 _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
On Fri, Sep 30, 2011 at 3:32 PM, marius adrian popa <[hidden email]> wrote:
> Or there are any other bugs that holds a release Yes, multiple. See past few issues raised on the mailing list. None of those are fixed. -- Milan Babuskov http://www.guacosoft.com ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2dcopy2 _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
In reply to this post by marius adrian popa
In Debian not shows the descriptions of the exceptions when these have
accentuated letters with character set ISO8859_1. Best Regards ========= || ISMAEL || ========= ----- Original Message ----- From: "marius adrian popa" <[hidden email]> To: "Development list" <[hidden email]> Sent: Friday, September 30, 2011 9:32 AM Subject: [Flamerobin-devel] flamerobin 0.9.4 release > Hello , > can we release 0.9.4 ? > I mean in debian sid for example the 0.9.3 snapshots are packaged and > seems to be quite stable to me > Or there are any other bugs that holds a release > we need to put one online (didn't released a version in 2 years already) > > I think we can tag/branch the tree and make zip with it and call it 0.9.4 > > ------------------------------------------------------------------------------ > All of the data generated in your IT infrastructure is seriously valuable. > Why? It contains a definitive record of application performance, security > threats, fraudulent activity, and more. Splunk takes this data and makes > sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-d2dcopy2 > _______________________________________________ > Flamerobin-devel mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/flamerobin-devel > ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2dcopy2 _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
In reply to this post by Milan Babuskov-4
On Fri, Sep 30, 2011 at 4:38 PM, Milan Babuskov
<[hidden email]> wrote: > On Fri, Sep 30, 2011 at 3:32 PM, marius adrian popa <[hidden email]> wrote: >> Or there are any other bugs that holds a release > > Yes, multiple. See past few issues raised on the mailing list. None of > those are fixed. I fixed all the problems with templating stuff, now we need to address the other few issues as well. Bye, -- Milan Babuskov http://www.guacosoft.com ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2d-oct _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
In reply to this post by Ismael L. Donis Garcia
Am 30.09.2011 20:15, schrieb Ismael L. Donis Garcia:
> In Debian not shows the descriptions of the exceptions when these have > accentuated letters with character set ISO8859_1. I don't think anything can be done about this. The problem squarely lies with Firebird, because the system table for exceptions RDB$EXCEPTIONS has the field RDB$EXCEPTION_NAME using the charset UNICDOE_FSS and the field RDB$MESSAGE using the charset NONE. The result of this is that exception message texts only work correctly if they don't contain any ASCII characters, or when the connection charset is the same as it was when the exception was created (or a different one with the same encoding of the characters in question). This can easily be checked in Windows too. Connect to a database with charset UTF-8 and create an exception: CREATE EXCEPTION "äöü" 'Test message ÄÖÜ ß'; Then disconnect and reconnect with the connection charset set to for example WIN1252 or ISO8859_1. Browse the RDB$EXCEPTIONS table and you will see that the name is shown correctly while the message is not. Since it is impossible to say which connection charset was used when the exception was created (and since it is in a charset NONE column) there is no way for FlameRobin to do the correct charset conversion. Thanks -- Michael Hieke ------------------------------------------------------------------------------ Try before you buy = See our experts in action! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-dev2 _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
> ----- Original Message -----
> From: "Michael Hieke" <[hidden email]> > To: <[hidden email]> > Sent: Monday, January 23, 2012 3:38 PM > Subject: Re: [Flamerobin-devel] flamerobin 0.9.4 release > Am 30.09.2011 20:15, schrieb Ismael L. Donis Garcia: >> In Debian not shows the descriptions of the exceptions when these have >> accentuated letters with character set ISO8859_1. > I don't think anything can be done about
this. The problem squarely
> lies with Firebird, because the system table for exceptions > RDB$EXCEPTIONS has the field RDB$EXCEPTION_NAME using the charset > UNICDOE_FSS and the field RDB$MESSAGE using the charset NONE. > The result of this is that exception message texts only work correctly > if they don't contain any ASCII characters, or when the connection > charset is the same as it was when the exception was created (or a > different one with the same encoding of the characters in question). > This can easily be checked in Windows too. Connect to a database with > charset UTF-8 and create an exception: > CREATE EXCEPTION "äöü" 'Test message ÄÖÜ ß'; > Then disconnect and reconnect with the connection charset set to for > example WIN1252 or ISO8859_1. Browse the RDB$EXCEPTIONS table and you > will see that the name is shown correctly while the message is not. > Since it is impossible to say which connection charset was used when the > exception was created (and since it is in a charset NONE column) there > is no way for FlameRobin to do the correct charset conversion. > Thanks > Michael Hieke I don't understand. Then because is seen in Windows
with ISO8859_1?
The same database if I open it with Flamerobin from
Windows I see the descriptions of the exceptions and if I open it from Linux
not.
Best Regards
========= || ISMAEL || ========= ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
On 23.01.2012 23:03, Ismael L. Donis Garcia wrote:
> I don't understand. Then because is seen in Windows with ISO8859_1? > The same database if I open it with Flamerobin from Windows I see the > descriptions of the exceptions and if I open it from Linux not. I don't understand. I have two test databases here, one in ISO8859_1, the other in UTF8. If I use the same connection charset as the database default charset I get proper names and messages for exceptions from both Windows and Ubuntu, for both databases. If I use a connection charset different from the default database charset I get wrong message texts, both on Windows and Ubuntu, for both databases. I could look into it if you gave me ways to reproduce the problem, but right now I don't know what to do about this. Thanks -- Michael Hieke ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
In reply to this post by Ismael L. Donis Garcia
On Mon, Jan 23, 2012 at 11:03 PM, Ismael L. Donis Garcia
<[hidden email]> wrote: > I don't understand. Then because is seen in Windows with ISO8859_1? > The same database if I open it with Flamerobin from Windows I see the > descriptions of the exceptions and if I open it from Linux not. Which connection character set do you use? -- Milan Babuskov http://www.guacosoft.com ------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
|
In reply to this post by marius adrian popa
>----- Original Message -----
>From: "Milan Babuskov" <[hidden email]>
>To: "Development list" <[hidden email]>
>Sent: Wednesday, January 25, 2012 1:33
PM
>Subject: Re: [Flamerobin-devel] flamerobin
0.9.4 release > On Mon, Jan 23, 2012 at 11:03 PM, Ismael L.
Donis Garcia
> <[hidden email]> wrote: >> I don't understand. Then because is seen in Windows with ISO8859_1? >> The same database if I open it with Flamerobin from Windows I see the >> descriptions of the exceptions and if I open it from Linux not. > > Which connection character set do you use? > > Milan Babuskov > http://www.guacosoft.com ISO8859_1 at both systems. Windows XP -
SP3 and Linux (Debian squeeze).
Best Regards
=========
|| ISMAEL || =========
------------------------------------------------------------------------------ Keep Your Developer Skills Current with LearnDevNow! The most comprehensive online learning library for Microsoft developers is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3, Metro Style Apps, more. Free future releases when you subscribe now! http://p.sf.net/sfu/learndevnow-d2d _______________________________________________ Flamerobin-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/flamerobin-devel |
| Powered by Nabble | Edit this page |
