@@ -280,7 +280,7 @@ def setMementoCount(self, mCount, aCount=0):
280
280
if mCount is None :
281
281
memCountMsg = config .msg_fetchingMementos
282
282
elif mCount > 0 :
283
- locale .setlocale (locale .LC_ALL , '' )
283
+ locale .setlocale (locale .LC_ALL , 'en_US ' )
284
284
285
285
mPlurality = 's'
286
286
aPlurality = 's'
@@ -546,7 +546,7 @@ def checkIfURLIsInArchive(self, button):
546
546
else :
547
547
mb = wx .MessageBox (config .msg_uriInArchives_body ,
548
548
config .msg_uriInArchives_title )
549
- #b = wx.Button(self, -1, config.buttonLabel_mementoCountInfo,
549
+ # b = wx.Button(self, -1, config.buttonLabel_mementoCountInfo,
550
550
# pos=(10, 85), size=(25, 15))
551
551
# Disabled until we tie more functionality to the button
552
552
# mb.AddButton(b) # Will not work in wxPython >4
@@ -574,7 +574,7 @@ def viewArchiveInBrowser(self, button):
574
574
# img = wx.EmptyBitmap( 1, 1 )
575
575
# img.LoadFile('/Users/machawk1/Downloads/Spinner.gif', wx.BITMAP_TYPE_ANY)
576
576
# self.archiveNowButton.SetBitmap(img)
577
-
577
+
578
578
# self.viewArchiveInBrowser(None)
579
579
580
580
@@ -583,7 +583,7 @@ class ServicesPanel(wx.Panel, threading.Thread):
583
583
def __init__ (self , parent ):
584
584
wx .Panel .__init__ (self , parent )
585
585
colWidth = 60
586
- rowHeight = 20 # 18
586
+ rowHeight = 20 # 18
587
587
cellSize = (150 , rowHeight )
588
588
589
589
col0 = colWidth * 0 + 10
@@ -597,10 +597,10 @@ def __init__(self, parent):
597
597
598
598
col1 = 65 + colWidth * 1
599
599
600
- thread .start_new_thread (self .updateServiceStatuses ,())
600
+ thread .start_new_thread (self .updateServiceStatuses , ())
601
601
602
602
col2 = col1 + colWidth
603
- cellSize_versionFix = (50 ,rowHeight )
603
+ cellSize_versionFix = (50 , rowHeight )
604
604
wx .StaticText (self , 100 , 'VERSION' ,
605
605
(col2 , rowHeight * 0 ), cellSize_versionFix )
606
606
wx .StaticText (self , 100 , self .getWaybackVersion (),
@@ -618,11 +618,11 @@ def __init__(self, parent):
618
618
619
619
self .fix_wayback = wx .Button (self , 1 , config .buttonLabel_fix ,
620
620
(col3 , rowHeight * 1 ),
621
- buttonSize ,wx .BU_EXACTFIT )
621
+ buttonSize , wx .BU_EXACTFIT )
622
622
self .fix_wayback .SetFont (wail_style_button_font_small )
623
623
self .fix_heritrix = wx .Button (self , 1 , config .buttonLabel_fix ,
624
624
(col3 , rowHeight * 2 ),
625
- buttonSize ,wx .BU_EXACTFIT )
625
+ buttonSize , wx .BU_EXACTFIT )
626
626
self .fix_heritrix .SetFont (wail_style_button_font_small )
627
627
628
628
self .fix_wayback .Bind (wx .EVT_BUTTON , Wayback ().fix )
@@ -642,37 +642,37 @@ def __init__(self, parent):
642
642
self .kill_wayback .Bind (wx .EVT_BUTTON , Wayback ().kill )
643
643
self .kill_heritrix .Bind (wx .EVT_BUTTON , Heritrix ().kill )
644
644
645
- thread .start_new_thread (self .updateServiceStatuses ,())
645
+ thread .start_new_thread (self .updateServiceStatuses , ())
646
646
647
647
def setHeritrixStatus (self , status ):
648
648
colWidth = 60
649
649
rowHeight = 20
650
650
col1 = 65 + colWidth * 1
651
651
cellSize = (40 , rowHeight )
652
-
653
- if hasattr (self ,'status_heritrix' ):
652
+
653
+ if hasattr (self , 'status_heritrix' ):
654
654
self .status_heritrix .Destroy ()
655
655
self .status_heritrix = wx .StaticText (self , 100 , status ,
656
656
(col1 , rowHeight * 2 ), cellSize )
657
-
657
+
658
658
def setWaybackStatus (self , status ):
659
659
colWidth = 60
660
660
rowHeight = 20
661
661
col1 = 65 + colWidth * 1
662
662
cellSize = (40 , rowHeight )
663
663
664
- if hasattr (self ,'status_wayback' ):
664
+ if hasattr (self , 'status_wayback' ):
665
665
self .status_wayback .Destroy ()
666
666
self .status_wayback = wx .StaticText (self , 100 , status ,
667
667
(col1 , rowHeight * 1 ), cellSize )
668
-
668
+
669
669
def getHeritrixVersion (self , abbr = True ):
670
670
htrixLibPath = config .heritrixPath + "lib/"
671
671
672
672
for file in os .listdir (htrixLibPath ):
673
- if file .startswith ("heritrix-commons" ):
674
- regex = re .compile ("commons-(.*)\." )
675
- return regex .findall (file )[0 ]
673
+ if file .startswith ("heritrix-commons" ):
674
+ regex = re .compile ("commons-(.*)\." )
675
+ return regex .findall (file )[0 ]
676
676
677
677
def getWaybackVersion (self ):
678
678
tomcatLibPath = config .tomcatPath + "/webapps/lib/"
@@ -683,10 +683,11 @@ def getWaybackVersion(self):
683
683
return regex .findall (file )[0 ]
684
684
685
685
def getTomcatVersion (self ):
686
- # Apache Tomcat Version 7.0.30
686
+ # Apache Tomcat Version 7.0.30
687
687
releaseNotesPath = config .tomcatPath + '/RELEASE-NOTES'
688
688
689
- if not os .path .exists (releaseNotesPath ): return "?"
689
+ if not os .path .exists (releaseNotesPath ):
690
+ return "?"
690
691
f = open (releaseNotesPath , 'r' )
691
692
version = ""
692
693
for line in f .readlines ():
@@ -737,13 +738,13 @@ def updateServiceStatuses(self, serviceId=None, transitionalStatus=None):
737
738
self .setHeritrixStatus (heritrixAccessible )
738
739
self .setWaybackStatus (tomcatAccessible )
739
740
740
- if not hasattr (self ,'fix_heritrix' ):
741
+ if not hasattr (self , 'fix_heritrix' ):
741
742
print ('First call, UI has not been setup' )
742
743
# Initial setup call will return here, ui elements
743
744
# ...have not been created
744
745
return
745
746
746
- #enable /disable FIX buttons based on service status
747
+ # Enable /disable FIX buttons based on service status
747
748
if heritrixAccessible is config .serviceEnabledLabel_YES :
748
749
self .fix_heritrix .Disable ()
749
750
self .kill_heritrix .Enable ()
@@ -791,20 +792,21 @@ def openWaybackInBrowser(self, button):
791
792
config .wail_style_yesNo )
792
793
result = d .ShowModal ()
793
794
d .Destroy ()
794
- if result == wx .ID_YES : # Launch Wayback
795
+ if result == wx .ID_YES : # Launch Wayback
795
796
Wayback ().fix (None , lambda : self .openWaybackInBrowser (None ))
796
797
self .viewWaybackInBrowserButton .SetLabel (
797
798
config .buttonLabel_wayback_launching )
798
799
self .viewWaybackInBrowserButton .Disable ()
799
800
800
- def openWaybackConfiguration (self ,button ):
801
+ def openWaybackConfiguration (self , button ):
801
802
filepath = config .tomcatPath + "/webapps/ROOT/WEB-INF/wayback.xml"
802
803
if sys .platform .startswith ('darwin' ):
803
- subprocess .call (('open' , filepath ))
804
+ subprocess .call (('open' , filepath ))
804
805
elif os .name == 'nt' :
805
- os .startfile (filepath )
806
+ os .startfile (filepath )
806
807
elif os .name == 'posix' :
807
- subprocess .call (('xdg-open' , filepath ))
808
+ subprocess .call (('xdg-open' , filepath ))
809
+
808
810
class HeritrixPanel (wx .Panel ):
809
811
def __init__ (self , parent ):
810
812
wx .Panel .__init__ (self , parent )
@@ -829,7 +831,8 @@ def __init__(self, parent):
829
831
self .setupNewCrawlButton .Bind (wx .EVT_BUTTON , self .setupNewCrawl )
830
832
self .launchWebUIButton .Bind (wx .EVT_BUTTON , self .launchWebUI )
831
833
832
- self .panelUpdater = None # For updating stats UI
834
+ self .panelUpdater = None # For updating stats UI
835
+
833
836
def populateListboxWithJobs (self ):
834
837
list = Heritrix ().getListOfJobs ()
835
838
@@ -844,17 +847,18 @@ def clickedListboxItem(self, event):
844
847
active = self .listbox .GetString (self .listbox .GetSelection ())
845
848
print (util .tail (config .heritrixJobPath + active + '/job.log' ))
846
849
jobLaunches = Heritrix ().getJobLaunches (active )
847
- if self .panelUpdater : # Kill any currently running timer
850
+ if self .panelUpdater : # Kill any currently running timer
848
851
self .panelUpdater .cancel ()
849
852
self .panelUpdater = None
850
853
self .updateInfoPanel (active )
854
+
851
855
def updateInfoPanel (self , active ):
852
856
self .statusMsg .SetLabel (Heritrix ().getCurrentStats (active ))
853
857
self .panelUpdater = threading .Timer (
854
858
1.0 , self .updateInfoPanel , [active ])
855
859
self .panelUpdater .daemon = True
856
860
self .panelUpdater .start ()
857
-
861
+
858
862
def launchWebUI (self , button ):
859
863
self .launchWebUIButton .SetLabel (
860
864
config .buttonLabel_heritrix_launchWebUI_launching )
@@ -997,7 +1001,7 @@ def handleCrawlDepthKeypress(self, event):
997
1001
998
1002
def validateCrawlDepth (self , event ):
999
1003
if len (self .newCrawlDepthTextCtrl .GetValue ()) == 0 :
1000
- self .newCrawlDepthTextCtrl .SetValue ('1' )
1004
+ self .newCrawlDepthTextCtrl .SetValue ('1' )
1001
1005
event .Skip ()
1002
1006
1003
1007
def hideNewCrawlUIElements (self ):
0 commit comments