[TYPO3-dam-devel] RFC #17379 dam is not linkvalidator aware

Michael Miousse mmiousse at infoglobe.ca
Tue Feb 1 20:21:10 CET 2011


Hi DAM people,

this is a SVN patch request.

Type: Feature

Bugtracker reference: http://bugs.typo3.org/view.php?id=17379

Branches: trunk

Problem:
RFC #17379: dam is not linkvalidator aware 



Solution:
Create a hook class to connect to the linkvalidator system

Comment:
The patch is on the bug traker http://bugs.typo3.org/view.php?id=17379
I made some adjustement from the patch in : http://forge.typo3.org/issues/12582

you will only need to update the manual to explain how to setup the validator by adding 2 things:

1-  add dam to the linktypes tsconfig:
     base tsconfig: mod.linkvalidator.linktypes = db,file,external
     new tsConfig : mod.linkvalidator.linktypes = db,file,external,dam

2- add the new markers in the PAGE_SECTION mail template
    base template: 
         <!-- ###PAGE_SECTION### -->
 	Page: ###TITLE###<br />
 	All links types: ###BROKENLINKCOUNT###  (last report: ###BROKENLINKCOUNT_OLD###)<br />
 	Internal link: ###DB### (last report: ###DB_OLD###)<br />
 	External link: ###EXTERNAL### (last report: ###EXTERNAL_OLD###)<br />

       <!-- ###PAGE_SECTION### -->

new template:

 <!-- ###PAGE_SECTION### -->
 	Page: ###TITLE###<br />
 	All links types: ###BROKENLINKCOUNT###  (last report: ###BROKENLINKCOUNT_OLD###)<br />
 	Internal link: ###DB### (last report: ###DB_OLD###)<br />
 	External link: ###EXTERNAL### (last report: ###EXTERNAL_OLD###)<br />
 	Dam link: ###DAM### (last report: ###DAM_OLD###)<br />

 <!-- ###PAGE_SECTION### -->


More information about the TYPO3-team-dam mailing list