Navigation Menu

Skip to content

Commit

Permalink
Removed autocomplete code which was already unplugged some times ago.
Browse files Browse the repository at this point in the history
  • Loading branch information
ssire committed Oct 10, 2013
1 parent abbd91f commit 012a396
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 773 deletions.
158 changes: 0 additions & 158 deletions docs/complete_protocol.txt

This file was deleted.

2 changes: 1 addition & 1 deletion docs/howto-filters.html
Expand Up @@ -47,7 +47,7 @@

- category A : filters with no side effect on the edited content, such filters will generally look for some specific data inside the content model and forward it to other components; such filters may build and maintain a toc, generate collaboration events outside of the application, etc. (e.g. the 'event' filter that generates a custom DOM event for some specific life cycle methods call)

- category B : some filters that change the user text entry but not the handle nor the target content model; such filters may do some small typographical corrections such as capitalizing some words, expanding some abbreviations, proposing some contextual input aids while typing, etc. (e.g. the 'autocomplete' filter)
- category B : some filters that change the user text entry but not the handle nor the target content model; such filters may do some small typographical corrections such as capitalizing some words, expanding some abbreviations, proposing some contextual input aids while typing, etc. (e.g. to implement autocomplete)

- category C : some filters that change the handle and/or the target content model; such filter can improve the presentation of the edited content (e.g. displaying a video player if the input is a video URL), they can also allow to edit sub-content model using special rules to interpret the input (e.g. the 'wiki' filter in 'wiki.js', the 'date' filter that dynamically replaces the input device of a 'text' editor with a datepicker device to select a date)
</pre>
Expand Down
10 changes: 3 additions & 7 deletions docs/integrators-guide.html
Expand Up @@ -13,7 +13,7 @@
---------------- AXEL integrator's FAQ --------------------
----------------------------------------------------------------

Last update: 2013-05-01 by S.Sire
Last update: 2013-10-10 by S.Sire

This document gives some advices for integrating AXEL into your application.
It is presented as a FAQ. You are welcome to share your experience to improve
Expand Down Expand Up @@ -293,9 +293,6 @@
requires a server that implements a corresponding communication
protocol

autocomplete.js: communication layer for the 'autocomplete' filter
(UNSUPPORTED) requires a server that implements the autocomplete protocol

You need the files in "src/filters" according to the filters you use in your
template. The only exception is "documentid.js" which can be required to use
the 'photo' primitive editor. For your information:
Expand All @@ -304,6 +301,8 @@

documentid.js: 'documentid' filter to be used with 'photo' plugin

event.js: 'event' filter to generate 'axel-update' events

wiki.js: 'wiki' filter of the 'text' primitive editor

image.js: image inclusion by URL filter of the 'text' primitive editor
Expand All @@ -315,9 +314,6 @@
'video' plugin

debug.js: 'debug' filter for each of the primitive editors

autocomplete.js: 'autocomplete' filter for 'text' editor
(UNSUPPORTED) (depends on autocomplete.js and popup.js device)
</pre>

<pre id="loading">
Expand Down
2 changes: 0 additions & 2 deletions editor/editor.xhtml
Expand Up @@ -60,7 +60,6 @@
<!-- optional devices -->
<script type="text/javascript" src="../src/devices/lens.js"></script>
<script type="text/javascript" src="../src/devices/upload.js"></script>
<script type="text/javascript" src="../src/devices/autocomplete.js"></script>
<script type="text/javascript" src="../src/devices/trackermenu.js"></script>

<!-- optional plugins -->
Expand All @@ -77,7 +76,6 @@
<script type="text/javascript" src="../src/filters/image.js"></script>
<script type="text/javascript" src="../src/filters/style.js"></script>
<script type="text/javascript" src="../src/filters/video.js"></script>
<script type="text/javascript" src="../src/filters/autocomplete.js"></script>
<script type="text/javascript" src="../src/filters/debug.js"></script>
<script type="text/javascript" src="../src/filters/date.js"></script>
<script type="text/javascript" src="../src/filters/optional.js"></script>
Expand Down
2 changes: 0 additions & 2 deletions editor/editornoframe.xhtml
Expand Up @@ -59,7 +59,6 @@
<!-- optional devices -->
<script type="text/javascript" src="../src/devices/lens.js"></script>
<script type="text/javascript" src="../src/devices/upload.js"></script>
<script type="text/javascript" src="../src/devices/autocomplete.js"></script>
<script type="text/javascript" src="../src/devices/trackermenu.js"></script>

<!-- optional plugins -->
Expand All @@ -76,7 +75,6 @@
<script type="text/javascript" src="../src/filters/image.js"></script>
<script type="text/javascript" src="../src/filters/style.js"></script>
<script type="text/javascript" src="../src/filters/video.js"></script>
<script type="text/javascript" src="../src/filters/autocomplete.js"></script>
<script type="text/javascript" src="../src/filters/debug.js"></script>
<script type="text/javascript" src="../src/filters/date.js"></script>
<script type="text/javascript" src="../src/filters/optional.js"></script>
Expand Down
4 changes: 2 additions & 2 deletions scripts/ant.properties
Expand Up @@ -10,7 +10,7 @@ editor.lib.files = generator.js repeat.js choice.js keyboard.js tabgroupmgr.js x
# devices
devices.src.dir = ../src/devices
devices.lib.files = text.js popup.js lens.js upload.js trackermenu.js
# autocomplete.js
#

# plugins
plugins.src.dir = ../src/plugins
Expand All @@ -19,7 +19,7 @@ plugins.lib.files = select.js text.js content.js photo.js file.js link.js video.
# filters
filters.src.dir = ../src/filters
filters.lib.files = event.js optional.js image.js wiki.js date.js style.js video.js
# autocomplete.js common.js debug.js documentid.js layout.js
# common.js debug.js documentid.js layout.js

# css
css.src.dir = ../stylesheets
Expand Down

0 comments on commit 012a396

Please sign in to comment.