diff options
author | Behdad Esfahbod <behdad@gnome.org> | 2009-01-06 12:00:07 +0000 |
---|---|---|
committer | Behdad Esfahbod <behdad@src.gnome.org> | 2009-01-06 12:00:07 +0000 |
commit | 9809e8e144799d4b46b2e964f5b262c94a3f3c89 (patch) | |
tree | 25b5a2e83a052c0249aac27d512c1c972dc73ba0 /docs | |
parent | 70185da887562da0a244f9fe0b08c093b0b414de (diff) | |
download | pango-9809e8e144799d4b46b2e964f5b262c94a3f3c89.tar.gz |
Bug 328206 – Update/remove some old files
2009-01-06 Behdad Esfahbod <behdad@gnome.org>
Bug 328206 – Update/remove some old files
* docs/Makefile.am:
* docs/TEXT/glossary:
Remove some old files.
svn path=/trunk/; revision=2791
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile.am | 7 | ||||
-rw-r--r-- | docs/TEXT/glossary | 49 |
2 files changed, 1 insertions, 55 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index 6cdba24f..adbbb4f7 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -128,12 +128,7 @@ dist-hook-local: dist-local-check-mans-enabled dist-local-check-no-cross-referen files='$(BUILT_EXTRA_DIST)'; \ for f in $$files; do \ if test -f $$f; then d=.; else d=$(srcdir); fi; \ - cp $$d/$$f $(distdir) || exit 1; done; \ - \ - mkdir $(distdir)/TEXT; \ - for f in $(srcdir)/TEXT/* ; do \ - test -f $$f && cp -p $$f $(distdir)/TEXT; \ - done + cp $$d/$$f $(distdir) || exit 1; done; # # Require gtk-doc when making dist diff --git a/docs/TEXT/glossary b/docs/TEXT/glossary deleted file mode 100644 index aa1d1f58..00000000 --- a/docs/TEXT/glossary +++ /dev/null @@ -1,49 +0,0 @@ -CFont: A font component. This is a rendering-specific entity - which is paired with a glyph index to uniquely indentify - a glyph. Each abstract Font maps to one or more CFonts; - the method for obtaining CFonts from Fonts is also - rendering system specific. - -Cluster: A cluster is a small portion of text that is rendered - as typographically intertwined glyphs. - - A number of properties are associated with clusters - and cluster boundaries. - - 1) Clusters are the smallest unit of text that is guaranteed to - progress in reading order. Within a cluster, reordering - of glyphs may occur. - - 2) At the boundaries of clusters, character boundaries - and glyph boundaries are guaranteed to coincide. - - 3) There will be a cursor position between every two clusters. - There may not be a cursor position at some positions - inside a cluster. - - 4) The cluster boundary is the only place where information - about the correspondence between character position - and screen position is conveyed from the shape-engine - to the layers above. - -Engine: A script-specific object that is responsible for - converting Unicode text into glyphs or resolving - the properties of the text. Engines may be - rendering-system specific or independent of rendering - system. - -Font: An abstract font. The method in which a font is - created is dependent on the rendering system. - -Item: An item is a portion of text in a single script, handled - by a single shaping engine, and with a single directional - level. g_script_itemize() returns a list of items. - -Module: A dynamically loaded shared object containing one - or more Engines. - -Range: A subportion of an item. You pass a range into - g_script_shape() by passing in the analysis structure - for the item and some subportion of the text. - - |