erikg / Revelation
Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.
| commit 488: | dceea539b127 |
| parent 487: | 4896555f19bf |
| branch: | default |
fixed crash when saving file after certain imports (fixes bug #203)
Changed (Δ86 bytes):
raw changeset »
NEWS (1 lines added, 0 lines removed)
src/lib/util.py (3 lines added, 0 lines removed)
| … | … | @@ -3,6 +3,7 @@ xxxx-xx-xx: Revelation 0.4.12 |
3 |
3 |
|
4 |
4 |
Bugfixes: |
5 |
5 |
- fixed crash in XHTML exporter [Javier Kohen] |
6 |
- fixed crash when saving file after certain imports |
|
6 |
7 |
|
7 |
8 |
Translation: |
8 |
9 |
- added finnish translation [Ilkka Tuohela] |
Up to file-list src/lib/util.py:
| … | … | @@ -152,6 +152,9 @@ def entropy_ideal(length): |
152 |
152 |
def escape_markup(string): |
153 |
153 |
"Escapes a string so it can be placed in a markup string" |
154 |
154 |
|
155 |
if string is None: |
|
156 |
return "" |
|
157 |
||
155 |
158 |
string = string.replace("&", "&") |
156 |
159 |
string = string.replace("<", "<") |
157 |
160 |
string = string.replace(">", ">") |
