Page MenuHomePhabricator

D8430.id20010.diff
No OneTemporary

D8430.id20010.diff

Index: resources/celerity/map.php
===================================================================
--- resources/celerity/map.php
+++ resources/celerity/map.php
@@ -7,7 +7,7 @@
return array(
'names' =>
array(
- 'core.pkg.css' => '9cc0bd27',
+ 'core.pkg.css' => '2ed3f133',
'core.pkg.js' => 'b7bdab05',
'darkconsole.pkg.js' => 'ca8671ce',
'differential.pkg.css' => 'd1b3a605',
@@ -115,7 +115,8 @@
'rsrc/css/core/remarkup.css' => 'ca7f2265',
'rsrc/css/core/syntax.css' => '3c18c1cb',
'rsrc/css/core/z-index.css' => '0fd29d49',
- 'rsrc/css/diviner/diviner-shared.css' => 'be90f718',
+ 'rsrc/css/diviner/diviner-shared.css' => '38813222',
+ 'rsrc/css/font/font-source-sans-pro.css' => '225851dd',
'rsrc/css/layout/phabricator-action-header-view.css' => 'c14dfc57',
'rsrc/css/layout/phabricator-action-list-view.css' => '81383e25',
'rsrc/css/layout/phabricator-crumbs-view.css' => '2d9db584',
@@ -129,11 +130,12 @@
'rsrc/css/phui/calendar/phui-calendar.css' => '5e1ad989',
'rsrc/css/phui/phui-box.css' => 'a36cf3a5',
'rsrc/css/phui/phui-button.css' => '8784a966',
- 'rsrc/css/phui/phui-document.css' => '143b2ac8',
+ 'rsrc/css/phui/phui-document.css' => 'b56323cf',
'rsrc/css/phui/phui-feed-story.css' => '3a59c2cf',
+ 'rsrc/css/phui/phui-fontkit.css' => 'de84aa4a',
'rsrc/css/phui/phui-form-view.css' => '0efd3326',
'rsrc/css/phui/phui-form.css' => 'b78ec020',
- 'rsrc/css/phui/phui-header-view.css' => '472a6003',
+ 'rsrc/css/phui/phui-header-view.css' => 'b76a37b3',
'rsrc/css/phui/phui-icon.css' => '7a5771a9',
'rsrc/css/phui/phui-info-panel.css' => '27ea50a1',
'rsrc/css/phui/phui-list.css' => '2edb76cf',
@@ -166,6 +168,8 @@
'rsrc/css/sprite-projects.css' => '7578fa56',
'rsrc/css/sprite-status.css' => '8bce1c97',
'rsrc/css/sprite-tokens.css' => '1706b943',
+ 'rsrc/externals/font/SourceSansPro.woff' => '44e50175',
+ 'rsrc/externals/font/SourceSansProBold.woff' => '8799f025',
'rsrc/externals/javelin/core/Event.js' => '79473b62',
'rsrc/externals/javelin/core/Stratcom.js' => 'c293f7b9',
'rsrc/externals/javelin/core/__tests__/event-stop-and-kill.js' => '717554e4',
@@ -516,7 +520,8 @@
'diffusion-commit-view-css' => '92d1e8f9',
'diffusion-icons-css' => '384a0f7d',
'diffusion-source-css' => '66fdf661',
- 'diviner-shared-css' => 'be90f718',
+ 'diviner-shared-css' => '38813222',
+ 'font-source-sans-pro' => '225851dd',
'global-drag-and-drop-css' => '697324ad',
'herald-css' => '59d48f01',
'herald-rule-editor' => '4f31d692',
@@ -744,11 +749,12 @@
'phui-calendar-day-css' => 'de035c8a',
'phui-calendar-list-css' => 'c1d0ca59',
'phui-calendar-month-css' => '5e762971',
- 'phui-document-view-css' => '143b2ac8',
+ 'phui-document-view-css' => 'b56323cf',
'phui-feed-story-css' => '3a59c2cf',
+ 'phui-fontkit-css' => 'de84aa4a',
'phui-form-css' => 'b78ec020',
'phui-form-view-css' => '0efd3326',
- 'phui-header-view-css' => '472a6003',
+ 'phui-header-view-css' => 'b76a37b3',
'phui-icon-view-css' => '7a5771a9',
'phui-info-panel-css' => '27ea50a1',
'phui-list-view-css' => '2edb76cf',
Index: src/aphront/configuration/AphrontDefaultApplicationConfiguration.php
===================================================================
--- src/aphront/configuration/AphrontDefaultApplicationConfiguration.php
+++ src/aphront/configuration/AphrontDefaultApplicationConfiguration.php
@@ -61,7 +61,7 @@
'(?:(?P<mtime>[0-9]+)T/)?'.
'(?P<library>[^/]+)/'.
'(?P<hash>[a-f0-9]{8})/'.
- '(?P<path>.+\.(?:css|js|jpg|png|swf|gif))'
+ '(?P<path>.+\.(?:css|js|jpg|png|swf|gif|woff))'
=> 'CelerityPhabricatorResourceController',
),
);
Index: src/aphront/response/AphrontFileResponse.php
===================================================================
--- src/aphront/response/AphrontFileResponse.php
+++ src/aphront/response/AphrontFileResponse.php
@@ -10,6 +10,12 @@
private $download;
private $rangeMin;
private $rangeMax;
+ private $allowOrigins = array();
+
+ public function addAllowOrigin($origin) {
+ $this->allowOrigins[] = $origin;
+ return $this;
+ }
public function setDownload($download) {
$download = preg_replace('/[^A-Za-z0-9_.-]/', '_', $download);
@@ -76,6 +82,12 @@
);
}
+ if ($this->allowOrigins) {
+ $headers[] = array(
+ 'Access-Control-Allow-Origin',
+ implode(',', $this->allowOrigins));
+ }
+
$headers = array_merge(parent::getHeaders(), $headers);
return $headers;
}
Index: src/applications/base/controller/PhabricatorController.php
===================================================================
--- src/applications/base/controller/PhabricatorController.php
+++ src/applications/base/controller/PhabricatorController.php
@@ -222,6 +222,10 @@
$page->setDeviceReady(true);
}
+ if (idx($options, 'fonts')) {
+ $page->setExtraFonts(true);
+ }
+
$page->setShowChrome(idx($options, 'chrome', true));
$application_menu = $this->buildApplicationMenu();
Index: src/applications/diviner/controller/DivinerAtomController.php
===================================================================
--- src/applications/diviner/controller/DivinerAtomController.php
+++ src/applications/diviner/controller/DivinerAtomController.php
@@ -121,6 +121,7 @@
$document = id(new PHUIDocumentView())
->setBook($book->getTitle(), $group_name)
->setHeader($header)
+ ->setFontKit(PHUIDocumentView::FONT_SOURCE_SANS)
->appendChild($properties)
->appendChild($warnings)
->appendChild($content);
@@ -248,6 +249,7 @@
array(
'title' => $symbol->getTitle(),
'device' => true,
+ 'fonts' => true,
));
}
@@ -460,10 +462,8 @@
case DivinerAtom::TYPE_METHOD:
case DivinerAtom::TYPE_FUNCTION:
break;
- case DivinerAtom::TYPE_ARTICLE:
- return $symbol->getTitle();
default:
- return null;
+ return $symbol->getTitle();
}
$atom = $symbol->getAtom();
Index: src/applications/diviner/controller/DivinerBookController.php
===================================================================
--- src/applications/diviner/controller/DivinerBookController.php
+++ src/applications/diviner/controller/DivinerBookController.php
@@ -38,6 +38,7 @@
$document = new PHUIDocumentView();
$document->setHeader($header);
+ $document->setFontKit(PHUIDocumentView::FONT_SOURCE_SANS);
$properties = $this->buildPropertyList($book);
@@ -68,7 +69,19 @@
$section->addContent($this->renderAtomList($atoms));
$out[] = $section;
}
+
+ $preface = $book->getPreface();
+ $preface_view = null;
+ if (strlen($preface)) {
+ $preface_view =
+ PhabricatorMarkupEngine::renderOneObject(
+ id(new PhabricatorMarkupOneOff())->setContent($preface),
+ 'default',
+ $viewer);
+ }
+
$document->appendChild($properties);
+ $document->appendChild($preface_view);
$document->appendChild($out);
return $this->buildApplicationPage(
@@ -79,6 +92,7 @@
array(
'title' => $book->getTitle(),
'device' => true,
+ 'fonts' => true,
));
}
@@ -95,15 +109,6 @@
pht('Updated'),
phabricator_datetime($book->getDateModified(), $viewer));
- $preface = $book->getPreface();
- if (strlen($preface)) {
- $view->addTextContent(
- PhabricatorMarkupEngine::renderOneObject(
- id(new PhabricatorMarkupOneOff())->setContent($preface),
- 'default',
- $viewer));
- }
-
return $view;
}
Index: src/applications/diviner/controller/DivinerFindController.php
===================================================================
--- src/applications/diviner/controller/DivinerFindController.php
+++ src/applications/diviner/controller/DivinerFindController.php
@@ -86,6 +86,7 @@
array(
'title' => array(pht('Find'), pht('"%s"', $query_text)),
'device' => true,
+ 'fonts' => true,
));
}
Index: src/applications/diviner/controller/DivinerMainController.php
===================================================================
--- src/applications/diviner/controller/DivinerMainController.php
+++ src/applications/diviner/controller/DivinerMainController.php
@@ -33,23 +33,27 @@
$document = new PHUIDocumentView();
$document->setHeader($header);
+ $document->setFontKit(PHUIDocumentView::FONT_SOURCE_SANS);
if ($books) {
- $list = id(new PHUIObjectItemListView())
- ->setUser($viewer)
- ->setPlain(true);
-
$books = msort($books, 'getTitle');
+ $list = array();
foreach ($books as $book) {
- $item = id(new PHUIObjectItemView())
+ $item = id(new DivinerBookItemView())
+ ->setTitle($book->getTitle())
->setHref('/book/'.$book->getName().'/')
- ->setHeader($book->getTitle())
- ->addAttribute($book->getPreface());
-
- $list->addItem($item);
+ ->setSubtitle($book->getPreface());
+ $list[] = $item;
}
+ $list = id(new PHUIBoxView())
+ ->addPadding(PHUI::PADDING_LARGE_LEFT)
+ ->addPadding(PHUI::PADDING_LARGE_RIGHT)
+ ->addPadding(PHUI::PADDING_SMALL_TOP)
+ ->addPadding(PHUI::PADDING_SMALL_BOTTOM)
+ ->appendChild($list);
$document->appendChild($list);
+
} else {
$text = pht(
"(NOTE) **Looking for Phabricator documentation?** If you're looking ".
@@ -84,6 +88,7 @@
array(
'title' => pht('Documentation Books'),
'device' => true,
+ 'fonts' => true,
));
}
}
Index: src/infrastructure/celerity/CelerityResourceController.php
===================================================================
--- src/infrastructure/celerity/CelerityResourceController.php
+++ src/infrastructure/celerity/CelerityResourceController.php
@@ -70,6 +70,17 @@
$response = new AphrontFileResponse();
$response->setContent($data);
$response->setMimeType($type_map[$type]);
+
+ // NOTE: This is a piece of magic required to make WOFF fonts work in
+ // Firefox. Possibly we should generalize this.
+ if ($type == 'woff') {
+ // We could be more tailored here, but it's not currently trivial to
+ // generate a comprehensive list of valid origins (an install may have
+ // arbitrarily many Phame blogs, for example), and we lose nothing by
+ // allowing access from anywhere.
+ $response->addAllowOrigin("*");
+ }
+
return $this->makeResponseCacheable($response);
}
@@ -81,6 +92,7 @@
'gif' => 'image/gif',
'jpg' => 'image/jpg',
'swf' => 'application/x-shockwave-flash',
+ 'woff' => 'font/woff',
);
}
Index: src/infrastructure/celerity/resources/CelerityResourcesOnDisk.php
===================================================================
--- src/infrastructure/celerity/resources/CelerityResourcesOnDisk.php
+++ src/infrastructure/celerity/resources/CelerityResourcesOnDisk.php
@@ -33,6 +33,7 @@
'jpg',
'gif',
'swf',
+ 'woff',
);
}
Index: src/view/page/PhabricatorStandardPageView.php
===================================================================
--- src/view/page/PhabricatorStandardPageView.php
+++ src/view/page/PhabricatorStandardPageView.php
@@ -12,6 +12,7 @@
private $glyph;
private $menuContent;
private $showChrome = true;
+ private $extraFonts;
private $disableConsole;
private $pageObjects = array();
private $applicationMenu;
@@ -57,6 +58,15 @@
return $this->showChrome;
}
+ public function setExtraFonts($extra) {
+ $this->extraFonts = $extra;
+ return $this;
+ }
+
+ public function getExtraFonts() {
+ return $this->extraFonts;
+ }
+
public function appendPageObjects(array $objs) {
foreach ($objs as $obj) {
$this->pageObjects[] = $obj;
@@ -233,8 +243,16 @@
$response = CelerityAPI::getStaticResourceResponse();
+ $fonts = null;
+ if ($this->getExtraFonts()) {
+ $fonts = hsprintf("<link
+ href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700'
+ rel='stylesheet'
+ type='text/css'>");
+ }
+
return hsprintf(
- '%s<style type="text/css">'.
+ '%s%s<style type="text/css">'.
'.PhabricatorMonospaced, '.
'.phabricator-remarkup .remarkup-code-block { font: %s; } '.
'.platform-windows .PhabricatorMonospaced, '.
@@ -242,6 +260,7 @@
'.remarkup-code-block { font: %s; }'.
'</style>%s',
parent::getHead(),
+ $fonts,
phutil_safe_html($monospaced),
phutil_safe_html($monospaced_win),
$response->renderSingleResource('javelin-magical-init', 'phabricator'));
Index: src/view/phui/PHUIDocumentView.php
===================================================================
--- src/view/phui/PHUIDocumentView.php
+++ src/view/phui/PHUIDocumentView.php
@@ -5,6 +5,7 @@
/* For mobile displays, where do you want the sidebar */
const NAV_BOTTOM = 'nav_bottom';
const NAV_TOP = 'nav_top';
+ const FONT_SOURCE_SANS = 'source-sans';
private $offset;
private $header;
@@ -14,6 +15,7 @@
private $bookname;
private $bookdescription;
private $mobileview;
+ private $fontKit;
public function setOffset($offset) {
$this->offset = $offset;
@@ -50,6 +52,11 @@
return $this;
}
+ public function setFontKit($kit) {
+ $this->fontKit = $kit;
+ return $this;
+ }
+
public function getTagAttributes() {
$classes = array();
@@ -64,6 +71,9 @@
public function getTagContent() {
require_celerity_resource('phui-document-view-css');
+ if ($this->fontKit) {
+ require_celerity_resource('phui-fontkit-css');
+ }
$classes = array();
$classes[] = 'phui-document-view';
@@ -122,6 +132,17 @@
$this->bookName);
}
+ if ($this->fontKit) {
+ $main_content = phutil_tag(
+ 'div',
+ array(
+ 'class' => 'phui-font-'.$this->fontKit
+ ),
+ $this->renderChildren());
+ } else {
+ $main_content = $this->renderChildren();
+ }
+
$content_inner = phutil_tag(
'div',
array(
@@ -131,7 +152,7 @@
$book,
$this->header,
$topnav,
- $this->renderChildren(),
+ $main_content,
$crumbs
));
Index: webroot/rsrc/css/diviner/diviner-shared.css
===================================================================
--- webroot/rsrc/css/diviner/diviner-shared.css
+++ webroot/rsrc/css/diviner/diviner-shared.css
@@ -15,10 +15,6 @@
margin: 0 8px 16px;
}
-a.diviner-atom-signature-name {
- color: {$violet};
-}
-
.diviner-table-header {
padding: 4px 16px;
background-color: {$greybackground};
@@ -71,6 +67,8 @@
body .diviner-document-section .phui-header-view {
width: 100%;
+ font-size: 20px;
+ font-weight: 400;
}
.phui-property-list-view + .diviner-document-section {
@@ -92,7 +90,8 @@
}
.diviner-list .diviner-atom-signature {
- color: {$greytext};
+ color: {$violet};
+ margin-left: -16px;
}
.diviner-list a {
@@ -120,9 +119,13 @@
padding-top: 0;
}
+.diviner-list {
+ padding-left: 12px;
+}
+
.diviner-list li {
- line-height: 18px;
- padding-bottom: 4px;
+ line-height: 20px;
+ padding-bottom: 12px;
}
/* - Book Index ----------------------------------------------------------------
@@ -133,8 +136,8 @@
.diviner-book-item {
display: block;
- padding: 4px 16px;
- margin: 0 -16px;
+ padding: 6px 16px;
+ margin: 4px -16px;
}
.diviner-book-item:hover {
@@ -142,11 +145,13 @@
}
.device-desktop .diviner-book-item:hover {
- background-color: {$lightgreybackground};
+ background-color: #F5EEFF;
}
.diviner-book-item-title {
- font-weight: bold;
+ font-weight: 700;
+ font-size: 16px;
+ color: {$darkbluetext};
}
.diviner-book-item-type {
@@ -156,6 +161,6 @@
.diviner-book-item-subtitle {
display: block;
- line-height: 18px;
- color: {$lightbluetext};
+ line-height: 20px;
+ color: {$lightgreytext};
}
Index: webroot/rsrc/css/font/font-source-sans-pro.css
===================================================================
--- /dev/null
+++ webroot/rsrc/css/font/font-source-sans-pro.css
@@ -0,0 +1,23 @@
+/**
+ * @provides font-source-sans-pro
+ */
+
+@font-face {
+ font-family: 'Source Sans Pro';
+ font-style: normal;
+ font-weight: 400;
+ src: local('Source Sans Pro'),
+ local('SourceSansPro-Regular'),
+ url(/rsrc/externals/font/SourceSansPro.woff)
+ format('woff');
+}
+
+@font-face {
+ font-family: 'Source Sans Pro';
+ font-style: normal;
+ font-weight: 700;
+ src: local('Source Sans Pro Bold'),
+ local('SourceSansPro-Bold'),
+ url(/rsrc/externals/font/SourceSansProBold.woff)
+ format('woff');
+}
Index: webroot/rsrc/css/phui/phui-document.css
===================================================================
--- webroot/rsrc/css/phui/phui-document.css
+++ webroot/rsrc/css/phui/phui-document.css
@@ -77,7 +77,7 @@
.phui-header-shell.phui-header-no-backgound
.phui-header-view {
padding: 8px 0 4px;
- font-size: 14px;
+ font-size: 15px;
}
.phui-document-content .phui-header-view {
Index: webroot/rsrc/css/phui/phui-fontkit.css
===================================================================
--- /dev/null
+++ webroot/rsrc/css/phui/phui-fontkit.css
@@ -0,0 +1,38 @@
+/**
+ * @provides phui-fontkit-css
+ */
+
+.phui-font-source-sans {
+ font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
+ font-size: 15px;
+ font-weight: 400;
+ line-height: 20px;
+}
+
+.phui-font-source-sans .phabricator-remarkup h2 {
+ padding: 8px 24px 8px 0;
+ border-bottom: 1px solid {$thinblueborder};
+ font-size: 20px;
+ font-weight: 400;
+ color: {$bluetext};
+ margin: 0 0 16px;
+}
+
+.phui-font-source-sans .phabricator-remarkup tt {
+ font-size: 13px;
+ padding: 1px 3px 2px;
+}
+
+.phui-font-source-sans .phui-property-list-section {
+ border-bottom: 1px solid {$thinblueborder};
+ margin-bottom: 8px;
+ background: {$lightgreybackground};
+}
+
+.phui-font-source-sans .phui-property-list-container {
+ padding-bottom: 6px;
+}
+
+.phui-font-source-sans a {
+ color: {$blue};
+}
Index: webroot/rsrc/css/phui/phui-header-view.css
===================================================================
--- webroot/rsrc/css/phui/phui-header-view.css
+++ webroot/rsrc/css/phui/phui-header-view.css
@@ -16,16 +16,15 @@
}
body .phui-header-shell.phui-bleed-header {
- background-color: {$lightgreybackground};
- border-top: 1px solid {$thinblueborder};
- border-bottom: none;
+ background-color: #fff;
+ border-bottom: 1px solid {$thinblueborder};
width: auto;
- margin-bottom: 16px;
+ margin: 16px;
}
body .phui-header-shell.phui-bleed-header
.phui-header-view {
- padding: 8px 24px 8px 16px;
+ padding: 8px 24px 8px 0;
color: {$bluetext};
}
Index: webroot/rsrc/externals/font/LICENSE
===================================================================
--- /dev/null
+++ webroot/rsrc/externals/font/LICENSE
@@ -0,0 +1,93 @@
+Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.
+
+This Font Software is licensed under the SIL Open Font License, Version 1.1.
+
+This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
+
+
+-----------------------------------------------------------
+SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
+-----------------------------------------------------------
+
+PREAMBLE
+The goals of the Open Font License (OFL) are to stimulate worldwide
+development of collaborative font projects, to support the font creation
+efforts of academic and linguistic communities, and to provide a free and
+open framework in which fonts may be shared and improved in partnership
+with others.
+
+The OFL allows the licensed fonts to be used, studied, modified and
+redistributed freely as long as they are not sold by themselves. The
+fonts, including any derivative works, can be bundled, embedded,
+redistributed and/or sold with any software provided that any reserved
+names are not used by derivative works. The fonts and derivatives,
+however, cannot be released under any other type of license. The
+requirement for fonts to remain under this license does not apply
+to any document created using the fonts or their derivatives.
+
+DEFINITIONS
+"Font Software" refers to the set of files released by the Copyright
+Holder(s) under this license and clearly marked as such. This may
+include source files, build scripts and documentation.
+
+"Reserved Font Name" refers to any names specified as such after the
+copyright statement(s).
+
+"Original Version" refers to the collection of Font Software components as
+distributed by the Copyright Holder(s).
+
+"Modified Version" refers to any derivative made by adding to, deleting,
+or substituting -- in part or in whole -- any of the components of the
+Original Version, by changing formats or by porting the Font Software to a
+new environment.
+
+"Author" refers to any designer, engineer, programmer, technical
+writer or other person who contributed to the Font Software.
+
+PERMISSION & CONDITIONS
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of the Font Software, to use, study, copy, merge, embed, modify,
+redistribute, and sell modified and unmodified copies of the Font
+Software, subject to the following conditions:
+
+1) Neither the Font Software nor any of its individual components,
+in Original or Modified Versions, may be sold by itself.
+
+2) Original or Modified Versions of the Font Software may be bundled,
+redistributed and/or sold with any software, provided that each copy
+contains the above copyright notice and this license. These can be
+included either as stand-alone text files, human-readable headers or
+in the appropriate machine-readable metadata fields within text or
+binary files as long as those fields can be easily viewed by the user.
+
+3) No Modified Version of the Font Software may use the Reserved Font
+Name(s) unless explicit written permission is granted by the corresponding
+Copyright Holder. This restriction only applies to the primary font name as
+presented to the users.
+
+4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
+Software shall not be used to promote, endorse or advertise any
+Modified Version, except to acknowledge the contribution(s) of the
+Copyright Holder(s) and the Author(s) or with their explicit written
+permission.
+
+5) The Font Software, modified or unmodified, in part or in whole,
+must be distributed entirely under this license, and must not be
+distributed under any other license. The requirement for fonts to
+remain under this license does not apply to any document created
+using the Font Software.
+
+TERMINATION
+This license becomes null and void if any of the above conditions are
+not met.
+
+DISCLAIMER
+THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
+OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
+DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
+OTHER DEALINGS IN THE FONT SOFTWARE.

File Metadata

Mime Type
text/plain
Expires
Mon, Oct 21, 12:39 PM (3 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6731156
Default Alt Text
D8430.id20010.diff (23 KB)

Event Timeline