Allow HTML signatures
We search for HTML-like tags in signatures, and don't do much as much escaping if we find one. For .signature files detected to be HTML, we insert them without any change. User-entered signatures get their whitespace protected, even when HTML is detected. The existing code for preserving whitespace doesn't work when there's already HTML code in the text (it converts "<a b>" to "<a b>"), so instead we preserve the whitespace with CSS. A preview of the signature is added to the the UI. There's a TextView and a WebView in a Stack, and we swap between them with a StackSwitcher. Some of the packing details are changed so that these views are the thing that expands when the dialog size changes. https://bugzilla.gnome.org/show_bug.cgi?id=738895
This commit is contained in:
parent
11d8038422
commit
c87bbea3ab
5 changed files with 65 additions and 28 deletions
|
|
@ -7,7 +7,6 @@
|
|||
<property name="step_increment">1</property>
|
||||
<property name="page_increment">10</property>
|
||||
</object>
|
||||
<object class="GtkTextBuffer" id="buffer: email_signature"/>
|
||||
<object class="GtkBox" id="container">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
|
|
@ -960,7 +959,7 @@
|
|||
</child>
|
||||
<child>
|
||||
<object class="GtkCheckButton" id="check: use_email_signature">
|
||||
<property name="label" translatable="yes">Si_gn emails:</property>
|
||||
<property name="label" translatable="yes">Si_gn emails (HTML allowed):</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="receives_default">False</property>
|
||||
|
|
@ -976,23 +975,20 @@
|
|||
</packing>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkScrolledWindow" id="scrolledwindow2">
|
||||
<object class="GtkBox" id="signature box">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="sensitive">False</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="margin_left">12</property>
|
||||
<property name="shadow_type">in</property>
|
||||
<child>
|
||||
<object class="GtkTextView" id="textview: email_signature">
|
||||
<property name="visible">True</property>
|
||||
<property name="sensitive">False</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="wrap_mode">word</property>
|
||||
<property name="buffer">buffer: email_signature</property>
|
||||
</object>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">3</property>
|
||||
</packing>
|
||||
|
|
@ -1002,7 +998,7 @@
|
|||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">False</property>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">4</property>
|
||||
</packing>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue