*ORIGINAL THREAD* InfoService v1.6 - Feed reader/Twitter reader and weather (1 Viewer)

Bleazle

Portal Pro
July 14, 2007
1,122
257
Pukekohe
Home Country
New Zealand New Zealand
Fafnir changed the weather icons and then i got the same problem like you.

I tested now everything. And i can't even debug this because i havn't got the problem :p Do you use the test version i've send you? When you start mediaportal you get instant the false temp values?

I'm out of town at the moment so I can't check - I think I'm still using the test version you gave me - if not I'll download it again when I get home and let you know in a few days.
 

arual

Portal Member
July 30, 2008
28
0
MALAGA
Home Country
Spain Spain
HI, i am using the last X-face skin 1.9, with the MPI infoservice from the 1st post.

I can see the Rss and weather information on the basicHome menu, but i´d like to see them at the Home Menu.

¿wich file i have to mod?

MyHome.xml ?
common.rss.xml?

both?

I have tried but no luck.
any help, please.
 

edsche

Community Plugin Dev
January 7, 2007
606
360
38
Ulm
Home Country
Germany Germany
HI, i am using the last X-face skin 1.9, with the MPI infoservice from the 1st post.

I can see the Rss and weather information on the basicHome menu, but i´d like to see them at the Home Menu.

¿wich file i have to mod?

MyHome.xml ?
common.rss.xml?

both?

I have tried but no luck.
any help, please.

Both i think. Just search the thread here. Someone asked the same question a couple of pages back.


Btw: I have a new version ready. Completely rewritten with download cache for twitter and feeds (for faster updates) and a better twitter client with it's own GUI (looks like the feeds GUI). But before i release a buggy version, i want to have some feedback from other users. So if someone want to try the new version, just write me a pm.

@DieBagger: I did some research with your idea on the GUIMessage thing. Looks like it's pretty easy to do this. I think i will add a Recently Added function to the new InfoService version. The only problem is that MovingPictures, MPTVSeries and other plugins must send a GUIMessage with the information. So there would be a little coding part for the other plugin developers.
 

Swede

Portal Pro
September 6, 2006
493
47
West Coast Archipelago
Home Country
Sweden Sweden
HI, i am using the last X-face skin 1.9, with the MPI infoservice from the 1st post.

I can see the Rss and weather information on the basicHome menu, but i´d like to see them at the Home Menu.

¿wich file i have to mod?

MyHome.xml ?
common.rss.xml?

both?

I have tried but no luck.
any help, please.

These are my modded Blue2wide files. See if you can use them, or parts of them.
 

Attachments

  • myHome.xml
    30.6 KB

AcidMathew

Portal Member
October 11, 2009
16
0
Augsburg
Home Country
Germany Germany
Today Weather Backdrops

Hello everybody,

first of all I must say that I am a rookie in customizing MP.
But I'm trying to customize myweather plugin.
I want to have a background image dependent on the today weather.
So I integrated a testpic with InfoService:

Code:
    <control>
      <description>test image</description>
      <type>image</type>
      <id>0</id>
      <posX>0</posX>
      <posY>0</posY>
      <width>200</width>
      <height>200</height>
      <texture>d:\test\#infoservice.weather.today.img.small.filenamewithext</texture>
    </control>

In the test folder I placed the diffrent backgrounds.
Now there is the problem that this image isn't updated when I push the refresh button and it isn't updated when I change the city in myweather plugin.
How can I get this solved?

:D a lot.

CU Mathias
 

edsche

Community Plugin Dev
January 7, 2007
606
360
38
Ulm
Home Country
Germany Germany
Hello everybody,

first of all I must say that I am a rookie in customizing MP.
But I'm trying to customize myweather plugin.
I want to have a background image dependent on the today weather.
So I integrated a testpic with InfoService:

Code:
    <control>
      <description>test image</description>
      <type>image</type>
      <id>0</id>
      <posX>0</posX>
      <posY>0</posY>
      <width>200</width>
      <height>200</height>
      <texture>d:\test\#infoservice.weather.today.img.small.filenamewithext</texture>
    </control>

In the test folder I placed the diffrent backgrounds.
Now there is the problem that this image isn't updated when I push the refresh button and it isn't updated when I change the city in myweather plugin.
How can I get this solved?

:D a lot.

CU Mathias
The refresh button on the mywheater plugin doesn't update the infoservice weather. You must push the refresh button in the infoservice window. When you change the weather in the myweather window, infoservice will update the data with the new location on the next update interval.
 

AcidMathew

Portal Member
October 11, 2009
16
0
Augsburg
Home Country
Germany Germany
Hi Chris,

