<?xml version="1.0" encoding="utf-8" ?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns="http://purl.org/rss/1.0/">




    



<channel rdf:about="https://cis-india.org/search_rss">
  <title>Centre for Internet and Society</title>
  <link>https://cis-india.org</link>
  
  <description>
    
            These are the search results for the query, showing results 1 to 15.
        
  </description>
  
  
  
  
  <image rdf:resource="https://cis-india.org/logo.png"/>

  <items>
    <rdf:Seq>
        
            <rdf:li rdf:resource="https://cis-india.org/a2k/blogs/querying-wikipedia-data"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/a2k/blogs/utf-8-indic-and-stub-length-article-in-wikipedia"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/a2k/blogs/pavanaja.com-english-fuel-gilt-kannada-tulu"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/a2k/blogs/wikiconference-india-2016-submission-gender-gap-in-indian-language-wikipedias-2013-projects-outreach-and-outcome"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/kannada-wikipedia-edit-a-thon-in-st-agnes-college-mangaluru-to-bridge-gender-gap-in-wikipedia"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/blog-old/a-kannada-wikipedia-brochure-for-newbies"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/blog-old/wikipediansspeak-with-dr-kishore-kumar-rai-sheni-tulu-wikipedia-in-academics"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/blog-old/journalism-students-of-the-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-enrich-karnataka2019s-folklore-and-folk-art-in-kannada-wikipedia"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/events/kannada-wikipedia-workshop-at-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-karnataka"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/events/workshop-on-digital-collaborations-in-tamil-language-tamil-virtual-university-chennai"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/wikipedia-edit-a-thon-in-mangalore-to-bring-tulu-wikipedia-live"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/events/tulu-wikipedia-edit-a-thon-in-mangalore"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-5-2015-coverage-in-prajavani"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-4-2015-coverage-in-udayavani"/>
        
        
            <rdf:li rdf:resource="https://cis-india.org/openness/news/indian-express-july-5-2015-upload-more-kannada-articles-on-wikipedia"/>
        
    </rdf:Seq>
  </items>

</channel>


    <item rdf:about="https://cis-india.org/a2k/blogs/querying-wikipedia-data">
    <title>Querying Wikipedia Data</title>
    <link>https://cis-india.org/a2k/blogs/querying-wikipedia-data</link>
    <description>
        &lt;b&gt;Recently I wrote a blog about the stub article length of Wikipedia articles. I mentioned the difference in actual number of characters and the number of bytes used to define stub articles between English and Indian language Wikipedias. One can open any language Wikipedia, type Special:ShortPages in the search box to get the list of articles which have less than 2048 bytes.&lt;/b&gt;
        &lt;p&gt;Originally published blog can be &lt;a class="external-link" href="http://pavanaja.com/english/querying-wikipedia-data/"&gt;accessed here&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;
