Skip to content

Commit

Permalink
add (only until I have a query) hard-coded topics list
Browse files Browse the repository at this point in the history
  • Loading branch information
scc committed Sep 28, 2006
1 parent 1b2bdf8 commit 6ff9cb4
Showing 1 changed file with 173 additions and 2 deletions.
175 changes: 173 additions & 2 deletions plugins/Ajax/htdocs/images/sd_autocomplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,181 @@ YAHOO.slashdot.sectionTags = [ "apache",
"vendor_amd",
"yro" ];

YAHOO.slashdot.topicTags = ["keyword",
"mainpage",
"apache",
"apple",
"askslashdot",
"awards",
"books",
"bsd",
"developers",
"features",
"games",
"interviews",
"polls",
"radio",
"science",
"search",
"tacohell",
"yro",
"be",
"caldera",
"comdex",
"debian",
"digital",
"gimp",
"encryption",
"gnustep",
"internet",
"links",
"movies",
"money",
"news",
"pilot",
"starwars",
"sun",
"usa",
"x",
"xmas",
"linux",
"java",
"microsoft",
"redhat",
"spam",
"quake",
"ie",
"netscape",
"enlightenment",
"cda",
"gnu",
"intel",
"eplus",
"aol",
"kde",
"doj",
"slashdot",
"wine",
"tech",
"bug",
"tv",
"unix",
"gnome",
"corel",
"humor",
"ibm",
"hardware",
"amiga",
"sgi",
"compaq",
"music",
"amd",
"suse",
"quickies",
"perl",
"ed",
"mandrake",
"media",
"va",
"linuxcare",
"graphics",
"censorship",
"mozilla",
"patents",
"programming",
"privacy",
"toys",
"space",
"transmeta",
"announce",
"linuxbiz",
"upgrades",
"turbolinux",
"editorial",
"slashback",
"anime",
"php",
"ximian",
"journal",
"security",
"hp",
"desktops",
"imac",
"media",
"networking",
"osnine",
"osx",
"portables",
"technology",
"utilities",
"wireless",
"portables",
"software",
"ent",
"biz",
"media",
"gui",
"os",
"biotech",
"books",
"wireless",
"printers",
"displays",
"storage",
"lotr",
"matrix",
"windows",
"classic",
"emulation",
"fps",
"nes",
"pcgames",
"portablegames",
"puzzlegames",
"rpg",
"rts",
"xbox",
"ps2",
"gamecube",
"scifi",
"communications",
"robotics",
"google",
"it",
"politics",
"worms",
"databases",
"hardhack",
"novell",
"republicans",
"democrats",
"mars",
"inputdev",
"math",
"moon",
"networking",
"supercomputing",
"power",
"sony",
"nintendo",
"e3",
"nasa",
"yahoo",
"vendors",
"vendor_amd",
"vendor_amd_64chip",
"vendor_amd_announce",
"vendor_amd_ask",
"vendor_amd_64fx",
"vendor_amd_laptops",
"vendor_amd_multicore",
"vendor_amd_ostg",
"backslash" ];

var actionsDS = new YAHOO.widget.DS_JSArray(YAHOO.slashdot.actionTags);
var sectionsDS = new YAHOO.widget.DS_JSArray(YAHOO.slashdot.sectionTags);
var topicsDS = sectionsDS;
var tagsDS = sectionsDS;
var topicsDS = new YAHOO.widget.DS_JSArray(YAHOO.slashdot.topicTags);
var tagsDS = topicsDS; // until we get a query

YAHOO.slashdot.dataSources = [tagsDS, actionsDS, sectionsDS, topicsDS];

Expand Down

0 comments on commit 6ff9cb4

Please sign in to comment.