git: 9front

Download patch

ref: 4c687154b3b1bb6fd2f6fbb5dab74f9d967e0f23
parent: e3cf650675c9339bf8bcdb4fd091f64354654666
parent: d91970b46ee24fe137af7f9acca1514098b0e4ef
author: cinap_lenrek <cinap_lenrek@rei2.9hal>
date: Sat Mar 17 21:28:39 EDT 2012

merge

--- a/rc/bin/usps
+++ b/rc/bin/usps
@@ -9,12 +9,13 @@
 
 rfork e
 
-hget -p 'origTrackNum='^$1 http://trkcnfrm1.smi.usps.com/PTSInternetWeb/InterLabelInquiry.do |
-	htmlfmt > /tmp/usps.$pid
+hget -p 'qtc_tLabels1='^$1 https://tools.usps.com/go/TrackConfirmAction |
+	uhtml | htmlfmt > /tmp/usps.$pid
 
 sam -d /tmp/usps.$pid >[2] /dev/null <<'!'
-0,/Label/-1d
-/^Enter Label/,$d
+,/Your Label Number/-1d
+/Check on Another Item/,$d
+/id=\"error-tLabels\"/,$d
 ,p
 !
 rm /tmp/usps.$pid
--