search for: nothidden

Displaying 3 results from an estimated 3 matches for "nothidden".

2002 Oct 12
3
Files are showing up as hidden when view from windows ...
Well I started digging into it, and it seems its making executables show up as hidden. Which seems really odd, here's an ls -l from my Solaris machine... -rw-r--r-- 1 iacm staff 0 Oct 12 11:10 notHidden -rwxr-xr-x 1 iacm staff 0 Oct 12 11:09 showsUpHidden The file names describe which one is which. If I did a chmod 755 on notHidden, it would then show up hidden. Any clues to why this is happening? It doesn't seem to be on all our shares... but from one share in particular......
2007 Aug 22
0
3 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_as_function.c test/trace
...new_info (); - // mark the ones that are not hidden - for (var prop in o) - { - // only get the ones that are not only in the __proto__ - if (is_blaclisted (o, prop) == false) { - if (hasOwnProperty (o, prop) == true) - set_info (info, prop, "hidden", false); - } + var nothidden = new Array (); + for (var prop in o) { + nothidden.push (prop); } // unhide everything ASSetPropFlags (o, null, 0, 1); var all = new Array (); - var hidden = new Array (); for (var prop in o) { - // only get the ones that are not only in the __proto__ if (is_blac...
2007 Nov 27
0
12 commits - libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_strings.c libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_load_object_as.c libswfdec/swfdec_load_object.c libswfdec/swfdec_load_object.h
...y_object (); _global.ASSetNative = ASSetNative; @@ -325,7 +325,7 @@ function trace_properties_recurse (o, prefix, identifier, level) } } -function generate_names (o, prefix, identifier) +function generate_names (o, prefix, identifier, output) { // mark the ones that are not hidden var nothidden = new Array (); @@ -368,6 +368,9 @@ function generate_names (o, prefix, identifier) } else { o[prop]["mySecretId"] = prefix + (prefix != "" ? "." : "") + identifier + "." + prop; + if (output == true) { + trace (" [\""...