Dionne Daniels - Caps & Videos - Printable Version +- The UK Babe Channels Forum (https://www.babeshows.co.uk) +-- Forum: Night Shows (/forumdisplay.php?fid=1) +--- Forum: Former Channels (/forumdisplay.php?fid=236) +---- Forum: Studio 66 TV (formerly Elite TV) (/forumdisplay.php?fid=255) +----- Forum: Former Studio 66 babes (/forumdisplay.php?fid=311) +------ Forum: Dionne Daniels (/forumdisplay.php?fid=276) +------ Thread: Dionne Daniels - Caps & Videos (/showthread.php?tid=6163) Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 |
RE: Dionne Daniels - Caps & Videos - wrightbadger - 10-10-2020 03:22 imagechunk image fix:
the first 100+ pages of this thread contain lots of imagechunk images that are broken. i found on another forum that they had moved to lic.me and realised i could fix the img sources to point to the image at lic.me for example: the src is 'http://www.imagechunk.com/images/dionne_elite_alleyway_090417_cap1-d083fab1a0.jpg' can be fixed to the src is 'http://lic.me/uploaded_images/d/i/dionne_elite_alleyway_090417_cap1-d083fab1a0.jpg' altering them manually is pointless so i created a bookmarklet that can fix all the images on a page. a bookmarklet is a bookmark in your browser that instead of going to a page will run a javascript function on the page you have open to temporarily modify it. the below codebox has the bookmarklet as a very long single line of text. to use it: 1) select all the text in the codebox and then copy it (the text below Code:) 2) create a new bookmark in your browser 3) give the bookmark a meaningful name.. like JS-imgchunkpicFix or something 4) paste the bookmarklet text into the url field of your new bookmark 5) when you're on a page with old imagechunk images click on the bookmark and it should fix most of them Code: javascript:{ var mypics=document.images; var mypictext=""; var mypictextdat=""; var mytextsplit = []; for (i=0; i<mypics.length; i++) { mytextsplit.length=0; mypictext=mypics[i].src; mypictextdat=mypics[i].getAttribute("data-original"); if (mypictext.indexOf("transp.gif") >= 0 && mypictextdat.indexOf("imagechunk") >= 0) mypictext=mypictextdat; if (mypictext.indexOf("imagechunk") >= 0 || mypictext.indexOf("lic.me/t/imgchunk_") >=0) { mytextsplit = mypictext.split("/"); mypictext=mytextsplit[mytextsplit.length-1]; if (mypictext.indexOf("index.php") >= 0) { mytextsplit.length=0; mytextsplit = mypictext.split("="); mypictext=mytextsplit[mytextsplit.length-1]; } else if (mypictext.indexOf("imgchunk_") >= 0) { mypictext = mypictext.replace("imgchunk_", ""); } mypictext = mypictext.replace("_thumb.", "."); mypics[i].src=("http://lic.me/uploaded_images/"+ mypictext.charAt(0) +"/"+ mypictext.charAt(1) +"/"+ mypictext); } }};void(0); -- below is a multi-line version of the bookmarklet if you want to check it for safety reasons: Code: javascript:{ notes: while most of the imagechunk images can be fixed, a few of them are broken or seem to be wrong images. this may be a problem with imagechunk being merged into lic.me, around 90% of them seem to work but this will only drop over time as some disappear. it replaces imgchunk thumbnails with the fullsize image. changes to a page aren't permanent. it just adjusts what you have open now. version 1) designed for this forum (bshows) version 2) added fix for older lic.me posts that i've seen on another forum (rpant) version 3) added fix for lazyload images on another forum (lshow) (tested on chromium browser. should work on others) don't trust every bookmarklet you find on the internet. always check through the code yourself before you trust it. RE: Dionne Daniels - Caps & Videos - wrightbadger - 11-10-2020 02:19 update:
well the moderators seem keen and seem to have been fixing some broken imagechunk images. including in my above post which originally showed an example of a broken image first which may now be confusing.... although having checked others they seem to have tried to do the fixes slightly wrong. the bookmarklet took into acount the lic.me url structure which is set based on the filename for example: 'http://ww45.imagechunk.com/images/filename.ext' would be fixed to: 'http://lic.me/uploaded_images/f/i/filename.ext' so the first and second character of the image filename appear in the url path as directories before the filename. the bookmarklet also removed the '_thumb' that was at the end of some imgchunk filenames to fix them and there may have been other imgchunk url name patterns that it fixed too. sorry.. i didn't expect the moderators to try fixing the whole site RE: Dionne Daniels - Caps & Videos - BabeLover - 05-01-2021 02:38 Studio 66 TV has changed an awful lot since 2013, it is now 2021 and it has been 7 years too long since this beautiful angel blessed our TV screens in the early hours of the morning, although time has certainly passed by she will never be forgotten as the young women that made night shows classic and special. We Miss You Dionne Daniels! |