Difference between revisions of "Building a Wiki"

From MgmtWiki
Jump to: navigation, search
(The Problem:)
(The Problem:)
Line 11: Line 11:
 
Constructing a set of description pages on a site that can be modified by any person that is willing to establish a persistent identity.
 
Constructing a set of description pages on a site that can be modified by any person that is willing to establish a persistent identity.
  
At first it seemed like the logical choice was to build a [https://www.mediawiki.org/wiki/MediaWiki MediaWiki] instance that was part of the [http://tomjones.us tomjones.us web site], but there were multiple challenges that were related to the manner that MediaWiki is designed, or evolved, into its present form. Specifically MediaWiki is a unified web site that depends upon a tight integration with a SQL data base during its entire lifecycle from initial create and updating as determined by [https://www.wikipedia.org/ Wikipedia] from which is was derived. In that mode it can easily be built on an wide variety of infrastructures which are known in current jargon as IaaS, or Infrastructure as a Service. The current [http://tomjones.us tomjones.us site] was created as a SaaS, or Software as a Service from the Azure cloud. After a great deal of effort to integrate MediaWiki into that site, it was abandon in favor of a separate IaaS implementation of MediaWiki without the use of Azure SQL services as described below.
+
At first it seemed like the logical choice was to build a [https://www.mediawiki.org/wiki/MediaWiki MediaWiki] instance that was part of the [http://tomjones.us tomjones.us web site], but there were multiple challenges that were related to the manner that MediaWiki is designed, or evolved, into its present form. Specifically MediaWiki is a unified web site that depends upon a tight integration with a SQL data base during its entire lifecycle from initial create and updating as determined by [https://www.wikipedia.org/ Wikipedia] from which is was derived. In that mode it can easily be built on an wide variety of infrastructures which are known in current jargon as IaaS, or Infrastructure as a Service. The current [http://tomjones.us tomjones.us site] was created as a SaaS, or Software as a Service from the Azure cloud. One example of the problems is found [https://phabricator.wikimedia.org/T192965#4204936 in the way that fulltext catalogs are trouble in Wikimedia]. Not only is the initial creation with a default value of '', but all the data placed in the table is character data installed in a varbinary field. After a great deal of effort to integrate MediaWiki into that site, it was abandon in favor of a separate IaaS implementation of MediaWiki without the use of Azure SQL services as described below.
  
The choice of MediaWiki as the solution (or infrastructure platform) was not a requirement for such a sharing environment. The Wikipedia model is well-known and used by many in the computer industry, but it has evolved over time and does not reflect what a new, "clean room" design might provide. Besides the lack of any modularity, as noted above, some of the internal structures are not user friendly. For example the method for building an maintaining a table is bizarre. Other solutions, like Google Docs, work well for an office environment, but not for collaboration. There are good collaboration tools, like
+
The choice of MediaWiki as the solution (or infrastructure platform) was not a requirement for such a sharing environment. The Wikipedia model is well-known and used by many in the computer industry, but it has evolved over time and does not reflect what a new, "clean room" design might provide. Besides the lack of any modularity, as noted above, some of the internal structures are not user friendly. For example the method for building an maintaining a table is bizarre. Other solutions, like Google Docs, work well for an office environment, but not for collaboration. There are good collaboration tools, like [https://phabricator.wikimedia.org/T192965#4204936 git hub where code from this site is posted]. A wiki can be established there, but it is project based, while this site is more general.
  
 
==The Solution:==
 
==The Solution:==

Revision as of 13:02, 27 May 2018

Full Title: (The meme or idea that is explicated by the page)

Building of a Wiki on Microsoft Azure with Minimal Effort

The Context:

A team that is working on a single problem or area of expertise but is separated by time or distance yet still needs to share information quickly with little extra effort is given a wiki to collect information as it is generated. Sharing is then automatic. Specifically this present site was created to establish community for any interested in online sharing of a user's identifiers, attributes, behaviors and inferences established thereby.

Author: Tom Jones 2018-05-08

The Problem:

Constructing a set of description pages on a site that can be modified by any person that is willing to establish a persistent identity.

At first it seemed like the logical choice was to build a MediaWiki instance that was part of the tomjones.us web site, but there were multiple challenges that were related to the manner that MediaWiki is designed, or evolved, into its present form. Specifically MediaWiki is a unified web site that depends upon a tight integration with a SQL data base during its entire lifecycle from initial create and updating as determined by Wikipedia from which is was derived. In that mode it can easily be built on an wide variety of infrastructures which are known in current jargon as IaaS, or Infrastructure as a Service. The current tomjones.us site was created as a SaaS, or Software as a Service from the Azure cloud. One example of the problems is found in the way that fulltext catalogs are trouble in Wikimedia. Not only is the initial creation with a default value of , but all the data placed in the table is character data installed in a varbinary field. After a great deal of effort to integrate MediaWiki into that site, it was abandon in favor of a separate IaaS implementation of MediaWiki without the use of Azure SQL services as described below.

The choice of MediaWiki as the solution (or infrastructure platform) was not a requirement for such a sharing environment. The Wikipedia model is well-known and used by many in the computer industry, but it has evolved over time and does not reflect what a new, "clean room" design might provide. Besides the lack of any modularity, as noted above, some of the internal structures are not user friendly. For example the method for building an maintaining a table is bizarre. Other solutions, like Google Docs, work well for an office environment, but not for collaboration. There are good collaboration tools, like git hub where code from this site is posted. A wiki can be established there, but it is project based, while this site is more general.

The Solution:

Parts of this solution were described by CGillum in his Dev Blog.

Creating the Wiki

  1. First create a Web "App Service" on the Azure Portal.

Maintaining the Wiki


References