Welcome Guest ( Log In | Register)



 
Reply to this topicStart new topic
> Tutorial Index Suggestion
BuffaloHELP
post May 29 2007, 12:31 AM
Post #1


Desperately seeking "any key" to continue...
Group Icon

Group: Admin
Posts: 3,438
Joined: 23-April 05
From: Trap17 storage box
Member No.: 6,042



A member (.nol) brought up an excellent point today. Index (table of content) of tutorials.

An easy way to browse what kinds of tutorials are available in Trap17--both general and GFX. The simplest way of doing this is to generate RSS by sub-forum and then present it via Annex (for those who do not know it's our Community page). Or, if OpaQue grants, I can include HTML code to Tutorial Index forum post. Either way, it should be automated and updated according to RSS feed.

RSS is the easy part. What I would like for all members of Trap17 to do is think about how RSS can sort by keywords or same keywords.

Basically, if titles are:
  • Photoshop: Lightning Filter
  • Sig Title: Sky
  • Lens Flare Effect PS
  • Burning Heart Effect
they should be listed under:
  • Photoshop Tutorial
    • Photoshop: Lightning Filter
    • Lens Flare Effect PS
    • Burning Heart Effect
  • Sig Tutorial
    • Sig Title: Sky
Well, you get the idea. Start discussing how we should categorize and how to approach. I think we'll be using RSS2HTML conversion program, similar script used in GFXTrap.com. PHP is the choice of programming language. Build an array of specified keywords and sort them accordingly. So I'd like to know what keywords are important. Those titles fall out of these keywords should be listed under MISC category.

Thank you everyone.
Go to the top of the page
 
+Quote Post
Saint_Michael
post May 29 2007, 03:11 AM
Post #2


$p4m 0n j00 $h4m3 m3 0nc3 $p4m 0n m3 $h4m3 m3 7\/\/1c3
*********************

Group: [HOSTED]
Posts: 6,315
Joined: 21-September 04
From: 9r33|\| 399$ 4|\|D 5P4/\/\
Member No.: 1,218
T17 GFX Crew



RSS Feed would be insufficient due to the fact that when a new post is made on that tutorial it will be brought to the top of the list and of course moving the previous ones down. So with that happening you won't be able to see any of the older tutorials unless you close every tutorial topic that has been made to prevent people from posting. With Keywords you would have to add all the keywords into Topic title, description and all over tutorial for search engines to even pick it up, because RSS doesn't have a keyword element in it's coding structure that I am aware of.

Of course I tried looking up keyword RSS feed generators and the only that comes up doesn't work on specific keywords I used for the trap17 forums

http://www.researchbuzz.org/tools/kebberfegg.pl

Building a tutorial index on a RSS feed is a lot more complicated then it looks because you limited to what xml elements you can use for a RSS feeder to pick up and then display them and so your best bet is to create a tutorial system like pixel2life, and then build a RSS feed component around that. I have seen a few IPB mods for setting up a tutorial system on the board you could swing that way as well, of course you would have to downgrade to IPB 2.1 to use them.

Of course you could use the customization page mod and set up a tutorial index that way, but again the problem is setting up the keywords to be pick up by the search engine to be index properly
Go to the top of the page
 
+Quote Post
BuffaloHELP
post May 29 2007, 06:22 AM
Post #3


Desperately seeking "any key" to continue...
Group Icon

Group: Admin
Posts: 3,438
Joined: 23-April 05
From: Trap17 storage box
Member No.: 6,042



What you are considering is a fact. That's why I suggested array of keywords, such that

CODE
$array1 = array("gfx", "photoshop", "brush", "effect")
$array2 = array("sig", "signature")

foreach (rss =>array1 or rss =>array2) {
  if (any keyword in array1 match RSS title) {
      photo[$i] = RSS title
      $i++
  }
  elseif (any keyword in array2 match RSS title) {
      sig[$j] = RSS title
      $j++
  }
  else {
          misc[$k] = RSS title
  }
}

sort (photo[$i]) ... sort all

echo "Photoshop Tutorials"
for ($i = 0; $i < array number; $i++) {
    echo "<a href=\"$photo[$i]\">$photo[$i]</a>"
}
echo "Signature Tutorials"
for ($j = 0; $j < array number; $j++) {
    echo "<a href=\"$sig[$j]\">$sig[$j]</a>"
}
...
and  echo rest of unrelated titles


This will sort within keywords and display sorted under each designated category. The sorting is easy. What it needs to be done is to find keywords that are most effective before sorting.

This will eliminate the sort by only post date. I wouldn't make suggestions unless I have considered some possibilities. wink.gif

Another sort() is to sort array using another array (array_multisort), which isn't my field of expertise. Thus I have made my case known.
Go to the top of the page
 
+Quote Post
rvalkass
post May 29 2007, 08:10 AM
Post #4


apt-get moo
Group Icon

Group: [MODERATOR]
Posts: 2,056
Joined: 28-May 05
From: Hertfordshire, England
Member No.: 7,593
Spam Patrol



The problem with sorting by keywords is that you have no way to really choose which category a post ends up in. Certain tutorials could also fall into multiple categories, and the current script, as shown above, would limit each one to only one category. Perhaps it would be better to just pick every tutorial out of RSS feeds and put the information in a database. This could then be searched by anyone browsing the list of tutorials.
Go to the top of the page
 
+Quote Post
Imtay22
post May 29 2007, 07:06 PM
Post #5


Super Member
*********

Group: Members
Posts: 292
Joined: 27-January 07
From: Winter is cold here.
Member No.: 37,984
Spam Patrol



I remember this discussion in the shout box. I had an idea, but I just forgot it. I just thought of another one, though. The RSS one was good, here is an add-on to it. You can have a link to the subforum for the RSS in the bar at the top just under the logo where it says "Search," and "Xisto," and "Free Web Hosting," just under the community drop-down. That's my input.
Go to the top of the page
 
+Quote Post
BuffaloHELP
post May 30 2007, 06:09 AM
Post #6


Desperately seeking "any key" to continue...
Group Icon

Group: Admin
Posts: 3,438
Joined: 23-April 05
From: Trap17 storage box
Member No.: 6,042



By default, IP.Board v2.x and above has RSS feed generated automatically. It's located at the bottom of every page. GFXTrap.com is receiving RSS feed from Graphics forum since the beginning. ACP allows RSS topics to be isolated to any forum(s) of choosing. So the location and RSS generating aren't the issue.

I am in the process of making xml to sort by title. If this works the second implement would be to sort by relevant keywords and list under said categories. Anything that does not fit to keywords or category will be listed under MISC category. If topics that are miscategorized all we have to do is edit the topic title. Then the title short will take care the rest.

Since it would be written in PHP, I'll be hosting it with gamma server (not the forum server) and iframe to the post or the forum description area.
Go to the top of the page
 
+Quote Post

Reply to this topicStart new topic

Collapse

> Similar Topics

Topics Topics
  1. suggestion(6)
  2. suggestion for Shoutbox(6)
  3. New Forum Or Sub Forum(1)
  4. Suggestion (mirc)(19)
  5. Posts Suggestion(1)
  6. Database Forum(4)
  7. Suggestion For A Board(0)
  8. A Good Suggestion...(2)
  9. Suggestion(4)
  10. Cpanel Suggestion(8)
  11. Suggestion: E-mail Reminder, Or Taskbar Application(4)
  12. Suggestion For Additional Credits(10)
  13. Negative Hosting Credits Suggestion(0)
  14. More Sections Needed(7)
  15. Credits Suggestion(3)
  1. Avatar Suggestion For Admin And Mod(11)
  2. A Suggestion To All Mods And Admins.(13)
  3. A Suggestion About Post(2)
  4. Gfx Section Suggestion(8)
  5. A Suggestion: Pm Or Email Us(0)
  6. Limiting Max Number Of Credit Posts Suggestion?(19)
  7. Fantasico Issue / Suggestion(3)
  8. 250 Credits For One Year Of Hosting Suggestion(14)
  9. Keyword Relevancy(0)
  10. Illegal Post Suggestion(4)
  11. Suggestion-a Crafts Forum @ Trap17(1)
  12. Suggestion: "buying" More Space(5)
  13. [suggestion] Allow Users To Delete Their Own Topic(4)


 



- Lo-Fi Version Time is now: 27th July 2008 - 02:41 AM