Suggestions that appear on this page:
<tt>
and <n
owiki>
tags)
<label>
tag in the HTML source for the "minor edit" checkbox
Suggestions that have been placed on their own separate pages:
Please add new requests to the end of this page.
Cliff, thanks for taking the time to do all of this. I think it is useful to experiment with changes that may make Wikis easier to both read and write. I like conducting these experiments on a site where these discussions are on-topic. Perhaps if people on WardsWiki see them when you have made the changes, we could get Ward to do something similar on his Wiki.
You might want to change the minor-edit checkbox text to be "This change is a MinorEdit" and link to the MinorEdit page.
You might also want to make a help page for the whole of the wiki. Just splat something else on the link row at the bottom of the page. "MeatballWiki | RecentChanges | UserPreferences? | WikiHelp?" -- SunirShah
Sounds like another UserPreference? to me. I'll probably keep the links on the bottom, and add an option (default off) to also display the "Goto Bar" on the top. (Personally, I don't like having a lot of interface stuff at the top. I like having just the title followed by the text. Even the logo will probably become optional (default ON).) [See the preferences to enable/disable the top link bar.]
font size=-1
" and using a format like Link | Link | Link (with no additional text). ((Editor's note: I can't tell who originally wrote this line. --JustinMcMurtry, 2006-06-04))
I've been experimenting for a while with various layouts for lists of links. I believe in unobtrusive sidebars. Here are some examples:
Notice how with the booklist I list them first on the left and again on the bottom. This is much more LynxFriendly than only listing them once. -- SunirShah
One possibility is to support an all-caps pattern, for words such as PHP or WIKI.
I'm even hazy on the current MeatballWiki pattern. I'm still not sure whether InterNIC or InterNic is the better choice, but I went with the correctly spelt one as you can see. LinkPatterns need to be chosen with care. They really can set the tone for the wiki. Just consider the horrors (or benefits!) of a freeform LinkPattern. -- SunirShah
It would be nice to see URLs rewritten in the form http://www.usemod.com/mb/RecentChanges
.
[Comments about browser caching removed; no caching problems observed on MeatBall for quite some time.]
Any chance we'll see this done with MeatballWiki itself? -- anon.
The problem turns out not to be quite so simple in practice, especially if you have subpages turned on. With subpages, a URL like http://www.usemod.com/mb/FooBar/Discussion
would cause the browser to think that all relative references are actually in /mb/FooBar/
, instead of /mb/
. This can be worked around in the mod_rewrite
rules though.
Second problem is that there isn't much point in supporting that simplified URL format if no one knows about it (or remembers the fact), which would likely be the case if the wiki engine is spitting out the usual /cgi-bin/mb.pl?parameter
links. Thus, the wikiengine needs to be hacked to generate the simplified URLs. That much is simple to do ... but then you now have a wiki engine that's generating static-looking URLs for lots of extra links that shouldn't be static (and shouldn't be tempting to webcrawlers). Inserting an extra parameter into the ScriptLink
subroutine is easy enough, although it then requires patching all the calling instances to include that parameter.
For an example of a usemod wiki which has been modified in this manner, come visit the IaWiki [1]
-- EricScheid
The site would index better if the search engines were aware that WordsSmashedTogetherLikeSo were really "Words Smashed Together Like So" (so to speak). To that end, I recommend adding some META tags during the page generation:
<META NAME="KEYWORDS" CONTENT="WikiName Wiki Name">
<META NAME="DESCRIPTION" CONTENT="WikiName Wiki Name">
This will fail for pages like InterNIC, but it would definitely improve the average search case from Google. (Consider theoryofrelativity vs. theory of relativity).
When I wrote my WikiEngine (within Emacs), I decided to use the first paragraph with at least two sentences as the meta description tag. This works astonishingly well. In a second step, I've pulled all these "summary paragraphs" together into one huge site summary page [2]. Take a look at the page. All the paragraphs read like decent summaries / suitable meta descriptions.
I'd like to make it easier for new users to get into MeatballWiki, which is nearing 1,000 pages of disorganized splendor. I think a big and shiny "StartHere?" link on the link bar would be helpful, and baking CategoriesAndTopics into the site just a little more would also be helpful. Especially since it encourages the further use of categories. Consequently, I'd like to make the following patches (in bold):
sub GetGotoBar { my ($id) = @_; my ($main, $bartext);
$bartext = '' . &GetStartLink() . ''; $bartext = ' | ' . &GetPageLink($HomePage); if ($id =~ m|/|) { $main = $id; $main =~ s|/.*||; # Only the main page name (remove subpage) $bartext .= " | " . &GetPageLink($main); } $bartext .= " | " . &GetPageLink("RecentChanges"); $bartext .= " | " . &GetPrefsLink(); $bartext .= " | " . &GetCategoryCategoryLink(); if (&GetParam("linkrandom", 0)) { $bartext .= " | " . &GetRandomLink(); } $bartext .= "<br>\n"; return $bartext; }
sub GetStartLink { return &ScriptLink( "StartHere", "StartHere" ); }
sub GetCategoryCategoryLink { return &ScriptLink( "search=CategoryCategory", "Categories" ); }
You may want to replace the magic string literals with variables in the config file. -- SunirShah
Why not make it HelpPage?? -- CliffordAdams
The reason why I want to call it StartHere? in <STRONG/> tags is because it is a big loud suggestion to START HERE! It can be used as a help page. People will get that idea after they START HERE! -- SunirShah
Category Link:
I don't think the category index searches are common enough to be worth putting on every page. I think it would be much better to create a linkbar along the top of RecentChanges with a few common indexing methods. You could even create a kind of category-bar with the most common categories like:
Categories: [Home Pages] [Wiki Technology] [Interface Design]
I'd like the category system to be used more, so I'd like to encourage it explicitly. A little CommunityExpectation magic. Further, there are a lot more common categories out there that haven't been created. CategoryWebLog for instance. I don't want to limit it to what we've created so far despite our laziness. -- SunirShah
Please make the following patch:
sub DoEdit { ... $header = "Editing " . &GetSearchLink($id); ... print &GetHeader("", $header, ""); }
so that the edit page has BackLinks too. (I removed &QuoteHtml($header). Is this bad?) -- SunirShah
The edit page is supposed to be different from the ordinary browse page. I also don't know if it's really valid to have links in the page title (in the HTML header). (You could work around that with a bit more code.) -- CliffordAdams
The patch I submitted changed the <H1/> title, not the <HEAD/> section. This is useful when defining one of the WantedPages that you've stumbled upon and you want the other contexts in which it has been used. I certainly use this feature when it's available on other wikis. Currently, I just punch in the search= URL manually, but that's not really intuitive. -- SunirShah
In addition to the static contents of the link bar (MeatballWiki | RecentChanges | Preferences | Random Page), have a community-editable chunk of text inserted there ... it would thus appear on all pages and not rely on the visitor going to MeatballWiki or RecentChanges. Limit it to the first N words before the first horizontal rule (thus leaving a place for discussion below). Have it do LinkPattern changes (but not style formatting, and definitely not image URLs).
Pro: This could be used to organise BarnRaisings, to highlight discussions important to the community (like "pay up or we shut down"), or even to display MOTD inanities.
Con: Open for abuse (but then, that's what SoftSecurity is for).
See FortuneCookie, specifically ZWiki:AnnoyingQuote
Rationale: More-directed searching provides more-relevant results.
Example: Go to SoftSecurity and try finding "role model" in the text of that page—fail. Now try searching for "role model" using the search function built into wiki—fail for a different reason.
Suggestions:
Questions to consider:
Compare: Page neighborhood (below)
(Is there something similar to this already?)
This feature would allow a user to input a page name, or a list of page names resulting from a more general search, and then return a list of all the pages that are linked from those pages, sorted and grouped (with "hop" counts).
The collation could be done in either direction:
Now that I've written this, I'm more convinced this would be a useful navigation tool. Not all searching and navigation needs to be global (site-wide), and this short-range navigation would assist the information scent foraging instincts. (dang it, I need to learn more perl)
Similar to clicking the title of the current page to reveal all of its backlinking pages, include an option (possibly on that backlinks page) to reveal the top X referrers to that page, including perhaps even non-wiki referrers.
A first patch implementing this concept is in UseMod:WikiPatches/GetReferersBar. This patch tracks both referring and referred-to pages.
Pros:
Cons:
See also:
Grep the RecentChanges and RecentEdits?, extract the UserNames, sort and collate ... might work to generate greater sense of community ... sometimes I feel like some lonely ghost wandering the corridors of wiki, not seeing the other ghosts, not knowing who else is there.
A user preference to specify a URL to a CSS stylesheet for this wiki. Improve the experience for community members. Not thinking about stylesheet vs wiki content, just the whole page viewpoint. -- EricScheid
I've looked into UserStyleSheets in the meantime, but have found that they are not site specific - they apply to every site you visit. So, unless the wiki you visit goes to the trouble of tagging their pages with a class attribute you could key off, your user style sheet will apply everywhere. Ugh.
I've installed UseMod 0.92 on a linux server and have hacked up the code to store a stylesheet setting in the user preferences. So far it [seems to be working], even at this basic level. I'm getting lots of ideas of how to extend the functionality by adding class attributes to different logical elements on the page (eg. being able to classify the link types) -- EricScheid
Update - I've further cooked the 0.92 source to provide semantic meaning to parts of the page. Try going there and setting your stylesheet preference to "/wiki.css" -- that stylesheet says anchors of class "UnknownWikiPage?" should be small red links, for example. I've also defined a class for WikiPageLink?s.
Do we like to vote, if the CSS implementation should be made as at IAwiki.net. My vote: YEA!!
Couldn't the CSS in fact be saved in wiki, too? like JuhaKrapinojaCss?, for example?
--JuhaKrapinoja
Similar to the user preference for a stylesheet URL, a user preference for a JavaScript URL. The brave could go across to [my wiki] and set the URL to "/clippings.js" to see one possibility.
Unlike the NakedWiki concept, which strips off the site-context but still wikifies the content into an html page, raw output would simply provide the raw unwikified original text. Why would this be useful? Think of setting your stylesheet preference to a URL of a wikipage, one which anyone could edit.
Say there was a page named UnWantedPages?, and on that page people copied various link patterns which currently show on WantedPages, and by virtue of appearing on that special page those link patterns would become demagicked ... no longer appearing on WantedPages, and no longer creating the action=edit link everywhere that link pattern appears. Like any page, there could exist other comments, if debate is required. Any page which does actually exist maintains its manna.
This could be used to deactivate UserNames of past visitors with no home page who are no longer active in the community, and to deactivate example link patterns without the tedium of </nowiki>.
Cons: if you're not aware of it you could get mighty frustrated when smashing words together to make a new link pattern.
This violates the PrincipleOfLeastAstonishment?. The less magic, the better.
Now that I'm coding again, I find myself writing <tt><n
owiki></nowiki></tt>
a lot and it's a pain in the butt. At the minimum, it would be nice to use a tag to shortcut the two, like <code>
. And the best, I'd like easier syntax. MoinMoin uses {{{ }}}
, for instance.
{{{...}}}
on the very same line is inlined non-wikimarkup text, and on different lines it's a source display. Since using even six characters was annoying in developer wikis, this is now extended by `...` (backtick characters) being inline verbatim typewriter too, which also is similar to reStructured text. -- jhe
Whatever it is, the syntax should distinguish between matching in a single paragraph and the whole document. In the former case, it should act like <tt><n
owiki></nowiki></tt>
; in the latter case, it should act like <p
re></pre>
.
-- SunirShah
I think the <code>
tag does that. -- AlexSchroeder
Similar to <n
owiki>
, except that the only thing it suppresses is the LinkPatterns. Most useful for code blocks wherein you want to bold or italicize certain lines/symbols. Suggested tag for this purpose: <nolink>
.
HTML 3.2 includes a <STRIKE>
tag pair, which draws a horizontal line through the tagged text, striking it out. This would be useful in editing/refactoring content ... for those occassions when the plain english explanation [of edited text] is just way too long winded. Its a conventional editoring technique/markup, and bridges the gap between incorrect content and corrected content.
<STRIKE>
the "currently" and insert "no longer". Would've been easier to read, and less clumsy.
What should the text formatting rule look like though?
This turns out to be easy to do - insert these two lines into sub CommonMarkup
, inside the if block which does the substitutions for '''''
s/-+\/(.*?)\/-+/<strike>$1<\/strike>/g; # --/stricken-text/-- s/-+\\(.*?)\\-+/<strike>$1<\/strike>/g; # --/stricken-text/--
This will actually match -/stricken/- and also -\stricken\-, and even ---/stricken/---, which makes the stricken text easier to read in the edit form.
While I was there, I also inserted the following two lines:
s/\*(.*?)\*/<strong>$1<\/strong>/g; # *bold text* s/_(.*?)_/<u>$1<\/u>/g; # _underline text_
mostly to support the conventions used in email.
The Edit text of this page link is a very important one... So important that it might be well-placed on the top link bar. There ought to be some easy patch for making this change. (BTW - I'm not suggesting that this wiki do this here. I'm simply putting this suggestion here because someone posted a statement saying that this suggestion page was very big on MeatBallWiki... and maybe even getting more attention than UseMod:UseModWiki/Suggestions... I'm desperate) --MatthewSimpson
If you are desperate and looking for a patch -- go for the source. Look at the sub GetFooterText. GetFooterText adds GetGotoBar and the edit link. Take that piece of code and add it to the GetHeader sub, right there at the end, where GetGotoBar is called as well. Don't be afraid to hack the UseModWiki script. Also note how I "faked" the link on my own homepage on this wiki. -- AlexSchroeder
<label>
tag in the HTML source for the "minor edit" checkboxFix the HTML output of MeatBall so the "This change is a minor edit" becomes part of the checkbox it refers to - currently it is violating good design!
<input type="checkbox" name="recent_edit" value="on" id="recent_edit"/><label for="recent_edit">This change is a minor edit.</label>
Here are two feature requests:
-- EarleMartin
<a href="mb.pl?MeatballWikiSuggestions" title="Meatball Wiki Suggestions">MeatballWikiSuggestions</a>
. Might help out screen readers, too. -- ChrisPurcell
CategoryWikiTechnology CategoryMeatballWiki