&lt;p style="text-align: justify; "&gt;However, as already mentioned in that &lt;a class="external-link" href="http://pavanaja.com/english/utf-8-indic-stub-length-wikipedia/"&gt;blog&lt;/a&gt;, the number of bytes for Indian  languages to be considered as stub should be actually 2048*3 = 6144  bytes employing the same criteria. How to find the list of articles  fulfilling this condition?&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;This brings us to the topic of querying Wikipedia data. Wikimedia  Foundation Labs has put up a website wherein one can run SQL queries on  Wikimedia data. The URL of the website is &lt;a href="https://quarry.wmflabs.org" target="_blank"&gt;quarry.wmflabs.org&lt;/a&gt;.  When we open the website, we get a textbox wherein one can type the SQL  query which will run on Wikimedia data. In this example I will consider  Wikipedia only. But the queries can be run on the data of other  Wikimedia projects like Wikisource, Wikidata, Wiktionary, etc.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;One has to login with his/her Wikimedia login. After logging the SQL query can be typed in the textbox and the Submit Query button  has to be clicked. The result of execution of the query on Wikimedia  data will be displayed. In this blog I will throw more light on Kannada  Wikipedia. The database for Kannada Wikipedia is called knwiki_p.  Complete list of databases can be obtained by running the SQL query  “show databases”.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;To get the list of tables in Kannada Wikipedia, the following SQL queries have to be executed:&lt;/p&gt;
&lt;p class="callout"&gt;use knwiki_p;&lt;br /&gt;show tables;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;To know the scheme of any table, run the query desc  &amp;lt;tablename&amp;gt;;. For example, to know the details of the table by name, issue the query &lt;span&gt;desc page;.&lt;/span&gt; The fields which are of importance in the current case is &lt;span&gt;page_title&lt;/span&gt; and &lt;span&gt;page_len&lt;/span&gt;. The following query will list all articles in Kannada Wikipedia which are having less than 6144 bytes.&lt;/p&gt;
&lt;p class="callout"&gt;use knwiki_p;&lt;br /&gt;select page_title, page_len&lt;br /&gt;from page where page_len &amp;lt; ‘6144’ and page_namespace = 0 and page_is_redirect = 0 order by page_len ;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;Some other useful queries are listed below:&lt;/p&gt;
&lt;table class="plain"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;&lt;b&gt;Query&lt;/b&gt;&lt;/th&gt;&lt;th&gt;&lt;b&gt;What it does&lt;/b&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span&gt;Select Count(*) from page where page_namespace = 0 and page_is_redirect =0;&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Number of articles without redirect&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: justify; "&gt;&lt;span&gt;Select Count(*) from page where page_namespace = 0 and page_is_redirect =0 and page_len &amp;lt; 6144;&lt;/span&gt;&lt;/td&gt;
&lt;td style="text-align: justify; "&gt;Number of articles which are having bytes less than 6144&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span&gt;select * from user where user_name Like “P%”;&lt;/span&gt;&lt;/td&gt;
&lt;td style="text-align: justify; "&gt;List all users whose username starts with letter “P”&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: justify; "&gt;&lt;span&gt;select user_id, user_name, user_editcount  from user where user_editcount &amp;gt;3000 order by user_editcount desc;&lt;/span&gt;&lt;/td&gt;
&lt;td style="text-align: justify; "&gt;List all users with editcount more than 3000   &lt;span&gt;&lt;/span&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span&gt;SELECT&lt;/span&gt;
&lt;p&gt;&lt;span&gt;page_namespace,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;page_title,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;page_len&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;FROM page&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;WHERE page_len &amp;gt; 175000&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;AND page_title NOT LIKE “%/%”&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;ORDER BY page_namespace ASC;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td style="text-align: justify; "&gt;List of long articles (articles having  bytes more than 175000)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;span&gt;SELECT rc_title as title, rc_comment as comments, count(*) as Edits&lt;/span&gt;
&lt;p&gt;&lt;span&gt;FROM recentchanges&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;WHERE rc_namespace = 0&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;GROUP BY 1 ORDER BY 3 DESC&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;LIMIT 100;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
&lt;td&gt;Most edited 100 pages during past one month&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td style="text-align: justify; "&gt;&lt;span&gt;SELECT log_title, COUNT(*) FROM logging WHERE log_type=”thanks” GROUP BY log_title ORDER BY COUNT(*) DESC LIMIT 100;&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Who have been thanked most&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p style="text-align: justify; "&gt;Useful links -&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a class="external-link" href="https://meta.wikimedia.org/wiki/Research:Quarry"&gt;Details about Quarry&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class="external-link" href="https://wikitech.wikimedia.org/wiki/Help:MySQL_queries"&gt;MySQL queries help&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/a2k/blogs/querying-wikipedia-data'&gt;https://cis-india.org/a2k/blogs/querying-wikipedia-data&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikimedia</dc:subject>
    
    
        <dc:subject>CIS-A2K</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2016-10-21T14:51:01Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/a2k/blogs/utf-8-indic-and-stub-length-article-in-wikipedia">
    <title>UTF-8, Indic and Stub Length Article in Wikipedia</title>
    <link>https://cis-india.org/a2k/blogs/utf-8-indic-and-stub-length-article-in-wikipedia</link>
    <description>
        &lt;b&gt;One of the activities conducted as part of Wiki Conference India 2016 was the Punjab Editathon. It was about adding articles related to Punjab to Indian language Wikipedias and English Wikipedia. There was also an announcement made about some award for highest contribution.&lt;/b&gt;
        &lt;p style="text-align: justify; "&gt;See the original blog post at &lt;a class="external-link" href="http://pavanaja.com/english/utf-8-indic-stub-length-wikipedia/"&gt;Dr. Pavanaja Blog&lt;/a&gt;&lt;/p&gt;
&lt;hr /&gt;
&lt;p style="text-align: justify; "&gt;This lead to continued discussions in a closed chat group on how do we  decide the winner. People thought it is very simple to announce the  winner just based on highest number of bytes added. On first look, it  looked very trivial and a simple case. I pointed out during the  discussions about the encoding used in Wikipedia is UTF-8 and it uses  different number of bytes for English and Indian languages. Before  giving more details I would like to draw your attention to a simple  experiment.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;I typed Kannada letter ಅ (a) in my Sandbox in Kannada Wikipedia and  saved it. Then I checked the RecentChanges page in Kannada Wikipedia.  That showed that I have added 3 bytes to my Sandbox page. But I had  added just one Kannada character.  I did the same experiment in English  Wikipedia. I just added one letter, the English letter “A” to my Sandbox  in English Wikipedia and checked the number of bytes added. It showed  just one byte.&lt;/p&gt;
&lt;table class="invisible"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;&lt;img alt="whatsapp-image-2016-10-19-at-11-20-09-pm" class="alignleft wp-image-2053" height="91" src="http://pavanaja.com/wp-content/uploads/2016/10/WhatsApp-Image-2016-10-19-at-11.20.09-PM-300x136.jpeg" width="200" /&gt;&lt;/th&gt;&lt;th&gt;&lt;/th&gt;&lt;th&gt;&lt;img alt="whatsapp-image-2016-10-19-at-11-20-14-pm" class="alignleft wp-image-2052" height="102" src="http://pavanaja.com/wp-content/uploads/2016/10/WhatsApp-Image-2016-10-19-at-11.20.14-PM-300x153.jpeg" width="200" /&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;img alt="english-a" class="alignleft wp-image-2056 " height="121" src="http://pavanaja.com/wp-content/uploads/2016/10/English-A-300x181.jpg" width="201" /&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;img alt="english-1-byte" class="alignleft wp-image-2055 " height="127" src="http://pavanaja.com/wp-content/uploads/2016/10/English-1-byte-300x190.jpg" width="201" /&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p style="text-align: justify; "&gt;What is going on? Here is the explanation.  There are different ways Unicode text can be stored. UTF-8, UTF-16 and UTF-32 are the prominent ways. UTF-16 uses 2 bytes for all characters. UTF-32 uses 4 bytes. UTF-8 is a special kind of encoding. It uses series of single bytes to represent Unicode data. The first character, called Byte Order Mark (BOM) indicates what encoding is being used. Unicode website has more details on these. UTF-8 was mainly used for web as the networking devices used on the initial days of Unicode could handle only 8 bits (1 byte) of data. In other words, UTF-8 was used for backward compatibility with ASCII, the original 8-bit encoding used prior to the advent of Unicode.  Even today the default encoding used by HTML is UTF-8.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;Does these answer our original question? Not yet. I said UTF-8 uses series of single bytes. It uses 1 byte for English, 2 bytes for European languages and 3 bytes for Indian languages. That is the reason why we saw 3 bytes for one Kannada character.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;This pops up another interesting question regarding the definition of a stub article in Wikipedia.  As per Wikipedia, an article which has less than 2048 bytes is considered as a stub article.  Go to any language Wikipedia’s search page and type Special:ShortPages to get the list of all articles which are having less than 2048 bytes. If we convert this into number of characters it turns out to be 2048 for English but about 682 for Indic. That means the length of a stub article will be different for English and Indian language Wikipedias. Should we have a different yardstick for the definition of a stub article for Indian language Wikipedias then? I think yes.&lt;/p&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/a2k/blogs/utf-8-indic-and-stub-length-article-in-wikipedia'&gt;https://cis-india.org/a2k/blogs/utf-8-indic-and-stub-length-article-in-wikipedia&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>CIS-A2K</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2016-10-20T02:26:29Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/a2k/blogs/pavanaja.com-english-fuel-gilt-kannada-tulu">
    <title>Localisation experiences in Kannada and Tulu Wikipedias</title>
    <link>https://cis-india.org/a2k/blogs/pavanaja.com-english-fuel-gilt-kannada-tulu</link>
    <description>
        &lt;b&gt;It has become a fashion to talk about the digital divide in India. These talks are going on for more than 2 decades now. Nevertheless there is no doubt about the need of taking the benefits of Information Communication Technology (ICT) for common man.&lt;/b&gt;
        &lt;p&gt;Originally &lt;a class="external-link" href="http://pavanaja.com/english/fuel-gilt-kannada-tulu/"&gt;published in my blog&lt;/a&gt; on October 4, 2016&lt;/p&gt;
