rmove old convert.awk
authorDana Jansens <danakj@orodu.net>
Thu, 31 Oct 2002 07:27:26 +0000 (07:27 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 31 Oct 2002 07:27:26 +0000 (07:27 +0000)
nls/C/Configmenu.m [deleted file]
nls/convert.awk [deleted file]

diff --git a/nls/C/Configmenu.m b/nls/C/Configmenu.m
deleted file mode 100644 (file)
index 76dc9f3..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-$set 3 #Configmenu
-
-$ #ConfigOptions
-# Config Options
-$ #FocusModel
-# Focus Model
-$ #WindowPlacement
-# Window Placement
-$ #XineramaSupport
-# Xinerama Support
-$ #ImageDithering
-# Image Dithering
-$ #OpaqueMove
-# Opaque Window Moving
-$ #FullMax
-# Full Maximization
-$ #FocusNew
-# Focus New Windows
-$ #FocusLast
-# Focus Window on Workspace Change
-$ #WindowToWindowSnap
-# Window-To-Window Snapping
-$ #WindowToEdgeSnap
-# Window-To-Edge Snapping
-$ #WindowDoSnapNo
-# No Snapping
-$ #WindowDoSnap
-# Edge Snapping
-$ #WindowDoResistance
-# Edge Resistance
-$ #WindowCornerSnap
-# Window Corner Snapping
-$ #WorkspaceWarping
-# Workspace Warping
-$ #DisableBindings
-# Disable Mouse with Scroll Lock
-$ #HideToolbar
-# Hide Toolbar
-$ #ClickToFocus
-# Click to Focus
-$ #SloppyFocus
-# Sloppy Focus
-$ #AutoRaise
-# Auto Raise
-$ #ClickRaise
-# Click Raise
-$ #SmartRows
-# Smart Placement (Rows)
-$ #SmartCols
-# Smart Placement (Columns)
-$ #Cascade
-# Cascade Placement
-$ #UnderMouse
-# Under Mouse Placement
-$ #ClickMouse
-# Click Mouse Placement
-$ #LeftRight
-# Left to Right
-$ #RightLeft
-# Right to Left
-$ #TopBottom
-# Top to Bottom
-$ #BottomTop
-# Bottom to Top
-$ #IgnoreShaded
-# Ignore Shaded Windows
-$ #IgnoreMax
-# Ignore Full-Maximized Windows
-$ #XineramaPlacement
-# Window Placement
-$ #XineramaMaximizing
-# Window Maximizing
-$ #XineramaSnapping
-# Window Snapping
-$ #XftOptions
-# Xft Font Options
-$ #XftAA
-# Anti-Alias Text
-$ #XftShadow
-# Drop Shadows Under Text
diff --git a/nls/convert.awk b/nls/convert.awk
deleted file mode 100644 (file)
index 744179c..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-/^\$set/ {
-  major++
-  minor = 0
-
-  if (major > 1)
-    printf "\n" > output
-  printf "$set %d %s\n", major, $3 > output
-
-  if (header) {
-    majorName = substr($3, 2)
-    if (major > 1)
-      printf "\n" > header
-    printf "#define %sSet %#x\n", majorName, major > header
-  }
-}
-
-/^\$ #/ {
-  minor++
-
-  if (header) {
-    minorName = substr($2, 2)
-    printf "#define %s%s %#x\n", majorName, minorName, minor > header
-  }
-}
-
-/^#/ {
-  text = substr($0, 3)  
-  printf "%d %s\n", minor, text > output
-}
-  
-! /^(\$|#)/ { print > output }
-