annotate hip.html @ 11:9e18b8d8c936

Added simple text-selection support; use words like 'this', 'selection', or 'it' to refer to your selection. It will be interpolated in the correct position in your sentence. I don't have a selection-grabbing mechanism yet (it's beside the point) so I just added a text input field to hip.html that we will pretend is your selection for not.
author jonathandicarlo@localhost
date Fri, 16 May 2008 19:43:45 -0700
parents 98935af12b04
children 8dcc88f93829
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
3 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
4 <head>
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
5 <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
6 <link rel="stylesheet" type="text/css" media="all"
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
7 href="hip.css" />
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
8 <title></title>
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
9 </head>
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
10 <body>
6
98935af12b04 Debugged the recursive part of the parsing algorithm, so it now recognizes multiple prepositions in any order. Still some bugs.
jonathandicarlo@jonathan-dicarlos-macbook-pro.local
parents: 1
diff changeset
11 <div id="status-line">Ubiquity!</div>
0
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
12 <input id="search-box" type="text" size="40" />
1
a31bdc4de955 Added autocomplete popup and querysource class
Atul Varma <varmaa@toolness.com>
parents: 0
diff changeset
13 <div id="autocomplete-popup"></div>
11
9e18b8d8c936 Added simple text-selection support; use words like 'this', 'selection', or 'it' to refer to your selection. It will be interpolated in the correct position in your sentence. I don't have a selection-grabbing mechanism yet (it's beside the point) so I just added a text input field to hip.html that we will pretend is your selection for not.
jonathandicarlo@localhost
parents: 6
diff changeset
14 <hr/>
9e18b8d8c936 Added simple text-selection support; use words like 'this', 'selection', or 'it' to refer to your selection. It will be interpolated in the correct position in your sentence. I don't have a selection-grabbing mechanism yet (it's beside the point) so I just added a text input field to hip.html that we will pretend is your selection for not.
jonathandicarlo@localhost
parents: 6
diff changeset
15 <p>Pretend this is your selection: <input id="selection" type="text" size=30" /></p>
0
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
16 </body>
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
17 <script type="text/javascript" src="jquery.js"></script>
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
18 <script type="text/javascript" src="hip.js"></script>
9e6054e41bdc Origination.
Atul Varma <varmaa@toolness.com>
parents:
diff changeset
19 </html>