&lt;hr /&gt;
&lt;h3 style="text-align: justify; "&gt;FUELling Indic computing&lt;/h3&gt;
&lt;p style="text-align: justify; "&gt;The statement “ICT for common man has to be in his language” is always relevant. Many state governments and the central government of India are spending lot of money towards E-Governance. Of late many private vendors also have realised the importance of localising their applications into Indian languages. Be it a web based or mobile app based solution providing it in Indian language will increase the user-base by huge magnitudes.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;This brings us to the issue of standardisation of terminologies used in localising the ICT applications into Indic. How does one write frequently used terms in Indic? Is there any standard? For example, how to write “Exit” in Kannada? Should I use “ನಿರ್ಗಮನ” or “ಹೊರಗೆ”? Enter FUEL Project. This project aims at standardising the Frequently Used Entries in Localisation. The project aims at having a consistency among the terms used across all applications, apps and websites. FUEL Project is run by volunteers. Corpus of translations of the terminologies is developed by contributions of enthusiastic people in true opensource spirit.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;FUEL project has been organising annual conferences referred as  Globalisation Internationalisation Localisation and Translation, in  short GILT Conference. This year’s GILT Conference was held at New  Delhi, India, during Sep 24 &amp;amp; 25, 2016. This year’s conference had  general users, media persons and writers who are nothing but the normal  consumers of the output of FUEL usage apart from the techies. There was a  track exclusively dedicated for Mozilla localisation. The detailed  agenda and speakers list is available &lt;a href="http://gilt.fuelproject.org/" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;h3 style="text-align: justify; "&gt;Localisation experiences in Kannada and Tulu Wikipedias&lt;/h3&gt;
&lt;p style="text-align: justify; "&gt;I have been a Wikipedian for more than a decade. I have contributed to Kannada Wikipedia ever since it was started way back in the year 2004. Tulu Wikipedia went live recently which was in incubation from 2008. I have been contributing to Tulu Wikipedia as well. I presented a paper at FUEL GILT Conference titled “Localisation experiences in Kannada and Tulu Wikipedias”.&lt;br /&gt;&lt;br /&gt;Kannada and Tulu belong to Dravidian family of languages. Geographically and politically they both belong to Karnataka. Both languages share a lot of things and there are many common words used in both languages. At the same time Kannada and Tulu have their own distinct identities. One striking feature is that Tulu has less Sanskrit words compared to Kannada. Tulu had its own script and grammar but over the years the usage of Tulu script has been discontinued. Nowadays most Tulu people use Kannada script. This has led to the usage of many Kannada words in place of original Tulu words.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;Kannada has an established history of science and technology writings as well as localised software applications. Naturally a well-developed glossary is available. It was somewhat easy to localise the strings used in Mediawiki, which is the platform used to host Wikipedias, into Kannada, which very fall under FUEL category. In Kannada, we have been using these formulas while creating technical glossary –&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Create altogether new term&lt;/li&gt;
&lt;li&gt;Translate the English term&lt;/li&gt;
&lt;li&gt;Transliterate the English term, i.e., write the English term in Kannada script&lt;/li&gt;
&lt;/ol&gt;
&lt;p style="text-align: justify; "&gt;Depending on the situation, one of the 3 paths is followed. The same philosophy is extended for localising the strings used in Mediawiki. In many situations, we have either a part translation available or a similar example available in Kannada which made the localisation of Mediawiki not so difficult.&lt;/p&gt;
&lt;p style="text-align: justify; "&gt;Tulu Wikipedia was in incubation since 2008. It became live on Aug 05,  2016. One of the main requirement to make it live was to have major  strings translated into Tulu. Most of the commonly used strings have  been translated now. But the case of Tulu is not so simple which has no  history of science and technology writing. It was quite difficult to  localise most of the strings. At many places Kannada strings have been  used. Many more strings are yet to be localised. In case of Tulu, we  have been using these formulas for Mediwaiki translations –&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt; Create altogether new term in Tulu&lt;/li&gt;
&lt;li&gt;Use more of Kannada words in the localised string&lt;/li&gt;
&lt;li style="text-align: justify; "&gt;Transliterate the English term, i.e., write the English term in  Kannada script. Since Tulu is using Kannada script, the strings thus  used will be the same for Kannada and Tulu&lt;/li&gt;
&lt;/ol&gt;
&lt;p style="text-align: justify; "&gt;The questions and answers just after the presentation had some very interesting questions from other language Wikipedians as well as people from other walks of life who are into localisation. I could benefit by interacting with others and by gaining insights into some unexplored areas by me. Interactions with other participants which also included some Wikipedians continued after the presentation. Overall it was quite useful spending of two days. Looking forward for the next event like this.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Acknowledgements&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Kannada and Tulu Wikipedians&lt;/li&gt;
&lt;li&gt;&lt;a href="https://kn.wikipedia.org/s/18ik"&gt;Dr Vishwnatha Badikana&lt;/a&gt; – Tulu translations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://tcy.wikipedia.org/wiki/%E0%B2%AC%E0%B2%B3%E0%B2%95%E0%B3%86%E0%B2%A6%E0%B2%BE%E0%B2%B0%E0%B3%86:BHARATHESHA_ALASANDEMAJALU"&gt;Bharathesha Alasandemajalu&lt;/a&gt; -Tulu translations&lt;/li&gt;
&lt;li&gt;&lt;a href="https://wikimediafoundation.org/wiki/Home"&gt;Wikimedia Foundation&lt;/a&gt; for sponsoring the travel&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;b&gt;Links:&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;My &lt;a href="https://commons.wikimedia.org/wiki/File:FUEL-GILT-Pavanaja-2016.pdf"&gt;presentation &lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://kn.wikipedia.org/wiki/%E0%B2%AE%E0%B3%81%E0%B2%96%E0%B3%8D%E0%B2%AF_%E0%B2%AA%E0%B3%81%E0%B2%9F"&gt;Kannada Wikipedia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://tcy.wikipedia.org/wiki/%E0%B2%AE%E0%B3%81%E0%B2%96%E0%B3%8D%E0%B2%AF_%E0%B2%AA%E0%B3%81%E0%B2%9F"&gt;Tulu Wikipedia&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://fuelproject.org/"&gt;FUEL Project&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://translatewiki.net/"&gt;TranslateWiki&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/a2k/blogs/pavanaja.com-english-fuel-gilt-kannada-tulu'&gt;https://cis-india.org/a2k/blogs/pavanaja.com-english-fuel-gilt-kannada-tulu&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>


   <dc:date>2016-10-06T01:51:02Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/a2k/blogs/wikiconference-india-2016-submission-gender-gap-in-indian-language-wikipedias-2013-projects-outreach-and-outcome">
    <title>WikiConference India 2016 Submission: Gender Gap in Indian Language Wikipedias – Projects, Outreach and Outcome</title>
    <link>https://cis-india.org/a2k/blogs/wikiconference-india-2016-submission-gender-gap-in-indian-language-wikipedias-2013-projects-outreach-and-outcome</link>
    <description>
        &lt;b&gt;India is not much different from the global statistics when it comes to gender gap issues in Wikipedia. Indian language Wikipedias are known to have similar ratio of male to female editors.&lt;/b&gt;
        &lt;p style="text-align: justify; "&gt;The submission was included as part of a panel related to the gender gap at the &lt;a class="external-link" href="https://meta.wikimedia.org/wiki/WikiConference_India_2016"&gt;WikiConference India 2016&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;
