Update of /cvsroot/phpwiki/phpwiki
In directory usw-pr-cvs1:/tmp/cvs-serv26669
Modified Files:
phpwiki.css index.php
Log Message:
Cleaned up the external URL link icon code a bit.
Index: phpwiki.css
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/phpwiki.css,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** phpwiki.css 2001/12/06 18:25:41 1.5
--- phpwiki.css 2001/12/06 19:15:05 1.6
***************
*** 169,172 ****
--- 169,182 ----
/*
+ * No border on external link icons.
+ */
+ img.linkicon {
+ border: none;
+ margin-right: 0.5ex;
+ margin-left: 0.25ex;
+ vertical-align: bottom;
+ }
+
+ /*
* Put a border around wikiaction forms:
* This doesn't work for NS4.
Index: index.php
===================================================================
RCS file: /cvsroot/phpwiki/phpwiki/index.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -r1.33 -r1.34
*** index.php 2001/12/06 08:15:38 1.33
--- index.php 2001/12/06 19:15:05 1.34
***************
*** 267,271 ****
// this turns on url indicator icons, inserted before embedded links
! //define("USE_LINK_ICONS", 1);
// Date & time formats used to display modification times, etc.
--- 267,280 ----
// this turns on url indicator icons, inserted before embedded links
! // FIXME: need a special icon (question mark?) for unknown protocols.
! /*
! $LINK_ICONS = array(
! 'http' => 'images/http.png',
! 'https' => 'images/https.png',
! 'ftp' => 'images/ftp.png',
! 'mailto' => 'images/mailto.png',
! '*' => 'images/http.png'
! );
! */
// Date & time formats used to display modification times, etc.
|