Your favorite Apple, iPhone, iPad, iOS, Jailbreak, and Cydia site.
Thread: GPS Based HTML Lockscreen Weather Theme
is a discussion within theiPhone 4|4S New Skins / Themes Launches
forums, a part of theNew Skins / Themes Launches
section;then when I try to remove GPS weather lockscreen it crashes my Cydia and I reopen in safe mode. Something is awry here
...-
06-19-2012, 04:49 PM #2001
then when I try to remove GPS weather lockscreen it crashes my Cydia and I reopen in safe mode. Something is awry here
-
06-19-2012, 05:00 PM #2002
I had the same problem, which i think was because i did not have the folder "var/mobile/Documents"
I manually created the folder, and made sure the permissions were good. Worked after that for me!
-
06-19-2012, 05:20 PM #2003
ok i need someones help on this! Im trying to edit the 'function updateclock' .js file (Chevys main.js from his Ultimate LS theme) to be a "word clock" instead of a digital clock. The problem is IF i get the word clock working i lose the sunrise/sunset times and a couple of the weather descriptions like wind and high/low temps. if i remove it i get these back but no clock/date. Someone recommended looking at (uuuuh) Schendi Se7En Mini, but he is only using it as a html file. I like to use only 1 html file if i can! So if ANYBODY can help ill be sooo thankful!
Here is the code im trying to use. Ive been able to use this in the past in other forms of .js/funct updateclock files but this one is giving me all kinds of problems.
I have this in Wallpaper.htmlCode:function updateClock ( ) { var currentHours_name_array = new Array ("zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen", "twenty", "twenty-one", "twenty-two", "twenty-three", "zero") var currentMinutes_name_array = new Array ("|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|", "|") var currentMinutesunit_name_array = new Array ("o'clock", "o'one", "o'two", "o'three", "o'four", "o'five", "o'six", "o'seven", "o'eight", "o'nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen", "eighteen", "nineteen", "twenty", "twenty1", "twenty2", "twenty3", "twenty4", "twenty5", "twenty6", "twenty7", "twenty8","twenty9", "thirty", "thirty1", "thirty2", "thirty3", "thirty4", "thirty5", "thirty6", "thirty7", "thirty8", "thirty9", "forty", "forty1", "forty2", "forty3", "forty4", "forty5", "forty6", "forty7", "forty8", "forty9", "fifty", "fifty1", "fifty2", "fifty3", "fifty4", "fifty5", "fifty6", "fifty7", "fifty8", "fifty9" , " ") var currentTime = new Date ( ); var currentHours = currentTime.getHours ( ); var currentMinutes = currentTime.getMinutes ( ); var currentMinutesunit = currentTime.getMinutes ( ); var currentSeconds = currentTime.getSeconds ( ); // Pad the minutes and seconds with leading zeros, if required // currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours; // currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes; currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds; if (ampm == false) { var currentTime = new Date ( ); var currentHours = currentTime.getHours ( ); var currentMinutes = currentTime.getMinutes ( ); var currentSeconds = currentTime.getSeconds ( ); // Pad the minutes and seconds with leading zeros, if required // currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours; // currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes; currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds; } else { var currentTime = new Date ( ); var currentHours = currentTime.getHours ( ); var currentMinutes = currentTime.getMinutes ( ); var currentSeconds = currentTime.getSeconds ( ); // Pad the minutes and seconds with leading zeros, if required // currentHours = ( currentHours < 10 ? "0" : "" ) + currentHours; // currentMinutes = ( currentMinutes < 10 ? "0" : "" ) + currentMinutes; currentSeconds = ( currentSeconds < 10 ? "0" : "" ) + currentSeconds; var timeOfDay = ( currentHours < 12 ) ? "AM" : "PM"; currentHours = ( currentHours > 12 ) ? currentHours - 12 : currentHours; currentHours = ( currentHours == 0 ) ? 12 : currentHours; } // Compose the string for display var currentTimeString = currentHours_name_array[currentHours] + " "; var currentTimeString1 = currentMinutes_name_array[currentMinutes] + " "; var currentTimeString2 = currentMinutesunit_name_array[currentMinutesunit]; // Update the time display document.getElementById("hours").firstChild.nodeValue = currentTimeString; document.getElementById("minutes").firstChild.nodeValue = currentTimeString1; document.getElementById("minutesunit").firstChild.nodeValue = currentTimeString2; } function calendarDate ( ) { var this_date_name_array = new Array("00","01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31") var this_weekday_name_array=["Sun.","Mon.","Tues.","Wed.","Thu.","Fri.","Sat."]; var this_month_name_array=["Jan.","Feb.","Mar.","Apr.","May","June","July","Aug.","Sept.","Oct.","Nov.","Dec."]; if (French == true){ var this_weekday_name_array=["Dim.","Lun.","Mar.","Mer.","Jeu.","Ven.","Sam."]; var this_month_name_array=['Jan.','Fev.','Mars','Avr.','Mai','Juin','Juil.','Aout','Sept.','Oct.','Nov.','Dec.']; } if (German == true){ var this_weekday_name_array = ["Son.","Mon.","Dien.","Mitt.","Don.","Frei.","Sam."]; var this_month_name_array=["Jan.","Feb.","Marz","April","Mai","Juni","Juli","Aug.","Sept.","Okt.","Nov.","Dez."]; } if (Spanish == true){ var this_weekday_name_array = ["Dom.","Lun.","Mar.","Mier.","Jue.","Vier.","Sab."]; var this_month_name_array=['Ene.','Feb.','Mar.','Abril','Mayo','Junio','Julio','Ago.','Sept.','Oct.','Nov.','Dec.']; } if (Italian == true){ var this_weekday_name_array = ["Dom.","Lun.","Mar.","Mer.","Gio.","Ven.","Sab."]; var this_month_name_array=['Gen.','Feb.','Mar.','Apr.','Mag.','Giu.','Lug.','Ago.','Set.','Ott.','Nov.','Dic.']; } var this_date_timestamp = new Date() var this_weekday = this_date_timestamp.getDay() var this_date = this_date_timestamp.getDate() var this_month = this_date_timestamp.getMonth() var this_year = this_date_timestamp.getYear() if (this_year < 1000) this_year+= 1900; if (this_year==101) this_year=2001; document.getElementById("weekday").firstChild.nodeValue = this_weekday_name_array[this_weekday] + " " //concat long date string document.getElementById("date").firstChild.nodeValue = this_date_name_array[this_date] //concat long date string document.getElementById("month").firstChild.nodeValue = " " + this_month_name_array[this_month] //concat long date string }
and this in the .css file:Code:<div id="hours"> <span id="minutes"> <span id="minutesunit"> <script language="JavaScript">updateClock(); setInterval('updateClock()', 1000 )</script></div> <div id="weekday"> <span id="date"> <span id="month"><script language="JavaScript">calendarDate(); setInterval('calendarDate()', 1000 )</script></div>
Code:#hours { position:absolute; top:34px; left:10px; width:320px; height:480px; text-align:center; z-index:75; font-family: Default1; font-weight: 500; color: white; text-shadow: 0px 0px 1px black; font-size: 28px;} #minutes{color:red;} #minutesunit{color:white;} #weekday{ position:absolute; top:355px; left:15px; width:320px; height:480px; text-align:left; z-index:75; font-weight:100; font-size:17px; color: silver; font-family: Default1;} #date{ color: silver;} #month{color: silver;}
-
06-19-2012, 05:43 PM #2004The BatGirl
- Join Date
- Mar 2012
- Location
- @TheMamaJaay
- Posts
- 3,500
- Thanks
- 2,616
- Thanked 10,411 Times in 2,665 Posts
-
06-19-2012, 07:34 PM #2005King Kong ain't got nothing on me!
- Join Date
- Apr 2011
- Location
- USA
- Posts
- 5,450
- Thanks
- 26,306
- Thanked 9,203 Times in 3,478 Posts
MyLocation App update for 5.1.1 - 6.1.2 from bushe!
Download these Instructions - Instructions!
To install the MyLocation app, just add my repo and install it! - http://cydia.myrepospace.com/kohidevice/
Want to protect your JailBreak! Add this repo http://cydia.myrepospace.com/iLEXiNFO/ & Install "iLEX R.A.T."
It will allow you to bring your phone back to a fresh jailbroken state!
-
-
06-19-2012, 08:04 PM #2006I know nothing!
- Join Date
- Jul 2010
- Location
- RETIRED
- Posts
- 2,151
- Thanks
- 3,716
- Thanked 3,320 Times in 1,398 Posts
[QUOTE=Jkauf55;6579943]ok i need someones help on this! Im trying to edit the 'function updateclock' .js file (Chevys main.js from his Ultimate LS theme) to be a "word clock" instead of a digital clock. The problem is IF i get the word clock working i lose the sunrise/sunset times and a couple of the weather descriptions like wind and high/low temps. if i remove it i get these back but no clock/date. Someone recommended looking at (uuuuh) Schendi Se7En Mini, but he is only using it as a html file. I like to use only 1 html file if i can! So if ANYBODY can help ill be sooo thankful!
Here is the code im trying to use. Ive been able to use this in the past in other forms of .js/funct updateclock files but this one is giving me all kinds of problems.
[QUOTE]
I'll take a look and see what I can do.
[QUOTE=bombmom;6580181][QUOTE=Jkauf55;6579943]ok i need someones help on this! Im trying to edit the 'function updateclock' .js file (Chevys main.js from his Ultimate LS theme) to be a "word clock" instead of a digital clock. The problem is IF i get the word clock working i lose the sunrise/sunset times and a couple of the weather descriptions like wind and high/low temps. if i remove it i get these back but no clock/date. Someone recommended looking at (uuuuh) Schendi Se7En Mini, but he is only using it as a html file. I like to use only 1 html file if i can! So if ANYBODY can help ill be sooo thankful!
Here is the code im trying to use. Ive been able to use this in the past in other forms of .js/funct updateclock files but this one is giving me all kinds of problems.
Okay replace Chevy's Main.js with this one.
I'll take a look and see what I can do.
*EDIT* found a problem
I think its working I don't have anything to test it on but it looks good in Dreamweaver. The config.js still allows you to change it between 12/24hr. And you'll have to turn off the seconds. Let me know how it goes.Last edited by bombmom; 06-19-2012 at 09:12 PM.
-
The Following 3 Users Say Thank You to bombmom For This Useful Post:
It's Mi (07-01-2012), Jkauf55 (06-19-2012), King_O_Hill (06-19-2012)
-
06-19-2012, 09:26 PM #2007I know nothing!
- Join Date
- Jul 2010
- Location
- RETIRED
- Posts
- 2,151
- Thanks
- 3,716
- Thanked 3,320 Times in 1,398 Posts
Okay try this
https://www.dropbox.com/s/1y6qsvhan3zvokl/main.js
-
The Following 3 Users Say Thank You to bombmom For This Useful Post:
EricB78 (06-19-2012), Jkauf55 (06-20-2012), King_O_Hill (06-19-2012)
-
06-20-2012, 06:48 PM #2008
Didn't work... I'm so frustrated that I gotta walk away from this for a good while. Maybe do something different
-
06-20-2012, 07:06 PM #2009I know nothing!
- Join Date
- Jul 2010
- Location
- RETIRED
- Posts
- 2,151
- Thanks
- 3,716
- Thanked 3,320 Times in 1,398 Posts
-
The Following User Says Thank You to bombmom For This Useful Post:
Jkauf55 (06-21-2012)
-
06-20-2012, 08:16 PM #2010
The gps lockscreen for my iPad is no longer changing the location, but it still refreshes? Confused as to what happened. Anyone have a issue similar to this?
Edit: deleted my mylocation txt file and that fixed it. Lol as always solving my own problems right after I ask for helpLast edited by shortysos7; 06-20-2012 at 08:21 PM.
-
06-20-2012, 09:17 PM #2011
Man, all you need is remove everything you have install and turn off your phone. Turn it back on in 30 secs. then try to install DEB file again. There is another way to do it too. Create a folder in DOCUMENTS and name it Cydia, create another folder inside Cydia and name it AutoInstall. You have to name it exactly like I wrote or else it will not work. Then use IFILE Copy the file Deb and Paste inside the AutoInstall. Just Reboot your phone or turn it off then turn it on, it should work properly after that. If this doesn't work then I suggest you have to whipeout your phone and do a fresh firmware for the phone.
-
06-21-2012, 01:40 PM #2012I know nothing!
- Join Date
- Jul 2010
- Location
- RETIRED
- Posts
- 2,151
- Thanks
- 3,716
- Thanked 3,320 Times in 1,398 Posts
-
06-21-2012, 06:21 PM #2013Modder
- Join Date
- Dec 2010
- Location
- New Jersey
- Posts
- 4,262
- Thanks
- 11,195
- Thanked 14,083 Times in 3,603 Posts
Here's an iPad 3 LS in case anyone is interested. I'm pretty sure all of the static weather and timed images are ones that I found, but in case they aren't credits to whoever found them. Credits to Chevy for the slider and slideshow icon and to Schnedi for the font. I hope everyone likes it


Weather puzzle iPad.zip
Link is updated now. Enjoy
Here's a smaller file version too.
Weather puzzle iPad smaller.zipLast edited by EricB78; 06-22-2012 at 02:16 PM.
-
The Following 9 Users Say Thank You to EricB78 For This Useful Post:
ag92 (06-21-2012), bombmom (06-21-2012), elilab (06-24-2012), It's Mi (07-01-2012), Jkauf55 (06-21-2012), King_O_Hill (06-21-2012), Mokabaer (06-21-2012), streinjer (07-01-2012), The_Durben (06-21-2012)
-
06-21-2012, 11:17 PM #2014
On iOS 5.1.1 is not working the GPS Weather Lockscreen...?
-
06-22-2012, 03:17 AM #2015
-
The Following 2 Users Say Thank You to Dacal For This Useful Post:
DarkBoy (06-22-2012), King_O_Hill (06-22-2012)
-
06-22-2012, 06:47 AM #2016
-
06-22-2012, 12:46 PM #2017Modder
- Join Date
- Dec 2010
- Location
- New Jersey
- Posts
- 4,262
- Thanks
- 11,195
- Thanked 14,083 Times in 3,603 Posts
If anyone wants a "smaller" version of the weather puzzle for iPad, here is a 35mb version. I just turned down the resolution on all of the weather images. From what I understand, you won't be able to see the difference anyway.
Weather puzzle iPad smaller.zip
-
The Following 3 Users Say Thank You to EricB78 For This Useful Post:
It's Mi (07-01-2012), King_O_Hill (06-22-2012), The_Durben (06-29-2012)
-
06-22-2012, 05:12 PM #2018King Kong ain't got nothing on me!
- Join Date
- Apr 2011
- Location
- USA
- Posts
- 5,450
- Thanks
- 26,306
- Thanked 9,203 Times in 3,478 Posts
MyLocation App update for 5.1.1 - 6.1.2 from bushe!
Download these Instructions - Instructions!
To install the MyLocation app, just add my repo and install it! - http://cydia.myrepospace.com/kohidevice/
Want to protect your JailBreak! Add this repo http://cydia.myrepospace.com/iLEXiNFO/ & Install "iLEX R.A.T."
It will allow you to bring your phone back to a fresh jailbroken state!
-
06-22-2012, 05:42 PM #2019iPhoneaholic
- Join Date
- Apr 2012
- Location
- Toledo,Ohio
- Posts
- 487
- Thanks
- 9,246
- Thanked 574 Times in 293 Posts
-
06-22-2012, 05:44 PM #2020The BatGirl
- Join Date
- Mar 2012
- Location
- @TheMamaJaay
- Posts
- 3,500
- Thanks
- 2,616
- Thanked 10,411 Times in 2,665 Posts
-
The Following User Says Thank You to MamaJaay For This Useful Post:
Hip5 (06-22-2012)
LinkBacks (?)
-
Curry's little Repo
Refback This thread04-12-2013, 02:27 PM -
overview for bushe
Refback This thread03-15-2013, 10:09 AM -
08-11-2012, 12:06 AM
-
Elite Pro HD - Seite 40
Refback This thread03-03-2012, 12:38 PM




LinkBack URL
About LinkBacks
Reply With Quote



