Author Topic: Badge Checklist?  (Read 8914 times)

Orangeblooded

  • Underling
  • *
  • Posts: 13
Badge Checklist?
« on: April 11, 2009, 09:28:47 PM »
There use to be a section called Badge Checklist that I could print and it gave me a description of what each badge was and where it could be found (exploration). I can't seem to find that tab on TNT anymore. Did it get removed or am I just overlooking it?

Steiner

  • Elite Boss
  • *****
  • Posts: 1,602
    • Steinerd.com
Re: Badge Checklist?
« Reply #1 on: April 11, 2009, 09:43:24 PM »
I'll have to admit, the navigation has most definitely changed in the last few years.

When you go to you manage page (http://cit.cohtitan.com/manage/) you will see a link for each character marked "Manage" under the "Action" column.

The menu item you're looking for is called "View Badgelist". It will take you right to that page.
~Steinerd

Orangeblooded

  • Underling
  • *
  • Posts: 13
Re: Badge Checklist?
« Reply #2 on: April 12, 2009, 12:43:23 PM »
Thank you! That is exactly what I was looking for.

freakazoid

  • Underling
  • *
  • Posts: 6
Re: Badge Checklist?
« Reply #3 on: January 17, 2011, 04:01:07 PM »
I found the character checklist here http://cit.cohtitan.com/manage/checklist. All I see are feeds and bind files links. The printable ones don't seem to be listed. Where can I find a printout list?

eabrace

  • Titan Moderator
  • Elite Boss
  • *****
  • Posts: 4,291
Re: Badge Checklist?
« Reply #4 on: January 17, 2011, 04:46:15 PM »
(Navigating from memory at the moment since I can't access CIT while I'm at work.  Actual text and layout may vary slightly from the following instructions.  I'll edit this to make it correct if I remember when I get home tonight.)

Make sure you are logged in on CIT.

Toward the top right of the page, you'll see options a drop down for "My Account".  Click to expand that list.  You should see a "My Badge Checklists" option.  Click that.  This should take you to a page that prompts you for Character names and which badge checklist you want to display.
Titan Twitter broadcasting at 5.000 mWh and growing.
Titan Facebook

Paragon Wiki admin
I was once being interviewed by Barbara Walters...In between two of the segments she asked me..."But what would you do if the doctor gave you only six months to live?" I said, "Type faster." - Isaac Asimov

Aggelakis

  • Elite Boss
  • *****
  • Posts: 3,001
Re: Badge Checklist?
« Reply #5 on: January 17, 2011, 08:48:53 PM »
That is the page that freakazoid linked to.

However, following through one of my characters, the first two links are "printable short" and "printable long", followed by XML, JSON, and bind files links.
Bob Dole!! Bob Dole. Bob Dole! Bob Dole. Bob Dole. Bob Dole... Bob Dole... Bob... Dole...... Bob...


ParagonWiki
OuroPortal

SaintNicster

  • Elite Boss
  • *****
  • Posts: 865
Re: Badge Checklist?
« Reply #6 on: January 17, 2011, 10:02:13 PM »
The 'real' links to the checklists are still available if you click from the Character Profile page.  These use the character's internal ID number, rather than the generated "XML Key".   http://cit.cohtitan.com/checklist/138 is an example.  The rest of the checklists are provided at the top of the printable pages.

The javascript used to populate the checklist links is broken, as I appear to have omitted some double quotes in /scripts/checklist.js.

Lines 14 & 15
Code: [Select]
$("#link_long").html('<a href="http://cit.cohtitan.com/checklist/long/' + keys[0] +'>http://cit.cohtitan.com/checklist/long/' + keys[0] +'</a>');
$("#link_short").html('<a href="http://cit.cohtitan.com/checklist/short/' + keys[0] +'>http://cit.cohtitan.com/checklist/short/' + keys[0] +'</a>');
should be
Code: [Select]
$("#link_long").html('<a href="http://cit.cohtitan.com/checklist/long/' + keys[0] +'">http://cit.cohtitan.com/checklist/long/' + keys[0] +'</a>');
$("#link_short").html('<a href="http://cit.cohtitan.com/checklist/short/' + keys[0] +'">http://cit.cohtitan.com/checklist/short/' + keys[0] +'</a>');


Side note on design:

You only have access to a character's printable checklists if they are marked as 'visible,' or if the character is one of yours and you are logged in.

For the XML, and JSON links, an 'xml key' was used because you are more likely to be pulling the information from something other than the browser.  In order to somewhat preserve the visibility options set for the character, the XML key is only provided to the character's owner and shouldn't be displayed elsewhere on the site.


freakazoid

  • Underling
  • *
  • Posts: 6
Re: Badge Checklist?
« Reply #7 on: January 19, 2011, 04:35:14 AM »
I was able to find the printable version under Character Profile as posted by SaintNicster.
Thanks all for the help  :D