LEFT | RIGHT |
(Both sides are equal) |
1 #!/usr/bin/env perl | 1 #!/usr/bin/env perl |
2 | 2 |
3 # Updates http://svn.gnome.org/viewcvs/gtk%2B/trunk/gdk/gdkkeysyms.h?view=log fr
om upstream (X.org 7.x), | 3 # Updates http://svn.gnome.org/viewcvs/gtk%2B/trunk/gdk/gdkkeysyms.h?view=log fr
om upstream (X.org 7.x), |
4 # from http://gitweb.freedesktop.org/?p=xorg/proto/x11proto.git;a=blob_plain;f=k
eysymdef.h | 4 # from http://gitweb.freedesktop.org/?p=xorg/proto/x11proto.git;a=blob_plain;f=k
eysymdef.h |
5 # | 5 # |
6 # Author : Simos Xenitellis <simos at gnome dot org>. | 6 # Author : Simos Xenitellis <simos at gnome dot org>. |
7 # Version : 1.2 | 7 # Version : 1.2 |
8 # | 8 # |
9 # Input : http://gitweb.freedesktop.org/?p=xorg/proto/x11proto.git;a=blob_plai
n;f=keysymdef.h | 9 # Input : http://gitweb.freedesktop.org/?p=xorg/proto/x11proto.git;a=blob_plai
n;f=keysymdef.h |
10 # Output : http://svn.gnome.org/svn/gtk+/trunk/gdk/gdkkeysyms.h | 10 # Output : http://svn.gnome.org/svn/gtk+/trunk/gdk/gdkkeysyms.h |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 | 100 |
101 close IN_KEYSYMDEF; | 101 close IN_KEYSYMDEF; |
102 | 102 |
103 | 103 |
104 print OUT_IBUSKEYSYMS<<EOF; | 104 print OUT_IBUSKEYSYMS<<EOF; |
105 | 105 |
106 #endif /* __IBUS_KEYSYMS_H__ */ | 106 #endif /* __IBUS_KEYSYMS_H__ */ |
107 EOF | 107 EOF |
108 | 108 |
109 printf "We just finished converting keysymdef.h to ibuskeysyms.h\nThank you\n"; | 109 printf "We just finished converting keysymdef.h to ibuskeysyms.h\nThank you\n"; |
LEFT | RIGHT |