Thank you for those that tried to help me with the server update from
1.16.5 to 1.25.3 for Hindupedia.org (and soon, Hindupedia.com as well).

I finally resolved the IAST article corruption issue by doing a dump of
articles from the 1.16.5 version of the site into 1.25.3 (after doing the
upgrade).  Importing the dump into my 1.25.3 site.  Than doing an article
title comparison between the two instances and deleting the roughly 2000
articles in my 1.25.3 site that didn't exist in the 1.16.5 site (as they
were the corrupted titles).

Best Regards,

Krishna


--------------------------------------------------------------------------------
Krishna Maheshwari
[email protected]
[email protected]
Hindupedia, the Hindu Encyclopedia  (www.hindupedia.com)
--------------------------------------------------------------------------------

On Mon, Nov 30, 2015 at 4:00 AM, <[email protected]>
wrote:

> Send MediaWiki-l mailing list submissions to
>         [email protected]
>
> To subscribe or unsubscribe via the World Wide Web, visit
>         https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
> or, via email, send a message with subject or body 'help' to
>         [email protected]
>
> You can reach the person managing the list at
>         [email protected]
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of MediaWiki-l digest..."
>
>
> Today's Topics:
>
>    1. Seeking Help (dnyaneshwar shendurwadkar)
>    2. Short URLs for NGINX (P. Josepherum)
>    3. Constructing an SVG from MW templates (Adam Nielsen)
>    4. Re: Constructing an SVG from MW templates (Ricordisamoa)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 30 Nov 2015 00:09:05 +0530
> From: dnyaneshwar shendurwadkar <[email protected]>
> To: [email protected]
> Subject: [MediaWiki-l] Seeking Help
> Message-ID:
>         <
> cajp8wtvhp24huosmyn9d1fwyybkjruvrcqqfcm0rp1bwbgp...@mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Respected Sir,
>       I am 2nd year computer science engineering student from Indian
> Institute of Technology (IIT) Patna.I would like to contribute to different
> open source projects from MediaWiki foundation.Well I am comfortable with
> programming languages like php,c,java.
> I would like to prepare for Google Summer of code(GSOC) 2016.
>        I have little experience of open source programming ever
> before.Could you please suggest me any project to start.
>
> Thanking You,
>
>
>
> Dnyaeshwar Shendurwadkar,
> ([email protected]),
> (+91-9404880377).
>
>
> ------------------------------
>
> Message: 2
> Date: Sun, 29 Nov 2015 20:46:35 +0000
> From: "P. Josepherum" <[email protected]>
> To: MediaWiki announcements and site admin list
>         <[email protected]>
> Subject: [MediaWiki-l] Short URLs for NGINX
> Message-ID:
>         <
> ca+ant6j_bdzixyz06gtay1h0bmq5ui75to2jgwvmx0x5cx1...@mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Hey I'm having a tough time producing a working NGINX configuration for my
> wiki, would appreciate some guidance.
>
> I've produced an almost working configuration using
> http://shorturls.redwerks.org/ - the only issue is that resources (CSS and
> images) fail to load.
>
> The config is here:
>
> http://hastebin.com/owicoqufak.nginx
>
> LocalSettings set as such:
>
> $wgScriptPath = "/w";
> $wgArticlePath = "/wiki/$1";
> $wgThumbnailScriptPath = "$wgScriptPath/thumb.php";
> $wgUsePathInfo = true;
> $wgScriptExtension = ".php";
> $wgLoadScript = "$wgScriptPath/load.php";
>
>
> ​I'm gonna have to revert to Apache in the mean time as this is on the
> production server. Does anybody know of a working configuration? I couldn't
> get the example in NGINX's documents to work either, nor the example at
> mediawiki.org. =[
>
> --
> Kind regards,
>
> P. Josepherum |  http://psychonautwiki.org/
>
>
> ------------------------------
>
> Message: 3
> Date: Mon, 30 Nov 2015 21:27:25 +1000
> From: Adam Nielsen <[email protected]>
> To: [email protected]
> Subject: [MediaWiki-l] Constructing an SVG from MW templates
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=US-ASCII
>
> Hi all,
>
> Does anyone know whether there is a way to construct an SVG from
> MediaWiki templates?
>
> I'd like to include diagrams in my wiki pages, but to preserve the edit
> history I'd like to have each diagram as a wiki page in its own right.
> Rather than force people to use SVG code directly, I'd like to "hide"
> it in templates, so that you can create a page like this:
>
>   {{Diagram Start}}
>   {{Diagram Object
>    | Type = Arrow
>    | X = 0
>    | Y = 0
>    | Direction = Left
>   }}
>   {{Diagram End}}
>
> The templates would then expand into SVG code using the site's style,
> and you could embed that SVG in the articles you want as if it's any
> other image, e.g. with [[Image:Example.svg]].
>
> Is there any way this could be achieved with existing extensions?
>
> Many thanks,
> Adam.
>
>
>
>
>
> ------------------------------
>
> Message: 4
> Date: Mon, 30 Nov 2015 12:30:09 +0100
> From: Ricordisamoa <[email protected]>
> To: [email protected]
> Subject: Re: [MediaWiki-l] Constructing an SVG from MW templates
> Message-ID: <[email protected]>
> Content-Type: text/plain; charset=utf-8; format=flowed
>
> Sounds like a task for https://www.mediawiki.org/wiki/Extension:Graph
>
> Il 30/11/2015 12:27, Adam Nielsen ha scritto:
> > Hi all,
> >
> > Does anyone know whether there is a way to construct an SVG from
> > MediaWiki templates?
> >
> > I'd like to include diagrams in my wiki pages, but to preserve the edit
> > history I'd like to have each diagram as a wiki page in its own right.
> > Rather than force people to use SVG code directly, I'd like to "hide"
> > it in templates, so that you can create a page like this:
> >
> >    {{Diagram Start}}
> >    {{Diagram Object
> >     | Type = Arrow
> >     | X = 0
> >     | Y = 0
> >     | Direction = Left
> >    }}
> >    {{Diagram End}}
> >
> > The templates would then expand into SVG code using the site's style,
> > and you could embed that SVG in the articles you want as if it's any
> > other image, e.g. with [[Image:Example.svg]].
> >
> > Is there any way this could be achieved with existing extensions?
> >
> > Many thanks,
> > Adam.
> >
> >
> >
> > _______________________________________________
> > MediaWiki-l mailing list
> > To unsubscribe, go to:
> > https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>
>
>
>
> ------------------------------
>
> Subject: Digest Footer
>
> _______________________________________________
> MediaWiki-l mailing list
> [email protected]
> https://lists.wikimedia.org/mailman/listinfo/mediawiki-l
>
>
> ------------------------------
>
> End of MediaWiki-l Digest, Vol 146, Issue 33
> ********************************************
>
_______________________________________________
MediaWiki-l mailing list
To unsubscribe, go to:
https://lists.wikimedia.org/mailman/listinfo/mediawiki-l

Reply via email to