Yann Collet
a48aba8b48
fixed link
2015-05-13 01:56:35 +01:00
Yann Collet
1bbe3259c9
Added Frame Format html enveloppe
2015-05-13 01:50:28 +01:00
Yann Collet
0bc879a557
minor parsing improvements
2015-05-06 20:57:00 +01:00
Yann Collet
ae9c902076
Fixed URL
2015-05-06 20:33:41 +01:00
Yann Collet
43243bd855
Added Redis logo
2015-05-06 16:15:15 +01:00
Yann Collet
8b446f7fe8
Added Redis
2015-05-06 16:14:22 +01:00
Yann Collet
ecdc37e5dd
link to Block_format.html
2015-05-06 02:39:59 +01:00
Yann Collet
a63d5896fb
Merge pull request #100 from t-mat/gh-pages
...
"Include .md" functionality, by @t-mat
2015-05-06 03:36:02 +02:00
Takayuki MATSUOKA
8c4989e2b9
Add experimental pseudo .md file
...
See <xmp> and last <script> tag.
2015-05-05 11:37:57 +09:00
Takayuki MATSUOKA
56216ac160
Add 'include' function to strapdown
...
Usage:
Set 'src' attribute to <xmp> tag to include external Markdown file.
Example :
<xmp theme="sandstone" style="display:none;" src="lz4_Block_format.md"></xmp>
2015-05-05 11:36:56 +09:00
Yann Collet
101a7e74fb
Special Thanks
2015-05-04 14:50:52 +01:00
Yann Collet
57992ec8d9
minor comment improvements
2015-05-04 14:15:44 +01:00
Yann Collet
ff4fa4bf08
Added : crytek
2015-05-04 13:56:44 +01:00
Yann Collet
7f3319680c
logo update
2015-05-04 14:44:52 +02:00
Yann Collet
e26bde9b23
Updated a few logos
2015-05-04 13:39:30 +01:00
Yann Collet
34798e119a
Added D version
2015-05-03 00:41:54 +01:00
Yann Collet
b248cc380f
Added : github stargazer
2015-04-27 03:11:12 +01:00
Yann Collet
45864f69e0
minor cleaning
2015-04-26 19:15:41 +01:00
Yann Collet
ad4b3333a9
Changed homepage (index.html) to Takayuki's new format
2015-04-19 13:01:01 +01:00
Yann Collet
1c3a9653aa
Update doc to markdown format
2015-04-07 07:08:01 +01:00
Yann Collet
ae598bc8fe
Merge pull request #76 from t-mat/gh-pages
...
New Homepage by Takayuki
2015-04-06 00:56:07 +02:00
Yann Collet
8b68a34316
Added : Delphi version by Jose Pascoa
2015-04-05 23:51:50 +01:00
Takayuki MATSUOKA
bbc4f56132
Add type estimation to rendercharts.js to improve CSV portability
2015-04-04 06:47:29 +09:00
Takayuki MATSUOKA
d895ea3902
Change icons URL and links protocol to https
2015-04-04 06:46:43 +09:00
Takayuki MATSUOKA
4121e2a9a4
Add rest of icons and move icons to images/logo50/
2015-04-04 06:45:31 +09:00
Takayuki MATSUOKA
49f707b0de
Add icons, tweak chart comments
...
- Add icons. Just a setup. Proper layout needed.
- Tweak chart comments. But claim of charts are still obscured.
- What is superiority of LZ4 ?
2015-04-03 17:32:15 +09:00
Takayuki MATSUOKA
308e18dae8
Add logo icons
...
- 50 pixels height
- WIP, must be collect all icons.
2015-04-03 17:26:08 +09:00
Takayuki MATSUOKA
04f2999d86
Change CSV data order
2015-04-03 17:24:19 +09:00
Takayuki MATSUOKA
37ac016f0c
Add descriptions to the benchmark charts
2015-04-03 08:37:24 +09:00
Takayuki MATSUOKA
faf5d67b90
Replace chartselector by Bootstrap's tab.
...
js/bootstrap-patch.css is copied from the following answer on SO :
http://stackoverflow.com/a/23267110/2132223
2015-04-03 06:17:29 +09:00
Takayuki MATSUOKA
90711ef2ca
Add Benchmark chart
2015-04-02 22:22:58 +09:00
Takayuki MATSUOKA
02e130312d
Add js/chartselector.js
2015-04-02 16:17:35 +09:00
Takayuki MATSUOKA
5987cb9274
Prettify comments (2)
2015-04-01 08:20:44 +09:00
Takayuki MATSUOKA
b742a2386a
Prettify comments
2015-04-01 07:46:11 +09:00
Takayuki MATSUOKA
c3e8a42627
Remove js/csvToArray.v.2.1.js
...
csvToArray is merged to js/rendercharts.js
2015-04-01 07:42:22 +09:00
Takayuki MATSUOKA
11679d884a
Add js/rendercharts.js
...
js/rendercharts.js is JavaScript filter which renders <div> tag which has data-csv-props attribute.
js/rendercharts.js invoke Google Charts script for rendering.
"data-csv-props" attribute is custom properties for js/rendercharts.js.
Properties which has "csv" prefix are basic settings for js/rendercharts.js.
"csvSrc" : Source CSV URL
"csvGvType": Google Charts class name
"csvGvPackage": Google Charts package name. See
Each Google Charts class document has "Loading" section
- https://google-developers.appspot.com/chart/interactive/docs/gallery/table#Loading
- https://google-developers.appspot.com/chart/interactive/docs/gallery/combochart#Loading
In this section, you can find "class name" and "package name".
Other properties are "Configuration Options" for specific Google Charts class.
Each class document has "Configuration Options" section
- https://google-developers.appspot.com/chart/interactive/docs/gallery/table#Configuration_Options
- https://google-developers.appspot.com/chart/interactive/docs/gallery/combochart#Configuration_Options
# CSV file format
Each column in CSV header (first) line must contain "type" suffix. Suffix format is "ColumnName:ColumnType".
"ColumnType" must be choosen from the type name { "string", "number", "boolean" }.
CSV example :
```
"Name:string","Salary:number","Full Time Employee:boolean"
Mike,10000,true
Jim,8000,false
Alice,12500,true
Bob,7000,true
```
2015-04-01 07:41:31 +09:00
Takayuki MATSUOKA
07bda61bf6
Remove garbage files
2015-04-01 04:58:59 +09:00
Takayuki MATSUOKA
2481bfe237
Add stringToBoolean() conversion function
2015-03-31 20:13:32 +09:00
Takayuki MATSUOKA
9716c8e365
Add chart examples (proof of concept)
2015-03-31 20:00:01 +09:00
Takayuki MATSUOKA
c2b9fcd49b
Import csv-to-array
...
https://code.google.com/p/csv-to-array/
2015-03-31 19:54:47 +09:00
Takayuki MATSUOKA
f61a4ae73c
Add sample CSVs
...
- Format of first row is "Name:Type".
- Choose "Type" from { "string", "number", "boolean" }
2015-03-31 19:53:59 +09:00
Takayuki MATSUOKA
cb75b3d46e
Add heading box
2015-03-31 14:17:09 +09:00
Takayuki MATSUOKA
d4de928e94
Add navigation bar links
2015-03-31 14:16:00 +09:00
Takayuki MATSUOKA
ac8fffb588
Change title
2015-03-31 14:13:56 +09:00
Takayuki MATSUOKA
ceb3d5af94
Add real content
2015-03-31 14:13:35 +09:00
Takayuki MATSUOKA
3679615e7c
Add Font-Awesome for GitHub icon
...
http://fortawesome.github.io/Font-Awesome/
2015-03-31 13:48:52 +09:00
Takayuki MATSUOKA
d7d6eef5dd
Add Navigation bar
2015-03-31 13:46:14 +09:00
Takayuki MATSUOKA
844fbc96f0
Add place holder "TEXT HERE".
2015-03-31 13:21:14 +09:00
Takayuki MATSUOKA
aa84610c1f
Remove <body> padding
2015-03-31 13:20:28 +09:00
Takayuki MATSUOKA
e7f13a4518
Add strapdown
2015-03-31 13:16:09 +09:00