wiki

On GitHub, can I fork just a wiki?

早过忘川 提交于 2019-11-29 05:00:50
问题 If I fork repository joe/foo , and it has a Wiki, I won't get the wiki. Right now I'm just interested in forking the wiki to add pages to it. Is that possible without forking the repository? If not, is it possible at all? 回答1: You can't fork it directly on GitHub, but you can get Git access to it by going into the Git access tab of the wiki and you should be able to fork it on your local machine and edit it as much as you want (and even get updates to it!) 回答2: You are able to just clone a

Getting developers to use a wiki [closed]

杀马特。学长 韩版系。学妹 提交于 2019-11-29 00:59:49
问题 I work on a complex application where different teams work on their own modules with a degree of overlap. A while back we got a Mediawiki instance set up, partly at my prompting. I have a hard job getting people to actually use it, let alone contribute. I can see a lot of benefit in sharing information. It may at least reduce the times we reinvent the wheel. The wiki is not very structured, but I'm not sure that is a problem as long as you can search for what you need. Any hints? 回答1: As I

How to make a MediaWiki site multilingual

时间秒杀一切 提交于 2019-11-28 21:38:32
I've installed a MediaWiki site. I think default MediaWiki supports only one language which is configured during installation. Is there a way in MediaWiki to support two or more languages like wikipedia.org? Available languages for a page should be listed on left side like Wikipedia, and when a user clicks a language, the version of the page in the selected language can be seen. What is the conventional way to support multilingualism? There are two different ways to make a multilingual wiki setup. You can have a family of wikis each of which supports a different language. This is how the

Wiki: Current state of the art of Delphi 3rd party TCP/IP components libraries

眉间皱痕 提交于 2019-11-28 21:12:34
问题 I've not been doing bare metal TCP/IP for about 18 months, so I wonder what the current state of the art is. I'm looking for both positive and negative aspects, with development of both server and client software. I will be doing a project that needs a rock-solid TCP/IP layer, so for me that is an important aspect :) For this to become a community wiki, I'm looking for broader answers than just 'rock solid'. So for instance information about the feature-width is also appreciated. I'll be

What's the best open source wiki platform? [closed]

柔情痞子 提交于 2019-11-28 19:04:23
问题 I've been tasked with setting up a wiki for our developers to share project information (Server IPs, Interface Documentation, Architecture Diagrams, etc). My manager has suggested Deki and I've also heard of MediaWiki and Twiki. One project here uses Trac but we don't need it's SVN capabilities and we'd like to have a WYSIWYG editor if possible. We also want to host this wiki locally. I couldn't find many web resources comparing the various wiki platforms and previous stack overflow questions

Python module for wiki markup

人走茶凉 提交于 2019-11-28 04:56:47
Is there a Python module for converting wiki markup to other languages (e.g. HTML )? A similar question was asked here, What's the easiest way to convert wiki markup to html , but no Python modules are mentioned. Just curious. :) Cheers. Django uses the following libraries for markup: Markdown Textile reStructuredText You can see how they're used in Django . Swaroop C H mwlib provides ways of converting MediaWiki formatted text into HTML, PDF, DocBook and OpenOffice formats. You should look at a good parser for Creole syntax: creole.py . It can convert Creole (which is "a common wiki markup

Can I link to a file for downloading (other than PDF) in a GitHub wiki?

那年仲夏 提交于 2019-11-28 04:01:41
问题 When you link to a PDF file using: [download this](file.pdf) it downloads the pdf file. I have an excel workbook that I'd like to allow someone to download using: [download this](file.xlsx) When I click it, it takes me to create a new page in the wiki. Is there any markdown syntax I can add that identifies the link as something to download? If I have to, I can save the excel workbook as a PDF, but it's not going to be pretty. Thank you! 回答1: First, try making a files subdirectory in your wiki

Wikipedia : Java library to remove wikipedia text markup removal

女生的网名这么多〃 提交于 2019-11-28 03:42:25
问题 I downloaded wikipedia dump and now want to remove the wikipedia markup in the contents of each page. I tried writing regular expressions but they are too many to handle. I found a python library but I need a java library because, I want to integrate into my code. Thank you. 回答1: Do it in two steps: let some existing tool convert the MediaWiki mark-up into plain HTML; convert the plain HTML into text. The following demo: import net.java.textilej.parser.MarkupParser; import net.java.textilej

How to pull request a wiki page on GitHub?

倖福魔咒の 提交于 2019-11-28 03:02:55
I saw a wiki page on GitHub that isn't open for editing. Then I forked the project, edited it on "my end" and tried to do a pull request. It turns out, the wiki isn't in the project, and there isn't a way to commit changes to it. Other than e-mailing, is there a way to proceed if I want to suggest a change on the wiki in this case? At this point I found out what seems like an alternative under "Questions with similar titles", but I couldn't do the pull request with it yet, and so I'm not sure submodules is a good way for this purpose. I now see I could probably branch it somehow... So is this

What's the easiest way to convert Wiki markup to HTML?

瘦欲@ 提交于 2019-11-28 03:00:34
问题 I'm building a website that requires very basic markup capabilities. I can't use any 3rd party plugins, so I just need a simple way to convert markup to HTML. I might have a total of 3 tags that I'll allow. What is the best way to convert ==Heading== to <h2>Heading</h2> , or --bold-- to <b>bold</b> ? Can this be done simply with Regex, or does somebody have a simple function? I'm writing this in C#, but examples from other languages would probably work. Follow up: This is such a small part of