From ed4032ceaefb3ee2082cdb02da0c8f563c0cb5f0 Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Thu, 27 Oct 2022 18:14:37 +0000 Subject: [PATCH] new deploy: 2022-10-27T18:14:37+00:00 --- 404.html | 103 +++++++++++++++++++++++++++++++++ elasticlunr.min.js | 10 ++++ index.html | 140 +++++++++++++++++++++++++++++++++++++++++++++ letter/index.html | 43 ++++++++++++++ logo.png | Bin 0 -> 38895 bytes main.css | 1 + robots.txt | 3 + search_index.en.js | 1 + sitemap.xml | 9 +++ 9 files changed, 310 insertions(+) create mode 100644 404.html create mode 100644 elasticlunr.min.js create mode 100644 index.html create mode 100644 letter/index.html create mode 100644 logo.png create mode 100644 main.css create mode 100644 robots.txt create mode 100644 search_index.en.js create mode 100644 sitemap.xml diff --git a/404.html b/404.html new file mode 100644 index 0000000..3742d6f --- /dev/null +++ b/404.html @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + Open Letter to Gitea - Restoring Trust in the Gitea Project + + + + + + + + + Open Letter to Gitea + + + + + + + + + + + + + + + + + + + + +
+
+

Open Letter to Gitea

+ + +
+
+ +
+
+

404: Page not found

+
+
+ Sorry, this page doesn't seem to exist. +
+
+ + + +
+
+ + + diff --git a/elasticlunr.min.js b/elasticlunr.min.js new file mode 100644 index 0000000..79dad65 --- /dev/null +++ b/elasticlunr.min.js @@ -0,0 +1,10 @@ +/** + * elasticlunr - http://weixsong.github.io + * Lightweight full-text search engine in Javascript for browser search and offline search. - 0.9.6 + * + * Copyright (C) 2017 Oliver Nightingale + * Copyright (C) 2017 Wei Song + * MIT Licensed + * @license + */ +!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o + + + + + + + + + + + + + Open Letter to Gitea - Restoring Trust in the Gitea Project + + + + + + + + + Open Letter to Gitea + + + + + + + + + + + + + + + + + + + + +
+
+

Open Letter to Gitea

+ + +
+
+ + +
+ Gitea Open Letter logo +
+

Dear Gitea Owners,

+

In the name of the Gitea Community who elected you last year1, we welcome the creation of a for-profit company that allows you to make a living out of Gitea.

+

But there has been some confusion as to the ownership of the Gitea domains and trademarks, which are essential parts of the project. As a Community, we trusted you to care for them because they are one of the most important assets any Free Software project has (if not the most important).

+

We believed you when you promised to pass along the ownership of the Gitea project to your elected successors. This promise is part of an essential bond between you and the strong Community of volunteers, as well as all those who rely upon our collective efforts.

+

With that in mind, you can understand our surprise when we learned on October 25th, 20222 that both the domains and the trademark were transferred to a for-profit company without our knowledge or approval.

+

We want to believe this is an honest mistake and ask that:

+
    +
  • A non-profit organisation owned by the Gitea community is created.
  • +
  • The Gitea trademark and domains are transferred to the non-profit.
  • +
  • The name of the company is changed to avoid any confusion with the non-profit.
  • +
+

These are steps that are needed to help restore the trust we, as Community, have given to the Gitea project. A new non-profit organisation also gives us opportunities to improve and ensure a healthy future, for instance by:

+
    +
  • Implementing an intuitive and fair election process.
  • +
  • Describing the ways in which democratic decisions are to be made.
  • +
  • Providing accessible places where all relevant information can be found.
  • +
  • Establishing a DoOcracy that works and continue to improve it.
  • +
+

And explore even more ambitious ideas: it is for the whole Community to imagine the future of the organisation and make it a reality.

+

We await your response

+

In summary, the announcement of the for-profit company was not well received and this reflects poorly on the entire Gitea Community. We need to restore a positive image as quickly as possible: please provide us with your answer in the next few days so we can move forward again.

+

Your forever enthusiastic Gitea Community.