&lt;p style="text-align: justify; "&gt;Many activities are being made to bridge the gender gap in Indian language Wikipedias. These are aimed both at improving the ratio of female to male editors and increasing women related content in Indian language Wikipedias. Some of the notable projects are Art+ Feminism editathon, Lilavati’s daughters editathon, International Women’s day or month editathon, editathon to add articles about woman writers of coastal Karnataka. Sizeable number of students who are part of the Wikipedia in Education Program which are being run at many educational institutes of India are female. Some of these students continue editing and contribute to Wikipedia. Some female students worked as interns and have contributed by improving the quality of articles written by their peers. Outreach is one of the regular activities of taking Wikipedia to people. Outcome of the projects and the data on retention of the participants of outreach activities as regular contributing Wikipedians, survival of the newly created editors for short and long periods are documented and will be presented at the conference.&lt;/p&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/a2k/blogs/wikiconference-india-2016-submission-gender-gap-in-indian-language-wikipedias-2013-projects-outreach-and-outcome'&gt;https://cis-india.org/a2k/blogs/wikiconference-india-2016-submission-gender-gap-in-indian-language-wikipedias-2013-projects-outreach-and-outcome&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikimedia</dc:subject>
    
    
        <dc:subject>CIS-A2K</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2016-08-17T02:43:54Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/kannada-wikipedia-edit-a-thon-in-st-agnes-college-mangaluru-to-bridge-gender-gap-in-wikipedia">
    <title>Kannada Wikipedia edit-a-thon in St. Agnes College, Mangaluru to bridge gender gap in Wikipedia</title>
    <link>https://cis-india.org/openness/kannada-wikipedia-edit-a-thon-in-st-agnes-college-mangaluru-to-bridge-gender-gap-in-wikipedia</link>
    <description>
        &lt;b&gt;As part of a series of workshops to mark the 13th anniversary, Kannada Wikipedia, a Kannada Wikipedia edit-a-thon was organised during this 10th-12th in St. Agnes College, Mangaluru to address the issue of gender gap in Wikipedia. &lt;/b&gt;
        
