Scoop -- the swiss army chainsaw of content management
Front Page · Everything · News · Code · Help! · Wishlist · Project · Scoop Sites · Dev Notes · Latest CVS changes · Development Activities
So, you've installed Scoop Docs
By theantix , Section Help! []
Posted on Wed Oct 09, 2002 at 12:00:00 PM PST
Good job, some people don't even get as far as you just have.  But now that you've got it installed, I'll bet that you want to do something more than the basic setup that Scoop ships with.  This guide is intended to be as non-technical as possible, but still explain how to customize your Scoop site to look exactly like you want it to.  

This guide will assume that you already know some HTML, if you don't know that, I would suggest you start with plain HTML before trying to administer a Scoop site.

Where to Start?

First, I'll explain the basic building blocks of how Scoop displays a page.  There are three main tools that control this:  Site Controls, Blocks, and Boxes.  There are also sections and topics, but those are fairly self-explanatory so I'll let you explore those on your own.  After you've learned the initial tools, you can move on to more advanced features like Groups, Ops, and Hooks.

Site Controls:

We will start our Scoop customization by looking at the site controls.  Site controls are Scoop's equivalent to what other programs call "preferences" or "options."  Here you can enable and disable features such as the spellchecker, advertising, polls, or a variety of other things.

When you login to Scoop with your superuser account, you should see a link for "Site Controls" in the admin toolbox.  Choose that, and click on the link for "General."  This should take you to a page that lists a lot of general options for you to change.  If you want to test changing something to see how it works, try changing the "sitename" and "slogan" site controls to something more appropriate for your site.

Once you get the hang of Scoop and all of the available features, the various site controls will make more sense to you.   Scrolling through the categories can give you some idea of the basic functionality that Scoop ships with.

Blocks:

Now we'll move on to the most basic element of Scoop, the blocks.  A block is simply a chunk of HTML code that can be referenced from any page by name.  In the admin toolbox choose "Blocks," and choose the link "site_html".  From there you can see a listing of blocks that control various aspects of the display.

You can change and customize these blocks according to your own site design.  A good starting place might be the header and footer blocks.  Make a few small changes to these, and hit the "save" button.  When the page reloads, see how the changes you made were already implemented?  This is because the header and footer blocks are called by most pages by default.

The best part of the blocks system is the ability to call other blocks.  To show you what I mean, look carefully at the header block.  You will notice that mixed in with the HTML elements and text are little items marked off by pipes (|).  There is a reference to |section_links| which when called will take the value from the section_links block and seamlessly place it within the header.

Blocks: Templates:

With this knowledge you can really begin the task of making your Scoop site look unique.  However, you need to know where to begin.  The key is the group of blocks called "templates".  The template is a master block for displaying an entire page.  Your front page (and section pages) will use index_template, viewing a story uses the story_template, and most admin pages use default_template.  Be very careful changing these, because, if you mess it up, you might not be able to view your site.

To change a template, from within the block editor choose the "templates" link and scroll down to view the contents of the "index_template" block.  For example, you can see near the top there is a reference called |header|.  As you can probably guess, this is a reference back to the header that we changed a few paragraphs before.  It also contains the special block |CONTENT|, which is where all of the stories for the page are inserted.  By changing this page you can drastically alter how your site appears.

Boxes:

Blocks are only the beginning of the story, however.  You will notice that the templates also contain references like |BOX,login_box| and |BOX,user_box|.  Unlike the blocks that we have just looked at, boxes are chunks of code written in the Perl programming language that will return HTML to the page.  Don't be too scared by this, because you don't have to learn very much of Perl to change some basic functionality of the boxes.

If you already know Perl, you will find Boxes to be an invaluable way to customize your Scoop site.  If not, you will be limited to tweaking the existing boxes, or borrowing code from the Scoop Box Exchange.  To edit or add a box, select "Boxes" from the Admin Tools menu.  I am not going to provide a Perl tutorial for you here, but if you are interesting in some light hacking just examine some of the boxes that ship with Scoop.

More advanced features:

