|
version 1.1, 2005/06/03 20:36:20 UTC
|
version 1.2, 2005/07/25 15:23:32 UTC
|
|
|
|
| OrganizationName - Name of the organization |
OrganizationName - Name of the organization |
| URL - Website of the organization |
URL - Website of the organization |
| GraphicURL - URL of the organization's logo |
GraphicURL - URL of the organization's logo |
| |
Division - Division of the organization |
| Functions: |
Functions: |
| Date changed: |
Date changed: |
| 06/06/2005 Prabin Created |
06/06/2005 Prabin Created |
| |
07/25/2005 Prabin Added Division as well as displays comments if logo |
| |
or Org URL is not available. |
| |
|
| ---> |
---> |
| |
|
| <cfquery name="links_special" datasource="programs"> |
<cfquery name="Org_links" datasource="programs"> |
| SELECT OrgID, OrganizationName, URL, GraphicURL |
SELECT OrgID, OrganizationName, URL, GraphicURL, division |
| FROM Organization |
FROM Organization |
| ORDER BY OrganizationName |
ORDER BY OrganizationName |
| </cfquery> |
</cfquery> |
| |
|
| |
<HTML> |
| |
<HEAD> |
| |
<TITLE>Programs Directory Link Checking</TITLE> |
| |
</HEAD> |
| |
<BODY> |
| |
<P><FONT><strong>Programs Directory Link Checking</strong> |
| |
</FONT> |
| |
|
| |
<P><FONT SIZE="-1">Use your link checking software to validate the program and logo URLs in the Programs Directory (see list below). |
| |
Open the <a href="../admin/home.cfm" target="_blank">Programs Directory</a> and edit programs as necessary.</FONT></p> |
| |
|
| <html> |
|
| <head> |
|
| <META NAME="ROBOTS" CONTENT="NOINDEX, NOFOLLOW"> |
|
| <title>Monthly broken link checker for Programs</title> |
|
| </head> |
|
| <body> |
|
| |
|
| <h1><font color="red">Programs URL and LOGO URL</font></h1> |
|
| <table> |
<table> |
| <cfoutput query="links_special"> |
<cfoutput query="org_links"> |
| <tr><td>#OrgID#</td><td><strong>#OrganizationName#</strong></td></tr> |
<tr><td>#OrgID#</td><td><strong>#OrganizationName#</strong></td></tr> |
| <tr><td> </td><td><a href=#URL#>#URL#</a></td></tr> |
<cfif Division is not "" and Division is not "N/A"> |
| <tr><td> </td><td><a href=#GraphicURL#>#GraphicURL#</a>(LOGO)</td></tr> |
<tr><td> </td><td> <em><font color="##FF0000">Division: </font><strong>#Division#</strong></td></tr> |
| |
</cfif> |
| |
<tr><td> </td> |
| |
<cfif url is not "" and url is not "N/A"> |
| |
<td>Program: |
| |
<cfif url Contains "http://" Or url contains "https://"> |
| |
<a href="#url#">#url#</a> |
| |
<cfelse> |
| |
<a href="http://#url#">#url#</a> |
| |
</cfif></td></tr> |
| |
<cfelse> |
| |
<td><em><font color="##0000ff">No URL Listed for this Program</font></em></td> |
| |
</cfif> |
| |
<tr><td> </td> |
| |
<td><cfif #GraphicURL# is ""><em><font color="##FF0000">No Logo Listed for this Program</font></em><cfelse>Logo: <a href=#GraphicURL#>#GraphicURL#</a></cfif></td></tr> |
| </cfoutput> |
</cfoutput> |
| </table> |
</table> |
| |
|
| </body> |
|
| </html> |
|
| |
</BODY> |
| |
</HTML> |