&lt;p&gt;Totally 24 female students Wikimedians 
participated in this edit-a-thon. Three female Wikipedia editors from the institution also joined as facilitators. Vishwanatha Badikana, Kannada professor of the institution who is also a Kannada and Tulu Wikipedian inaugurated the event as 
chief guest. The first day was spent in demonstrating 
about the &lt;a class="external-link" href="https://en.wikipedia.org/wiki/Help:Wiki_markup"&gt;Wiki markup&lt;/a&gt;. During the following two days the participants created articles 
about notable writers and other notable women of coastal Karnataka. 25 new articles were
 created by the participants on the second day. By the end of the last day, 25 more articles were created in &lt;a class="external-link" href="https://en.wikipedia.org/wiki/Wikipedia:About_the_Sandbox"&gt;sandboxes&lt;/a&gt; on
 the last day by lunch time. They will soon work on the articles and improve before moving them to the article namespace so they become live articles. From the three day long edit-a-thon about 75 new 
articles are expected to come on Kannada Wikipedia. More details about the edit-a-thon could be read on Kannada Wikipedia &lt;a class="external-link" href="https://kn.wikipedia.org/s/1e9n"&gt;event page&lt;/a&gt;.&lt;/p&gt;

        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/kannada-wikipedia-edit-a-thon-in-st-agnes-college-mangaluru-to-bridge-gender-gap-in-wikipedia'&gt;https://cis-india.org/openness/kannada-wikipedia-edit-a-thon-in-st-agnes-college-mangaluru-to-bridge-gender-gap-in-wikipedia&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>CIS-A2K</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    

   <dc:date>2016-01-12T11:22:25Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/blog-old/a-kannada-wikipedia-brochure-for-newbies">
    <title>A Kannada Wikipedia brochure for newbies</title>
    <link>https://cis-india.org/openness/blog-old/a-kannada-wikipedia-brochure-for-newbies</link>
    <description>
        &lt;b&gt;This brochure has been created keeping readers and new Wikipedia editors in mind. This would come handy to learn editing Kannada Wikipedia and creating/editing articles in Kannada.&lt;/b&gt;
        
&lt;h2&gt;What does it contain? &lt;br /&gt;&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;How Wikipedia is world’s largest free and open encyclopaedia?&lt;/li&gt;&lt;li&gt;Did you know that "&lt;strong&gt;anyone can edit Wikipedia&lt;/strong&gt;"?&lt;/li&gt;&lt;li&gt;How Wikipedia helps in preserving the knowledge and taking it to the next generation. For our languages to survive and grow, it is very important to bring world knowledge in our language. Wikipedia helps in expanding that knowledge repository as anyone can contribute to Wikipedia.&lt;/li&gt;&lt;li&gt;There is &lt;em&gt;no &lt;/em&gt;financial gain by writing in Wikipedia. It is very easy to start editing &lt;a class="external-link" href="https://kn.wikipedia.org"&gt;Kannada Wikipedia&lt;/a&gt;. Open &lt;a class="external-link" href="https://kn.wikipedia.org"&gt;kn.wikipedia.org&lt;/a&gt;, check the help file, tutorial file &amp;amp; videos, start editing in your sandbox (&lt;a class="external-link" href="https://en.wikipedia.org/wiki/Wikipedia:Sandbox"&gt;learn more about the Wikipedia sandbox&lt;/a&gt;). &lt;br /&gt;&lt;/li&gt;&lt;li&gt;No poetry, blog, story, criticism, writing about self, advertisements of any sorts, etc are not allowed in Wikipedia&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h3&gt;Download this brochure from &lt;a class="external-link" href="https://upload.wikimedia.org/wikipedia/commons/6/68/Kannada_Wikipedia_Brochure.pdf"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;/h3&gt;

        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/blog-old/a-kannada-wikipedia-brochure-for-newbies'&gt;https://cis-india.org/openness/blog-old/a-kannada-wikipedia-brochure-for-newbies&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>OER</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    

   <dc:date>2015-10-19T10:46:38Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/blog-old/wikipediansspeak-with-dr-kishore-kumar-rai-sheni-tulu-wikipedia-in-academics">
    <title>WikipediansSpeak with Dr. Kishore Kumar Rai Sheni: Tulu Wikipedia in the making</title>
    <link>https://cis-india.org/openness/blog-old/wikipediansspeak-with-dr-kishore-kumar-rai-sheni-tulu-wikipedia-in-academics</link>
    <description>
        &lt;b&gt;Dr. Kishore Kumar Rai Sheni, Principal, Shri Ramakrishna P.U. College, Mangaluru shares with Dr. U.B. Pavanaja of the Centre for Internet and Society's Access To Knowledge (CIS-A2K) programme his insights on bringing more contributors of different corners of the society to grow Tulu Wikipedia. Tulu Wikipedia is in Incubator at present and there are a bunch of contributors who are expanding the project to bring it live.&lt;/b&gt;
        