This is only part of the story, once you get past the basics there are many other ways to extend your default Scoop install.  

Groups/Perms:

Obviously you don't want every user to have the same amount of access that you do.  The ability for Scoop to control access to various areas of your site is located under the Admin Tool "Groups".  Select the group "users" from the group dropdown box and click on the get button to open up the set of permissions.

You will see a giant list of permissions, but most of them are self explanatory.  Some interesting ones that aren't enabled by default include "view_comment_ip" and "use_spellcheck", each required in order for the respective functionalities to work.  Try to leave most everything enabled for the superuser group, otherwise you have the potential to lock yourself out of functionality.

If you ever need to add a new permission, the master list is stored in the block "perms".  When you add a new perm it will default to being unselected for all groups.  If for any reason you delete a perm from that list, the perm will still be set for all users that formerly had it, so make sure you've removed the permission from the group first.

Ops:

Simply put, an op is the first pseudo-directory that a user can enter on your site.  For example, the op for http://www.kuro5hin.org/story/2002/1/15/231539/319 is "story".  If you open the Ops Admin tool you can see a list the ops that are currently on your system.  Open up the op "newuser" and check out how that op is set up.

You can see that newuser uses the template default_template, but it is simple to change to any of the templates including any new ones that you might want to create.

You will also see an area to select a function, and a checkbox called "function is a box".  The newuser op starts with the function "newuser", and this shouldn't be changed under most circumstances.  However if you want to, you can make an op call a different function if need be.  If the function is already provided by Scoop you just have to reference it by name, otherwise you can create a box, reference the box name and make sure the checkbox is selected.

As for security, this is controlled by the dropdown box "Permission", and the checkbox for "enabled".  If the user viewing the site doesn't have the perm selected in the dropdown, they will get a message saying "permission denied".  If the enabled checkbox is not checked, the op will not exist at all and the user will get a "Page Not Found" 404 error.

I hope you can see by now that with the combination of Ops, Block Templates, and Boxes, you can do most anything you wish with your site design.  At least, anything that is possible in MySQL and Perl.

Hooks:

As if that wasn't enough, Scoop has functionality called hooks, found under the Hooks admin tool.  A hook is a way to make a action link to something else, like a box or a scoop function.  Scoop doesn't ship with any hooks enabled, so I can't give you any examples.

Like an op, you can bind a hook to a box or other scoop function that isn't enabled by default.  For example, if you wanted scoop to email you when a story was posted, you could create a box that did the email, and then bind the function story_post to your new box.

Go to work:

That should be more than enough to get you started. I hope you enjoy customizing your scoop site!

< Open Source | style sheets >

Menu
· create account
· faq
· search
· report bugs
· Scoop Administrators Guide
· Scoop Box Exchange

Login
Make a new account
Username:
Password:

Poll
Was this document helpful?
· Yes 50%
· No 0%
· - 16%
· theantix was here 33%

Votes: 6
Results | Other Polls

Related Links
· Scoop
· Kuro5hin
· Site Controls
· Blocks
· Boxes
· Groups
· Ops
· Hooks
· Scoop Box Exchange
· block
· http://www .kuro5hin.org/story/2002/1/15/231539/319
· template
· box
· perm
· op
· More on Docs
· Also by theantix

Story Views
  474 Scoop users have viewed this story.

