X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=nucleus%2Fapplications%2Fbookmark_tools%2Fjs_marks_maker.cpp;h=67a88e9842d955eff583162f96b5335b8045929e;hb=3f864e27a81cb09ae37e0331604a350c9d48c080;hp=d32f50f4dbe515d05321c7b02a69703a394e64e0;hpb=3ea085ec301ed1399dfa1e9f3a240312dc95410b;p=feisty_meow.git diff --git a/nucleus/applications/bookmark_tools/js_marks_maker.cpp b/nucleus/applications/bookmark_tools/js_marks_maker.cpp index d32f50f4..67a88e98 100644 --- a/nucleus/applications/bookmark_tools/js_marks_maker.cpp +++ b/nucleus/applications/bookmark_tools/js_marks_maker.cpp @@ -103,7 +103,7 @@ by finding the phrase $INSERT_LINKS_HERE in it and replacing that with html\n\ formatted link and categories from the input file. Another tag of $TODAYS_DATE\n\ will be replaced with the date when the output file is regenerated.\n\ The HOOPLE link format is documented here:\n\ - http://hoople.org/guides/link_database/format_manifesto.txt\n\ + http://feistymeow.org/guides/link_database/format_manifesto.txt\n\ ", program_name.basename().raw().s(), program_name.basename().raw().s()); program_wide_logger::get().log(to_show, ALWAYS_PRINT); return 12; @@ -111,7 +111,7 @@ The HOOPLE link format is documented here:\n\ void marks_maker_javascript::write_category(inner_mark_tree *node, astring &output) { -// FUNCDEF("write_category"); + FUNCDEF("write_category"); // output a javascript line for the category. int node_num = node->_uid; @@ -133,7 +133,7 @@ void marks_maker_javascript::write_category(inner_mark_tree *node, astring &outp void marks_maker_javascript::write_link(inner_mark_tree *node, const link_record &linko, astring &output) { -// FUNCDEF("write_link"); + FUNCDEF("write_link"); // write a javascript link definition. int parent_node = node->_uid; astring chewed_name = linko._description; @@ -177,7 +177,7 @@ void marks_maker_javascript::write_link(inner_mark_tree *node, const link_record int marks_maker_javascript::execute() { -// FUNCDEF("execute"); + FUNCDEF("execute"); SETUP_COMBO_LOGGER; command_line cmds(_global_argc, _global_argv); // process the command line parameters. @@ -233,7 +233,7 @@ int marks_maker_javascript::write_marks_page(const astring &output_filename, // traverse the tree in prefix order. tree::iterator itty = _categories.access_root().start(tree::prefix); - tree *curr = NIL; + tree *curr = NULL_POINTER; while ( (curr = itty.next()) ) { inner_mark_tree *nod = (inner_mark_tree *)curr; // print out the category on this node.