&lt;div align="center"&gt;&lt;iframe src="https://www.youtube.com/embed/3VCb7UTTNq8" frameborder="0" height="315" width="420"&gt;&lt;/iframe&gt;&lt;/div&gt;
&lt;p&gt;
When I caught up with Dr. Kishore Kumar Rai Sheni during an ongoing Tulu Wikipedia edit-a-thon in his college, Shri Ramakrishna P.U. College, Mangaluru, he left me with his wonderful ideas of expanding the Tulu Wikipedia. Back in 2014, with a few sporadic contributors, the Tulu Wikipedia community probably did not exist. After several outreach programmes in and around Mangaluru, it has grown to about an eight-editor community. It could look really tiny today but has potential to grow to a bigger community provided the constant effort by these eight people continue. This edit-a-thon is one of the stepping stones to build this community. About 37 people who hardly know anything about Tulu Wikipedia are participating in this event where six of the experienced editors will support them. The project is all about creating a live encyclopedia on the internet. We have enough and many Tulu authors and teachers who otherwise contribute to the language and literature. The idea is to bring them aboard. In collaboration with three other institutions here; Ramakrishna PU College, Ramakrishna Degree College and Tulu Sahitya Academy, we're trying to bridge the gap of lack of Wikipedia in our language. So far, very little work has been done in documenting the rich Tulu culture in Tulu language. There is no encyclopaedia of any sort in Tulu at this moment. There is also a need to bring the entire world's knowledge to the Tulu speakers. I hope Tulu Wikipedia will be the future to take our language and culture to the world, and fill the gap of knowledge that exists today.&lt;/p&gt;
&lt;em&gt;&lt;strong&gt;Tulu Wikipedia Incubator is available at &lt;a class="external-link" href="https://incubator.wikimedia.org/wiki/Wp/tcy"&gt;&lt;cite class="_Rm"&gt;https://incubator.wikimedia.org/wiki/Wp/tcy.&lt;/cite&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/em&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/blog-old/wikipediansspeak-with-dr-kishore-kumar-rai-sheni-tulu-wikipedia-in-academics'&gt;https://cis-india.org/openness/blog-old/wikipediansspeak-with-dr-kishore-kumar-rai-sheni-tulu-wikipedia-in-academics&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Tulu Wikipedia</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>WikipedianSpeak</dc:subject>
    

   <dc:date>2016-06-18T18:06:49Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/blog-old/journalism-students-of-the-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-enrich-karnataka2019s-folklore-and-folk-art-in-kannada-wikipedia">
    <title>Journalism Students of the SDM College Ujire Enrich Karnataka’s Folklore And Folk Art in Kannada Wikipedia</title>
    <link>https://cis-india.org/openness/blog-old/journalism-students-of-the-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-enrich-karnataka2019s-folklore-and-folk-art-in-kannada-wikipedia</link>
    <description>
        &lt;b&gt;As part of an ongoing partnership with the Shree Dharmasthala Manjunatheshwara (SDM) College Ujjire, with active support from a few Kannada Wikipedia editors, CIS-A2K began an outreach programme so that the journalism students could help many Kannada readers about Karnataka’s rich folklore and folk art.&lt;/b&gt;
        
&lt;p id="docs-internal-guid-e599ce9d-d03b-a6b5-0c6a-3e6664727eb0" dir="ltr"&gt;Both first year and second year students of Master of Communication and Journalism (MCJ) of SDM College participated in this workshop. Out of 35 participants, 11 were female. Students had discussed already about enhancing Kannada Wikipedia articles on folklore and folk art forms of Karnataka. About 20 new user accounts were created and the students have started creating articles in their user &lt;a href="https://en.wikipedia.org/wiki/Wikipedia:Sandbox"&gt;sandboxes&lt;/a&gt; which they will later move as articles upon enhancement with vital information. Some of the students chose to find existing articles and add more information to them. Long time Kannada Wikimedian &lt;a href="https://kn.wikipedia.org/wiki/User:VASANTH S.N."&gt;S N Vasanthkn&lt;/a&gt;. from Dharmasthala helped as resource person to help the new editors with Wikipedia editing. However, as first timers, many struggled with the encyclopedic way of writing and maintaining &lt;a href="https://en.wikipedia.org/wiki/Wikipedia:Neutral_point_of_view"&gt;neutral point of view&lt;/a&gt;. These students will be mentored by Vasanth as he is visiting them every Monday.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p dir="ltr"&gt;More details from the &lt;a href="https://kn.wikipedia.org/s/1cpm"&gt;event &lt;/a&gt;page.&lt;/p&gt;

        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/blog-old/journalism-students-of-the-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-enrich-karnataka2019s-folklore-and-folk-art-in-kannada-wikipedia'&gt;https://cis-india.org/openness/blog-old/journalism-students-of-the-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-enrich-karnataka2019s-folklore-and-folk-art-in-kannada-wikipedia&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Openness</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    
    
        <dc:subject>Wikimedia</dc:subject>
    

   <dc:date>2015-09-15T09:09:12Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/events/kannada-wikipedia-workshop-at-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-karnataka">
    <title>Kannada Wikipedia workshop at Shree Dharmasthala Manjunatheshwara (SDM) College Ujire, Karnataka</title>
    <link>https://cis-india.org/openness/events/kannada-wikipedia-workshop-at-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-karnataka</link>
    <description>
        &lt;b&gt;A Kannada Wikipedia workshop is being planned to be organised in Shree Dharmasthala Manjunatheshwara (SDM) College Ujire on the 13th August 2015. This is going to be part of the several outreach programmes in the institution.&lt;/b&gt;
        
