From 760ba3728a080a3d66b9e031aaef608db085e136 Mon Sep 17 00:00:00 2001 From: tinywall Date: Sat, 14 Sep 2013 22:56:08 +0530 Subject: [PATCH 01/15] API URL change --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index aae9c60e1..4cd333273 100644 --- a/index.html +++ b/index.html @@ -80,7 +80,7 @@ repos = repos || []; page = page || 1; - var uri = "https://api.github.com/orgs/twitter/repos?callback=?" + var uri = "https://api.github.com/users/tinywall/repos?callback=?" + "&per_page=100" + "&page="+page; @@ -136,7 +136,7 @@ } addRepos(); - $.getJSON("https://api.github.com/orgs/twitter/members?callback=?", function (result) { + $.getJSON("https://api.github.com/users/tinywall/members?callback=?", function (result) { var members = result.data; $(function () { From 5087d54d644d21a7f0f10929900849fdf7ac9eb4 Mon Sep 17 00:00:00 2001 From: tinywall Date: Sat, 14 Sep 2013 23:03:54 +0530 Subject: [PATCH 02/15] Tinywall branding --- index.html | 22 ++++++++++------------ 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/index.html b/index.html index 4cd333273..e6ec7bc10 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - Twitter ♥ Open Source + TinyWall ♥ Open Source @@ -26,9 +26,7 @@ // Put custom repo URL's in this object, keyed by repo name. var repoUrls = { - "bootstrap": "http://twitter.github.com/bootstrap/", - "finagle": "http://twitter.github.com/finagle/", - "hogan.js": "http://twitter.github.com/hogan.js/" + "paperwhite": "http://tinywall.github.com/paperwhite/" }; function repoUrl(repo) { @@ -237,25 +235,25 @@
-

Twitter is built on open source software.

-

Want to help? Join the Flock

-

Visit dev.twitter.com

-

Logos and other goodies

+

Tinywall is built on open source software.

+

Want to help? Join the Flock

+

Visit tinywall.net

+

Logos and other goodies

From c44ebc247e93f7232597e507f06bd35a005655e6 Mon Sep 17 00:00:00 2001 From: tinywall Date: Sat, 14 Sep 2013 23:28:54 +0530 Subject: [PATCH 03/15] Updated Read me --- README.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e91e6d521..e92191a38 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@ -twitter.github.com +tinywall.github.io ====== -The source code of http://twitter.github.com/ +The source code of http://tinywall.github.com/ LICENSE ------------ -Copyright 2012 Twitter, Inc. - -Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 +Copyright 2013 Tinywall. From a2d20384ecdb5c2bb1bfcb16cdc75b4a80eff1c1 Mon Sep 17 00:00:00 2001 From: tinywall Date: Sat, 14 Sep 2013 23:30:20 +0530 Subject: [PATCH 04/15] Create CNAME --- CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 CNAME diff --git a/CNAME b/CNAME new file mode 100644 index 000000000..9b48d145d --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +oss.tinywall.net From d5ad60c406214e89b9abf96a0fae56ae2b1d758e Mon Sep 17 00:00:00 2001 From: tinywall Date: Sun, 15 Sep 2013 14:12:41 +0530 Subject: [PATCH 05/15] added multi sub domain --- CNAME | 1 + 1 file changed, 1 insertion(+) diff --git a/CNAME b/CNAME index 9b48d145d..b39e8883b 100644 --- a/CNAME +++ b/CNAME @@ -1 +1,2 @@ oss.tinywall.net +demo.tinywall.net From 14e589d1f76e7467be6230db35a9bc9ad4e1881f Mon Sep 17 00:00:00 2001 From: tinywall Date: Sun, 15 Sep 2013 14:44:15 +0530 Subject: [PATCH 06/15] revert --- CNAME | 1 - 1 file changed, 1 deletion(-) diff --git a/CNAME b/CNAME index b39e8883b..63631fbb6 100644 --- a/CNAME +++ b/CNAME @@ -1,2 +1 @@ -oss.tinywall.net demo.tinywall.net From b65b20230f4f35b5375f5fbdf799615ba5c2e4d3 Mon Sep 17 00:00:00 2001 From: tinywall Date: Mon, 16 Sep 2013 07:19:39 +0530 Subject: [PATCH 07/15] Remove members section --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index e6ec7bc10..1c5f8f5e9 100644 --- a/index.html +++ b/index.html @@ -134,13 +134,13 @@ } addRepos(); - $.getJSON("https://api.github.com/users/tinywall/members?callback=?", function (result) { + /*$.getJSON("https://api.github.com/users/tinywall/members?callback=?", function (result) { var members = result.data; $(function () { $("#num-members").text(members.length); }); - }); + });*/ function randomItem(array) { return array[Math.floor(Math.random() * array.length)]; @@ -247,7 +247,7 @@

Statistics

public repos
- members +

From b9510cebee688205a7939b2dd4675b19f8100587 Mon Sep 17 00:00:00 2001 From: MohanKumar Swaminathan Date: Sun, 6 Oct 2013 23:52:47 +0530 Subject: [PATCH 08/15] Few custom links --- index.html | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 1c5f8f5e9..62b204f41 100644 --- a/index.html +++ b/index.html @@ -26,7 +26,8 @@ // Put custom repo URL's in this object, keyed by repo name. var repoUrls = { - "paperwhite": "http://tinywall.github.com/paperwhite/" + "paperwhite": "http://tinywall.github.io/paperwhite/"; + "scrollzip": "http://tinywall.github.io/scrollzip/"; }; function repoUrl(repo) { @@ -35,8 +36,8 @@ // Put custom repo descriptions in this object, keyed by repo name. var repoDescriptions = { - "bootstrap": "An HTML, CSS, and JS toolkit designed to kickstart development of webapps and sites", - "naggati2": "A protocol builder for Netty using Scala 2.8" + "paperwhite": "Free minimal responsive website template", + "scrollzip": "jQuery plugin to trigger action if element is visible while scrolling" }; function repoDescription(repo) { @@ -134,13 +135,13 @@ } addRepos(); - /*$.getJSON("https://api.github.com/users/tinywall/members?callback=?", function (result) { + $.getJSON("https://api.github.com/users/tinywall/members?callback=?", function (result) { var members = result.data; $(function () { $("#num-members").text(members.length); }); - });*/ + }); function randomItem(array) { return array[Math.floor(Math.random() * array.length)]; @@ -237,8 +238,8 @@

Tinywall is built on open source software.

Want to help? Join the Flock

-

Visit tinywall.net

-

Logos and other goodies

+

Visit tinywall.com

+

Logos and other goodies

@@ -247,7 +248,7 @@

Statistics

public repos
- + members

From ea892d8e3c5403c996806d1b43b8acc4502890db Mon Sep 17 00:00:00 2001 From: MohanKumar Swaminathan Date: Mon, 7 Oct 2013 00:02:39 +0530 Subject: [PATCH 09/15] Fixed URL for org repo api --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 62b204f41..725ee5d83 100644 --- a/index.html +++ b/index.html @@ -26,8 +26,8 @@ // Put custom repo URL's in this object, keyed by repo name. var repoUrls = { - "paperwhite": "http://tinywall.github.io/paperwhite/"; - "scrollzip": "http://tinywall.github.io/scrollzip/"; + "paperwhite": "https://tinywall.github.io/paperwhite/"; + "scrollzip": "https://tinywall.github.io/scrollzip/"; }; function repoUrl(repo) { @@ -79,7 +79,7 @@ repos = repos || []; page = page || 1; - var uri = "https://api.github.com/users/tinywall/repos?callback=?" + var uri = "https://api.github.com/orgs/tinywall/repos?callback=?" + "&per_page=100" + "&page="+page; From ecd247cb42d074bef85dbc4a62eb1e2be864f1d9 Mon Sep 17 00:00:00 2001 From: MohanKumar Swaminathan Date: Mon, 7 Oct 2013 00:08:44 +0530 Subject: [PATCH 10/15] Minor HTTPS url fix --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 725ee5d83..3c6124dec 100644 --- a/index.html +++ b/index.html @@ -26,8 +26,8 @@ // Put custom repo URL's in this object, keyed by repo name. var repoUrls = { - "paperwhite": "https://tinywall.github.io/paperwhite/"; - "scrollzip": "https://tinywall.github.io/scrollzip/"; + "paperwhite": "http://tinywall.github.io/paperwhite/"; + "scrollzip": "http://tinywall.github.io/scrollzip/"; }; function repoUrl(repo) { @@ -135,7 +135,7 @@ } addRepos(); - $.getJSON("https://api.github.com/users/tinywall/members?callback=?", function (result) { + $.getJSON("https://api.github.com/orgs/tinywall/members?callback=?", function (result) { var members = result.data; $(function () { From a22660bb6646fa88776495a71bbaffee0347bb7e Mon Sep 17 00:00:00 2001 From: MohanKumar Swaminathan Date: Mon, 7 Oct 2013 00:15:35 +0530 Subject: [PATCH 11/15] minor json fix --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 3c6124dec..b1d554922 100644 --- a/index.html +++ b/index.html @@ -26,8 +26,8 @@ // Put custom repo URL's in this object, keyed by repo name. var repoUrls = { - "paperwhite": "http://tinywall.github.io/paperwhite/"; - "scrollzip": "http://tinywall.github.io/scrollzip/"; + "paperwhite": "http://tinywall.github.io/paperwhite/", + "scrollzip": "http://tinywall.github.io/scrollzip/" }; function repoUrl(repo) { From 1b7818482375da12ede0d95e22dfe0d00459cb6e Mon Sep 17 00:00:00 2001 From: MohanKumar Swaminathan Date: Mon, 7 Oct 2013 00:48:39 +0530 Subject: [PATCH 12/15] Branding Change - Logo added - Tinywall Alt tage --- assets/logo.png | Bin 3006 -> 7126 bytes index.html | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/logo.png b/assets/logo.png index 34b067db252b34ac503b54a5c9af5cb29cf94647..b3ae4e0526da015fc88446d738b93185b8344b6a 100644 GIT binary patch literal 7126 zcmV;{8!6<8P)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z000pINkl9$UQ7OhrofGP$otzsBzWlLOH5=q$+ zwY-UYJ7@ARbN0-+?VjZ>B~_dsSddzsIcMgdZ@&5df94E{F$QI=?PnKPaOvt@JoQ9B zo;ut=P^pA)}{flf2`~vq^L;!ON09l*L*DQP_vi< zK;ke2llw$y{+$d+CfBMj^frS3omK9vAyu69qpKamz&;iwf3ivy- z(w(h8_^e#XB>D^vUKd&g*hzrBDM|#`i2x?RPagIqkFX(#YvsYfr0@7MOa?5kZcV*@ z^2k{NJ_{17^}2bhWTnVy4mz0LggKbmDIM8T6YOV|U3k;C-x zKTg+xTHP92yv3e#$J3yXI)@r4%;s}5Aa-v0})BA&Kx;o1DDCtgaY6y z{d5f&&tPKSvTlt}L|}~Y$yx>V8*8Rc!8+-F&BTF&@perk0Q(j2m4%^$fx!)WCqLs6 z>~KpR20xG)^GhR0GX(|AE&wzlSPb}NZ5x{n6VK=bod_&2z$H{_X1k_s0r`dg;IGN>$L`SjoOb@ zBGl^^esbZq>OTeiZU+GQqgpxpLXu1&a?c9HJd%iw zh`7ADyIsR#xq_N$Li1)iNtzh~K14vhp;%u5zgww;AT7?JXqpVVrs3ee7&M!ei9Dl5 zpphhGiU%;p5HmC!9Ebq`8YXaSt%_Ug6)-SpM4%m1JrURO{zt30zNA>+mDM34<%K4h zN7=XJ&#{{p!$2a2sc-%!jy~Cse}8WYKR#DNqE8QyHWFz|Fkgy)_)fcLN5 z#rOXH5=;;bja>5sc?V>K$*SJ4@a~1%c>9k|hQz>{?`8w`WV1itac)2t&V37i2fqxtDpWUzF+P!V8Y*t-T z>-Cd^`0|M(*se8P6HH+25#iGp({b^t()tScoie?>>0V-7)3h*ns2^W@ZK!o%EQ;zH zK_j4MT3FfSfM43IqGmDZ-r$vhZ~flqp%cN9?zPkRCrAV8riFJE>nq@Q5cN7gnX>|0 zty_5W)niB=aPNsRO$)WUg<8Wz!?Zv`{@klHaHCwowR`t*XRC%v!$hOOP^+7$)J<3( zP`~lgAijL^2rAV^Pcl=9n2w8A@8bIMrpoFlR7chJF6xJASvZnR;A^k@+5U4+_TzdS{e6+lQK11_w?Cj7I zF&&q#-o>@04LrApUs6$0CxR_+R{CzPZ{ybbHg0WHaC5za>*Z}UTClA>Q2JszzVX@+ zo;$i9HPZqJsMH$xotK}&Zwx1)>jYg720Z}iIw83)=8{3(yd_N{#`x(T*ZPX_BiLru zG*-9kh>4fG351Pm9hJHjF+^a_CI`kPOef&wuNP9+pl`B%+`#)+SFyOXiQ_|iay!0a z{76nBVmk4?@48@e4dE;umf2x8cstF`G)D{{G}Pq?uvc^c^};R1_{t(6xA`jzK2D@f za7?aM-yOu(a)znPT?UD`hT^qVd~p4q0=}~7NMt(!pKDVl?O@n-m(_7=eFC!>emMWX z3i!&}0MOp5!@7_f)Om>NY~^R}l3faZjR=;tHxCq38b2ahT^llY%Jj4|#&0Qox^3AW z-JPp|9|^Y%B!XG_C>-hlsYGtbQilsq%9PZ3$jt9-C$5_;B5+CM;iX)>75%BzhK0b_ zP`c3gd)*Y{N0b&!yd`C0EfLr8Zx@$w<;Ggu^8fMvGCp43K-|#5z%wf6f3bp(Z?Cs4 z`;!Z|apmSZ;)dqPdghT(-F_6~D+>odIVnsc#0=om^$Onp(R=vHOM~c-8}P=7nnt*{ zS;c>U_$e9|gP{``@i(zp@ZoLB z6!3Rd=>r`xe8UF1JfhcO>s4TE6l2Bdh|H`JO>W6U{VO_|d8 z51jPj&ZRTY@7_gT&sl20*Gk7}`ee6!q=@%u9%TynyN!1*fP<1Mu6NJ_0%RHBK|q(^ z5qD+)l1?chmD*HN=K%+{((cISG4{-*ZiJ?HpAt??`g;+c*??b5&6vSGsCZ#}Gn;E~ zCWVYVWeWJcWqjsla?km%ZpOFK?p)(NMO@zCM#P+f;hG)f<4J_)E(x z833~Y&I}zpI;C6^0DK1BO~>TgH{(7_mNfy-q)T1$g}H-Z*L^(HPvre06Hb{#T+?-t z=2X_+mX=p$089dyG5`#V?^DV(!S?jvz_lw&>xk*PFS;b5d+e-@{AaN2&1@vl@5|bd zf9CN0#X}}%ltX zuxbqjdhp)^?`_oXeRy+iwAQe6@;#rRW+Fw_8-H-c#w_mQK zA8^m$$i%z1Ht8bR#t02NcA8Y_=H&FfRZUR*!Q{Hsa5p7C+0P{JA!D_%`@9 zj-+^QL9_?ryIExOV_ky2DAlVZ?kj^-E;lRcGc4M$Aj*1uGP|q#fP-@}kWf0qz@p3l z{J!S`d~-(f%}g)bXY|k^^OB^P@UagEiVdc7$mWlSOkcKB7X&kuJk#L3V4+E5^XFa9 zaU7Tw&KviXpO(tcBb$FEqz;*o@*`3^XG9%4F&hw5KKA1G&H|Y7e1BRh=VwdqlUd=n z46^yly<|p@*=;X12cGSpXc(9j13M`Ot4$`elI-)An-YM}i1xkHa<+fKj6W$&!J~l{ zi|M#fG9y2~E^U7$ zZbI_esYglbWTnmt548CI*?O>*RG4aUkFsE!An=Vz^(cpwFG+QHE95D2ErO}J03dg2 zQNfv!24cINv*S{o#&!w#HX)Qls{8NrNW0LDb1cV5hJ zL16l-tLoz zq06l!z0Ttgw{3X)DgN0W)T8KOh)2hA>C?#O&xlTb3(h)2M$7`E0aD@6BU1ZfL=5bN zI7%Iq>zbI19y=oy!8s#s8ZZ(;UJbjXk$)zc?nUIki{LK{DKaP8lYz5lFc08(L`fFL zyythZ-t92Z>1R!7dV%(m#9S&6--TikCpG*!q4 z#i@{BE7xR54uo)!?Dk?$ki^U8XF5tX@&RF!!+Z;$q@=jUyM>|DHumAZN7=ZV*S}r|77ziQ7-l90H4c>xh5ND^XFWwoz0Jl)!2*#*o78TUlM$g>vWR^c*AFe z6tJ(G3INK2u{ zvUI(Z?Qz(64B7mAbN1l=uvdk<#Xun<24-L{KsvLWS|dXTv2ad4YUPY8{j z5e*m#$==L~1&LNM!&%W8r@(XGLBY*IGk1Qc0MVE_~a6t9RHZ7d{GRJ$sS;!Ebh|^180y+pLP*vHa`Jp1$REATmjB{ z#UmkgoQCt2xdl&Fr7XT1Z3B9lxnJ>2gLVf^gRdMGL-i&Pk|qM!(+(dKHmNAD8M?@_=>@!0|xf^4amYXnQGuD5l!@q$JAE1w40J^x0*&_awDmN(GV^;jt0Bg%@uD&m&F#rGn M07*qoM6N<$g2`30N&o-= literal 3006 zcmaJ?2{hDe8=tZydug~?$4Dy7f)SG?W*B1ZArWKdkBM0tGYw;lYb&H=D}0phMJkn~ z$xR|;?UJpo$eKi<$-aD}Tix$F=j;2Q^MBvxdC&9vJ;64*m_ zac8>YZP7#;1xDDkfrU`$d^8ATWEw&z5CZ`w#24@bxKuO`euW9Z*O zx#Jxm7#ahBpkN4XB0?Vt(bt0^^$>=7hFTCE1QG#9>c9~PwUG!k>L40{gnav;d~Xbr zAKD3P`OOz!Glm8*nRGN9&StY=Y+V?Q;SWa|8XCe8I&d8wZN7zea43~Y2+^hnt9@s{ z0>MNEna(8BsE|!Yf-jB5G=}mc{W}E;{Rb^I_*_Oz(4W+PvT&gP&xp20)lBQ29bYperlVp=x7WBATVhR7aA?-dlel5XiQpg0F4g8 zIHO=l2%bPBQ#Vh(BJg;$H8q$?pb`OVtTB|&0V9)1XpDiS9!dv`G&4ZyA(0mRLYZ3_ zVDxk`C^Lis(gOP(i=`1+6oAV7jwStr)%huQvl%FKzGp1JAfE{^piW_ylOx0#&8vb^l=b0GGTl3}jU)}82wYud@>fjL-(>{Arw}gY-iNjj4QL=Mo z+&`4|#id5Us;hakD=4mER*9p~YHcG;n>000X0{qAqI|oZi)W;QALnWYK{z5CxqG=) z*!zts@;jc#rVd(qn+!@^?r#yg@m}G`z=avYwCZYRlIe6(&Y(>tZU9u5rrvyE0*sX! z%FkbvxZbA$UX38X_phCIPyh{8y02CvlH88&t?bP5e%33Rsa$L7HXBA73sYyr&a!YZ z2^k49gZ217)l1<~k=9Ey8=@6Zg_>G{uXFJ0;-EYjwaOd*;1;g^RCuPnqI%CQ`!UQ( zujL4-F3=}Mj}axKyzSvuhZjMyQXpv)5MKZd32Z9w68#>?Ij&gF$DPfIH>ZTikB?p? z1J#MARc%b$HH(wI;yAp0PY$?^NijMX-aAVdC238I6emwuMLu%zOPvI#Q?qUq-uAz& z&yrc6tFF7AB-!k&$kSPpsJzHp7!Mi*2iE+nOu1bFTn)9p4GKH|#3n}ed;`4XXm&)yIUaX9cOrzq_LO; zon)^+<+{*hB5EeVPF&CHM)~m8(&TaBCdTl=NtJ!4szrNC)5lOVoSG*G7CLI%&Ydd1 zSssxexMwt)yK5x*i=%mmZ(3~?Q{4MXm-exE1WMfG0{BY9MihEc8RL`iT;aDlxO?RO zbWNO+5pLZi@Lk%ZyO4);dGZ%0z&@7qG%EMpdmBL*3`6`A9!`xRog^_(jil*sOG4ckXmC{h99!@q27 zDOYYu)+8mW7|f++XYdpUKQ+U(r_fE_dJLe0P?-HZ{nqPT*)K*r)|UNpxsHHRH(|$? z;B7f*l~On_Q=_x{&}dPzuxnS8W&b&hF$bo&)R0^rn&X+b{e$8H)@BXA@@werTCF1S z$70d=aExo}^NXe=*2B}`EqncSD(;GK4>X^9Njx}w6EdCHP42reQ(=~<_>o{Jq1c{U zz4y}K>cx|Jt%f(03tuOe60ae5veg;=jtQsd>%#Oq?`WP%AIpr#883-SUXz;>qRL!7 z#VU~gNHIOZK*NlNed58#8iv-LWFBkC4+Z%y*BUgXo-F3PC&pDLj#O%E(WE808?JY4 zWssV^{+#=gQDrkyw@x@@dx#o)8`!HiCpuMKI_q+Oq>n9T-XYj?u+w`jRianfE7I&) z=~T4z#keH&&`wrmn()*wuD_IUhM$*jojgCn7E?H3^lZZ!W4yJa2k+W@aIUKk%$ln} zd=OVo*(#7!I)k%0sgmAxc+rw5<7&0?S0UPL(oPFncI1+wX-uNdv#(&bw6$o3<#M1WB3>D zJBYDWL}Tb-{CtD#P&iTMQDii7#(jX&fFMa&%J-iroas6%d58BaiBFuglzZde$8)k z)6mQTY*;c%`Qu+@IH~%C7f@1TfRCG#fX!7oNLv8X59Wndp%GvGddJ>?n~@~$SJ-88 z%*)Lx$P?lJu&_N_4E*^4o@yzXAKZFPP?;6;#vD~yORiJuF0siospx7st=qzFvC2OB z32JA)P2)xFv&Dpx)h%xnU&`xAI~s<{yH9H@_0#P>emO?q9DS2X(`e;bXnHEWq*v%v z;w_HyKCAz_wIjGCB12x7wM{$L!%#eT{r4+-QnY)V?GKbmCYtU!?FNOq=qr_F<-YX1 z$BEnDL7l(kkwfpE2(hL}X~+Az)>vCD9nAdX<&gh4vCcou!2gh=e)vAj1FA%jm4GfT z-`iu^^Rw|lnL{rxeY}1_#gx``Zfbq~!;7c1oVS;WNcMd}DNqHp=TT4JR`@lL%1-_q z9}=j+nT6TuCwNQM41b;H|25pXZ--jj`AjPXf+39)eX%dtty|BqKTQf2Y+3XXS(ozx YT^%B4NQxd8+k8c=E$pzj&3$724X+L@Bme*a diff --git a/index.html b/index.html index b1d554922..a57c2a0f7 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ - TinyWall ♥ Open Source + Tinywall ♥ Open Source @@ -235,7 +235,7 @@
- +

Tinywall is built on open source software.

Want to help? Join the Flock

Visit tinywall.com

From 5d85923e8df22c8fda833de59c1e12411c72ad69 Mon Sep 17 00:00:00 2001 From: Arun David Date: Thu, 10 Oct 2013 19:33:37 +0530 Subject: [PATCH 13/15] blackList repo option --- index.html | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index a57c2a0f7..4a2c0a8fe 100644 --- a/index.html +++ b/index.html @@ -27,9 +27,15 @@ // Put custom repo URL's in this object, keyed by repo name. var repoUrls = { "paperwhite": "http://tinywall.github.io/paperwhite/", - "scrollzip": "http://tinywall.github.io/scrollzip/" + "scrollzip": "http://tinywall.github.io/scrollzip/", + "tinywall.github.io": "http://tinywall.github.io/", + "typeninja": "http://tinywall.github.io/typeninja/" }; + var blackList = [ + "androidapp1","tinywallin","tinywallorg","tinywallcom","tinywallnet" + ]; + function repoUrl(repo) { return repoUrls[repo.name] || repo.html_url; } @@ -116,7 +122,9 @@ }); $.each(repos, function (i, repo) { - addRepo(repo); + if($.inArray(repo.name,blackList)==-1){ + addRepo(repo); + } }); // Sort by most-recently pushed to. From 0897caee6e80118fc2c0f8e7b17441f9eb156362 Mon Sep 17 00:00:00 2001 From: Arun David Date: Tue, 9 Jun 2015 14:53:46 +0530 Subject: [PATCH 14/15] Update CNAME From 7fc4eddd5961c688c1d099438a5bdb7866538123 Mon Sep 17 00:00:00 2001 From: Arun David Date: Tue, 9 Jun 2015 16:36:55 +0530 Subject: [PATCH 15/15] Update CNAME