summary |
shortlog | log |
commit |
commitdiff |
tree
first ⋅ prev ⋅ next
Sung-Jin Park [Tue, 3 Sep 2013 08:19:38 +0000 (04:19 -0400)]
Add a spec file for packaging
Change-Id: Ic9b24e9e6d0c81f9d90a3ea6736095283e302c28
Aaron Plattner [Tue, 29 Jan 2013 23:05:51 +0000 (15:05 -0800)]
man: Add -event to the command synopsis
Commit
d33b2c81bd931d581e5ce4b36f99ee60a76e740d added an option, -event, to
allow the user to select which events to display. I remembered to add it to the
man page's OPTIONS, section, but not to the command summary in the SYNOPSIS
section.
Change-Id: If53520ef5b5e3a907485fd5982b6691fc6474d83
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Aaron Plattner [Tue, 29 Jan 2013 21:42:40 +0000 (13:42 -0800)]
xev 1.2.1
Change-Id: I149b389c6cbcb0ad1bcce4f765ddcad7949efd95
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Alan Coopersmith [Tue, 15 Jan 2013 07:28:22 +0000 (23:28 -0800)]
Use strncasecmp instead of a tolower loop & strncmp
v2: Since strncasecmp is in Unix98, assume it is always available,
and drop fallback code for systems without it.
Change-Id: I75ea1ac5eb90259af8faf505b75f98cadf15a1d2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Tue, 15 Jan 2013 07:21:43 +0000 (23:21 -0800)]
Fix clang warnings about converting size_t to int and back again
xev.c:909:15: warning: implicit conversion loses integer precision: 'size_t' (aka 'unsigned long') to 'int' [-Wshorten-64-to-32]
int len = strlen (s);
~~~ ^~~~~~~~~~
xev.c:917:34: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if (strncmp (s, "notuseful", len) == 0) return (NotUseful);
~~~~~~~ ^~~
xev.c:918:35: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if (strncmp (s, "whenmapped", len) == 0) return (WhenMapped);
~~~~~~~ ^~~
xev.c:919:31: warning: implicit conversion changes signedness: 'int' to 'size_t' (aka 'unsigned long') [-Wsign-conversion]
if (strncmp (s, "always", len) == 0) return (Always);
~~~~~~~ ^~~
Change-Id: Ie275dd4b1ca2e3b25ad12176c189f981f635450f
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Aaron Plattner [Mon, 25 Jun 2012 22:36:23 +0000 (15:36 -0700)]
Add a -event parameter to control the event mask
It's annoying to have to sift through a lot of unrelated events if all you care
about is one specific class of events (e.g. RandR events). Add a -event
parameter that can be used to tune which events to select. When not specified,
all events are selected.
Change-Id: I36b0b36cc532d5e512d7469abd43a936afccbef5
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Andy Ritger <aritger@nvidia.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Alan Coopersmith [Wed, 22 Feb 2012 04:51:23 +0000 (20:51 -0800)]
xev 1.2.0
Change-Id: I37ecdf339f3b89176fe89fa4af28500c7bf124a5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Wed, 15 Feb 2012 23:30:59 +0000 (15:30 -0800)]
Rename "mask" variable to "rr_mask" in randr setup code.
Fixes gcc warning:
xev.c: In function `main':
xev.c:1129: warning: declaration of 'mask' shadows a previous local
xev.c:923: warning: shadowed declaration is here
Change-Id: Ic42076df5348e76139f6f013a76860f5566ed52e
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 04:43:40 +0000 (21:43 -0700)]
Remove checks for NULL before XFree
Replaced if (.*) \(XFree (.*);\) with \1
Change-Id: I8c6191966838ebef4c6f9f162baced7322e2601d
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 04:39:20 +0000 (21:39 -0700)]
Remove render from PKG_CHECK_MODULES list
No direct calls to libXrender functions or #includes of Xrender headers
Fixes Solaris ld -z guidance warning:
ld: guidance: removal of unused dependency recommended: libXrender.so.1
Change-Id: I070bb53efe2e888c274e03d882b779ccf4404444
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 04:38:49 +0000 (21:38 -0700)]
Add const attributes to fix gcc -Wwrite-strings warnings
Change-Id: Idda44e10287c33ccb77552ef1fedb61c21842373
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Thu, 29 Sep 2011 04:34:17 +0000 (21:34 -0700)]
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
git diff -w & git diff -b show no diffs from this change
Change-Id: Icf357baf944d453b9a8a86763e9c70281bd9c1cd
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Fri, 10 Jun 2011 03:21:51 +0000 (20:21 -0700)]
config: Add missing AC_CONFIG_SRCDIR
Regroup AC statements under the Autoconf initialization section.
Regroup AM statements under the Automake initialization section.
Change-Id: Ia66d29495de28b843305436c9736e04e744ff660
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Fri, 10 Jun 2011 03:19:49 +0000 (20:19 -0700)]
Replace local checks for gcc with _X_NORETURN from xproto 7.0.17
Change-Id: I91bf98b7d78aa4130198848d745142018b0ca435
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Michael Thayer [Thu, 3 Mar 2011 21:35:15 +0000 (13:35 -0800)]
Show RandR events
Change-Id: I3966985243b6b2f139eb02e9990d7ea5ec94acc0
Signed-off-by: Michael Thayer <michael.thayer@oracle.com>
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Aaron Plattner <aplattner@nvidia.com>
Tested-by: Aaron Plattner <aplattner@nvidia.com>
Gaetan Nadon [Wed, 19 Jan 2011 15:06:56 +0000 (10:06 -0500)]
config: move man pages into their own directory
Use services provided by XORG_MANPAGE_SECTIONS.
Use standard Makefile for man pages.
Change-Id: Iaacaee48391d38edefac74d301d6f114a6ee50da
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Thu, 13 Jan 2011 22:15:36 +0000 (17:15 -0500)]
man: replace hard coded man page section with substitution strings
Change-Id: I4a50e4b77c3f04ac6ce74fca8c1c0f984f266311
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Thu, 13 Jan 2011 16:15:47 +0000 (11:15 -0500)]
man: remove trailing spaces and tabs
Using s/[ \t]*$//
Change-Id: Ic793510edc99d4ad7a55017f426b3e928e3137b0
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Gaetan Nadon [Wed, 12 Jan 2011 21:28:02 +0000 (16:28 -0500)]
config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
This silences an Autoconf warning
Change-Id: Ic0ff9616418452751505c07a30e2519d419335da
Alan Coopersmith [Sat, 30 Oct 2010 16:03:09 +0000 (09:03 -0700)]
xev 1.1.0
Change-Id: I15e3cc187e233af0793757716c1b823b8dbc6b03
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Jesse Adkins [Tue, 28 Sep 2010 20:29:49 +0000 (13:29 -0700)]
Purge cvs tags.
Change-Id: I77839e654d6dbee2d16fc46b437fe32d0686f7ff
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>
Alan Coopersmith [Fri, 24 Sep 2010 03:12:00 +0000 (20:12 -0700)]
config: Remove unnecessary calls from configure.ac
AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables
Change-Id: I0e6fcb01d0c7acf47484b1ac11692e2551952f00
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Alan Coopersmith [Fri, 24 Sep 2010 03:10:43 +0000 (20:10 -0700)]
config: upgrade to util-macros 1.8 for additional man page support
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
The value of MAN_SUBST is the same for all X.Org packages.
Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
Enables use of platform appropriate version of sed.
Change-Id: I1217dab96d02c88f82bb3cce87378afa40290c83
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Gaetan Nadon [Tue, 20 Jul 2010 22:45:18 +0000 (18:45 -0400)]
config: update AC_PREREQ statement to 2.60
Unrelated to the previous patches, the new value simply reflects
the reality that the minimum level for autoconf to configure
all x.org modules is 2.60 dated June 2006.
ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
Change-Id: Ie0fc1e107262c33482bb09c291e8cee2cab4c02b
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Kim Woelders [Sat, 16 Jan 2010 18:09:28 +0000 (19:09 +0100)]
Add -root option to specify monitoring root window events.
Change-Id: I4189cf1aaf34c7fc84a922220491f1eaefdcd5b4
Signed-off-by: Kim Woelders <kim@woelders.dk>
Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Gaetan Nadon [Thu, 26 Nov 2009 14:19:53 +0000 (09:19 -0500)]
Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
Now that the INSTALL file is generated.
Allows running make maintainer-clean.
Change-Id: Ibc2ee43a1180a0b543d32eba87f3192cf0815b32
Gaetan Nadon [Wed, 28 Oct 2009 18:09:08 +0000 (14:09 -0400)]
INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
Add missing INSTALL file. Use standard GNU file on building tarball
README may have been updated
Remove AUTHORS file as it is empty and no content available yet.
Remove NEWS file as it is empty and no content available yet.
Change-Id: Id14ad6c6bd3c2d58013dcd02aae39353d944b3a0
Gaetan Nadon [Tue, 27 Oct 2009 02:08:38 +0000 (22:08 -0400)]
Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432
ChangeLog filename is known to Automake and requires no further
coding in the makefile.
Change-Id: I58eeb6162fc41deffefc1249373d20c671e6ae4a
Gaetan Nadon [Thu, 22 Oct 2009 16:34:15 +0000 (12:34 -0400)]
.gitignore: use common defaults with custom section # 24239
Using common defaults will reduce errors and maintenance.
Only the very small or inexistent custom section need periodic maintenance
when the structure of the component changes. Do not edit defaults.
Change-Id: If75321d19c530b96e6e97d05877ffceff4b6428a
Jeremy Huddleston [Wed, 21 Oct 2009 19:47:20 +0000 (12:47 -0700)]
This is not a GNU project, so declare it foreign.
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote:
> On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote:
> > I noticed an INSTALL file in xlsclients and libXvMC today, and it
> > was quite annoying to work around since 'autoreconf -fvi' replaces
> > it and git wants to commit it. Should these files even be in git?
> > Can I nuke them for the betterment of humanity and since they get
> > created by autoreconf anyways?
>
> See https://bugs.freedesktop.org/show_bug.cgi?id=24206
As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with
AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation
of the INSTALL file. It is also part of the 24206 solution.
Change-Id: I5c500082210bee0dc49a01918b2ea159392c39b3
Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
Alan Coopersmith [Tue, 13 Oct 2009 01:45:55 +0000 (18:45 -0700)]
xev 1.0.4
Change-Id: I65d685f3f2570666b5b83ef2a8facb94b820da37
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Tue, 13 Oct 2009 01:38:22 +0000 (18:38 -0700)]
Fill in COPYING with notice from xev.c
Change-Id: I1dd14cfccb1db94884ec958ee8b416f44f4868b7
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Tue, 13 Oct 2009 01:36:45 +0000 (18:36 -0700)]
Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
Change-Id: I20468e78cc2842639e68bfb97de9e8f984c17ebf
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Alan Coopersmith [Thu, 1 Oct 2009 21:54:23 +0000 (14:54 -0700)]
Add README with pointers to mailing lists, bugzilla, & git
Change-Id: I13a766d68d749fa3b41b03f1ff0e7db56b864d03
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Gaetan Nadon [Tue, 7 Jul 2009 21:52:50 +0000 (17:52 -0400)]
xev: use XORG_CHANGELOG macro to create ChangeLog. #22611
Build break: app/xev/Makefile.am: command not found: git-log
Adding the macro in configure.ac and use it in Makefile.am
Refer to: https://bugs.freedesktop.org/show_bug.cgi?id=22611
Tested: running autogen.sh, make and 'make dist'
Change-Id: I27e4fc8154e2a19bf235d0b5e2f52cf6410e4c1d
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Branden Robinson [Mon, 22 Mar 2004 22:19:47 +0000 (17:19 -0500)]
Flush standard output after processing each event
When redirecting the output of xev (eg, xev > foo), the output file is
truncated on exit due to libc buffering, since xev's exit(0) is
unreachable code. Reported by Bill Currie.
Debian bug#238638 <http://bugs.debian.org/238638>
Change-Id: I361d7e2fb008edcf99b1ca2d57cde62380393a95
Adam Jackson [Fri, 7 Mar 2008 22:15:28 +0000 (17:15 -0500)]
xev 1.0.3
Change-Id: I9e4e5ee0f12a695e0d02bf2e920c52c50941d250
James Cloos [Thu, 6 Dec 2007 20:51:06 +0000 (15:51 -0500)]
Add missing PHONY line for automatic ChangeLog generation
Change-Id: I3a6f11140672b863edddd66dafb0e0afde8bc61e
James Cloos [Thu, 6 Dec 2007 10:13:52 +0000 (05:13 -0500)]
Replace static ChangeLog with dist-hook to generate from git log
Change-Id: Idda5b7c81b82da7c1cb9e4918dd14f63b2907995
Noah Levitt [Thu, 6 Dec 2007 10:03:41 +0000 (05:03 -0500)]
Handle WM_DELETE_WINDOW From bug 319¹:
Make xev exit on WM_DELETE_WINDOW.
1] https://bugs.freedesktop.org/show_bug.cgi?id=319
Change-Id: I1a8b868ae7f02ede0a54404e7c7a904645fb83e0
Signed-off-by: James Cloos <cloos@jhcloos.com>
James Cloos [Mon, 3 Sep 2007 09:51:20 +0000 (05:51 -0400)]
Add *~ to .gitignore to skip patch/emacs droppings
Change-Id: Iddfb8693b5ba4060fd4888f58b31f46391bb9754
James Cloos [Thu, 23 Aug 2007 23:24:45 +0000 (19:24 -0400)]
Rename .cvsignore to .gitignore
Change-Id: I3ced98105d775c279484598ba2037da35618aa09
Daniel Stone [Thu, 1 Jun 2006 23:26:44 +0000 (23:26 +0000)]
Run XFilterEvent() on all events. (Samuel Thibault). Bump to 1.0.2.
Change-Id: Ieb72041c461a65b36bfc77e28755db52f29aa887
Kevin E Martin [Wed, 21 Dec 2005 02:29:49 +0000 (02:29 +0000)]
Update package version for X11R7 release.
Change-Id: Icad5def5d18bef2e065afd3d44fbb71d1bf77adc
Adam Jackson [Mon, 19 Dec 2005 16:22:43 +0000 (16:22 +0000)]
Stub COPYING files
Change-Id: If3846c6edf6907f0cc5140ea66e9aed154d05510
Kevin E Martin [Thu, 15 Dec 2005 00:24:06 +0000 (00:24 +0000)]
Update package version number for final X11R7 release candidate.
Change-Id: If48e9de32ab8ae82184095690f0c73215dea1c9b
Kevin E Martin [Tue, 6 Dec 2005 22:48:21 +0000 (22:48 +0000)]
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
Change-Id: I7e8e849cafee68e0bfef92e40f7f4a4d72d62109
Kevin E Martin [Sat, 3 Dec 2005 05:49:19 +0000 (05:49 +0000)]
Update package version number for X11R7 RC3 release.
Change-Id: I6c73b0dc390ce79586c8c80c034b844b5238cea4
Alan Coopersmith [Mon, 28 Nov 2005 22:01:41 +0000 (22:01 +0000)]
Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4 update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
Change-Id: I86210a8b48c746d86ccdfcf72ff8b94e797f7058
Eric Anholt [Mon, 21 Nov 2005 10:35:00 +0000 (10:35 +0000)]
Another pass at .cvsignores for apps.
Change-Id: Id7d0449c75b0fa48ac6f6e7fecb0830c49b5e729
Eric Anholt [Sun, 20 Nov 2005 22:08:52 +0000 (22:08 +0000)]
Add/improve .cvsignore files for apps.
Change-Id: Iecfc5c71329d8f714180bb787474d381b2fc9677
Kevin E Martin [Wed, 19 Oct 2005 02:47:53 +0000 (02:47 +0000)]
Update package version number for RC1 release.
Change-Id: Ib8c8386c09d32d471a6b4e60659db3e341bc4070
Alan Coopersmith [Mon, 17 Oct 2005 23:56:22 +0000 (23:56 +0000)]
Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to work better with BSD make
Change-Id: I4271916ae2ef741c9e16dd9bc1e1dfcbca77e977
Alan Coopersmith [Fri, 14 Oct 2005 00:25:44 +0000 (00:25 +0000)]
Use sed to fill in variables in man page
Change-Id: I4dc611c488eb90d4a7d3c1ea72c50b3c36412bd4
Alan Coopersmith [Mon, 1 Aug 2005 20:25:29 +0000 (20:25 +0000)]
Install man pages to section 1 instead of section m (Patch from Donnie Berkholz)
Change-Id: Ib1610eb2badaec2ad6dc3f81a4366601e7cd0133
Kevin E Martin [Fri, 29 Jul 2005 21:22:32 +0000 (21:22 +0000)]
Various changes preparing packages for RC0: - Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version
Change-Id: I0bf7b19a90cba884bba56dc0d850991613865f80
Adam Jackson [Wed, 20 Jul 2005 19:31:52 +0000 (19:31 +0000)]
Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global configure cache, you cache it, and the cached value is probably wrong.
Change-Id: Icb0d5f46390de1ab023b9ed12c978838fa268685
Søren Sandmann Pedersen [Wed, 6 Jul 2005 19:58:25 +0000 (19:58 +0000)]
Build system for xev
Change-Id: I4498b91c02d195fed8345008dbcafe5ba44116cd
Egbert Eich [Fri, 23 Apr 2004 19:54:46 +0000 (19:54 +0000)]
Merging XORG-CURRENT into trunk
Change-Id: I7409651c1e5db298956f11863451e8811a23ab3f
Egbert Eich [Sun, 14 Mar 2004 08:35:19 +0000 (08:35 +0000)]
Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
Change-Id: I80afd1fbe2eda99d3d2ac5b9a288b42c06bffcf8
Egbert Eich [Wed, 3 Mar 2004 12:13:05 +0000 (12:13 +0000)]
Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
Change-Id: I61ceea46179282f2d72d753bd7b559c886ba9dd0
Egbert Eich [Thu, 26 Feb 2004 13:36:24 +0000 (13:36 +0000)]
readding XFree86's cvs IDs
Change-Id: Idea7804bd1c030a4d52849a15e9f94fe5591b4e5
Egbert Eich [Thu, 26 Feb 2004 09:24:06 +0000 (09:24 +0000)]
Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
Change-Id: If1e9571423da7bb84fefa56d2b8e4abf0bc1aeee
Kaleb Keithley [Mon, 23 Feb 2004 20:35:40 +0000 (20:35 +0000)]
Import most of XFree86 4.4RC3. This import excludes files which have the new license. If we want to, later we can import 4.4RC3 again and pick up the files that have the new license, but for now the vendor branch is "pure."
Change-Id: I5590130c8ba66e1c555bf56ae4f384ed6fab17bf
Kaleb Keithley [Tue, 25 Nov 2003 19:29:12 +0000 (19:29 +0000)]
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
Change-Id: Ifd032b2bc71082389a0203518401a7fce6d14cce
Kaleb Keithley [Fri, 14 Nov 2003 16:49:22 +0000 (16:49 +0000)]
Initial revision
Change-Id: I8405affa47114955332fa64d07eb8cbcafb28a37
Sung-Jin Park [Tue, 3 Sep 2013 02:25:34 +0000 (22:25 -0400)]
remove .gitignore
Change-Id: I870cd0326a90f92da22e50c4a256249127512d05
Sung-Jin Park [Mon, 2 Sep 2013 14:00:29 +0000 (10:00 -0400)]
Initial commit
Change-Id: I7874574e1c03668d2afda7799158b6e0d39d8bd0
Sehong Na [Fri, 30 Aug 2013 07:01:03 +0000 (00:01 -0700)]
Initial empty repository