-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME
32 lines (24 loc) · 878 Bytes
/
README
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
DESCRIPTION
-----------
There are two directories:
upstream:
This is a pure git export of what's in the tree on github
https://github.com/douglascrockford/JSON-js
modified:
This is a version that's been programmatically altered to be
what we need in gallery3/trunk/lib
UPDATING
--------
$ sh refresh_upstream.sh
$ git commit -m "Updated upstream to <COMMIT_ID>" upstream
$ sh refresh_modified.sh
# Examine what's in modified and make sure that we only add files
# here that we want to go into Gallery3. Anything that we don't
# want should get added to the filters in refresh_modified.sh and
# run it again.
$ git commit -m "Updated modified to <COMMIT_ID>" modified
$ cp modified/json2-min.js ../../gallery3/lib
$ cd ../../gallery3
$ git commit -m "Updated JSON-js to <COMMIT_ID>" lib
$ cd gallery3-vendor/JSON-js && git push
$ cd gallery3 && git push