|
|
|
Forum Newbie
      
Group: Customers
Last Login: 11/19/2007 1:37:05 AM
GenoPro Version: 2.0.1.1
Posts: 6,
Visits: 15
|
|
Hello,
This toolkit is very usefull and should be incorporated in Genopro.
I would like to add the place of marriage (maybe under the line) to the date. Is that possible ?
Thank You Ron.
Philippe Mercier
|
|
|
|
|
Grand Master
      
Group: Customers
Last Login: Today @ 4:04:00 PM
GenoPro Version: 2.0.1.6
Posts: 1,328,
Visits: 6,569
|
|
337209 (10/21/2007) I would like to add the place of marriage (maybe under the line) to the date. Is that possible ? Apologies for the delay in response Philippe.
It is indeed possible to add place of marriage, but only to the standard family line text position, i.e. above the line. If you edit the Dictionary.xml file contained in the XML Toolkit skin, adding the following lines after line 100 <FamilyDisplayText5 C1="Date and place of marriage (dd MMM yyyy Place)" T="{0}[{?0} {1}][{?!0}{1}]" P="u.Date.ToString(""), u.Place.Name"/> |
Then a 5th item is added to the drop down list templates for the family/marriage label, allowing for generation of date and place of marriage.
'lego audio video erro ergo disco' or "I read, I listen, I watch, I make mistakes, therefore I learn"
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 11/19/2007 1:37:05 AM
GenoPro Version: 2.0.1.1
Posts: 6,
Visits: 15
|
|
Thanks Ron,
It's really usefull...
I have a problem with the birth, death dates :
Is it possible to have before, after or circa when the date is not sure, than only the year ?
Thanks again Philippe
|
|
|
|
|
Forum Master
      
Group: Customers
Last Login: Today @ 5:10:30 AM
GenoPro Version: 2.0.1.6
Posts: 973,
Visits: 9,257
|
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 11/19/2007 1:37:05 AM
GenoPro Version: 2.0.1.1
Posts: 6,
Visits: 15
|
|
When I select Date of birth and date of birth I get it (i.e. <, > or a tilde) but not when I select DisplayTopLabel (i.e. just d. or b. and year).
I have made two screen captures but I don't know how to put them in a message.
Thanks Phil
|
|
|
|
|
Famous Writer
      
Group: Customers
Last Login: Today @ 6:19:44 AM
GenoPro Version: 2.0.1.6
Posts: 361,
Visits: 2,297
|
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 11/19/2007 1:37:05 AM
GenoPro Version: 2.0.1.1
Posts: 6,
Visits: 15
|
|
I'm using Firefox and I have no "browse button" so I cannot send the pics ! cf post 13867
Phil
|
|
|
|
|
Forum Guru
      
Group: Customers
Last Login: 11/4/2009 6:41:47 AM
GenoPro Version: 2.0.1.6
Posts: 199,
Visits: 2,982
|
|
Use the edit attachments button at the bottom of the page. Upload the picture, then post
Feri
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 11/19/2007 1:37:05 AM
GenoPro Version: 2.0.1.1
Posts: 6,
Visits: 15
|
|
|
|
|
|
Forum Master
      
Group: Customers
Last Login: Today @ 5:10:30 AM
GenoPro Version: 2.0.1.6
Posts: 973,
Visits: 9,257
|
|
I'm using Firefox and I have no "browse button" so I cannot send the pics ! cf post 13867
If you use IE Tab plug-in you can switch into IE mode just for the sites that insist on using MS specific features
|
|
|
|
|
Forum Master
      
Group: Customers
Last Login: Today @ 5:10:30 AM
GenoPro Version: 2.0.1.6
Posts: 973,
Visits: 9,257
|
|
When I select Date of birth and date of birth I get it (i.e. <, > or a tilde) but not when I select DisplayTopLabel (i.e. just d. or b. and year).
Depends on what you want to display. At present GenoPro has a small preset list of display options. The use of the Custom Tag means you can display almost exactly what you want. There are several options in the XML toolkit and if they are not enough the results can be changed.
There are two ways to do this. Either modify Toolkit.js in the skin or more simply edit the Custom tag directly in the table. Depends on how many samples need changing. (NB I have not attempted to modify the skin myself)
|
|
|
|
|
Grand Master
      
