[Bug 740506]

2012-11-05 Thread José Aliste
(In reply to comment #33)
 OK, NSS with shared DB is what I'll pursue from now on.
 Thanks everyone for the input.

Andre, any update on the status of this? Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/740506

Title:
  verify digital signatures

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/740506/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-22 Thread José Aliste
I tried patched poppler with the minimal example and I don't get the
change of the glyphs anymore under the selection, which is VERY GOOD!!
But I can't select the Gamma glyph...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-12 Thread José Aliste
For the problem in the minimal example, the culprit seems to be in
TextSelectionPainter::visitWord, which assumes that all the chars in a
word use the same font. This is demonstrated by adding a space After
Word: in the bad line. This also explain why this bug is very common
with LaTeX files.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-12 Thread José Aliste
Created attachment 43360
Patch fixing the issue

Actually, All the chars in a TextWord MUST share the same font, so I
added a check so we also create a new word when the font changes. The
attached patch fixes the bug in the minimal example and many other
problems when selecting text in PdfLatex-generated files, but there are
still issues in rendering selections with Bitmapped fonts. In this case,
the glyph seems right but the size is wrong.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-12 Thread José Aliste
The last patch does not fix either some problems when selecting
ligatures in some fonts, see
http://java.sun.com/docs/books/jvms/second_edition/ClassFileFormat-
final-draft.pdf, page 54 and look for the word reflective which is
rendered as reßective (althought the text select is indeed
reflective. This does not happen with all fonts, for instance, in a
pdflatex generated file, I could not reproduce the problem.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 39890]

2012-08-12 Thread José Aliste
I assumed that the only code that is updating the curFont is
TextPage::updateFont. If this is true, from what I understood from the
code, the fonts array holds unique FontInfos, so it would be safe to
compare pointers instead of FontInfos. So, is this right? If so, and you
still want me to rework the patch so it compares the fonts infos instead
of the pointers, I won't argue and will update the patch, but I'd
appreciate an answer so I can have a better understanding of the code,
Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-12 Thread José Aliste
Created attachment 43420
alternate patch comparing gfxFont instead of pointers to FontInfos

Even if what I say in last comment may be true, I followed your advice and 
updated the patch to compare the gfxFonts instead of the pointers to the 
TextInfos.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-12 Thread José Aliste
Created attachment 43421
updated alternate patch

I apologize for the spam.  Previous patch was clearly wrong. Updated
patch.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 39890]

2012-08-12 Thread José Aliste
Thanks for the regression. The problem here is that bold: has two
fonts since bold is italicised and  : not, so before the patch,
bold: is a TextWord and pdftotext get the text right, but drawing the
selection is bad since the selected :  would be drawn italicised.
After the patch, bold: gets splitted up into bold and : so it gets
drawn correctly when selected, but you have the regression you pointed
out. So, I believe I am stuck with this choice:

a). I could either allow more than one font on a TextWord, and adapt the
code that draws the TextWord to use that fact, so the  selected : does
not get transform to a italicised : when drawing it.

b) or I could fix the TextDumper to be aware of the fact in some cases
there is no space between two TextWord.

c) Do you have another way?

I think I want to take approach a) even if it could more complicated,
but approach b) seems that it could break more things that it would
fix... thinking that when doing selection by words would not work at
all. What do you think?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to the bug report.
https://bugs.launchpad.net/bugs/39890

Title:
  characters change when selecting text

To manage notifications about this bug go to:
https://bugs.launchpad.net/poppler/+bug/39890/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 878262] Re: Latex toolbar does not disappear if editing a non-latex file

2012-05-16 Thread José Aliste
Sorry, it's http://bugzilla.gnome.org Product:gedit Component:latex
Thanks

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/878262

Title:
  Latex toolbar does not disappear if editing a non-latex file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gedit-latex-plugin/+bug/878262/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 878262] Re: Latex toolbar does not disappear if editing a non-latex file

2012-05-16 Thread José Aliste
This is not the correct tracker for gedit-latex. Please forward the bug
upstream (http://bugs.gnome.org) Component: gedit plugin:latex.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/878262

Title:
  Latex toolbar does not disappear if editing a non-latex file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gedit-latex-plugin/+bug/878262/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 492959] Re: Evince cannot save filled PDF forms

2011-01-21 Thread José Aliste
I don't know why this bug has not been reported upstream before. I just
reported it , see Gnome Bug #640185 ( I don't know how to link the bug
in launchpad)

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/492959

Title:
  Evince cannot save filled PDF forms

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs