forked from hummypkg/webif
fix scheduling problem
git-svn-id: file:///root/webif/svn/humax/pkg/src/webif/trunk@566 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
parent
509c98ee74
commit
de47e46fe7
@ -1,7 +1,7 @@
|
|||||||
Package: webif
|
Package: webif
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Section: web
|
Section: web
|
||||||
Version: 0.8.7
|
Version: 0.8.7-1
|
||||||
Architecture: mipsel
|
Architecture: mipsel
|
||||||
Maintainer: af123@hummypkg.org.uk
|
Maintainer: af123@hummypkg.org.uk
|
||||||
Depends: mongoose(>=3.0-2),jim(>=0.71-1),jim-sqlite3(>=0.71-1),jim-cgi(>=0.4-1),jim-oo,jim-pack,service-control,busybox(>=1.19.3-1),lsof,epg(>=1.0.8),hmt(>=1.1.2),ssmtp,anacron
|
Depends: mongoose(>=3.0-2),jim(>=0.71-1),jim-sqlite3(>=0.71-1),jim-cgi(>=0.4-1),jim-oo,jim-pack,service-control,busybox(>=1.19.3-1),lsof,epg(>=1.0.8),hmt(>=1.1.2),ssmtp,anacron
|
||||||
|
@ -29,7 +29,7 @@ foreach file [split [cgi_get files] ","] {
|
|||||||
puts -nonewline "Done..."
|
puts -nonewline "Done..."
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if {[catch {file delete $ts} msg]} {
|
if {[catch {file delete $file} msg]} {
|
||||||
puts -nonewline "Error: $msg"
|
puts -nonewline "Error: $msg"
|
||||||
} else {
|
} else {
|
||||||
catch {file delete "[file rootname $file].hmi"}
|
catch {file delete "[file rootname $file].hmi"}
|
||||||
|
@ -40,6 +40,7 @@ foreach file [lsort [glob -nocomplain "$sdir"]] {
|
|||||||
puts "<td nowrap>$base</td>"
|
puts "<td nowrap>$base</td>"
|
||||||
set syn [$ts get synopsis]
|
set syn [$ts get synopsis]
|
||||||
regsub -nocase -all -- {^new series\.* *} $syn "" syn
|
regsub -nocase -all -- {^new series\.* *} $syn "" syn
|
||||||
|
regsub -nocase -all -- {^cbeebies\. *} $syn "" syn
|
||||||
regsub -all -- { *[:].*$} $syn "" syn
|
regsub -all -- { *[:].*$} $syn "" syn
|
||||||
if {[string length $syn] > 40} {
|
if {[string length $syn] > 40} {
|
||||||
lassign [split $syn "."] v w
|
lassign [split $syn "."] v w
|
||||||
|
9
var/mongoose/lib/classdump
Normal file
9
var/mongoose/lib/classdump
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
|
||||||
|
if {[expr ! [exists -proc classdump]]} {
|
||||||
|
proc classdump {o} {
|
||||||
|
foreach var [$o vars] {
|
||||||
|
puts [format {%20s %s} $var [$o get $var]]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -338,6 +338,11 @@ proc {rsv construct} {event type} {
|
|||||||
|
|
||||||
set ccrid [$event get channel_crid]
|
set ccrid [$event get channel_crid]
|
||||||
|
|
||||||
|
# Fallback from series to event if there is no series CRID.
|
||||||
|
if {$type == 2 && [$event get series_crid] eq ""} {
|
||||||
|
set type 1
|
||||||
|
}
|
||||||
|
|
||||||
if {$type == 1} {
|
if {$type == 1} {
|
||||||
# Event
|
# Event
|
||||||
set args(ucCRIDType) 49
|
set args(ucCRIDType) 49
|
||||||
|
Loading…
Reference in New Issue
Block a user