This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via 2bf4d0ec1f74e70434a7d93cf643bcbe7b855c78 (commit) via c306b8911beab3de6c3c4d6fc8ccec23802ebdc4 (commit) from 7d47aaf60dd83f10d1478eb99ec10f29b6407795 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/2bf4d0ec1f74e70434a7d93cf643bcbe7b855...
commit 2bf4d0ec1f74e70434a7d93cf643bcbe7b855c78 Author: Cyril Hrubis metan@ucw.cz Date: Sat May 5 20:33:53 2012 +0200
doc: Add gfxprim pages into git.
diff --git a/doc/asteroids-corner.png b/doc/asteroids-corner.png new file mode 100644 index 0000000..2e4cf0b Binary files /dev/null and b/doc/asteroids-corner.png differ diff --git a/doc/favicon.png b/doc/favicon.png new file mode 100644 index 0000000..3ceab57 Binary files /dev/null and b/doc/favicon.png differ diff --git a/doc/gfxprim_logo.png b/doc/gfxprim_logo.png new file mode 100644 index 0000000..bee1c8b Binary files /dev/null and b/doc/gfxprim_logo.png differ diff --git a/doc/gfxprim_logo_prim.png b/doc/gfxprim_logo_prim.png new file mode 100644 index 0000000..677ee0c Binary files /dev/null and b/doc/gfxprim_logo_prim.png differ diff --git a/doc/index.html b/doc/index.html new file mode 100644 index 0000000..6132e6c --- /dev/null +++ b/doc/index.html @@ -0,0 +1,94 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> +<html> + <head> + <meta http-equiv="content-type" content="text/html; charset=iso-8859-2"> + <link rel="icon" type="image/png" href="favicon.png"> + <title>GFXprim</title> + <style type="text/css" title="currentStyle" media="screen"> + @import "style.css"; + </style> + </head> + <body> + <div id="body"> + <div id="logo"> + <h1> + <div id="logo_picture"> + <img src="gfxprim_logo.png" alt="GFXprim"> + </div> + <div id="logo_picture_prim"> + <img src="gfxprim_logo_prim.png" alt=""> + </div> + <div id="clever_line"> + <div style="display: block; text-align: right;"> + <img src="asteroids-corner.png" alt="asteroids" style="position: relative; right: 1em;"> + </div> + What would you like to draw today... + </div> + </h1> + </div> + <div id="menu"> + <ul class="menu-tree"> + <li class="menu-tree-item"><a href="index.html">Home</a></li> + <li class="menu-tree-item"><a href="api.html">API</a></li> + <li class="menu-tree-item"><a href="examples.html">Code Examples</a></li> + <li class="menu-tree-item"><a href="http://repo.or.cz/w/gfxprim.git">GIT</a></li> + </ul> + </div> + <div id="content"> + <h2>GFXprim</h2> + <p> + <i>GFXprim</i> is Open-source modular 2D bitmap graphics library + with emphasis on speed and correctness. + </p> + <h3>License</h3> + <p> + The code is licenced under LGPL 2.1 or (at your opinion) any later. + </p> + <h3>About</h3> + <p> + Once upon the time <i>GFXprim</i> had started as an simple attempt to + replace SDL_gfx which was unusable at the time we started. Soon it outgrew + the initial purpose and yielded into library that could be used as + replacement for SDL library. In constrast with SDL <i>GFXprim</i> is + not aiming for abstracting the operating system interface. Instead of + that <i>GFXprim</i> provides means for keeping the system dependend + parts in well defined and isolated parts. + </p> + <p> + One of the key points of the library is code generation. Most of the + graphics operations are written using <a href="http://jinja.pocoo.org/">jinja</a> + templating engine which is used to generate specialized C code. So, + for an example, once you add pixel definition into configuration file, + creating specialized filters, loaders and conversions to other pixel + formats is just a matter of typing "make && make clean". + </p> + <p> + The code is stored in <a href="http://repo.or.cz/w/gfxprim.git">git</a> + and although we haven't done release yet; first alpha release may be done + later this year once rest of the API stabilizes (the core code has been + stable for quite some time). + </p> + <h3>Contact</h3> + <p> + We do have a <a href="http://www.ucw.cz/mailman/listinfo/gfxprim">mailing list</a> + and although there not much of discussion there now, we are there and listeing. + </p> + <h3>Documentation</h3> + <p> + For more information about internal structure and features look at the + <a href="api.html">API Description</a>. + </p> + <p> + There are also some nice C and Python + <a href="examples.html">Code Examples</a>. + </p> + </div> + <div id="cleaner"> </div> + <div id="footer"> + <a href="http://repo.or.cz/w/gfxprim.git">git</a> | + <a href="http://atrey.karlin.mff.cuni.cz/~gavento/GfxPrimWiki/">wiki</a> | + <a href="http://www.ucw.cz/mailman/listinfo/gfxprim">mailing list</a> + </div> + </div> + </body> +</html> diff --git a/doc/style.css b/doc/style.css new file mode 100644 index 0000000..27fa6f6 --- /dev/null +++ b/doc/style.css @@ -0,0 +1,151 @@ +body { + background-color: #aaa; + margin: 10pt; + padding-left: 8%; + padding-right: 8%; +} + +h1 { + background-color: transparent; + border-top: 1px solid #bc8517; + border-bottom: 1px solid #bc8517; +} + +h2 { + color: #bc6217; + padding-bottom: .2em; + border-bottom: 1px solid #db7521; + font-weight: bolder; +} + +h3 { + color: Black; + padding-top: 1em; +} + +a, a:visited { + color: #333; + font-style: oblique; + font-weight: bolder; + text-decoration: none; +} + +a:hover { + color: #aaa; + font-style: oblique; + font-weight: bolder; + text-decoration: none; +} + +li { + list-style-type: disc; + margin-bottom: 4px; +} + +pre { + padding: .5em .5em .5em .5em; + border: 1px solid Black; + border-style: dashed; + background-color: #bbc; + display: inline-block; +} + +/* main div */ +#body { + color: Black; + background-color: #ffffc7; +} + +#logo_picture { + position: relative; + top: 0.1em; + left: 0.5em; + display: inline; +} + +#logo_picture_prim { + position: relative; + display: inline; + left: 0.2em; + top: 30px; +} + +#logo { + background-color: #f7e177; +} + +#clever_line { + font-size: 40%; + color: #bc6217; + float: right; + position: relative; + top: 10px; +} + +#content { + padding: 0 2em 1em 12em; +} + +#menu { + float: left; + color: #eee; + width: 10em; + margin: 0em 0em 1em 1em; + padding: 0; + border: 1px solid #bc6217; + background-color: #f7e177; +} + +#cleaner { + clear: both; +} + +#footer { + background-color: #f7e177; + text-align: center; + padding-top: .3em; + padding-bottom: .3em; + color: #bc6217; + border-top: 1px solid #bc6217; + border-bottom: 1px solid #bc6217; +} + +/* text markers */ +#term { + font-variant: small-caps; +} + +#path { + font-style: italic; +} + +#command { + font-style: oblique; +} + +/* right menu basic style */ +.menu-tree { + line-height: 2em; + margin: 0 0 0 1em; + padding: 0; +} + +.menu-tree-item { + font-size: 89%; + display: block; + margin: 0; + padding: 0; +} + +.menu-tree-item a { + font-variant: small-caps; + text-decoration: none; + font-style: normal; + padding-top: 0.2em; + padding-bottom: 0.25em; + color: #db7521; +} + +.menu-tree-item a:hover { + color: #eee; +}
http://repo.or.cz/w/gfxprim.git/commit/c306b8911beab3de6c3c4d6fc8ccec23802eb...
commit c306b8911beab3de6c3c4d6fc8ccec23802ebdc4 Author: Cyril Hrubis metan@ucw.cz Date: Sat May 5 20:33:26 2012 +0200
doc: Fix make clean.
diff --git a/doc/Makefile b/doc/Makefile index c81b39d..4bb74ee 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -13,5 +13,5 @@ api.pdf: api.txt fop api.fo -pdf api.pdf
clean: - rm -f api.html + rm -f api.html examples.html rm -f api.xml api.fo api.pdf
-----------------------------------------------------------------------
Summary of changes: doc/Makefile | 2 +- doc/asteroids-corner.png | Bin 0 -> 5241 bytes doc/favicon.png | Bin 0 -> 768 bytes doc/gfxprim_logo.png | Bin 0 -> 11242 bytes doc/gfxprim_logo_prim.png | Bin 0 -> 4751 bytes doc/index.html | 94 ++++++++++++++++++++++++++++ doc/style.css | 151 +++++++++++++++++++++++++++++++++++++++++++++ 7 files changed, 246 insertions(+), 1 deletions(-) create mode 100644 doc/asteroids-corner.png create mode 100644 doc/favicon.png create mode 100644 doc/gfxprim_logo.png create mode 100644 doc/gfxprim_logo_prim.png create mode 100644 doc/index.html create mode 100644 doc/style.css
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.