removed old files

This commit is contained in:
Philipp Hancke 2011-06-16 08:18:27 +02:00 committed by Gabor Adam Toth
parent 38b206aec0
commit 2bd28adbd7
3 changed files with 2 additions and 21 deletions

View File

@ -1,11 +0,0 @@
int main() {
.Parser p = Parser();
p->feed(":_source\tpsyc://nb.tgbit.net/~foo\n"
":_target\tpsyc://nb2.tgbit.net/~bar\n"
":_tag\tf00b4rb4z\n"
"\n"
":_foo\tbar\n"
"_message_private\n"
"OHAI\n"
"|\n");
}

View File

@ -34,7 +34,7 @@
// psyctext helper
psycTextValueRC lookup_value_mapping(const char *name, size_t len, psycString *value, void *extra)
{
printf("lookup_value_mapping called for %.*s\n", (int) len, name);
//printf("lookup_value_mapping called for %.*s\n", (int) len, name);
struct pike_string *key = make_shared_binary_string(name, len);
struct mapping *m = (struct mapping *) extra;
struct svalue *s = low_mapping_string_lookup(m, key);
@ -52,7 +52,7 @@ psycTextValueRC lookup_value_mapping(const char *name, size_t len, psycString *v
break;
default:
printf("lookup did return !string\n");
// FIXME
// FIXME: we need the automagic value conversion
value->ptr = "";
value->length = 0;
}

View File

@ -1,8 +0,0 @@
int main() {
werror("render:\n%s\---\n",
render( ([ "_context" : "psyc://denmark.lit/~hamlet#_follow" ]),
([ "_type_content" : "text/plain", "_subject" : "to be or not to be ?",
"_bla" : 123 ]),
"_message",
"to be or not to be ?"));
}