Group: Customers
Last Login: Today @ 4:04:00 PM
GenoPro Version: 2.0.1.6
Posts: 1,328,
Visits: 6,569
|
|
appleshaw (11/16/2007) There are several options in the XML toolkit and if they are not enough the results can be changed.
There are two ways to do this. Either modify Toolkit.js in the skin or more simply edit the Custom tag directly in the table. Depends on how many samples need changing. (NB I have not attempted to modify the skin myself)There is a third way that is my recommendation - edit the Dictionary.xml file in the XML Toolkit. Phil would like to see the date approximation symbols. this can be achieved by using the GenoPro Report Generator Date 'ToString' method. This is means changing the 1st option in the dictionary from <IndividualCustomTag1 C1="Year of Birth or Baptism & Death or Burial (b./bpt. yyyy - d./bur. yyyy)" T="[b. {0}][{?!0}bpt. {1}][{?0|1}{?2|3} - ][d. {2}][{?!2}bur. {3}]" P="i.Birth.Date.Year, i.Birth.Baptism.Date.Year, i.Death.Date.Year, i.Death.Disposition.Year"/> to <IndividualCustomTag1 C1="Year of Birth or Baptism & Death or Burial (b./bpt. yyyy - d./bur. yyyy)" T="[b. {0}][{?!0}bpt. {1}][{?0|1}{?2|3} - ][d. {2}][{?!2}bur. {3}]" P="i.Birth.Date.ToString("[|~|<|>]yyyy"), i.Birth.Baptism.Date.ToString("[|~|<|>]yyyy"), i.Death.Date.ToString("[|~|<|>]yyyy"), i.Death.Disposition.Date.ToString("[|~|<|>]yyyy")" /> |
Note that in XML the entity " represents a double quote " symbol and < > represent < and > respectively, and so .ToString("[|~|<|>]yyyy") in Dictionary.xml actually gets read by the Report Generator as .ToString("[|~|<|>]yyyy")
'lego audio video erro ergo disco' or "I read, I listen, I watch, I make mistakes, therefore I learn"
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 11/19/2007 1:37:05 AM
GenoPro Version: 2.0.1.1
Posts: 6,
Visits: 15
|
|
Hello Ron,
Thanks again.
In fact it's not the IndividualCustomTag1 I need to modify but the IndividualCustomTag4 and the IndividualCustomTag6 because I use all the 5 lines.
I have made this change
T="[b. {0}][{?!0}[bpt. {1}]]" P="i.Birth.Date.ToString(""), i.Birth.Baptism.Date.ToString("")"/>
to
T="[b. {0}][{?!0}[bpt. {1}]]" P="i.Birth.Date.ToString("[|~|<|>]yyyy"), i.Birth.Baptism.Date.ToString("[|~|<|>]yyyy")"/>
but it doesn't work !
Thanks for your help Ron.
Phil
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 10/31/2008 5:44:58 PM
GenoPro Version: 2.0.0.1
Posts: 2,
Visits: 10
|
|
| I am really a novice at all of this. Here's what I need to do. I need to add 2 custom tags to a genogram. The custom tag Tab is Health History; the custom tags are Illness 1 and Illness 2. I have downloaded and unzipped the XML Toolkit and have placed the 3 extracted files in the Skin folder. The form displays perfectly when I click on Generate. The 'instruction' at the birth-death and marriage-divorce drop downs indicated that I should refer to the dictionary. When I open the dictionary, it looks like I have to add some html [with which I am only remotely familiar!]. Can someone help me get these 2 custom tags to appear on my genogram or on a printed copy of it? Jim
|
|
|
|
|
Forum Master
      
