-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathgithuboutput.ado
207 lines (170 loc) · 5.89 KB
/
githuboutput.ado
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
*cap prog drop githuboutput
prog githuboutput
syntax [anything] [, language(str) all in(str) quiet Number(numlist max=1)]
cap qui summarize installable
local N 1
local max `r(max)'
if "`max'" == "" local max 0
if !missing("`debug'") {
di as txt "{title:Part one is done!}"
}
// -----------------------------------------------------------------------
// Drawing the output table
// =======================================================================
// make sure one of the observations is installable
if `c(N)' > 0 & `max' != 0 | `c(N)' > 0 & !missing("`all'") {
di in text _n " {hline 82}" _n ///
" {bf:Repository}" _col(19) "{bf:Username}" _col(31) "{bf:Install}" ///
_col(40) "{bf:Description} " _n ///
" {hline 82}"
// limit the output
if missing("`number'") local number `c(N)'
while `N' <= `c(N)' & `N' <= `number' {
// check the language
if !missing("`language'") & "`language'" == language[`N'] | ///
missing("`language'") | "`language'" == "all" & address[`N'] != "" {
if installable[`N'] == 1 | !missing("`all'") {
local address : di address[`N']
// checking for dependencies
// =========================================================
capture confirm variable dependency
if _rc {
capture githubdependency `address'
local dependency `r(dependency)'
}
else {
local dependency dependency[`N']
}
local pushed : di %tcCCYY-NN-DD pushed[`N']
local short : di abbrev(name[`N'], 15)
tokenize `address', parse("/")
local user : di abbrev(`"`1'"', 11)
local homepage : di homepage[`N']
local homeabbrev : di abbrev(`"`homepage'"', 30)
*local user : di address[`N']
*local short : di abbrev(name[`N'], 15)
di `" {bf:{browse "http://github.com/`address'":`short'}}"' ///
_col(19) `"{browse "http://github.com/`1'":`user'}"' _c
local install : di installable[`N']
if "`install'" == "1" {
di _col(31) "{stata github install `address':Install}" _c
}
else {
di _col(31) "" _c
*di _col(29) "({stata github install `address', force:{it:force}})" _c
}
// Description
// ------------------------------------
local score: di %5.0f score[`N']
*if `score' > 100 {
* local score: di %5.0f score[`N']
*}
local star : di star[`N']
local fork : di fork[`N']
local size : di kb[`N']
local lang : di language[`N']
// get label
* local valuelabel :label (language) `lang'
* if "`valuelabel'" != "" local lang `valuelabel'
local description : di description[`N']
if length(`"`macval(description)'"') <= 5 {
local description "No description, website, or topics provided."
}
else {
local description : subinstr local description "`" "'", all
}
local l : di length(`"`macval(description)'"')
local n 1
local end 1
tokenize `"`macval(description)'"'
local sentence "`1'"
local c 2
local len 0
local len2 0
while `l' > 0 & `"``c''"' != "" {
while `len2' <= 44 & `"``c''"' != "" {
local sentence : di `"`sentence' ``c''"'
local len : di strlen(`"`sentence'"')
local c `++c'
local sentence2 : di `"`sentence' "' `"``c''"'
local len2 : di strlen(`"`sentence2'"')
}
local l`n' : di `"`sentence'"'
local sentence //RESET
local sentence2 //RESET
local len2 0 //RESET
local l = `l'-`len'
local n `++n'
}
if `"`l1'"' != "" di _col(40) `"`l1'"'
//Add the package size
*if trim(`"`l1'"') != "" {
if "`install'" == "1" & trim(`"`l1'"') != "" {
di _col(31) "{it:`size'k}" _c
}
//else {
else if "`install'" == "1" {
local alternative 1
}
local l1 //RESET
local m 2
// continue with the description
while `m' <= `n' {
if `"`l`m''"' != "" di _col(39) `"`l`m''"'
local l`m' //RESET
local m `++m'
}
// Add the Homepage
// -----------------------------------------------------------
if `"`homepage'"' != "" {
di _col(40) `"homepage {browse "`homepage'":`homeabbrev'}"'
local homepage //RESET
}
// Add the last update
// -----------------------------------------------------------
di _col(40) `"updated on `pushed'"'
// Add the additional description
// -----------------------------------------------------------
di _col(40) "{bf:Fork:}" trim("`fork'") _col(50) "{bf:Star:}" ///
trim("`star'") _c
if !missing("`lang'") {
di _col(60) "{bf:Lang:}" trim("`lang'") _c
}
if `dependency' == 1 {
if "`alternative'" == "1" {
di _col(72) `"({browse "http://github.com/`address'/blob/master/dependency.do":dependency})"'
}
else {
di _col(72) `"({browse "http://github.com/`address'/blob/master/dependency.do":dependency})"' _n
}
}
else {
if "`alternative'" == "1" {
di _col(77)
}
else {
di _col(77) _n
}
}
//Add the package size if the description was empty
if "`alternative'" == "1" {
di _col(31) "{it:`size'k}" _n
local alternative //RESET
}
}
}
local N `++N'
}
di " {hline 82}"
}
else if missing("`quiet'") & "`language'" != "all" & "`in'" != "name,description,readme" {
di as txt _n "repository {bf:`anything'} was not found for {bf:in(`in')} and {bf:language(`language')}"
di "{p}try: {stata github search `anything', in(all) language(Stata) all}"
}
else if missing("`quiet'") {
di as txt _n "repository {bf:`anything'} was not found for {bf:in(`savein')} and {bf:language(`language')}"
if missing("`all'") {
di "{p}try: {stata github search `anything', in(all) language(Stata) all}"
}
}
end