| User | Post |
|
6:52 am 02/25/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
Just a thread to keep track of my progress on the initial run through. Right now I'm just adding covers to any book that doesn't already have some image.
On the second run through, I'll replace the promo images, temporary covers (like how amazon shows an issue cover without the final trade dress) and low quality images with final high quality scans.
But for now, let's just get an image on each book, and then I'll do the same for DC. We can worry about final perfection once everything has something.
|
|
|
6:53 am 02/25/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
I added over 40 covers tonight so far and Marvel is complete through page 2 (first 100 books.)
|
|
|
7:20 am 02/25/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
Took a little extra care with this one:
http://www.tradereadingorder.com/marvel/captain-america-the-classic-years/
kinda proud of it, and had to make a note cause no one would ever notice otherwise ;)
|
|
|
9:43 am 02/25/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
First three pages (150 books) have images.
|
|
|
11:29 am 02/25/2011
| Marc
| | |
|  With Great Power… | posts 566 | |
|
|
Nice. And the Classic Years book looks pretty sweet!
|
|
|
11:34 am 02/25/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
Page four (200 books) all with images working.
|
|
|
12:11 pm 02/25/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
alright, just put in Fantastic Four Return on page 5 and now I gotta go get ready for a photo gig to make a little rent money. I'll be back this evening for more!
|
|
|
8:31 pm 02/26/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
Post edited 8:57 pm – 02/26/2011 by Ian
ok, I wanna get back to working on this. The cached site is very fast and while uncached I think it's still running a little slow, I can live with it for now.
So, since the books per page is back up to 100, I'm now on page 3/30
(actually, scratch that, I'm back to coding. I figured out a way to simplify the if-then loops on the reading order pages)
|
|
|
9:19 pm 02/26/2011
| Marc
| | |
|  With Great Power… | posts 566 | |
|
|
If-then loops…now there's programming language I can understand! (I took classes on Basic and Java in high school.)
|
|
|
9:23 pm 02/26/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
Post edited 9:25 pm – 02/26/2011 by Ian
haha, it's all the same stuff, really.
This is the kind of thing I'm working on right now – it's really condensed down from what it was, which was a LOT less elegant (though this still isn't pretty.)
/* If this is a category
archive */
if (is_category()) {
$image_url="http://www.tradereadingorder.com/default-images/bookshelf.jpg";
$yourcat = get_category ($cat);
$image_path="/home/ftpusername/tradereadingorder.com/list-image/".$yourcat->slug.".jpg";
if (
file_exists($image_path) ) {
$image_url ="http://www.tradereadingorder.com/list-image/".$yourcat->slug.".jpg";
}
}
/* If this is a tag archive
*/
elseif(is_tag()) {
$image_url="http://www.tradereadingorder.com/default-images/dc.jpg";
$term_id =get_query_var('tag_id');
$taxonomy = 'post_tag';
$args ='include=' .$term_id;
$terms = get_terms($taxonomy, $args );
$image_path="/home/ftpusername/tradereadingorder.com/character-image/".$terms[0]->slug.".jpg";
if (
file_exists($image_path) ) {
$image_url ="http://www.tradereadingorder.com/character-image/".$terms[0]->slug.".jpg";
}
}
/* If this is a creator
archive */
elseif(is_tax('creator')) {
$image_url="http://www.tradereadingorder.com/default-images/creator.jpg";
$term = get_term_by( 'slug',get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$image_path="/home/ftpusername/tradereadingorder.com/creator-image/".$term->slug.".jpg";
if (
file_exists($image_path) ) {
$image_url ="http://www.tradereadingorder.com/creator-image/".$term->slug.".jpg";
}
}
and so on..
|
|
|
9:50 pm 02/26/2011
| Marc
| | |
|  With Great Power… | posts 566 | |
|
|
Cool. I understand the format and a lot of the stuff there, even if I don't remember what all the commands are anymore. Can't remember what the $ is for, for instance.
|
|
|
9:57 pm 02/26/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
forum messed up the formatting a bit.
yeah, the only really hard stuff is figuring out the php and wordpress variables. the $ indicates it's a php variable. Some are built into wordpress, some you have to define. I'm pretty sure that's how it works anyway. It seems to be working, haha
|
|
|
10:29 am 02/28/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
Images added through page four (400 books)
|
|
|
12:07 am 03/01/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
page five has been checked over and uploaded in the blank spots (500 gone through, many to go.)
|
|
|
2:28 am 03/01/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
page six now has an image for every book (600 down!)
|
|
|
11:26 pm 03/04/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
I just placed the Jason Aaron omnibus based on the amazon info.
I'm gonna try to get some covers in tonight. Starting on page 7 of the marvel list.
I'm still not up for reviews stuff, but I will hopefully be able to do that again later this week.
|
|
|
2:43 am 03/05/2011
| Ian
| | Savannah, GA | |
|  Final Boss | posts 1875 | |
|
|
page 7 done. Onto page 8.
|
|