ok. Thx a lot.
Is there any other possibility to have a today weather dependent backgrounds in the myweather plugin?
Can I integrate a second image (from a user defined folder) with the same features like the today weather icon?
So that the city change and the refresh button can be used.

CU Mathias
 

trevor

Portal Pro
October 17, 2006
1,600
950
Chelmsford
Home Country
United Kingdom United Kingdom
Hi Chris,

ok. Thx a lot.
Is there any other possibility to have a today weather dependent backgrounds in the myweather plugin?
Can I integrate a second image (from a user defined folder) with the same features like the today weather icon?
So that the city change and the refresh button can be used.

CU Mathias

Hi Mathias,

The simple answer is yes, taking you code as an example and assuming a directory structure of d:\weatherbg\ and backround images names 0.png to 47.png the code would be.

Basicly #infoservice.weather.today.img.small.filenamewithoutext properity returns just a number between 0 & 47 and you just need to add location and file ext to the back and front.



<control>
<description>test image</description>
<type>image</type>
<id>0</id>
<posX>0</posX>
<posY>0</posY>
<width>200</width>
<height>200</height>
<texture>d:\weatherbg\#infoservice.weather.today.img.small.filenamewithoutext.png</texture>
</control>


Hope that helps.

Edit: Just realised that I maybe should have reas the entire question 1st as not sure this is the answer you are looking for...ho hum!

Cheers
 

AcidMathew

Portal Member
October 11, 2009
16
0
Augsburg
Home Country
Germany Germany
Hi Trevor,

thx for the quick answer.
Basically this is what I'm trying to do.

1. Background depending to the today weather (background of the myweather plugin) -> DONE (similar to your answer)

2. Background should be refreshed with the refresh button in the myweather plugin and by changing the city immediately -> but this is with infoservice and myweather not possible as Chris wrote

So there was the idea to use the same control like the weather icon from the myweather plugin twice but with different images.
Is this possible?

CU Mathias

P.S. I hope my english is not too bad. :D
 

olivvvv

Portal Pro
April 20, 2009
114
13
Home Country
France France
Re: InfoService v1.32 - 5 day weather/Feeds/Twitter on basic home [29-10-2009] *UPDAT

i have found in mediaportal.log :

2009-11-04 08:23:43.332564 [Warn.][18]: InfoService: Update of weather unsuccesfull. No locationID for WeatherService found (LocationID string empty).

but i have filled weather location in plugins.

No one has this error ?
Please help ?
 

Users who are viewing this thread

Similar threads

Works also, removed the "section" entry from MediaPortal.xml ;) (y)
Works also, removed the "section" entry from MediaPortal.xml ;) (y)
This plugin is alternate version to the original World Weather plugin developed by @Micropolis. Is compatible with MediaPortal...
Replies
33
Views
6K
That was the correction I made in BasicHome for the 1.35 Prerelease which you adddd to repo ;)
That was the correction I made in BasicHome for the 1.35 Prerelease which you adddd to repo ;)
I'm going bananas here!! Used MP1 since MP1.10 or so.....an haven't had problems for years! Am using latest Dune...
Replies
8
Views
592
Well, currently the plugin shows the sun/moon times in user's local time. As you said, It would require to add time zone parameter to the profile. I'll try to add this option in the next version. PS: please use official thread
Well, currently the plugin shows the sun/moon times in user's local time. As you said, It would require to add time zone parameter...
I have the current (1.0.2.0 level) World Weather Lite plugins installed on x86 and x64 different MP1 copies. When Location is...
Replies
7
Views
1K
thank you Sir, issue is definitely resolved now, i uninstalled the problematic MSE altogether, plus i also now have optimized EPG grabbing configuration, thanks again for all the assistance, wow so much faster on everything now that MSE is out of the picture...MP WAF is now restored and FetchTV STB sits in the corner collecting dust :)
thank you Sir, issue is definitely resolved now, i uninstalled the problematic MSE altogether, plus i also now have optimized EPG...
Long time MP user, and recently upgraded to MP1.34, prior to this upgrade, i have for many years successfully used MP with fast and...
Replies
20
Views
1K
Hi, it looks like the Client's server connection settings got corrupted somehow and were reset, hopefully this is an easy fix. Open MP2-Client, navigate to Settings->General->Connectivity->Home server. In the menu on the left there may be an option Detach from home server, if there is click it and acknowledge the dialog that pops up...
Hi, it looks like the Client's server connection settings got corrupted somehow and were reset, hopefully this is an easy fix...
Help Please: MP doesnt display any of my previouse recordings or TV programs It seems like the Server isnt running? MP was working...
Replies
3
Views
550
Top Bottom