&lt;p&gt;Topics to be discussed:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;What, Why &amp;amp; How of Wikipedia&lt;/li&gt;&lt;li&gt;Basics of Wikipedia markup&lt;/li&gt;&lt;li&gt;Kannada Wikipedia&lt;/li&gt;&lt;li&gt;Editing Kannada Wikipedia&lt;/li&gt;&lt;li&gt;What can be added to Kannada Wikipedia and how to add articles&lt;/li&gt;&lt;/ul&gt;

        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/events/kannada-wikipedia-workshop-at-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-karnataka'&gt;https://cis-india.org/openness/events/kannada-wikipedia-workshop-at-shree-dharmasthala-manjunatheshwara-sdm-college-ujire-karnataka&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikimedia</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>Workshop</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    

   <dc:date>2016-06-18T18:12:41Z</dc:date>
   <dc:type>Event</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/events/workshop-on-digital-collaborations-in-tamil-language-tamil-virtual-university-chennai">
    <title>Workshop on digital collaborations in Tamil-language, Tamil Virtual University, Chennai</title>
    <link>https://cis-india.org/openness/events/workshop-on-digital-collaborations-in-tamil-language-tamil-virtual-university-chennai</link>
    <description>
        &lt;b&gt;A two-day workshop on digital collaborations in Tamil-language has been organised by Tamil Virtual University, Anna University Campus, Chennai. I have been invited to participate in this event on behalf of the CIS-A2K programme.&lt;/b&gt;
        
&lt;p&gt;The discussions are going to be in four major topics:&lt;/p&gt;
&lt;ol id="docs-internal-guid-331156a9-cb12-ecf3-00ac-68e737218172"&gt;&lt;li style="list-style-type: decimal;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Digitization:&lt;/p&gt;
&lt;/li&gt;
&lt;ol&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Books and Digital Library&lt;/p&gt;
&lt;/li&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Manuscripts, Inscriptions, Documents, Paintings and Archival of documents&lt;/p&gt;
&lt;/li&gt;&lt;/ol&gt;
&lt;li style="list-style-type: decimal;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Research and Development:&lt;/p&gt;
&lt;/li&gt;
&lt;ol&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Natural Language Process&lt;/p&gt;
&lt;/li&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Video / Speech synthesizer, Spell checker&lt;/p&gt;
&lt;/li&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Corpus and Lexicon&lt;/p&gt;
&lt;/li&gt;&lt;/ol&gt;
&lt;li style="list-style-type: decimal;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;E-learning:&lt;/p&gt;
&lt;/li&gt;
&lt;ol&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Developing appropriate and region specific syllabus&lt;/p&gt;
&lt;/li&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Mobile computing and applications development&lt;/p&gt;
&lt;/li&gt;&lt;/ol&gt;
&lt;li style="list-style-type: decimal;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Open source and Outreach:&lt;/p&gt;
&lt;/li&gt;
&lt;ol&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;
&lt;p dir="ltr"&gt;Tamil computing organisations and Wikipedia&lt;/p&gt;
&lt;/li&gt;&lt;li style="list-style-type: lower-alpha;" dir="ltr"&gt;Policy of Open source software&lt;/li&gt;&lt;/ol&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;

        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/events/workshop-on-digital-collaborations-in-tamil-language-tamil-virtual-university-chennai'&gt;https://cis-india.org/openness/events/workshop-on-digital-collaborations-in-tamil-language-tamil-virtual-university-chennai&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikipedia</dc:subject>
    

   <dc:date>2016-06-18T18:13:56Z</dc:date>
   <dc:type>Event</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/wikipedia-edit-a-thon-in-mangalore-to-bring-tulu-wikipedia-live">
    <title>Wikipedia edit-a-thon in Mangalore to bring Tulu Wikipedia live</title>
    <link>https://cis-india.org/openness/wikipedia-edit-a-thon-in-mangalore-to-bring-tulu-wikipedia-live</link>
    <description>
        &lt;b&gt;A Wikipedia edit-a-thon was organised in Mangalore, Karnataka this 14th to encourage more Tulu-language speakers to contribute to Tulu Wikipedia. Tulu Wikipedia is is currently in the Incubator but the enthusiastic editor community is putting their best effort to bring it live out of Incubator. This edit-a-thon is one of the many activities the Tulu Wikimedia community has organised.&lt;/b&gt;
        
