(file) Return to LinkChecker_Programs.cfm CVS log (file) (dir) Up to [Development] / p2rx-programs

Diff for /p2rx-programs/LinkChecker_Programs.cfm between version 1.1 and 1.2

version 1.1, 2005/06/03 20:36:20 UTC version 1.2, 2005/07/25 15:23:32 UTC
Line 7 
Line 7 
                                         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>&nbsp;</td><td><a href=#URL#>#URL#</a></td></tr>  <cfif Division is not "" and Division is not "N/A">
 <tr><td>&nbsp;</td><td><a href=#GraphicURL#>#GraphicURL#</a>(LOGO)</td></tr>              <tr><td>&nbsp;</td><td> <em><font color="##FF0000">Division:  </font><strong>#Division#</strong></td></tr>
   </cfif>
   <tr><td>&nbsp;</td>
   <cfif url is not "" and url is not "N/A">
               <td>Program:&nbsp;&nbsp;
                           <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>&nbsp;</td>
   <td><cfif #GraphicURL# is ""><em><font color="##FF0000">No Logo Listed for this Program</font></em><cfelse>Logo:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=#GraphicURL#>#GraphicURL#</a></cfif></td></tr>
 </cfoutput>  </cfoutput>
 </table>  </table>
   
 </body>  
 </html>  
    </BODY>
   </HTML>


Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

CVS Admin
Powered by
ViewCVS 1.0-dev