Skip to content

Commit 4023bbd

Browse files
committed
Update project URL
1 parent 6cd2f2a commit 4023bbd

36 files changed

+39
-72
lines changed

classes/adobe_font_metrics.cls.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
require_once dirname(__FILE__)."/encoding_map.cls.php";
@@ -44,7 +43,7 @@ function write($file, $encoding = null){
4443

4544
$this->startSection("FontMetrics", 4.1);
4645
$this->addPair("Notice", "Converted by PHP-font-lib");
47-
$this->addPair("Comment", "http://php-font-lib.googlecode.com/");
46+
$this->addPair("Comment", "https://github.com/PhenX/php-font-lib");
4847

4948
$encoding_scheme = ($encoding ? $encoding : "FontSpecific");
5049
$this->addPair("EncodingScheme", $encoding_scheme);

classes/encoding_map.cls.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
/**

classes/font.cls.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
/**

classes/font_binary_stream.cls.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
/**

classes/font_eot.cls.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
require_once dirname(__FILE__)."/font_truetype.cls.php";

classes/font_glyph_outline.cls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
77
* @version $Id: font_table_glyf.cls.php 46 2012-04-02 20:22:38Z fabien.menager $

classes/font_glyph_outline_composite.cls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
77
* @version $Id: font_table_glyf.cls.php 46 2012-04-02 20:22:38Z fabien.menager $

classes/font_glyph_outline_simple.cls.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
77
* @version $Id: font_table_glyf.cls.php 46 2012-04-02 20:22:38Z fabien.menager $
@@ -62,9 +62,9 @@ function parseData(){
6262
}
6363

6464
$points = array();
65-
foreach ($flags as $i => $flag) {
65+
foreach ($flags as $i => $flag) {
6666
$points[$i]["onCurve"] = $flag & self::ON_CURVE;
67-
$points[$i]["endOfContour"] = in_array($i, $endPtsOfContours);
67+
$points[$i]["endOfContour"] = in_array($i, $endPtsOfContours);
6868
}
6969

7070
// X Coords

classes/font_header.cls.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
/**

classes/font_opentype.cls.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
<?php
22
/**
33
* @package php-font-lib
4-
* @link http://php-font-lib.googlecode.com/
4+
* @link https://github.com/PhenX/php-font-lib
55
* @author Fabien Ménager <[email protected]>
66
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
7-
* @version $Id$
87
*/
98

109
require_once dirname(__FILE__)."/font_truetype.cls.php";

0 commit comments

Comments
 (0)