summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-02-21 11:58:09 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-02-21 11:58:09 +0000
commit7df0a3ce73ad8c6d0bf60bf2dbff1c50e8aa6242 (patch)
tree22d93cc1e84bb3f6b7b2b0b5868506164d30d807
parent9d9369dc05e7df4558fc8ba36b7ec2dd969ae64f (diff)
downloadpango-7df0a3ce73ad8c6d0bf60bf2dbff1c50e8aa6242.tar.gz
Bug 328206 – Update/remove some old files
2006-02-21 Behdad Esfahbod <behdad@gnome.org> Bug 328206 – Update/remove some old files * docs/TEXT/{coding-style,modules,questions,ligatures,western-design}: Removed. * HACKING: Added. Renamed from docs/TEXT/coding-style. * Makefile.am: Add HACKING.
-rw-r--r--ChangeLog11
-rw-r--r--HACKING (renamed from docs/TEXT/coding-style)6
-rw-r--r--Makefile.am5
-rw-r--r--docs/TEXT/ligatures33
-rw-r--r--docs/TEXT/modules42
-rw-r--r--docs/TEXT/questions19
-rw-r--r--docs/TEXT/western-design34
7 files changed, 15 insertions, 135 deletions
diff --git a/ChangeLog b/ChangeLog
index 5cfc27fb..d1aa4b65 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
2006-02-21 Behdad Esfahbod <behdad@gnome.org>
+ Bug 328206 – Update/remove some old files
+
+ * docs/TEXT/{coding-style,modules,questions,ligatures,western-design}:
+ Removed.
+
+ * HACKING: Added. Renamed from docs/TEXT/coding-style.
+
+ * Makefile.am: Add HACKING.
+
+2006-02-21 Behdad Esfahbod <behdad@gnome.org>
+
Bug 314239 – pangocairo crashes when font cannot be read
* pango/pangocairo-fcfont.c, pango/pangocairo-font.c: Hack up to not
diff --git a/docs/TEXT/coding-style b/HACKING
index f58b0d2b..dc02f5ee 100644
--- a/docs/TEXT/coding-style
+++ b/HACKING
@@ -57,7 +57,7 @@ in the gtk-doc / gnome-doc style. For instance:
* @line: the index of a line, which must be between 0 and
* pango_layout_get_line_count(layout) - 1, inclusive.
*
- * Retrieves a particular line from a #PangoLayout
+ * Retrieves a particular line from a #PangoLayout (or @layout.)
*
* Return value: the requested #PangoLayoutLine, or %NULL if the
* index is out of range. This layout line can
@@ -71,8 +71,6 @@ pango_layout_get_line (PangoLayout *layout,
int line)
[...]
-An Emacs lisp file is distributed with gnome-libs which automates
-inserting these comments
Choosing Function Names
=======================
@@ -113,5 +111,3 @@ Other comments
produces 4294967291, not 1.
-
-
diff --git a/Makefile.am b/Makefile.am
index f797e66b..46058273 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,8 +22,9 @@ EXTRA_DIST = \
ChangeLog.pre-1-6 \
ChangeLog.pre-1-8 \
MAINTAINERS \
- README.win32 \
- pango-zip.sh \
+ HACKING \
+ README.win32 \
+ pango-zip.sh \
sanitize-la.sh
pkgconfigdir = $(libdir)/pkgconfig
diff --git a/docs/TEXT/ligatures b/docs/TEXT/ligatures
deleted file mode 100644
index 6bc7e45f..00000000
--- a/docs/TEXT/ligatures
+++ /dev/null
@@ -1,33 +0,0 @@
-PANGO_LIGATURE_HACK is defined as follows
-
-It comprises a space-seperated list of elements. An
-element can either be of the form :xx:zzzz, in which
-case the first part is a language code and the second
-is a name of another property to look in if the
-language is matched.
-
-or as follows
-
- $AAAA=0000+007F-0915,0944
-
- This defines a set, this will be visible to the entire font.
-
-or of the form
-
- xxxx[+xxxx[+xxxx...]]=yyyy[+yyyy]
-
- xxxx can either be a hex glyph code which is matches directly,
- or %AAAA, where it will match anything in the set.
-
- yyyy is either a hex glyph code, or %n, in which case it refers
- to the nth thing to have matched - e.g.
-
- %FOO+2=2+%1, would swap instances of $FOO and 2.
-
-
-
-(The language-specific stuff isn't implemented yet, but is parsed OK
- and duly ignored here. This will be implemented soon)
-
-
-Robert Brady <rwb197@zepler.org>, 2000-11-08
diff --git a/docs/TEXT/modules b/docs/TEXT/modules
deleted file mode 100644
index 5e250bc8..00000000
--- a/docs/TEXT/modules
+++ /dev/null
@@ -1,42 +0,0 @@
-General points
-==============
-
-One global entry point for each module:
-
-g_i18n_list_functions()
-
- function : language : vtable
-
-
-Tool:
-
- gi18n-updatedb
-
-Input Method Module
-===================
-
- Functions:
-
- Callbacks:
-
- Set the status area contents
- Set the preedit string contents
- Position the caret
- Begin preediting
- End preediting
-
-Shaping Module
-=============
-
- Segment input text
- Turn characters into glyphs
- Provide line-break information
-
-
-Output Modules
-==============
-
- Position/justify glyphs
-
-
-
diff --git a/docs/TEXT/questions b/docs/TEXT/questions
deleted file mode 100644
index a74b8649..00000000
--- a/docs/TEXT/questions
+++ /dev/null
@@ -1,19 +0,0 @@
-- Is it worth splitting off display-font independent stuff
- from display dependent stuff. How do we do that?
-
-- Can we abandon XIM? Can we support XIM in backwards-compatibility
- mode? Just in RootWindow mode?
-
-- Are input methods windowing system independent? What do
- we gain/lose?
-
-- Do we need to worry about glyph changes at line breaks?
-
-- Do we ever need to break clusters on line breaks?
-
-- Do input methods need attributed strings for displaying
- feedback? If so, do we build such support into GDK?
- Into GTK+?
-
-- How do we index positions in a string
- (By character? By byte?)
diff --git a/docs/TEXT/western-design b/docs/TEXT/western-design
deleted file mode 100644
index 57c81dba..00000000
--- a/docs/TEXT/western-design
+++ /dev/null
@@ -1,34 +0,0 @@
-Issues that this engine needs to handle:
-
- - Picking the right character based on language/character
- - Composition of combining diacriticals - should use precomposed
- diacriticals when possible
- - Finding word/line/breaks
-
-For each sequence of character + combining marks
-
- - Find combined representations from most combined to least combined.
- - If there are particular characters for this combination, use
- them, otherwise
-
-==========
-
-Ligature table per font.
-Pick fonts in order of preference according to LANG
-
-Characterstics of western/basic:
-
- Consistent LTR
- No reordering
- Many characters => one glyph
- Character/Word/Line breaking dependent only on character properties
-
-Issues
-
- Accent placement for Greek, Vietnamese
- How do we handle a case where lang == en_US, we have a glyph
- combination with a combined form in iso-8859-2 but not
- in iso-8859-1?
-
-
-