wiki

How do you normally make a program look beautiful?

How can I make an Application look nice and not like an amateur pulled it together? I mean graphic-wise. Is there some sort of book you can read regarding beautiful program layouts, etc? I put this in Community Wiki so please feel free to leave your opinions that way we can all learn. :D Edit: Oh my god. I completely forgot to mentio...

How can I store attachments on the filesystem instead of in the DB in XWiki?

Right now, attachments get stored in the DB instead of on the filesystem. Is there a configuration option or a plugin that can be used to change XWiki to store and read attachments from disk? I see that there are hooks in xwiki.cfg file for swapping out the Java class that implements attachment storage. So far I've come across this us...

Wiki with API for creating/editing posts

Mediawiki is the only wiki software I've found that has an API for creating/editing posts (http://www.mediawiki.org/wiki/API). Are there any others? ...

Is there a WIKI (preferably .NET) that uses Markdown as it's editor?

I am looking to set up an internal wiki for our development/design team. The key feature I am looking for is a very simple editor with revision history. Ideally, the uber-simple markup system StackOverflow.com uses (Markdown) would be great. One of the reasons for this is that we have non-technical people (managers, sales people, desi...

Integrating Wiki user accounts with backend database

I have a web application deployed on tomcat, this application stores all its user account info (name, password, emails etc) in a database, in this scenario MS SQL server. I've set up a wiki, a JSPWiki to be precise, as this drops into Tomcat nicely. Is there some way I could integrate the wiki user information to the user table in my a...

Inserting special character in Redmine wiki page

Hi everyone! I'm using redmine and I'm trying to insert the special character "|" inside a table in a redmine wiki page. I don't want this character to be parsed as a column separator. I've achieved this by doing a < code >|< /code> around this character, but I don't want to use the code tag, since this character will gain code attribut...

Minimalistic tools for developer documentation

I am currently working on a large PHP CMS / Framework and documenting it extensively as I go along. In addition to phpdoc-style inline comments, I need to document XML structures, details on concepts and practices, write HOWTOs and so on. At the moment, I am using simple OpenOffice documents for that, but I'm unhappy with it and looking...

Delete a Sharepoint Wiki page that has no menu

Hi I created a Wiki in Sharepoint 2007, and then deleted the Home page. Now when I go to the AllPages.aspx (ie the root of the wiki) I've got no menu options. I cannot delete the Wiki page, or add any pages to it. Here's what I see - there's no way to delete it as far as I can tell. Any help greatly appreciated, don't want to start...

C# text.Replace preserve case

I am working on a wiki bot for my communities wiki that uses the DotNetWikiBot Framework; it is to find a word that is commonly a typo (such as "abilty") and replaces them with the correction (such as "ability"). This works as is is coded: p.text = p.text.Replace(@"\b" + typoArray[x, 0] + @"\b", typoArray[x, 1]); However this will re...

Which issue tracker do you recommend?

I am looking for an open source issue tracker with Multiple projects Wiki Web API to integrate with CRM and other clients Optionally Extendible via custom plugins or modules Preferably written in PHP or Python. I am okay with other languages as long as it works on Unix/Linux ...

Using a single wiki table for multiple subject tables

Hello, I wonder to know if someone can help to understand if I'm doing well using a single table with wiki content for multiple subjects, so: TABLE wiki ==> wiki_id wiki_content wiki_language wiki_user_id TABLE houses house_id house_name house_year house_location ==> wiki_id TABLE architec...

Wiki Database, is there one?

I was searching the net for something like a wiki database, just like wikipedia but instead stores structured content, editable by users. What I was looking for was an online database accessible by everyone where people can design the schema and data with proper versioning of both schema and data. I couldn't find any such site. I am not ...

Wiki page creation similar to Trac, any?

Hello, I want to create private wiki pages and want to publish the same only for inetrnal. Can any list the easiest way to do this. Some are Twiki, mediawiki, intodit. Thanks in advance ...

Where to put system documentation?

Where would you put documentation for a team web project? Our system is based on ASP.NET/C#, but I guess this problem is applicable to many other solutions/languages. Currently, we have the following types of documentation: Text, descriptions, guides etc (mostly text, but some .doc) Visio files (graphs, flowcharts, database diagrams)...

A recommended Wiki for document collaboration / management?

I'm trying to convince the team I'm working for (which consists mostly of semi-technical or non-technical people) to drop our Windows-shared-folder stored word document based method of working on shared documents (product documentation, requirement documents, design documents, marketing material etc.) in favor of some web based Wiki like...

Version control of a large collection in a database for undo purpose

In have entities: Collection and Item. Each collection has many items. Both Collection and Item can be edited collaboratively by all users of the application. I have to provide a way to undo changes. Versioning Item records is straightforward, the difficult part is to version the relation between the Collection and Item. The allowed op...

What's the best wiki software for me to modify for a proof-of-concept?

My apologies if this is too subjective of a question. I have a theory about wiki design; specifically, how a particular change to the model embodied by the wiki software would make the wiki revision process more closely resemble the open-source development process and thereby reap benefits that the current wiki model does not. I would ...

Get count of missing links in MediaWiki?

How can I get the number of missing links that are in my Wiki? We have a lot of articles about all kinds of things that haven't been written or stubbed yet, but we want to provide a progress bar so the community can see how close we are to being more complete. You can see the wiki here: http://worldeditor.org If you have any tips relat...

How can a robots.txt ignore anything with action=history in it?

I have a MediaWiki, and I don't think I want Google indexing the history of any page. How can a robots.txt disallow URLs with action=history in the query string? ...

Is there a good WikiField for django models?

Is there a simple way I can add a "WikiField" to a model I have in my application? I think the most important requirements are: A text field that can be added to any model. simple wiki markup or editor widget that enables text formatting and easy insertion of links and images. saves revision history with author information, and easily...