&lt;p&gt;30 Wikipedia editors participated and created about 89 new articles. Interestingly, 12 of these 30 participants crossed more than 10 edits. Some of the new participants faced problems with using the&lt;a href="https://www.mediawiki.org/wiki/Help:Extension:UniversalLanguageSelector/Input_methods#Kannada"&gt; input methods&lt;/a&gt; and the &lt;a href="https://en.wikipedia.org/wiki/Help:Wiki_markup"&gt;Wiki-markup&lt;/a&gt;. It is important to note that because of the lack of addition of Tulu-alphabet code points in the Unicode chart, and the speakers being well conversant in Kannada, they are using Kannada script for Tulu Wikipedia Incubator project. There is a plan to organise a monthly meetup and/or edit-a-thon to continue the momentum these editors have brought in. &lt;a href="http://www.tuluacademy.org/en/"&gt;Tulu Sahitya Academy&lt;/a&gt; has kindly supported the event.&lt;/p&gt;
More details in the &lt;a class="external-link" href="https://incubator.wikimedia.org/wiki/Wp/tcy/ವಿಕಿಪೀಡಿಯ:ಕಜ್ಜಕೊಟ್ಯ-5"&gt;event page&lt;/a&gt; (in Tulu). 
  

 
  


        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/wikipedia-edit-a-thon-in-mangalore-to-bring-tulu-wikipedia-live'&gt;https://cis-india.org/openness/wikipedia-edit-a-thon-in-mangalore-to-bring-tulu-wikipedia-live&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikimedia</dc:subject>
    
    
        <dc:subject>Wikipedia</dc:subject>
    
    
        <dc:subject>Workshop</dc:subject>
    
    
        <dc:subject>Openness</dc:subject>
    
    
        <dc:subject>Tulu Wikipedia</dc:subject>
    

   <dc:date>2015-09-15T09:07:24Z</dc:date>
   <dc:type>Blog Entry</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/events/tulu-wikipedia-edit-a-thon-in-mangalore">
    <title>Tulu Wikipedia edit-a-thon in Mangalore</title>
    <link>https://cis-india.org/openness/events/tulu-wikipedia-edit-a-thon-in-mangalore</link>
    <description>
        &lt;b&gt;This edit-a-thon is aimed to encourage more Tulu speakers to contribute to Tulu Wikipedia which is currently in incubator. The edit-a-thon is being organised by the Tulu Wikimedia community in Mangalore.&lt;/b&gt;
        
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/events/tulu-wikipedia-edit-a-thon-in-mangalore'&gt;https://cis-india.org/openness/events/tulu-wikipedia-edit-a-thon-in-mangalore&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Wikimedia</dc:subject>
    
    
        <dc:subject>Tulu Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2016-06-18T18:06:28Z</dc:date>
   <dc:type>Event</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-5-2015-coverage-in-prajavani">
    <title>Kannada Wikipedia Workshop in Mangaluru (Coverage in Prajavani)</title>
    <link>https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-5-2015-coverage-in-prajavani</link>
    <description>
        &lt;b&gt;As part of its ongoing partnership with St. Aloysius College, Mangaluru, CIS-A2K along with the Wikipedia community in Karnataka organized a workshop on Kannada Wikipedia. Prajavani reported this in their edition published on July 5, 2015.&lt;/b&gt;
        
&lt;table class="listing"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;&lt;img src="https://cis-india.org/home-images/PrajavaniMangaluruJuly052015s.png" alt="null" class="image-inline" title="Prajavani" /&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;

        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-5-2015-coverage-in-prajavani'&gt;https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-5-2015-coverage-in-prajavani&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Kannada Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2016-06-18T18:14:22Z</dc:date>
   <dc:type>News Item</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-4-2015-coverage-in-udayavani">
    <title>Kannada Wikipedia Workshop in Mangaluru (Coverage in Udayavani)</title>
    <link>https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-4-2015-coverage-in-udayavani</link>
    <description>
        &lt;b&gt;As part of its ongoing partnership with St Aloysius College Mangaluru, CIS-A2K co-organized a workshop with the Kannada wikipedia community on Kannada Wikipedia. Udayavani covered this in their edition on July 5.&lt;/b&gt;
        &lt;table class="listing"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;&lt;img src="https://cis-india.org/home-images/UdayavaniMangaluruJuly052015.png" alt="Udayavani" class="image-inline" title="Udayavani" /&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-4-2015-coverage-in-udayavani'&gt;https://cis-india.org/openness/news/kannada-wikipedia-workshop-july-4-2015-coverage-in-udayavani&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Openness</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2015-09-13T06:17:49Z</dc:date>
   <dc:type>News Item</dc:type>
   </item>


    <item rdf:about="https://cis-india.org/openness/news/indian-express-july-5-2015-upload-more-kannada-articles-on-wikipedia">
    <title>Upload More Kannada Articles on Wikipedia</title>
    <link>https://cis-india.org/openness/news/indian-express-july-5-2015-upload-more-kannada-articles-on-wikipedia</link>
    <description>
        &lt;b&gt;Uploading information in Wikipedia helps to develop language, said Indian Languages Programme Manager U B Pavanaja here on Saturday. The article was published in Indian Express (Mangaluru edition) on July 5, 2015.&lt;/b&gt;
        &lt;table class="grid listing"&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;th&gt;&lt;img src="https://cis-india.org/home-images/UploadKannada.png" alt="Upload Kannada" class="image-inline" title="Upload Kannada" /&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Above: A scanned version of the article that appeared in Indian Express on July 5, 2015.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
        &lt;p&gt;
        For more details visit &lt;a href='https://cis-india.org/openness/news/indian-express-july-5-2015-upload-more-kannada-articles-on-wikipedia'&gt;https://cis-india.org/openness/news/indian-express-july-5-2015-upload-more-kannada-articles-on-wikipedia&lt;/a&gt;
        &lt;/p&gt;
    </description>
    <dc:publisher>No publisher</dc:publisher>
    <dc:creator>pavanaja</dc:creator>
    <dc:rights></dc:rights>

    
        <dc:subject>Openness</dc:subject>
    
    
        <dc:subject>Kannada Wikipedia</dc:subject>
    
    
        <dc:subject>Access to Knowledge</dc:subject>
    

   <dc:date>2015-09-13T06:09:34Z</dc:date>
   <dc:type>News Item</dc:type>
   </item>




</rdf:RDF>