Display: Sort:
So, you've installed Scoop | 87 comments (84 topical, 0 hidden)
good intro (5.00 / 1) (#4)
by Phantros on Fri Oct 11, 2002 at 02:14:59 PM PST

A good introduction. I think it was good that you included hooks, because I haven't seen them mentioned elsewhere. More on them would be nice in a future story, with examples of how they've been used so far.

A list of possible problems might be interesting for people unfamiliar with scoop. The other day I was editing the login box and was about to logout and test it before realizing that if it was broken, I wouldn't be able to log back in and fix it. That would have been an amusing learning experience. ;)

Incidentally, the blocks link is broken.

4Literature - Read, write, and discuss your favorite books.



comparison with drupal? (none / 0) (#5)
by hezair on Sat Oct 12, 2002 at 11:18:12 AM PST

hello, i'm a bit lost here, not sure where I should ask this (was looking for forums)...

Anyone here have any experience with Drupal v. Scoop? In terms of ..
  • usabilty on the front and back ends, and availablity of modules (where are the scoop modules?)
  • templates-sharing where are the scoop templates?)
  • quality of the code seperated from formatting, etc?
i'm sorry, just a little bit lost-ish.
thanks for any advice...



yes, but how do I create a theme? (none / 0) (#10)
by 606 on Thu May 06, 2004 at 12:18:01 PM PST

Hi all,

I'm going nuts trying to figure this out... how do I add a theme to Scoop? Currently I have default and greyscale installed. I want to make a new one that extends default so I can try some stuff out. How in heck's name do I do it?



Link To Theme Guide No Longer Working (none / 0) (#13)
by honewatson on Sat Jan 28, 2006 at 06:26:59 AM PST

Hey, The link posted before to themes is no longer working. So was just wondering where is the guide to the theme's page?



I want to install a scoop (none / 0) (#15)
by funvideoblog on Tue May 02, 2006 at 08:03:35 PM PST

I want to install a scoop



Can you tell me how to (none / 0) (#16)
by Vincent on Tue Jan 06, 2009 at 12:15:48 AM PST

Wil jij idool worden? Dan krijg je vanaf begin volgend jaar weer de kans bij RTL 4. De zender komt terug met het format X Factor. Wendy van Dijk krijgt dit keer niet de exclusieve presentatie, dat mag ze samen gaan doen met Martijn Krabbé, zo meldt De Telegraaf. Marianne van Wijnkoop zit vrijwel zeker in de jury, de andere twee juryleden zijn nog onduidelijk. Henkjan Smits stapte zoals bekend over naar SBS 6 en Henk Temming in de jury was niet echt een succes. Opvallend is dat de talentenjacht dit keer niet in september begint, maar pas in het nieuwe jaar. Daardoor zal de talentenjacht dit keer tot aan het begin van de zomerperiode duren, een periode waarin de kijkcijfers doorgaans afvlakken. Dat terwijl X Factor al een matig kijkcijfersucces was in vergelijking tot Idols. Een andere opvallende wijziging: X Factor wordt niet langer uitgesmeerd over twee avonden, maar de live-show en uitslag zullen op één avond zijn te zien. Slimme zet, want de kijker heeft volgens mij ook wel door dat hij hiermee aan het lijntje wordt gehouden. In X Factor kunnen mensen van jong tot oud meedoen. In de liveshows strijden ze gecategoriseerd tegen elkaar: jong (tot 26), ouder (26+) en groepjes. De winnaar van X Factor I was Sharon Kips, die inmiddels een televisiecarrière bij de EO is begonnen.



Scoop (none / 0) (#17)
by mike22122 on Wed Feb 04, 2009 at 01:49:19 AM PST

Thank you for your cool article. online tv - To get some TV resouces here: watch tv online and free online tv Thanks



AYpearl (none / 0) (#18)
by Lucy0422 on Thu Feb 26, 2009 at 10:44:09 PM PST

wholesale jewelry,wholesale handmade jewelry,wholesale fashion jewelry,wholesale costume jewelry handmade jewelry costume jewelry jewelry wholesale,discount jewelry,cheap jewelry wholesale pearl wholesale crystal



suggestion (none / 0) (#19)
by vegaskid on Fri Feb 27, 2009 at 06:12:21 PM PST

Have you ever considered adding more videos to your blog posts to keep the readers more entertained? I mean I just read through the entire article of yours and it was quite good but since I'm more of a visual learner,I found that to be more helpful well let me know how it turns out! I love what you guys are always up too. Such clever work and reporting! Keep up the great works guys I've added you guys to my blogroll. This is a great article thanks for sharing this informative information.. I will visit your blog regularly for some latest post.
-----------------------

Regards,
----------------------
Jacky
wedding invitation boxes



Sell Iraqi Dinar (none / 0) (#91)
by emmiejack on Wed May 09, 2012 at 01:40:05 AM PST

Sell Iraqi Dinar - Buy Iraqi Dinar or Sell Iraqi Dinar at DinarBanker - World Leader in Trading Iraqi Dinar and your source for Iraqi Dinars news and Dinar Exchange rates.



Air Max 95 Mens (none / 0) (#96)
by bertramy on Wed May 23, 2012 at 10:24:06 PM PST

Back to back Cheap Nike Air Max against the lower air max 2012 for cheap body can Cheap Air Max 2011 definitely Nike Air Max Classic BW will affect Nike Air Max TailWind the play, but the victory Nike Air Max TailWind brought inspire confidence and morale to promote the same can not be ignored, as the Lakers can use strong willpower to fight to another victory.The second Cheap Air Max TN|Air Max R4 For Sale|Cheap Air Max 24/7 round of the playoffs for the Lakers (micro-blog) vs. the thunder, the final 99-96 defeats the match, will be leveled the score 1-2.After the game, Kobe - Bryant interview. After winning Air Max 95 For Cheap|Cheap Air Max 90|Cheap Air Max 1|Cheap Air Max 2012| Wade in the crowd to grab the rebounds two Air Max 2009 For Sale|Cheap Air Max 2010|Womens Air Max LTD the Kobe good mood.Today, Gasol also attended the conference, he first, after Kobe, Kobe arrived on the funny, seemed very tired sore all over. "Oh" several times, then I shouldn.Saw Gasol with his citizenship award out of the hall, Kobe looked down laughing to say: "I was never got the prize."How about tonight in loses two Air Max 2012 Mens|Air Max Classic BW Womens|Air Max LTD Womens cases pulled one, Kobe said, "we are very patient, and very aggressive.We wind up, do they do in oklahoma." Tonight's Air Max 90 Mens|Air Max 90 Womens game, there are many times Kobe vs Fisher lens, which is used in training and Fisher Kobe often do.Speaking in the old fish before hand, Kobe said: "just like old times."It is also the two person deep feeling, make fun of Kobe, in front of old fish when no pressure: "I love him, but he was too short, he was 5 feet 2 inches (1 m 73)." For this Air Max 24/7 Mens young army, Kobe exclaimed, "they are too fast."About fourth games, Kobe is not a begins with a great score leading the race, "there will be ups and downs, if we let them drop speed, we have a chance to win."Kobe said the reason, fast thunder tonight score is 23, and the Air Max 95 Mens Lakers only 7 points.



I'm trying to install Scoop (none / 0) (#261)
by erkertsmart on Mon Sep 24, 2012 at 05:53:44 PM PST

And it works fine on my computer so far. Thanks for a great guide!
Please visit my site All aboutWomen


sell structured settlements (none / 0) (#346)
by annabellemorell on Thu Nov 01, 2012 at 11:08:20 AM PST

Never care about people who assume that Linux is intended for low level of people because Linux is created for all people. It's very strong when fighting hackers attack. sell structured settlements



One of the mistakes (none / 0) (#347)
by octofrancois on Mon Dec 03, 2012 at 03:43:48 AM PST

One of the mistakes made ​​in the process of installing it could be one cause of the damage or the software application you are using it. Kristen Stewart



the (none / 0) (#348)
by tareelolo on Sun Dec 09, 2012 at 03:26:22 PM PST

Il ya quelques jours, j'ai vu une marque appelée lancel me sens très bien à voir. Voir le bailleur se sentir bien, se sentir l'sac sac lancelraffiné, plus attrayant. J'ai reproduit un certain article accroche sac lancel, amis intéressés peuvent aller jeter un oeil.xcvxcv754hyjy usb safe



Scoop is nice (none / 0) (#349)
by goahora on Mon Dec 10, 2012 at 02:55:02 PM PST

Nice Post. Its really a very good article. I noticed all your important points. Thanks!!



Hackett pas cher (none / 0) (#350)
by matildawicken on Wed Dec 12, 2012 at 08:04:34 AM PST

The methods and techniques you should use to install a program can indeed be different from what already exists. You should read again. Hackett pas cher



http://www.ppireclaimco.co.uk/ppi-calculator (none / 0) (#351)
by mydraid on Thu Dec 13, 2012 at 09:34:36 AM PST

A very awesome blog post. We are really grateful for your blog post. You will find a lot of approaches after visiting your post. I was exactly searching for. http://www.ppireclaimco.co.uk/ppi-calculator



life insurance prices (none / 0) (#352)
by mydraid on Sun Dec 16, 2012 at 07:23:57 AM PST

It feels great to feature much revealing and unequalled articles on your websites.life insurance prices



Jerome Karam (none / 0) (#353)
by mydraid on Sun Dec 16, 2012 at 09:32:01 AM PST

Excellent. Please keep up the good work. Thanks.Jerome Karam



Safelink Wireless (none / 0) (#354)
by similar on Sun Dec 16, 2012 at 01:10:58 PM PST

We are really grateful for your blog post. You will find a lot of approaches after visiting your post. Great work.Safelink Wireless



mens belts (none / 0) (#355)
by similar on Mon Dec 17, 2012 at 09:20:41 AM PST

This will definitely be very useful for me when I get a chance to start my blog. .mens belts



this is (none / 0) (#356)
by tareelolo on Mon Dec 17, 2012 at 12:45:41 PM PST

this is a very good site that provides lots of information about the topics covered in depth. keylogger



Many applications (none / 0) (#357)
by parkermeedy on Tue Dec 18, 2012 at 03:07:11 AM PST

Many applications that can be damaged when in use because there are many things that cause it to happen. We really should be studied well. investment property accountant Melbourne



Bathroom renovations (none / 0) (#358)
by similar on Tue Dec 18, 2012 at 07:27:45 AM PST

Outstanding blog you guys have preserved there, I totally valuate the effort. Bathroom renovations



adt security reviews (none / 0) (#359)
by uilly on Sat Dec 22, 2012 at 07:16:31 AM PST

I m absolutely excited to get to read such a well blog. I would love to read more of your blog.adt security reviews



Want to (none / 0) (#360)
by tareelolo on Tue Dec 25, 2012 at 04:47:00 AM PST

Want to take key-logging to the next level? Grab entire screenshots with this hardware video logger! keylogger hardware



Car Accident Stats (none / 0) (#361)
by uilly on Wed Dec 26, 2012 at 11:07:46 AM PST

This is one of the good articles you can find in the net explaining everything in detail regarding the topic.Car Accident Stats



tapetes para yoga (none / 0) (#362)
by uilly on Fri Dec 28, 2012 at 05:03:52 AM PST

This is really a fascinating blog, lots of stuff that I can get into. One thing I just want to say is that your design is so perfect!tapetes para yoga



jkhjkhj (none / 0) (#363)
by YakutaNopei on Fri Dec 28, 2012 at 06:03:43 AM PST

I've installed the application Scoop but I found some difficulties to operate and develop the application in accordance with what I need. In my opinion, some of the explanations you have provided to the development of this application is quite good and easy to understand. dental insurance accepted in houston



average compensation for whiplash (none / 0) (#364)
by uilly on Sat Dec 29, 2012 at 02:05:36 PM PST

There are so many comments here that are really interesting and conducive to me thanks. for sharing a link especially for sharing this blog.average compensation for whiplash



philippine (none / 0) (#365)
by uilly on Sun Dec 30, 2012 at 09:37:19 AM PST

Do you have any others on this topic? I am also sending it to my friend to enjoy your writing style. Thanksphilippine



Indoor inflatables Lake Villa (none / 0) (#366)
by alex12 on Thu Jan 03, 2013 at 09:35:55 AM PST

Your contents are too simple to read and easy to understand. Indoor inflatables Lake Villa



helping post (none / 0) (#367)
by rajivsingh339 on Sat Jan 05, 2013 at 11:11:43 PM PST

great post.. useful information.. Escorts in Delhi call girl in agra Escorts in Mumbai call girl in New Delhi Agra Escorts Mumbai escorts girl Escorts girl in Delhi Agra call girl rates Mumbai escorts rates



Ornamental Aluminum Fence (none / 0) (#368)
by alex12 on Sun Jan 06, 2013 at 01:18:06 PM PST

The big brother will know that a lot of responsibility is around the corner. And nothing makes a boy happier than proving he's capable of something. Ornamental Aluminum Fence



for more recommended trainers (none / 0) (#369)
by husyy on Mon Jan 07, 2013 at 10:27:29 AM PST

Brilliant stuff, man! What you have to say is really important and I'm glad you took the time to share it. What you said really spoke to me and I hope that I can learn more about thisfor more recommended trainers



jghjghjgh (none / 0) (#370)
by YakutaNopei on Tue Jan 08, 2013 at 01:02:09 AM PST

If you've managed to install a program, it helps you to test the program first with a detailed and complete. There are many testing procedures that must be done. visit link



letmewatchthis (none / 0) (#371)
by alex12 on Wed Jan 09, 2013 at 03:23:29 AM PST

I see the superlative contents on your blogs and I perfectly enjoy going through them. letmewatchthis



more info (none / 0) (#372)
by husyy on Wed Jan 09, 2013 at 12:51:50 PM PST

I'm really glad I've found this info. Nowadays bloggers publish only about gossips and internet and this is actually annoying.more info



escort roma (none / 0) (#373)
by jimmyjam on Thu Jan 10, 2013 at 12:56:26 AM PST

I am confident that the next article will be better. And now I invite to my site...escort roma



When you are still (none / 0) (#374)
by antonylenox on Thu Jan 10, 2013 at 04:16:43 AM PST

When you are still confused with how to use an application a good idea to read it first with either way. If you still have problems, too, you can ask the developers. acompanhantes no rio de janeiro



Nice sharing (none / 0) (#375)
by sanpatrick81 on Sat Jan 12, 2013 at 01:40:02 AM PST

This forum and stories make me fun of this website. Thanks for making such a fantastic site. Love this puthiya thalaimurai
InterContinental Sydney... Nice Day



Hi mates (none / 0) (#376)
by geblex on Sat Jan 12, 2013 at 04:31:06 AM PST

fat loss factor program review Hi mates, pleasant paragraph and fastidious urging commented here, I am in fact enjoying by these. fat loss source



payday loan no credit check (none / 0) (#377)
by husyy on Sat Jan 12, 2013 at 10:35:38 AM PST

I should tell you that your blog articles and other content is extremely great.payday loan no credit check



download here (none / 0) (#378)
by husyy on Sat Jan 12, 2013 at 12:40:03 PM PST

This article has some great and useful information about this subject. Thank you for sharing it in an easy to read and understandable format.download here



valentine dress (none / 0) (#379)
by johnylemon on Sun Jan 13, 2013 at 08:28:46 AM PST

If you want to test changing something to see how it works, try changing the "sitename" and "slogan" site controls to something more appropriate for your site.valentine dress



kitchen cabinets los angeles (none / 0) (#380)
by alex12 on Mon Jan 14, 2013 at 04:37:03 PM PST

The ability for Scoop to control access to various areas of your site is located under the Admin Tool "Groups"kitchen cabinets los angeles



check this out (none / 0) (#382)
by johnylemon on Tue Jan 15, 2013 at 06:39:06 AM PST

Be very careful changing these, because, if you mess it up, you might not be able to view your site.check this out



bla2bla (none / 0) (#383)
by alfredo on Tue Jan 15, 2013 at 09:08:15 AM PST

long en votre temps et effort à recevoir le code de Rouge River en vous offrant sélection de pour un pour vous de partir et venant orange 100% réussie ! Obtenez votre votre propre rio bouygues ainsi que particulier portabilité de nombre nettoyage facile! Orange Eau pu peut avoir aucun secret pour vous , dans votre cas! Vous souhaitez désir d' abonner à pour vous de Orange ? Obtenez votre du numéro rio bouygues , numéro rio orange, numéro rio virgin ou encore votre code rio bandyou et aussi téléphone un nouveau tour de main! Camions offres donne mobile, fixe, Internet, 3G et ainsi que avec clés de haute technologie dans les à travers France, Orange est aussi est généralement sujet entreprises sur terre ! Avec aucun une nouvelle renommée mondiale d'Orange est le sera le tiers mobile opérateur et le Tout d'abord la portabilité opérateur en Les pays européens.



go to the website (none / 0) (#384)
by husyy on Tue Jan 15, 2013 at 09:08:29 AM PST

I am a new user of this site so here i saw multiple articles and posts posted by this site.go to the website



reasons why to use adficient (none / 0) (#385)
by husyy on Tue Jan 15, 2013 at 04:21:18 PM PST

Great webpage brother I am gona inform this to all my friends and contacts.reasons why to use adficient



meladerm coupons (none / 0) (#386)
by husyy on Wed Jan 16, 2013 at 05:59:05 AM PST

Your writers are enormously tremendous. meladerm coupons



stretch mark removal (none / 0) (#387)
by alex12 on Wed Jan 16, 2013 at 06:42:22 AM PST

I feel really nice reading these articles I mean there are writers that can write good material. stretch mark removal



carleysbdentist.com (none / 0) (#388)
by husyy on Wed Jan 16, 2013 at 02:03:53 PM PST

This the way you just did.I'm really impressed that there's so much about this subject that's been uncovered and you did it so well, with so much class. Good one you, man ! Really great stuff here.carleysbdentist.com



look at this (none / 0) (#389)
by husyy on Wed Jan 16, 2013 at 04:19:55 PM PST

What is the name of the template by the way? I was thinking of using this style for the site .look at this



If a program (none / 0) (#390)
by kiarahyam on Fri Jan 18, 2013 at 07:51:28 AM PST

If a program has been installed properly then you can use it with ease. There are many people who could do this if the step is easy. buy 6 sheet



filipinaheart (none / 0) (#391)
by johnylemon on Wed Jan 23, 2013 at 12:07:58 PM PST

There is a reference to |section_links| which when called will take the value from the section_links block and seamlessly place it within the header.filipinaheart



Daftar Harga Hp (none / 0) (#392)
by daftarhargahp on Fri Jan 25, 2013 at 12:08:12 AM PST

harga hp nokia harga hp samsung harga hp harga blackberry harga hp sony ericsson daftar harga hp harga hp harga hp terbaru harga blackberry harga nokia harga hp



website (none / 0) (#393)
by johnylemon on Fri Jan 25, 2013 at 02:27:28 AM PST

HTML, if you don't know that, I would suggest you start with plain HTML before trying to administer a Scoop site.website



Electrician Seattle (none / 0) (#394)
by aliciakinlay on Fri Jan 25, 2013 at 08:00:54 AM PST

It's good we can all get a hint of an application. An application can be a very helpful person, but not many people can wear. Electrician Seattle



hi (none / 0) (#395)
by jaffa99 on Mon Jan 28, 2013 at 01:14:49 PM PST

This is one of the good articles you can find in the net explaining everything in detail regarding the topic Gibson Guitars



Bankruptcy Lawyer New York (none / 0) (#396)
by uilly on Tue Jan 29, 2013 at 10:55:49 AM PST

Reading this information So i am happy to exhibit that I have a very excellent uncanny feeling I discovered exactly what I needed. Bankruptcy Lawyer New York



cheap car insurance quotes (none / 0) (#397)
by uilly on Wed Jan 30, 2013 at 06:36:22 AM PST

I have been curious about this topic and decided to do some research. Your article has some useful information.cheap car insurance quotes



tesoro metal detectors (none / 0) (#398)
by DzoniBaba on Sun Feb 10, 2013 at 05:37:53 AM PST

So many different styles of metal detectors, some cheap some go take out a second mortgage. My neighbor feels bad for me but brings up what a great time we had over two years of metal detecting together. tesoro metal detectors for beginners Also we were now equipped with a big old Bowie knives to cut our plugs, instead of a gardening tool. You can learn an awful lot from them and this can shorten the learning curve tremendously.



Clash of Clans (none / 0) (#399)
by DzoniBaba on Sun Feb 10, 2013 at 05:54:28 AM PST

Use A Search Engine: One place you can find iPhone games download is from your favorite search engine. iPhone has redefined mobile gaming. Clash of Clans this website Why not use this character to make them educated, alert and well-mannered? iPhone games can really help you in this way. Don't be afraid to actually pay for quality.



nice.. i love full (none / 0) (#400)
by cangbho on Thu Mar 14, 2013 at 05:13:44 AM PST

i like this site, the article very usefull like this Konsumen cerdas paham perlindungan konsumen and too slidegossip.com Pusatnya Pencarian Profil Artis, Model dan Talent



hi (none / 0) (#401)
by jaffa99 on Tue Mar 19, 2013 at 09:24:44 AM PST

This is a really good read for me, Must admit that you are one of the best bloggers I have read. Thanks for posting this informative article. tapetes con logo



hi (none / 0) (#402)
by jaffa99 on Tue Mar 19, 2013 at 09:26:13 AM PST

Great info. I love all the posts, I really enjoyed, I would like more information about this, because it is very nice., Thanks for sharing tapetes para gimnasio



new balance 996 (none / 0) (#403)
by DzoniBaba on Tue Mar 26, 2013 at 09:11:31 AM PST

If you plan on running longer distances, I would go with a stability shoe. Most running companies offer at least 2 motion control running sneakers to choose from. our site Orthotics can cost hundreds of pounds, though unless you have a very unusual foot-strike, have unusual physical characteristics (e. one leg longer than the other) or you have suffered from prolonged injuries, these will usually be unnecessary. Did they have my size? Check.



Great post (none / 0) (#404)
by mindfuq on Fri Apr 12, 2013 at 09:29:37 AM PST

rencontre gratuit france rencontre gratuit sexe rencontre gratuit fb rencontre sexe gratuit france sexe gratuit rencontre



Great Article (none / 0) (#405)
by mindfuq on Fri Apr 12, 2013 at 10:46:42 AM PST

J'ai testé ce conseil-là et ai remarqué que certaines femmes étaient plus réceptives à mes avances lorsque je me comportais comme un connard. Cependant, je n'obtenais toujours pas le succès que je souhaitais. Bien que je fusse parvenu à avoir ma première relation sexuelle, j'avais également un grave problème d'estime personnelle. rencontres echangistes sexebook adulte rencontnres femmes mures sexe adulte sur le net



hi (none / 0) (#406)
by jaffa99 on Fri Apr 12, 2013 at 04:01:49 PM PST

The information provided on your site is well researched, this kind of information is not available so easily. Thanks for sharing topes para estacionamiento



hi (none / 0) (#407)
by jaffa99 on Fri Apr 12, 2013 at 04:02:46 PM PST

This is a great inspiring article.I am pretty much pleased with your good work. You put really very helpful information. best regards. tapetes con logotipo



MuratCan (none / 0) (#408)
by MuratCan on Tue Apr 23, 2013 at 04:41:33 PM PST

Do you want to improve your retention rates? Buy it. It's a best choice for you to show your tastes. Let's take action! Welcome to our website to order it. We will try our best to service for you, welcome to buy cheap ugg boots online, you must be satisfied with our products.Kameralı ChatChatChat OdalarıSohbet Mynet | Mynet Sohbetn



hi (none / 0) (#409)
by jaffa99 on Thu May 02, 2013 at 03:58:26 AM PST

Very good points you wrote here .. great ... I think you've done something really interesting points.Keep good job. topes para estacionamiento



hi (none / 0) (#410)
by jaffa99 on Thu May 02, 2013 at 03:59:38 AM PST

There is definitely so much that you can get from this great camp ground. They offer so much good here. You will get so much from staying here. tapetes personalizados



So, you've installed Scoop | 87 comments (84 topical, 0 hidden)
Display: Sort:

Hosted by ScoopHost.com Powered by Scoop
All trademarks and copyrights on this page are owned by their respective companies. Comments are owned by the Poster. The Rest © 1999 The Management

create account | faq | search