remove 2.0.X warn message

svn: r6221
This commit is contained in:
Don Allingham 2006-03-29 04:48:50 +00:00
parent 0c17b53d2e
commit 1cc09e129a
2 changed files with 2 additions and 42 deletions

View File

@ -1,4 +1,5 @@
2006-03-28 Don Allingham <don@gramps-project.org>
* src/gramps_main.py: remove 2.0.X message
* src/ViewManager.py: remove expanduser
* src/Exporter.py: remove expanduser
* src/plugins/BookReport.py: remove expanduser

View File

@ -183,48 +183,7 @@ class Gramps:
## self.db.connect('person-update',self.on_update_bookmark)
def welcome(self):
if Config.get_welcome() >= 200:
return
glade = gtk.glade.XML(const.gladeFile,'scrollmsg')
top = glade.get_widget('scrollmsg')
msg = glade.get_widget('msg')
msg.get_buffer().set_text(
_("Welcome to the 2.0.x series of GRAMPS!\n"
"\n"
"This version drastically differs from the 1.0.x branch\n"
"in a few ways. Please read carefully, as this may affect\n"
"the way you are using the program.\n"
"\n"
"1. This version works with the Berkeley database backend.\n"
" Because of this, changes are written to disk immediately.\n"
" There is NO Save function anymore!\n"
"2. The Media object files are not managed by GRAMPS.\n"
" There is no concept of local objects, all objects\n"
" are external. You are in charge of keeping track of\n"
" your files. If you delete the image file from disk,\n"
" it will be lost!\n"
"3. The version control provided by previous GRAMPS\n"
" versions has been removed. You may set up the versioning\n"
" system on your own if you'd like, but it will have to be\n"
" outside of GRAMPS.\n"
"4. It is possible to directly open GRAMPS XML databases\n"
" (used by previous versions) as well as GEDCOM files.\n"
" However, any changes will be written to the disk when\n"
" you quit GRAMPS. In case of GEDCOM files, this may lead\n"
" to a data loss because some GEDCOM files contain data\n"
" that does not comply with the GEDCOM standard and cannot\n"
" be parsed by GRAMPS. If unsure, set up an empty grdb\n"
" database (new GRAMPS format) and import GEDCOM into it.\n"
" This will keep the original GEDCOM untouched.\n"
"\n"
"Enjoy!\n"
"The GRAMPS project\n"))
top.run()
top.destroy()
Config.save_welcome(200)
Config.sync()
return
def researcher_key_update(self,client,cnxn_id,entry,data):
pass