From: <dom...@us...> - 2015-10-02 15:22:36
|
Revision: 721 http://sourceforge.net/p/fvwm-crystal/code/721 Author: dominique_libre Date: 2015-10-02 15:22:34 +0000 (Fri, 02 Oct 2015) Log Message: ----------- components/scripts/FvwmScript-Clock-24h*, FvwmScript-Clock-small_date: remove outdated files Modified Paths: -------------- ChangeLog Removed Paths: ------------- fvwm/components/scripts/FvwmScript-Clock-24h fvwm/components/scripts/FvwmScript-Clock-24h-small_date fvwm/components/scripts/FvwmScript-Clock-small_date Modified: ChangeLog =================================================================== --- ChangeLog 2015-10-02 15:16:03 UTC (rev 720) +++ ChangeLog 2015-10-02 15:22:34 UTC (rev 721) @@ -6,6 +6,7 @@ Vendredi 2 octobre 2015 colorsets/RedDesktop.cs: typo fix scripts/FvwmScript-*: Use the new colorsets instead of static colors. +- components/scripts/FvwmScript-Clock-24h*, FvwmScript-Clock-small_date: removed outdated files. Jeudi 1 octobre 2015 functions/Fullscreen: Auto FS: add condition to not put if full screen the transient windows. Deleted: fvwm/components/scripts/FvwmScript-Clock-24h =================================================================== --- fvwm/components/scripts/FvwmScript-Clock-24h 2015-10-02 15:16:03 UTC (rev 720) +++ fvwm/components/scripts/FvwmScript-Clock-24h 2015-10-02 15:22:34 UTC (rev 721) @@ -1,67 +0,0 @@ -# This script is obsolete, will be removed in FVWM-Crystal 3.0.5 -# -# o Support for temporary switch for display date/time after click on widget -# LiNiO <li...@wo...> - 2005.01.16 -# - - -WindowTitle {FvwmScript-Clock} -WindowSize 60 22 -Font "xft:Tahoma:pixelsize=16:Bold" -Colorset 12 - -Init - Begin - Set $display= time - -# 24-hour clock - Set $tmp = (GetOutput {exec date "+%R"} 1 -1) -# 12-hour clock -# Set $tmp = (GetOutput {exec date "+%I:%M"} 1 -1) - - ChangeTitle 1 $tmp -End - -PeriodicTasks - Begin - If (RemainderOfDiv (GetTime) 60)==0 Then - Begin - -# 24 hour clock - Set $tmp = (GetOutput {exec date "+%R"} 1 -1) -# 12-hour clock -# Set $tmp = (GetOutput {exec date "+%I:%M"} 1 -1) - - ChangeFont 1 {xft:Tahoma:pixelsize=16:Bold} - ChangeTitle 1 $tmp - End -End - -Widget 1 -Property - Position 0 -3 - Size 60 22 - Type ItemDraw - Flags NoReliefString - Title {} - Colorset 12 -Main - Case message of - SingleClic : - Begin - If $display=={time} Then - Begin - Set $display= date - ChangeFont 1 {xft:Tahoma:pixelsize=16:Bold} - Set $tmp = (GetOutput {exec date "+%d/%m"} 1 -1) - End - Else - Begin - Set $display= time - ChangeFont 1 {xft:Tahoma:pixelsize=16:Bold} - Set $tmp = (GetOutput {exec date "+%R"} 1 -1) - End - ChangeTitle 1 $tmp - End -End - Deleted: fvwm/components/scripts/FvwmScript-Clock-24h-small_date =================================================================== --- fvwm/components/scripts/FvwmScript-Clock-24h-small_date 2015-10-02 15:16:03 UTC (rev 720) +++ fvwm/components/scripts/FvwmScript-Clock-24h-small_date 2015-10-02 15:22:34 UTC (rev 721) @@ -1,47 +0,0 @@ -# This script is obsolete, will be removed in FVWM-Crystal 3.0.5 - -WindowTitle {FvwmScript-Clock} -WindowSize 114 20 -Font "xft:Tahoma:pixelsize=12:Bold" -Colorset 12 - -Init - Begin - -# 24-hour clock - Set $tmp = (GetOutput {exec date "+%a %e, %R"} 1 -1) -# 12-hour clock -# Set $tmp = (GetOutput {exec date "+%I:%M"} 1 -1) - - ChangeTitle 1 $tmp -End - -PeriodicTasks - Begin - If (RemainderOfDiv (GetTime) 60)==0 Then - Begin - -# 24 hour clock - Set $tmp = (GetOutput {exec date "+%a %e, %R"} 1 -1) -# 12-hour clock -# Set $tmp = (GetOutput {exec date "+%I:%M"} 1 -1) - - ChangeTitle 1 $tmp - End -End - -Widget 1 -Property - Position 0 -3 - Size 114 20 - Type ItemDraw - Flags NoReliefString - Title {} - Colorset 12 -Main - Case message of - SingleClic : - Begin - End -End - Deleted: fvwm/components/scripts/FvwmScript-Clock-small_date =================================================================== --- fvwm/components/scripts/FvwmScript-Clock-small_date 2015-10-02 15:16:03 UTC (rev 720) +++ fvwm/components/scripts/FvwmScript-Clock-small_date 2015-10-02 15:22:34 UTC (rev 721) @@ -1,53 +0,0 @@ -WindowTitle {FvwmScript-Clock-small_date} -WindowSize 114 20 -Font "xft:Verdana:pixelsize=12:Bold" -Colorset 12 - -Init - Begin - If (GetOutput {date "+%p"} 1 -1)=={} Then - Begin - Set $mode={24} - Set $timecmd={date "+%a %e, %R"} - End - Else - Begin - Set $mode={12} - Set $timecmd={LC_TIME=C date "+%a %e, %I:%M %p"} - End - - ChangeTitle 1 (GetOutput $timecmd 1 -1) -End - -PeriodicTasks - Begin - If (RemainderOfDiv (GetTime) 60)==0 Then - ChangeTitle 1 (GetOutput $timecmd 1 -1) -End - -Widget 1 -Property - Position 0 -3 - Size 114 20 - Type ItemDraw - Flags NoReliefString - Title {} - Colorset 12 -Main - Case message of - SingleClic : - Begin - If $mode=={24} Then - Begin - Set $mode={12} - Set $timecmd={LC_TIME=C date "+%a %e, %I:%M %p"} - End - Else - Begin - Set $mode={24} - Set $timecmd={date "+%a %e, %R"} - End - ChangeTitle 1 (GetOutput $timecmd 1 -1) - End -End - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |