vdeku / anarchintosh-projects

Automatically exported from code.google.com/p/anarchintosh-projects
0 stars 0 forks source link

Sources will no longer show up #12

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Navigate to any file and the sources will not show up in the folder.

This is due to an update in the ICE Quick Stream GM script.

Original issue reported on code.google.com by jam...@gmail.com on 30 Jun 2011 at 9:52

GoogleCodeExporter commented 9 years ago
sux

Original comment by TylorCR...@gmail.com on 1 Jul 2011 at 12:31

GoogleCodeExporter commented 9 years ago
When will this be fixed? Today? I have had loads of issues with icefilms when 
trying to use XBMC on windows, but wow what an amazing addon! Keep up the good 
work guys!

Original comment by ashjoh...@gmail.com on 1 Jul 2011 at 8:24

GoogleCodeExporter commented 9 years ago
Same issues

Original comment by dark.ne...@gmail.com on 1 Jul 2011 at 10:47

GoogleCodeExporter commented 9 years ago
ICQ change, and I can't find a fix

Original comment by Blalle...@gmail.com on 1 Jul 2011 at 2:00

GoogleCodeExporter commented 9 years ago
i hope this gets fixed soon. thank you devs

Original comment by xjd...@gmail.com on 1 Jul 2011 at 5:44

GoogleCodeExporter commented 9 years ago
Glad all is working again... Wow :) what the best addon :)

Original comment by ashjoh...@gmail.com on 2 Jul 2011 at 8:20

GoogleCodeExporter commented 9 years ago
i don't know if you guys notice the update error for 1.0.10 ..

thats not how decimals work lol if you add a 0.0.1 to 1.0.9 you get 1.1.0

Original comment by xjd...@gmail.com on 3 Jul 2011 at 6:22

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
It seems to be working again both on my XP PC and my ATV. Try uninstalling and 
re installing the repository and addon

Original comment by robert.b...@gmail.com on 3 Jul 2011 at 4:58

GoogleCodeExporter commented 9 years ago
It started to happen to me this morning on my Atv2. Also I know its off topic 
but is an boxee box app planned in the future?

Original comment by calebusaf@gmail.com on 7 Oct 2011 at 7:47

GoogleCodeExporter commented 9 years ago
not working for me either anymore.  can pull up folders, but clicking to view a 
list of episodes, the list is empty.  on aple tv2

Original comment by serialbo...@gmail.com on 7 Oct 2011 at 8:37

GoogleCodeExporter commented 9 years ago
Also not working anymore on pc , and just installed on mac and here its the 
same problem after a fresh install

Original comment by StijnBev...@gmail.com on 7 Oct 2011 at 9:57

GoogleCodeExporter commented 9 years ago
Same here on am atv2. Click on "Big Bang Theory" and get no episodes back (just 
the "..." button)

Original comment by jimstoc...@gmail.com on 7 Oct 2011 at 11:00

GoogleCodeExporter commented 9 years ago
The problem seems to be that www.icefilms.info pages changed a little bit, so 
the parser fails for tv series. Here's a patch to default.py that fixes this:

--- default.py.old  2011-08-24 10:13:20.000000000 -0700
+++ default.py  2011-10-07 16:46:27.000000000 -0700
@@ -1067,8 +1067,8 @@
         save(tvshowname,match[0])  

         ep_list = str(BeautifulSoup(source).find("span", { "class" : "list" } ))
-
-        season_list=re.compile('<h4>(.+?)</h4>').findall(ep_list)
+        
+        season_list=re.compile('<h3><a name="[0-9]"></a>(.+?)<a href="#">Top 
...</a></h3>').findall(ep_list)
         listlength=len(season_list)
         for seasons in season_list:
              if FlattenSingleSeasons==True and listlength <= 1:             
@@ -1097,11 +1097,11 @@
          #name=str(name[0])

      #quick hack of source code to simplfy scraping.
-     source=re.sub('</span>','<h4>',source)
+     source=re.sub('</span>','<h3>',source)

      #get all the source under season heading.
      #Use .+?/h4> not .+?</h4> for The Daily Show et al to work.
-     match=re.compile('<h4>'+name+'.+?/h4>(.+?)<h4>').findall(source)
+     match=re.compile('<h3><a 
name="[0-9]+?"></a>'+name+'.+?/h3>(.+?)<h3>').findall(source)
      for seasonSRC in match:
         TVEPLINKS(seasonSRC)

Original comment by mariusm...@gmail.com on 7 Oct 2011 at 11:51

GoogleCodeExporter commented 9 years ago
Thanks mariusm saved my day, for everyone wanting to know how to apply the 
patch the following instructions should help.

OPEN Terminal 
1. Change directory to the folder containing "default.py" (in my case this was 
/private/var/mobile/Library/Preferences/XBMC/addons/plugin.video.icefilms) 
2.Save patch ^ above as file "ice.patch" 
3. On linux system with patch installed (most excluding Apple TV) run the 
following command 
patch -p1 < "ice.patch"
4. Enter the file to patch "default.py"
5. Patching is complete

Original comment by Christop...@gmail.com on 8 Oct 2011 at 11:29

Attachments:

GoogleCodeExporter commented 9 years ago
Could yo be a bit more specific ? i got this running on my girlfriends Mac ... 
But i am a real mac NOOB .
I found Terminal ... so wich command do i have to give in ?
And the patch is just text ?

Original comment by StijnBev...@gmail.com on 8 Oct 2011 at 4:59

GoogleCodeExporter commented 9 years ago
i got where i need to input: -pl < "ice.patch"
but i keep getting: "no such file or directory"

Original comment by xjd...@gmail.com on 8 Oct 2011 at 7:33

GoogleCodeExporter commented 9 years ago
After using the patch I can not get movies or tv shows reinstall got movies 
back. I had to mess something up will an update be pushed out soon or should I 
try the patch again?

Original comment by calebusaf@gmail.com on 8 Oct 2011 at 8:38

GoogleCodeExporter commented 9 years ago
[deleted comment]
GoogleCodeExporter commented 9 years ago
thanks for helping

:/private/var/mobile/Library/Preferences/XBMC/addons/plugin.video.icefilms 
root# patch -pl < "ice.patch"
patch: **** strip count l is not a number
Apple-TV:/private/var/mobile/Library/Preferences/XBMC/addons/plugin.video.icefil
ms root#

Why I received this message?

Original comment by rsw1...@gmail.com on 21 Dec 2011 at 1:35