create wiki

go home go home
  1. about
  2. code
  3. wiki
  4. blog

New pages

From Create Wiki

Jump to: navigation, search
New pages
Hide logged-in users | Hide bots
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)
  • 04:30, 22 April 2009 ‎DC Memory Management (hist) ‎[192 bytes] ‎Alex (Talk | contribs) (New page: dC memory management will likely be just a use of smart pointers. It will likely be tested with a simple repeated loading and (through some as-of-yet not introduced method) clearing of a f...)
  • 03:10, 10 April 2009 ‎DC Reference (hist) ‎[10,824 bytes] ‎Alex (Talk | contribs) (New page: dC (Create data) is a language meant to make writing Create Framework applications as quick as possible. ==Introduction== dC is a data specification language. This means that it allows yo...)
  • 02:49, 10 April 2009 ‎Reference (hist) ‎[260 bytes] ‎Alex (Talk | contribs) (New page: There are a few different kinds of reference: * dC Reference. Reference on the dC language. * Create Reference. Reference for the dC libraries for the Create Framework. * [[Create...)
  • 21:06, 6 April 2009 ‎Roadmap (hist) ‎[2,212 bytes] ‎Alex (Talk | contribs) (New page: Several things need to be done. ==Shell== Shell, currently a simple JavaScript execution utility, needs to replace the actual create engine. A few items have to be scritpable for this to ...)
  • 16:09, 24 March 2009 ‎Script Engine Reference (hist) ‎[8,454 bytes] ‎Alex (Talk | contribs) (New page: The following has been copy-and-pasted from a response on the v8 discussion group. It has an overview of both the internals and use of the Script Engine. It will be refined later. ===Post...)
  • 04:08, 19 March 2009 ‎Create Core (hist) ‎[830 bytes] ‎Alex (Talk | contribs) (New page: The Create library is the core of the framework. It does all of the heavy lifting for output composition. There are two main parts: the Model and the View. Models hold the cross-output de...)
  • 04:00, 19 March 2009 ‎Common Library (hist) ‎[351 bytes] ‎Alex (Talk | contribs) (New page: The Common library declares a few basic classes: * Array: A simple Array class. * String: A generic string class. * Path: A c...)
  • 18:42, 22 February 2009 ‎V8/Persistent Handles (hist) ‎[5,056 bytes] ‎Alex (Talk | contribs) (New page: Persistent handles are persistent. They act much like a C++ pointer, in some ways. After you create the handle, it will not go away until you specifically tell it to. For instance: <sourc...)
  • 03:51, 22 February 2009 ‎Bindable Errors (hist) ‎[1,146 bytes] ‎Alex (Talk | contribs) (New page: The classes in Bindable are very generic. They are base classes. Consumers access objects in terms of this base class. As such, they know nothing of the derived classes. This is problemat...)
  • 18:43, 20 February 2009 ‎V8/Contexts (hist) ‎[1,343 bytes] ‎Alex (Talk | contribs) (New page: All code in V8 executes in a context. Why? Think of a web browser. You can have multiple tabs open, and each tab may have some of its own scripts. The scripts from one tab should be compl...)
  • 05:35, 18 February 2009 ‎V8/Handles (hist) ‎[5,178 bytes] ‎Alex (Talk | contribs) (New page: ''Handles sound like what they are, just like lollies in a lolly pop jar.'' &mdash; paraphrased from ''Truly Scrumptious,'' song from the wonderful ''Chitty Chitty Bang Bang'' Handles are...)
  • 05:05, 18 February 2009 ‎V8/Garbage Collection (hist) ‎[3,262 bytes] ‎Alex (Talk | contribs) (New page: v8's garbage collection is pretty transparent and simple. There are only a few functions relating to it. We only use one, but it is a very important one. ==Adjusted Memory== v8 will mostl...)
  • 02:45, 18 February 2009 ‎V8/A Simple Application (hist) ‎[1,953 bytes] ‎Alex (Talk | contribs) (New page: <source lang="cpp"> //note: this particular example is borrowed very closely from V8's embedder's //guide, a definite recommended read that gives a good overview of V8 that //might make ma...)
  • 02:20, 18 February 2009 ‎A Simple Application (hist) ‎[1,675 bytes] ‎Alex (Talk | contribs) (New page: <source> //note: this particular example is borrowed very closely from V8's embedder's //guide, a definite recommended read that gives a good overview of V8 that //might make many things t...)
  • 01:58, 18 February 2009 ‎V8 Cookbook (hist) ‎[1,014 bytes] ‎Alex (Talk | contribs) (New page: V8 Cookbook.)
  • 05:20, 14 February 2009 ‎Colors (hist) ‎[1,364 bytes] ‎Alex (Talk | contribs) (New page: There are several color classes in the Create Framework. At the moment (although this will probably change in the next few days, as of Feb 13 2009), only RGB is supported. However, this pa...)
  • 23:48, 6 February 2009 ‎Frame padding (hist) ‎[623 bytes] ‎Alex (Talk | contribs) (New page: Currently, it is impossible to add padding directly to a frame. In fact, it is impossible to automatically pad a frame even by using a secondary frame, unless you use a PaddedStreamFrame. ...)
  • 21:58, 6 February 2009 ‎DCSS (hist) ‎[2,124 bytes] ‎Alex (Talk | contribs) (New page: dCSS should be a module adding support for a technique similar to Cascading Style Sheets. The syntax need not be even close to that of CSS. dCSS may not be a run-time CSS engine, but inst...)
  • 16:10, 6 February 2009 ‎Switch Streams (hist) ‎[1,848 bytes] ‎Alex (Talk | contribs) (New page: Switch Streams should act like normal streams, except that they should not have direct children of their own. Instead, they have a map from String input values to ContentStream views. They...)
  • 21:59, 2 February 2009 ‎Tutorials (hist) ‎[143 bytes] ‎Alex (Talk | contribs) (New page: '''Hello World''' A simple tutorial on how to use the framework to create a PDF file with the words "Hello, World!")
  • 17:32, 1 February 2009 ‎Testing (hist) ‎[1,673 bytes] ‎Alex (Talk | contribs) (New page: The only component which currently has any tests is ''Bindable''. Even it has fewer tests than would be optimal. There are many challenges in testing the framework. Some components are si...)
  • 15:42, 1 February 2009 ‎Script Arrays (hist) ‎[461 bytes] ‎Alex (Talk | contribs) (New page: Currently, the Script Engine does not support arrays. This means that arrays passed from JavaScript to C++ will be ignored, as will arrays passed from C++ to JavaScript. For arrays coming...)
  • 04:39, 1 February 2009 ‎Script Errors (hist) ‎[703 bytes] ‎Alex (Talk | contribs) (New page: The Script Engine should have support for errors. In fact, having such support is really quite important. There are two pieces: # Errors coming from Script # Errors coming from C++ that n...)
  • 03:15, 1 February 2009 ‎Script Standalone (hist) ‎[1,000 bytes] ‎Alex (Talk | contribs) (New page: It would be very nice if the Script engine was completely standalone. There is just one problem: smart pointers. They are defined in ''Ref.h'' and ''Mem.h'' in ''Bindable''. To fix this, ...)
  • 03:07, 1 February 2009 ‎Overview (hist) ‎[2,161 bytes] ‎Alex (Talk | contribs) (New page: The Create Framework is meant to allow generation of print output (currently in PDF and PPML formats). Print output applications are written in dC, a data specification language made spec...)
(Latest | Earliest) View (newer 50) (older 50) (20 | 50 | 100 | 250 | 500)
Views
Personal tools
Toolbox