Version at: 06/04/2014, 17:33 vs. version at: 06/04/2014, 17:34 | ||
---|---|---|
1 | 1 | #Admin logs |
2 | 2 | |
3 | 3 | Please post a description here every time you do a modification on tatoeba.org. |
4 | 4 | |
5 | 5 | ### 6th April 2014 19:00 France time |
6 | 6 | |
7 | 7 | * who: Trang |
8 | 8 | * what: |
9 | 9 | |
10 | > git update-index --assume-unchanged app/app_controller.php | |
11 | > git update-index --assume-unchanged app/config/core.php | |
12 | > git update-index --assume-unchanged app/config/database.php | |
13 | > git update-index --assume-unchanged app/controllers/components/mailer.php | |
10 | ``` | |
11 | git update-index --assume-unchanged app/app_controller.php | |
12 | git update-index --assume-unchanged app/config/core.php | |
13 | git update-index --assume-unchanged app/config/database.php | |
14 | git update-index --assume-unchanged app/controllers/components/mailer.php | |
15 | ``` | |
14 | 16 | |
15 | 17 | * why: to avoid commiting files with passwords and stuff. |
16 | 18 | |
17 | 19 | ### 29th March 2014 22:00 Eastern U.S. time |
18 | 20 | |
19 | 21 | * who: alanf, guided by Trang |
20 | 22 | * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) |
21 | 23 | |
22 | 24 | ### 25th March 2014 22:00 Eastern U.S. time |
23 | 25 | |
24 | 26 | * who: alanf |
25 | 27 | * why: add audio |
26 | 28 | * what: |
27 | 29 | * sync up to most recent commit |
28 | 30 | |
29 | 31 | * i18n-ized "edited" word |
30 | 32 | |
31 | 33 | * German UI rework (extensive) |
32 | 34 | |
33 | 35 | * added audio: |
34 | 36 | |
35 | 37 | * several dozen sentences by CK |
36 | 38 | |
37 | 39 | * three sentences by LR |
38 | 40 | |
39 | 41 | ### 23rd March 2014 17:30 France time |
40 | 42 | |
41 | 43 | * who: alanf, guided by Trang |
42 | 44 | * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) |
43 | 45 | * what: https://gist.github.com/trang/baccdee9bea32808f871 |
44 | 46 | |
45 | 47 | ### 23rd February 2014 15AM China time |
46 | 48 | |
47 | 49 | * who: sysko |
48 | 50 | * why: wiki: fixed redirect problem after login and added reset password feature |
49 | 51 | * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 |
50 | 52 | |
51 | 53 | |
52 | 54 | ### 11nd February 2014 01AM China time |
53 | 55 | |
54 | 56 | * who: sysko |
55 | 57 | * why: restored transliteration for most languages |
56 | 58 | * what: linked nihongoparserd with tatoeba php code mostly |
57 | 59 | * how: |
58 | 60 | |
59 | 61 | I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` |
60 | 62 | |
61 | 63 | also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) |
62 | 64 | |
63 | 65 | also commented temporaly all call to `sinoparserd` as it's not yet restored |
64 | 66 | |
65 | 67 | |
66 | 68 | ### 10nd February 2014 11PM China time |
67 | 69 | |
68 | 70 | * who: sysko |
69 | 71 | * why: installed nihongoparserd (service to generate japanese reading) |
70 | 72 | * what: compiled source and installed service |
71 | 73 | * how: |
72 | 74 | |
73 | 75 | installed: |
74 | 76 | |
75 | 77 | apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 |
76 | 78 | |
77 | 79 | |
78 | 80 | executed |
79 | 81 | |
80 | 82 | git clone https://github.com/allan-simon/nihongoparserd.igt |
81 | 83 | cd nihongoparserd |
82 | 84 | mkdir build ; cd build ; cmake .. ; make |
83 | 85 | sudo cp nihongoparserd /usr/local/bin |
84 | 86 | cd .. |
85 | 87 | sudo cp conf/nihongoparserd /etc/init.d/ |
86 | 88 | sudo chmod +x /etc/init.d/nihongoparserd |
87 | 89 | sudo cp conf/default /etc/default/nihongoparserd |
88 | 90 | sudo useradd -r nihongoparserd |
89 | 91 | |
90 | 92 | start the service |
91 | 93 | |
92 | 94 | /etc/init.d/nihongoparserd |
93 | 95 | |
94 | 96 | |
95 | 97 | |
96 | 98 | ### 9nd February 2014 10AM China time |
97 | 99 | |
98 | 100 | |
99 | 101 | * who: sysko |
100 | 102 | * why: reinstall suggestd (service powering tag autocompletion) |
101 | 103 | * what: compiled source and installed service |
102 | 104 | * how: |
103 | 105 | |
104 | 106 | |
105 | 107 | installed |
106 | 108 | |
107 | 109 | apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev |
108 | 110 | |
109 | 111 | |
110 | 112 | compiled suggestd0.9 |
111 | 113 | |
112 | 114 | aclocal |
113 | 115 | autoconf |
114 | 116 | automake --add-missing |
115 | 117 | |
116 | 118 | ./configure |
117 | 119 | make |
118 | 120 | make install |
119 | 121 | |
120 | 122 | |
121 | 123 | after created init script in |
122 | 124 | |
123 | 125 | /etc/init.d/suggestd |
124 | 126 | |
125 | 127 | and configuration file in |
126 | 128 | |
127 | 129 | |
128 | 130 | /etc/suggestd.xml |
129 | 131 | |
130 | 132 | and default file in |
131 | 133 | |
132 | 134 | /etc/default/suggestd |
133 | 135 | |
134 | 136 | then create a suggestd user |
135 | 137 | |
136 | 138 | useradd -r suggestd |
137 | 139 | |
138 | 140 | then finally starting it |
139 | 141 | |
140 | 142 | |
141 | 143 | /etc/init.d/suggestd start |
142 | 144 | |
143 | 145 | |
144 | 146 | ###2nd February 2014 5AM China time |
145 | 147 | |
146 | 148 | * who: sysko |
147 | 149 | * why: resolve login problems |
148 | 150 | * what: used memcache instead of sqlite for storing session |
149 | 151 | * how: |
150 | 152 | |
151 | 153 | installed: |
152 | 154 | |
153 | 155 | apt-get install memcached php5-memcache |
154 | 156 | |
155 | 157 | modified: `/etc/php5/apache2/php.ini` |
156 | 158 | |
157 | 159 | ``` |
158 | 160 | [Session] |
159 | 161 | session.save_handler = memcache |
160 | 162 | session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" |
161 | 163 | ``` |
162 | 164 | |
163 | 165 | |
164 | 166 | |
diff view generated by jsdifflib |
Version at: 06/04/2014, 17:33
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 6th April 2014 19:00 France time * who: Trang * what: > git update-index --assume-unchanged app/app_controller.php > git update-index --assume-unchanged app/config/core.php > git update-index --assume-unchanged app/config/database.php > git update-index --assume-unchanged app/controllers/components/mailer.php * why: to avoid commiting files with passwords and stuff. ### 29th March 2014 22:00 Eastern U.S. time * who: alanf, guided by Trang * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) ### 25th March 2014 22:00 Eastern U.S. time * who: alanf * why: add audio * what: * sync up to most recent commit * i18n-ized "edited" word * German UI rework (extensive) * added audio: * several dozen sentences by CK * three sentences by LR ### 23rd March 2014 17:30 France time * who: alanf, guided by Trang * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) * what: https://gist.github.com/trang/baccdee9bea32808f871 ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```
version at: 06/04/2014, 17:34
#Admin logs Please post a description here every time you do a modification on tatoeba.org. ### 6th April 2014 19:00 France time * who: Trang * what: ``` git update-index --assume-unchanged app/app_controller.php git update-index --assume-unchanged app/config/core.php git update-index --assume-unchanged app/config/database.php git update-index --assume-unchanged app/controllers/components/mailer.php ``` * why: to avoid commiting files with passwords and stuff. ### 29th March 2014 22:00 Eastern U.S. time * who: alanf, guided by Trang * why: [add 15 new languages](http://blog.tatoeba.org/2014/03/tatoeba-now-has-15-new-languages.html) ### 25th March 2014 22:00 Eastern U.S. time * who: alanf * why: add audio * what: * sync up to most recent commit * i18n-ized "edited" word * German UI rework (extensive) * added audio: * several dozen sentences by CK * three sentences by LR ### 23rd March 2014 17:30 France time * who: alanf, guided by Trang * why: release code on github and index all sentences ([release notes](http://blog.tatoeba.org/2014/03/tatoeba-update-march-23-2013.html)) * what: https://gist.github.com/trang/baccdee9bea32808f871 ### 23rd February 2014 15AM China time * who: sysko * why: wiki: fixed redirect problem after login and added reset password feature * what: updated tatowiki on wiki.tatoeba.org to 0.23.0 ### 11nd February 2014 01AM China time * who: sysko * why: restored transliteration for most languages * what: linked nihongoparserd with tatoeba php code mostly * how: I've applied [this patch](http://bpaste.net/show/kBOxWpawgedmGieVwIn1/), it's not yet into the SVN (need someone to do it for me, don't remember my SVN accounts). Also note the `romanization` variable would be better named `transliteration` also I've commented the line `return false;` in `getRomanization` file `app/models/sentences.php` as it's supposed to well... deactivate transliteration (for dev environment) also commented temporaly all call to `sinoparserd` as it's not yet restored ### 10nd February 2014 11PM China time * who: sysko * why: installed nihongoparserd (service to generate japanese reading) * what: compiled source and installed service * how: installed: apt-get install git cmake g++ libmecab-dev mecab-jumandic-utf8 executed git clone https://github.com/allan-simon/nihongoparserd.igt cd nihongoparserd mkdir build ; cd build ; cmake .. ; make sudo cp nihongoparserd /usr/local/bin cd .. sudo cp conf/nihongoparserd /etc/init.d/ sudo chmod +x /etc/init.d/nihongoparserd sudo cp conf/default /etc/default/nihongoparserd sudo useradd -r nihongoparserd start the service /etc/init.d/nihongoparserd ### 9nd February 2014 10AM China time * who: sysko * why: reinstall suggestd (service powering tag autocompletion) * what: compiled source and installed service * how: installed apt-get install gcc automake make libevent-dev libsqlite3-dev pkg-config libexpat1-dev libmysqlclient-dev compiled suggestd0.9 aclocal autoconf automake --add-missing ./configure make make install after created init script in /etc/init.d/suggestd and configuration file in /etc/suggestd.xml and default file in /etc/default/suggestd then create a suggestd user useradd -r suggestd then finally starting it /etc/init.d/suggestd start ###2nd February 2014 5AM China time * who: sysko * why: resolve login problems * what: used memcache instead of sqlite for storing session * how: installed: apt-get install memcached php5-memcache modified: `/etc/php5/apache2/php.ini` ``` [Session] session.save_handler = memcache session.save_path="tcp://127.0.0.1:11211?persistent=1&weight=1&timeout=1&retry_interval=15" ```