├── VERSION ├── .gitignore ├── pix ├── cog.png ├── key.png ├── map.png ├── accept.png ├── cancel.png ├── email.png ├── help.png ├── image.png ├── key_go.png ├── note.png ├── phone.png ├── public.png ├── qrcode.png ├── show.png ├── vcard.png ├── page_add.png ├── page_in.png ├── page_red.png ├── private.png ├── tag_blue.png ├── arrow_right.png ├── book_open.png ├── ldaperror.png ├── page_copy.png ├── page_delete.png ├── page_edit.png ├── phone_add.png ├── tag_blue_edit.png ├── imagebox │ ├── close.jpg │ ├── loading.gif │ ├── spacer.gif │ ├── next_image.jpg │ └── prev_image.jpg └── page_white_excel.png ├── doc ├── .htaccess ├── TODO ├── docs ├── slapd.example └── ldapab.schema ├── inc ├── .htaccess ├── smarty │ ├── internals │ │ ├── core.get_microtime.php │ │ ├── core.process_compiled_include.php │ │ ├── core.get_include_path.php │ │ ├── core.write_compiled_resource.php │ │ ├── core.assign_smarty_interface.php │ │ ├── core.is_trusted.php │ │ ├── core.rmdir.php │ │ ├── core.write_file.php │ │ ├── core.smarty_include_php.php │ │ ├── core.display_debug_console.php │ │ ├── core.is_secure.php │ │ ├── core.assemble_plugin_filepath.php │ │ ├── core.load_resource_plugin.php │ │ ├── core.rm_auto.php │ │ ├── core.process_cached_inserts.php │ │ ├── core.get_php_resource.php │ │ ├── core.create_dir_structure.php │ │ ├── core.run_insert_handler.php │ │ ├── core.write_compiled_include.php │ │ ├── core.write_cache_file.php │ │ └── core.read_cache_file.php │ └── plugins │ │ ├── modifier.csv.php │ │ ├── modifier.h.php │ │ ├── modifier.lower.php │ │ ├── modifier.upper.php │ │ ├── modifier.indent.php │ │ ├── modifier.string_format.php │ │ ├── modifier.replace.php │ │ ├── modifier.wordwrap.php │ │ ├── modifier.cat.php │ │ ├── modifier.count_paragraphs.php │ │ ├── modifier.default.php │ │ ├── modifier.http.php │ │ ├── modifier.spacify.php │ │ ├── modifier.count_sentences.php │ │ ├── modifier.strip_tags.php │ │ ├── modifier.nl2br.php │ │ ├── modifier.strip.php │ │ ├── modifier.count_characters.php │ │ ├── modifier.count_words.php │ │ ├── shared.escape_special_chars.php │ │ ├── function.debug.php │ │ ├── function.assign.php │ │ ├── function.popup_init.php │ │ ├── function.eval.php │ │ ├── modifier.capitalize.php │ │ ├── compiler.assign.php │ │ ├── function.assign_debug_info.php │ │ ├── shared.make_timestamp.php │ │ ├── modifier.regex_replace.php │ │ ├── modifier.truncate.php │ │ ├── modifier.noteparser.php │ │ ├── modifier.date_format.php │ │ ├── function.counter.php │ │ ├── outputfilter.trimwhitespace.php │ │ ├── modifier.escape.php │ │ ├── modifier.debug_print_var.php │ │ ├── block.textformat.php │ │ ├── function.cycle.php │ │ ├── function.math.php │ │ └── function.popup.php ├── init.php ├── config.php.dist ├── lang │ ├── cn.php │ ├── fr.php │ ├── ko.php │ ├── it.php │ ├── nl.php │ ├── tr.php │ ├── ca.php │ ├── en.php │ └── de.php └── fields.php ├── cache └── .htaccess ├── contrib ├── .htaccess └── README.txt ├── templates ├── error.tpl ├── tags.tpl ├── list_map.tpl ├── list_csv.tpl ├── list_csv_entry.tpl ├── footer.tpl ├── list_map_entry.tpl ├── list.tpl ├── orgs.tpl ├── search.tpl ├── import.tpl ├── entry_vcf.tpl ├── login.tpl ├── entry_map.tpl ├── list_entry.tpl ├── help.tpl ├── layout.css ├── header.tpl ├── import_entry.tpl └── toolbar.tpl ├── help.php ├── orgs.php ├── _htaccess ├── img.php ├── styles └── scripted.css ├── login.php ├── scripts ├── maps.js └── interface │ ├── ifxpulsate.js │ ├── ifxhighlight.js │ ├── ittabs.js │ ├── ifxbounce.js │ ├── ifxshake.js │ ├── iexpander.js │ ├── ifxscrollto.js │ └── ifxtransfer.js └── tags.php /VERSION: -------------------------------------------------------------------------------- 1 | 0.8.1 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | inc/config.php 2 | /cache/ 3 | -------------------------------------------------------------------------------- /pix/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/cog.png -------------------------------------------------------------------------------- /pix/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/key.png -------------------------------------------------------------------------------- /pix/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/map.png -------------------------------------------------------------------------------- /pix/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/accept.png -------------------------------------------------------------------------------- /pix/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/cancel.png -------------------------------------------------------------------------------- /pix/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/email.png -------------------------------------------------------------------------------- /pix/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/help.png -------------------------------------------------------------------------------- /pix/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/image.png -------------------------------------------------------------------------------- /pix/key_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/key_go.png -------------------------------------------------------------------------------- /pix/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/note.png -------------------------------------------------------------------------------- /pix/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/phone.png -------------------------------------------------------------------------------- /pix/public.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/public.png -------------------------------------------------------------------------------- /pix/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/qrcode.png -------------------------------------------------------------------------------- /pix/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/show.png -------------------------------------------------------------------------------- /pix/vcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/vcard.png -------------------------------------------------------------------------------- /doc/.htaccess: -------------------------------------------------------------------------------- 1 | ## no access to this directory 2 | order allow,deny 3 | deny from all 4 | -------------------------------------------------------------------------------- /inc/.htaccess: -------------------------------------------------------------------------------- 1 | ## no access to this directory 2 | order allow,deny 3 | deny from all 4 | -------------------------------------------------------------------------------- /pix/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_add.png -------------------------------------------------------------------------------- /pix/page_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_in.png -------------------------------------------------------------------------------- /pix/page_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_red.png -------------------------------------------------------------------------------- /pix/private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/private.png -------------------------------------------------------------------------------- /pix/tag_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/tag_blue.png -------------------------------------------------------------------------------- /cache/.htaccess: -------------------------------------------------------------------------------- 1 | ## no access to this directory 2 | order allow,deny 3 | deny from all 4 | -------------------------------------------------------------------------------- /contrib/.htaccess: -------------------------------------------------------------------------------- 1 | ## no access to this directory 2 | order allow,deny 3 | deny from all 4 | -------------------------------------------------------------------------------- /pix/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/arrow_right.png -------------------------------------------------------------------------------- /pix/book_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/book_open.png -------------------------------------------------------------------------------- /pix/ldaperror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/ldaperror.png -------------------------------------------------------------------------------- /pix/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_copy.png -------------------------------------------------------------------------------- /pix/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_delete.png -------------------------------------------------------------------------------- /pix/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_edit.png -------------------------------------------------------------------------------- /pix/phone_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/phone_add.png -------------------------------------------------------------------------------- /pix/tag_blue_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/tag_blue_edit.png -------------------------------------------------------------------------------- /pix/imagebox/close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/imagebox/close.jpg -------------------------------------------------------------------------------- /pix/imagebox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/imagebox/loading.gif -------------------------------------------------------------------------------- /pix/imagebox/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/imagebox/spacer.gif -------------------------------------------------------------------------------- /pix/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/page_white_excel.png -------------------------------------------------------------------------------- /pix/imagebox/next_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/imagebox/next_image.jpg -------------------------------------------------------------------------------- /pix/imagebox/prev_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cweiske/contagged/master/pix/imagebox/prev_image.jpg -------------------------------------------------------------------------------- /templates/error.tpl: -------------------------------------------------------------------------------- 1 | {include file="header.tpl"} 2 | 3 |
{$lang.tagcloud}
8 | 9 | {include file="footer.tpl"} 10 | -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- 1 | Any help is welcome :-) 2 | 3 | - clean up the code 4 | - clean up the HTML (make it validate) 5 | - clean up the CSS (it's a mess) 6 | - spice up interface (some more web2.0 colors and fonts would be a start) 7 | -------------------------------------------------------------------------------- /help.php: -------------------------------------------------------------------------------- 1 | display('help.tpl'); 10 | 11 | ?> 12 | -------------------------------------------------------------------------------- /templates/list_map.tpl: -------------------------------------------------------------------------------- 1 | {include file="header.tpl"} 2 | 3 | 9 | 10 | 11 |