+ + +
+

Signatures:

+
    +
  • Loïc Dachary
  • +
  • Aravinth Manivannan
  • +
  • André Jaenisch
  • +
  • Arnold Schrijver
  • +
  • Anthony Wang
  • +
+ +
+
+ + + + +
+
+ + + diff --git a/letter/index.html b/letter/index.html new file mode 100644 index 0000000..2bbc7ae --- /dev/null +++ b/letter/index.html @@ -0,0 +1,43 @@ + + + Zola + + +
+

Welcome to Zola!

+

+ You're seeing this page because we couldn't find a template to render. +

+

+ To modify this page, create a page.html file in the templates directory or + install a theme. +
+ You can find what variables are available in this template in the documentation. +

+
+ + + + diff --git a/logo.png b/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..8134a99df3bf6e2f22b2c53e8de4797d4e89975c GIT binary patch literal 38895 zcmeFZg;$hc)CM|q!yp|)3y6Rq(ls;)3J3_&f;32obm!0^At5Q<-QA#ccZYO0+;{kW z-*^9pyVjkxST4txbI!ZZKF@ykv-dGb>AegNCOIYu1j3P%mHYq#A<=+9hzaPZz&Fr# z#m~SW7&fw>zJWlz)bJmK1ijWK;7c-lDGhrSYh!!I&vr&2M@L6?v#%E43_sf#v0K}j zBpnEmgFrMOIY}{9r{ui_M>nml&%$@7^WJh^%Y;(q11GxW8=Vf2Ik`1H*EfP@qkBB> zMtNFz-;HIzn|tG0WhR}pGHV;RmVFGnOeudpP+oPJEgQ@r3#O>uy+?{R_(X>hO>$WW z8oWI1E0tVy~+6u+l$ggOw#CE=fx&j_@1 z@Xt`G*VC^>nP@I$@agK0{G?GCIUFE1zqsf=s{9sZ6u>%4b(-1X0;YV1>j0WePW+Xq=# zW7m`4sQN3|QflD}d$R?mwl}Z5BURYRR}5Iex=h|3ddi|Z+T=kq)~z&8hwWbC64!5;vJ8{wgL?Kv?4K^o88Q~Q zTbQEa|8qs%R&QS%G^#cUEf4>{fhj^Fv2Rgn36nWJiF93NEy~Pi3h=S2oo-Ha{FIPB>pBrcw!QMH$-d*aA2 z;`WArh)tP%?$lLx*fn9&goMDxAc#8>`gAaq#{^>Ly;FrRhNj)u`Dc`kpHm%lz8rFY zrThIMmG-xcQ4eiC=F{=uh79o74h8Jm4sb2`n^Ban{rM!%>^-G@gs<)TkSeBvRK5m& z7xdrk{jFD2cgqhg-794}<(aj`g3ajG?mIch(HkY+UXhT%?U*ME>YO0O@?(kOG3Pig6 z|E<4#I?m(63I(C5LT8Q|6LqSGB?5nKfUkxH3YZ|oc zq@c@2Ce1{L*O^1~zh%Dkq%-zBIRH+c(%`a|qZ_Gf0B>*jDur-R)>S9>qqjfAq(5Bz zUFg&6k-tw*?y5Ps0uS`O*fs}Sx14b~O*kLML;Mp7|1%Zg0MGHhpr}t#U}`kPNZNA1 zTe_rDsBT+)aRMqh&25|%yIjFNW5K}kb44|VK6uVby=9OuKN!mmjrbhc4jI5- z)$n&m(|6vg9j50YxLy4#SuQ8C&Nbqo1O2xxpy(NdyHo2WA4|^Xg8eUuMj1zC`isMz z6lBn8MziTB^CXmWsPXZ^PGk9s%kK(AFgOFNo=c8Bp?5~T@eE_L{eWPZ^_Pl0W+q!p z8sQJ(U;o6!iRB^|Eg(of(^Rv5JgHdnziin{rIq}i$t20ub;t^UdcK9D&?UWI9A1H? zp}nV=`85dCV;4!z`nj-0V*>q8hn97F1YlOno)a1fcjmu*4j_y~;o)RotcIV9Mnl#Z zKF)M+x6!d08WX(pLo}^Nlp+AXHPVdP=d)o&i(C0)hN;eJ*v3pa+{}S2{N~(ZSn=>i zn6jt4NB8($ZvP+0DZ0e}PR+#go-*5ojz>@jOJBGh;y`JXkVbyK8#)TQ^c!SD7N5^3 zno9cl6~dMj93jO0C=^+ZDD>8CDQ!Lu1NIy)X*C~@!s!GW>t-! z1peL-A;cuujX^mecA}5J`DR063?*Y9unLRchkGAuDFj5gUj)bDHrd6=PD;{RWki&ckzcXsji-BV{S8kJ znO&R-IClbPR~Jjy#cp3@!d?u>{8p2=Jh3t2%_rZpEBJ>Plme=cmjQ>X@oGjvxH&k5 z?g^`9Y8FDZrrfQI@qUqh7gTax1f@Y($*meLSM+K8F6tiHLUTy3sc5 zeDY05K2{|gdb*)9y1D+1Ow;_&ptB=}8NKDn?@K+ve%sO0aq|~HAwhllN^2(RU&=Vh z8Vcoa)PWpr&vfS2{#cR~MZIJG)Qi}(#a+^E?klkEv>NrZ1K_a5BI zX|0&o2b6f+k<{v66LHlqwqAXmZ#YIRTy$>Oox{=!2rGMd7P`8gDwqy}gtVjk<)qY4 zQ0=$1H10ow@f_Hk>6=F2Jw_qk(lxUIH`QG1!9+gr~C zqQegE_{NSZSJnd|G|$Iuy=5eI4}3AUy+NsngZ>Et>l2i%u0sF4TF(8fgC%=rDXTg#mLFHNiFh`hZ!?Upjj>SQ@by1GuAc^7+rHdQzP-l;ZdF z>6;rlBY1q!11Y@i5Lfl(S4*o8pWP7=)l=`^C(qnIySqvsGB`YvRxhTono7?_T=UJL z+V91V#}8#5mQZ>1_VJoPue1E%bY!ZzJyv`Csuukh43=#)!^m?f>K%qg-4)(u!oktp z@b8yPM%%~a#c!O0{~E9h;&el*w;RcGvZT+?mmbNgAs(6z*dXW&6I$m|r@K^cwVv;( zo`k1@#1m)D0C(7m@WhY!+AvdPL0m!HeG`(yN~;MKn;HfCy*}>?3K1A;CwW-+On>o1 zai31$iBU6hCyT&tdG4_-F6M(QZQTZ^2*lgSPSsa7OqwVP;&ia2R2? zH^`IYIVtkmUZ3QNhI-vyYdv6CH{A>gH$2j7dHU)J9b0qk@8rm-W&Y&mob>z`6=^Ci zv3s{%Ipws_AF;as>OS3P6^bQ#bpvoLl4dms_^`LI#Moi*1|N^dS*uCp%PgHfiLelOPz8Z*WonjFfw|_d?;^C5 zCY8gGGPRB;mRd+!bZ)IuUO<1$ZjH8E@DhIWyb@_zPkw3Boe?`)4&Ql^+W-nMPPa~- zE?+j?h~tU<%S==H_{4{;cHp$N=-#WTmn*G39W|la4U(%9tHXAio3xl)!SFD_)JM){ zyIWU|DC*c~@4LT>bBE;q{e8Z{EJr(zZZdY{`esvgSDq!ec@}eL(yRYo)NH?tARVJp zLI)`x)S}Gcme@YW;${TcXa?hEYujIo<{&+xYio|8@;$z3!A1nV`h5sMnPVaTZof^} zITHC<1*QE}5`0iVCaJav0$N-0xT%aL%s#kX}%qP?=??8AG^icLo&H7f` zLV6~^P*926TeN9&tb8qbxxMREPpa-Q%2YAQAvR4kUzy)J6ZTId*V#)5=~9?0kM^M^ zu{kR|lD_+wozoJ|^qZXWatQWQt(Y*~$po2%wNCTvPZg)@ znZtH9lREon4WMVj2!3m?NY!k;EX(V;4QfPhkr=p;4!)!Zw8Pi!cd+C}e=uk7yGN?> zb|dik(9x6dIsGd^Ou5Y*I`bGSbgAX}G4*<$g+8mphSk*4%3W~XT)j@#lZrm5l_bHsft z3Gmx2zjYN<){6S?{JbUCan_SZk)rT$%^fv2`3Rl;*znDEY)nt0nvWeA?R6X^8nRLg zmGsZXV%_EgxU88@{VGna(++pBjw0R**)vp-G8syrS{?D1r6We6nnSTEJEeO=_zIs% z5Zu~6W~cUrbH1E0z--aFq%Jp%WFVuC9kS8(1!K-?-Id)R*o)X~kl^Dv);cuVC`jyW zUo_TX5WJ5?q5u|0%sOYshBm?bgCXM^<-t#{1d%66HWg2^5q54cWZK2XgD zAX@w$X)$w>lu*N=uD0{$oRQ3N=>D`UF|Gke4S~eWFVdG(()Djb3poRVM)6~c+J7Gw zU_y@dNj9YvC9DU?G~zV;yN1l*Tox;M?&I7Dtyvv^6yciLv=*{OZ!!0d@DIaekN&p|2C>*c&Z8 z(FpfGUIlfBAWf&ZVdFurFvK;n*tcD{+4o)1Trys6o~*dEm-d&_Co>Sj`olS1S~sna zX*Aq^RiEU_qHupF*v1@+wry1{X z#zq)R_Q#XU+X$kjMnT%ts;xdx4Z9@Q92s#p1e(R#a@64f%EF4i9Yw&0*!C!Pr-tHo zTS^U7eKK4x5)uk;rI29BrM+ww{?f9~S5$jsdLfRf_upCNuTH;Mk44baeAk46mT^e# zQGk3>?O$9iz-~jmkA=6bwAk5@`ko-SHCP(=-cZn}$7Z28-9+al0Lj?lhi%PK?*N3y zhtIBL*YHZuSv1PmU{bO!jSl?L#61@9n_XUa#6!WYC0m!<4ff4%fz(6c=>PBm4=Dn& zf4~XoQ>JZ0DzR}Xg-WltoE`@rq%={Z;n6VH8z<}H`YV(Nk7-+xyMQ_)yr%=ovu#$Icfn5RO_rdr($DF5WQuc0Klk>|?i4vsjy5-pr@ zN0WYiA3f%*h#nsR1y$PT*RCC;8j4-MzU!Ny{=Sj;4S&2HI9KBLB;a==w%5VDD+f4J zas&D^#3{4)u8lW$cy9-wcD>;EbkLGi z;l})P!kOmBNCzf>hk8qw!lc=EY&Q3`8&)%{{o%{O^6HJc4#+^}lC+1;fFJ{Cl;j#p zmum$*>>NaQe}_sW>!*=b3bWI94qD)|rS1sBb0f08$&5(jn%ue(&fn-k{E)n^ zdh1eAdun-B{VTxxcwzK4CFMfE$e+)7ONQ&ha0o}8e5TL~xX7A}U2hE`e(<%mcli{e z@+B6`rE+|}Y!g+;_DJ0{%-%q5%bBlf%K+{W@(qK&*@Fk5&IC-9I}IqgiPc0_P7`j6 z>t@3TE=!>+QeE4@hAd+m>nGeRJ-DI+aK$7E*KQ4!P^Z)jgf2P%NIC6b6y~d(ONq!A zMcozPi)Yx;7KoraX~eoKLY*_zg1mL66TY!PGHF@E@@@owSiCv$LY39TNXF)`d|b;U z8p^sdaU>&L@*Zz>c_t5huft>3Y6~iucS2(wi~(1@povqyo+s~8@eG$YMwmmL)Sqi5 zpTF3<1oluv#QOQ*P6MUMt6Its!6Aq9(q@fZNZ+29#Z*#(I8vC`8AF`D?ydo40v`=q z$7F|Mx+O9AXd?hg6${Rsa0;7@L{?XD0rZ|x)&>%@azj*5Yc)gQvA2E*rn0X@-N5zR zV;f4<@7=O}topkv6VonE+@-{@KtbE?J2k$BLp$x#ZI((Y*UcCvsta`lv)}k&P_6!m zTCMe1*yw>CPslWo9H>}qB&alzP?c=|nQ&;Y2@U>(hzPu4cmMN}&i<~F*7k5NljIk~2S1N* z$3N5$YXoYhFx7d1S_6C|%Dvv;KY4`X$HOcfWoW36zjnXS!;lCcy&{X6y7}vS7T&MP zS7k@ z{@9!u3eYEb%(q-iyRC&^u9bLryzsbc)m!WPRg=NdRheDAEu_x%N3EXb@a#x)c!K8r zZk?=oK*yRZKp+73JA9&KwNAB2CYQQ^4w3xj2Wr1R0f}Tm+vYt{wmIU;F z2s5GbSX8$5i!hUmMc-7B6UVFFRK0NO`A2n)mPdr2lR;=SH~XQmjHq}4O(m?C3?yIx z?W~ZX4xyho-|~#gycdbmvR*}ewm+;Re1G@z&M)Z00barF z0@eM`;Low8UzeIRY7TXQK(AeUwNd+Jroi?gqhOdwZ~0TWc@~zOeb-&QMfDdFFbL45 zos%1mFlRV>k)CM#a>nx#NxeBtN~$G5Rt)8<_AQgh`aztGmF0{DBL;JSa>E7nxih6y zrT^ou`&)Uk@#f=UJx+n+LO^(&EH;#yt7`x?4w*{Mv`7*zr+3M_Oljl^gR=Cq$aCfYTg$I zP=w_zj^79V%iqM*x0a#Ccmv_f`H@s@J{JjxN}JgohUe#q7=LwtJX`@oi@?L-`=pu= z4x#z)uw#|~{LHy)u+e_-EyHfh4OWu3k{0d0l`rjQ!sSM37r7M*d5du@K_+L6y0OqG zP5ix|jizHqqFLZL#XJxmE#%PA8xMm$1L)i?l$F`zUF+RRuP})qBvT(y~-W z`%Qz+B7^cD)i;=tAuRrRXam+l13Deh{1jIG|;u8qI8ufdh}YH`6@*8 zfoHRdJr1(LH-{J<7~K0@v1xPdXPiTkhi&BDR^{hj}$lV}-!xb|rx#l;KRbCXC(B z$EjArJV2WAQ^t>{2#^QN^lpSjZ{>yvr7Il7;&tLTL z`+U20WQ4=bcd*m4GV6#_)F<7MX=7$_B+jh++gVfGdJSm`X~187dXPwhd!xohE>EtI zvCy5PVtHumTS6;1I6N5!d`(&itRSehF^V=!NJ~VO+GnP)e-w$)t9aJZq;uj zlHg$|h>~xcddYvxmHmP)j){=A<%;5?oC9)x+2$>VqNF6(hu2t6rUNBuehL~!6m^^g z*BAs@$v6gg6OjMy1*q72f35W0yBdYoo(+TB=z16tbJj(IThJ1myXR8nse}5%y>0c> z+;RGI(=#>81y|;}jtU{&qaO6$y=;#U_mPh}(vp(Rv25XM6pjyMsNIed%D`Y^lBeXa z=~07!D6A!52>+&;&8CeWHm_g%k*e0O4zBW8aek~Ii(#ArLGfO|Do>*HUyCa=^ZagU z!-P?5RA{?OpZkhh!C>1lfSTLvyoF}#WI2W5Nd?Q@)+lUeo|PdXr&Xs$h|h{YZuU{LblBpw$?gZ}`GJSU z5!*@;*$Tz6&~p=CU*}!CH_BnJ*lT5;1!{qz8EWo*MP+MS0erDkqp9-B29r4?`PnP?8 z*@nB~l)w?;jF}BwtR7q6uvPAh)PwRNj$U06F#^Zs?r_!`u1tLCG1W$tJp;xZzf#lf zX z788~b5AjC%jdAo+K~l0uxc=VwNg_0S!;VmSj$+|5yv!NMvl&U1cqinquPXLtWzo=! zST*wJ;Rta*5EohKSwGH*u^XjveC{J7!f&-sz2=!UJS{WdsajlGGP?et>45Bamb-_p zYMA^*Mp6>w1sCDN6z@XzNO9zu5%;NLBi6m?0xlIqVmGHhM|`zvm>VrlH!MqLi<$6( zHVS$b8_`P6ZR}+mYZ$=`;q60IkBEN+mfFl%1sTpC5D{sG>9~<5sNm(|&yT&vcSqhW z0agP^gQLBEbi*%gJ@L`jeqyPEOTLfPTDc!{C6=P?HJ z1I^wvzMuvmQP^VCX0LCFky8C7-ZneTakp4!fGwC2oJs=i$pD{4UPkcW%J8g()HFf_ zQKwuy4(nLR`3d_!<&m{}{~W*l!3(d@C;nWUzB-oh3^`7oHzNsqtL%N@Pm63``*)wy zxUc(Qf`CK*M-3iZ8qElW{f0++ZGfz}F&{YaY4-lT! zeQXVH3jNGj35bU3AQIv&)Cx~GO5u;Do-M zVGMW}t+m4q$-t<*aPo9o3B{m^9v-giyd440RUe%)JrK2M-WyH7cUQ1dFh(2;X6W)$9d0z@R7(jI%$T=`$O=eG3rI39DVBR9Jhu^xN0Xz56~c;o5Y9& zrSpDMS@}TR5|Y3ta{kz?n4yiPLW$OM*&FUPX_NDR#OF;Mq|;OQYNy`Ws5-?I0cAf# z{DAc&B^+r_D_;7hcYSUj5ek$=D;IuMk&ENQDkoRGe;}IfjE^*PfTT{V{e&EsY2EI_ zFX^=uoL!a@$YuLp(Iop!P(GPH6sWzdAbI*)+G;z*1Q3KWo9a=X?IBz)ce4T%Ql|Fk$6>A@|2rGGbXd)eg9G^9FaW4DfM-E;g&fxzK z$=dBADSMe=naCK6$5Kak0puiKJI%>;%P%FAT%ZtuVbWpBXE4n4PS>f#@+@xQonun3fV zFZ;hiKWiG@okg|y8YwnuBp5?MMW?fF%0Aj*z?Y+MUzCGCce++Hr#>a|5G>chN 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:block}.terms{list-style-type:none;padding:0;line-height:2em}.pagination{display:flex;justify-content:space-between;margin-top:3em}.pagination{text-align:center}.pagination-item{background:#fafafa;padding:0.75em 0.75em}.disabled{visibility:hidden}.pagination-item a{color:#333333}.pagination-item a:hover,.pagination-item a:focus{color:#a31d1d;border-bottom:0}footer{border-top:thin solid #f1f1f1;margin-top:3em;font-size:16px}ul.language-select{padding-left:0;list-style:none;display:flex}ul.language-select>li{margin-right:1em}.header-img{margin-top:20px !important}@media (max-width: 840px){.main-wrapper{margin:0;max-width:none;overflow-x:hidden;padding-left:25px;padding-right:25px}.header-img{margin:10px auto !important;width:200px;height:150px}.container{max-width:90%;margin:0 auto}.pagination-item{padding:0.5em 0.5em;font-size:14px}header{display:block}.site-header{text-align:center}header nav{max-width:100%;text-align:center;background:#fafafa;padding:0.5em 0;flex-direction:column}header h1{margin:auto;text-align:center}header nav a:first-of-type{margin-left:0}header nav a{margin-left:5%}article::after{background:none}main h1{margin:auto}.nav__spacer{display:none}} diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..ed3883c --- /dev/null +++ b/robots.txt @@ -0,0 +1,3 @@ +User-agent: * +Allow: / +Sitemap: http://gitea-open-letter.coding.social/sitemap.xml diff --git a/search_index.en.js b/search_index.en.js new file mode 100644 index 0000000..b6c9bf9 --- /dev/null +++ b/search_index.en.js @@ -0,0 +1 @@ +window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"0":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1},"1":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1},"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"5":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"k":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"h":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":2.8284271247461903}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":2.0}},"df":1}}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}},"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.7320508075688772}},"df":1}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"i":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"w":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.7320508075688772}},"df":1}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":3.4641016151377544}},"df":1,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"d":{"docs":{},"df":0,"#":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"p":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,".":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"2":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{},"df":0,"/":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"/":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{},"df":0,"a":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}},"k":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"g":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"ï":{"docs":{},"df":0,"c":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}},"w":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1},"x":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":2.0}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.7320508075688772}},"df":1}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"w":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}},"s":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":2.6457513110645907}},"df":1}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":2.0}},"df":1}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"f":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"v":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"j":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.7320508075688772}},"df":1}}}}}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}}}},"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1},"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"y":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}},"l":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.4142135623730951}},"df":1}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"1":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"title":{"root":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"http://gitea-open-letter.coding.social/letter/":{"tf":1.0}},"df":1}}}}}}},"documentStore":{"save":true,"docs":{"http://gitea-open-letter.coding.social/":{"body":"","id":"http://gitea-open-letter.coding.social/","title":""},"http://gitea-open-letter.coding.social/letter/":{"body":"Dear Gitea Owners,\nIn the name of the Gitea Community who elected you last year1, we welcome the creation of a for-profit company that allows you to make a living out of Gitea.\nBut there has been some confusion as to the ownership of the Gitea domains and trademarks, which are essential parts of the project. As a Community, we trusted you to care for them because they are one of the most important assets any Free Software project has (if not the most important).\nWe believed you when you promised to pass along the ownership of the Gitea project to your elected successors. This promise is part of an essential bond between you and the strong Community of volunteers, as well as all those who rely upon our collective efforts.\nWith that in mind, you can understand our surprise when we learned on October 25th, 20222 that both the domains and the trademark were transferred to a for-profit company without our knowledge or approval.\nWe want to believe this is an honest mistake and ask that:\n\nA non-profit organisation owned by the Gitea community is created.\nThe Gitea trademark and domains are transferred to the non-profit.\nThe name of the company is changed to avoid any confusion with the non-profit.\n\nThese are steps that are needed to help restore the trust we, as Community, have given to the Gitea project. A new non-profit organisation also gives us opportunities to improve and ensure a healthy future, for instance by:\n\nImplementing an intuitive and fair election process.\nDescribing the ways in which democratic decisions are to be made.\nProviding accessible places where all relevant information can be found.\nEstablishing a DoOcracy that works and continue to improve it.\n\nAnd explore even more ambitious ideas: it is for the whole Community to imagine the future of the organisation and make it a reality.\nWe await your response\nIn summary, the announcement of the for-profit company was not well received and this reflects poorly on the entire Gitea Community. We need to restore a positive image as quickly as possible: please provide us with your answer in the next few days so we can move forward again. \nYour forever enthusiastic Gitea Community.\n\n[0]: https://github.com/go-gitea/gitea/blob/main/CONTRIBUTING.md#owners\n\n\n[1]: https://blog.gitea.io/2022/10/open-source-sustainment-and-the-future-of-gitea/\n\n\nSignatures:\n\nLoïc Dachary\nAravinth Manivannan\nAndré Jaenisch\nArnold Schrijver\nAnthony Wang\n\n","id":"http://gitea-open-letter.coding.social/letter/","title":"Gitea Open Letter"}},"docInfo":{"http://gitea-open-letter.coding.social/":{"body":0,"title":0},"http://gitea-open-letter.coding.social/letter/":{"body":204,"title":3}},"length":2},"lang":"English"}; \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..f33c44e --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,9 @@ + + + + http://gitea-open-letter.coding.social/ + + + http://gitea-open-letter.coding.social/letter/ + +