Group: Customers
Last Login: Today @ 5:10:30 AM
GenoPro Version: 2.0.1.6
Posts: 973,
Visits: 9,257
|
|
Have you looked at the Help file, particularly http://www.genopro.com/help/custom-tags/
You can create custom tags directly and use the Display menu to choose which tags to show. The XML Tool kit is there to provide extra features but these are mainly to extend the information found related to baptism or marriage and also data created in gedcom files. You could use it to create a Tag with a specific name but the Tag Editor is your best bet
|
|
|
|
|
Grand Master
      
Group: Customers
Last Login: Today @ 4:04:00 PM
GenoPro Version: 2.0.1.6
Posts: 1,328,
Visits: 6,569
|
|
| You are almost there Jim. Edit the Dictionary.xml file in the custom skin folder you have created, add these lines after IndividualCustomTag8 <IndividualCustomTag9 C1="Illness 1" T="{0}" P="i.Illness1"/> <IndividualCustomTag10 C1="Illness 2" T="{0}" P="i.Illness2"/> |
I am assuming your Custom Tag names are Illness1 & Illness2 Now when you use Generate Report, you should see Illness 1 & Illness 2 in the drop down list. You can select Illness 1 for the 1st line and Illness 2 for the 2nd line, or any other combination of fields you require. Then click OK to generate the modified .xml file. Then open the generated .xml file with GenoPro and use the Display / All Custom Tags Menu item to set the top display for each individual to the DisplayTopLabel Custom Tag. And there you have it. Note that you will need to run the XML Toolkit each time you want an updated genogram as the generated DisplayTopLabel custom tag will not be updated by GenoPro.
'lego audio video erro ergo disco' or "I read, I listen, I watch, I make mistakes, therefore I learn"
|
|
|
|
|
Forum Newbie
      
Group: Customers
Last Login: 10/31/2008 5:44:58 PM
GenoPro Version: 2.0.0.1
Posts: 2,
Visits: 10
|
|
Whoo Hooo! Thanks, Ron. It worked! My project will be complete and without 'explanations' or handwritten illnesses because of this. I truly appreciate the time you gave to me!Jim
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 11/17/2008 1:08:11 PM
GenoPro Version: 2.0.1.6
Posts: 2,
Visits: 8
|
|
|
|
|
|
Grand Master
      
Group: Customers
Last Login: Today @ 4:04:00 PM
GenoPro Version: 2.0.1.6
Posts: 1,328,
Visits: 6,569
|
|
| Report Skin attached to 1st post has been updated with option to translate name case. This has only had limited testing and so if used please check results carefully and save you previous files! It will convert UPPER CASE names to Initial Captials or convert all names to upper case. N.B. does not currently handle Italian names with Di prefix correctly e.g. DiMarco, DiCaprio etc. Also added date and place of marriage ooption for family text, and finally ensured dialogue window is brought to front. And to the last poster in this thread - if you haven't found out already - it appears that you must be logged into the forum before you can download attachments (with IE, right click, Save Target As). If not the forum just dumps you on another page with no word of explanation.
'lego audio video erro ergo disco' or "I read, I listen, I watch, I make mistakes, therefore I learn"
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 7/28/2009 6:23:23 PM
GenoPro Version: 2.0.1.6
Posts: 1,
Visits: 3
|
|
Hello Ron.
I can't seem to download the attachment. When I click the link it opens a new tab with the main support forum page. I have tried itmany times and I also have tried right clicking and Selecting save file as... but it wants to save an html file not the zip file. Any suggestion? - lowell
|
|
|
|
|
Grand Master
      
Group: Customers
Last Login: Today @ 4:04:00 PM
GenoPro Version: 2.0.1.6
Posts: 1,328,
Visits: 6,569
|
|
I believe you must be logged in to the forum before you can download attachements. It's a pity the forum software doesn't give a more explicit error in such cases. If you were logged in when you tried to download then that's a mystery to me!
'lego audio video erro ergo disco' or "I read, I listen, I watch, I make mistakes, therefore I learn"
|
|