-
Notifications
You must be signed in to change notification settings - Fork 27
/
[Ext]Go Parent Folder • mozillaZine Forums[t.id-65969 onePage].mht
10260 lines (8497 loc) · 304 KB
/
[Ext]Go Parent Folder • mozillaZine Forums[t.id-65969 onePage].mht
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From: <Saved by UnMHT Ver.8.3.2>
Subject: =?utf-8?B?W0V4dF1HbyBQYXJlbnQgRm9sZGVyIOKAoiBtb3ppbGxhWmluZSBGb3J1bXM=?=
Date: Sun, 15 Oct 2017 01:07:42 +0200
MIME-Version: 1.0
X-UnMHT-Save-State: Current-State
Content-Type: multipart/related;
boundary="----=_Part_5B1E672E_DEA8225F.15F1D24A7BF";
type="text/html"
------=_Part_5B1E672E_DEA8225F.15F1D24A7BF
Content-Location: http://forums.mozillazine.org/viewtopic.php?f=48&t=659690
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html;
charset="UTF-8"
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org=
/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns=3D"http://www.w3.org/1999/xhtml" dir=3D"ltr" lang=3D"en-gb" xml=
:lang=3D"en-gb"><head><meta http-equiv=3D"Content-Type" content=3D"text/htm=
l; charset=3DUTF-8" />
<meta http-equiv=3D"content-style-type" content=3D"text/css" />
<meta http-equiv=3D"content-language" content=3D"en-gb" />
<meta http-equiv=3D"imagetoolbar" content=3D"no" />
<meta content=3D"document" name=3D"resource-type" />
<meta content=3D"global" name=3D"distribution" />
<meta content=3D"" name=3D"keywords" />
<meta content=3D"" name=3D"description" />
<title>[Ext]Go Parent Folder =E2=80=A2 mozillaZine Forums </title>
<!--
phpBB style name: prosilver
Based on style: prosilver (this is the default phpBB3 style)
Original author: Tom Beddard ( http://www.subBlue.com/ )
Modified by:
-->
<script async=3D"" src=3D"http://www.google-analytics.com/ga.js" type=3D"te=
xt/javascript"></script><script type=3D"text/javascript">
// <![CDATA[
var jump_page =3D 'Enter the page number you wish to go to:';
var on_page =3D '1';
var per_page =3D '15';
var base_url =3D './viewtopic.php?f=3D48&t=3D659690';
var style_cookie =3D 'phpBBstyle';
var style_cookie_settings =3D '; path=3D/';
var onload_functions =3D new Array();
var onunload_functions =3D new Array();
=09
/**
* Find a member
*/
function find_username(url)
{
popup(url, 760, 570, '_usersearch');
return false;
}
/**
* New function for handling multiple calls to window.onload and window.unl=
oad by pentapenguin
*/
window.onload =3D function()
{
for (var i =3D 0; i < onload_functions.length; i++)
{
eval(onload_functions[i]);
}
};
window.onunload =3D function()
{
for (var i =3D 0; i < onunload_functions.length; i++)
{
eval(onunload_functions[i]);
}
};
// ]]>
</script>
<script src=3D"./styles/prosilver/template/styleswitcher.js" type=3D"text/j=
avascript"></script>
<script src=3D"./styles/prosilver/template/forum_fn.js" type=3D"text/javasc=
ript"></script>
<link href=3D"./styles/prosilver/theme/print.css" media=3D"print" rel=3D"st=
ylesheet" title=3D"printonly" type=3D"text/css" />
<!--link href=3D"./style.php?id=3D1&lang=3Den" rel=3D"stylesheet" type=
=3D"text/css" media=3D"screen, projection" /-->
<link href=3D"/static/forums/style/static_phpbb_style_php.css" media=3D"scr=
een, projection" rel=3D"stylesheet" type=3D"text/css" />
<link href=3D"./styles/prosilver/theme/normal.css" rel=3D"stylesheet" title=
=3D"A" type=3D"text/css" />
<link href=3D"./styles/prosilver/theme/medium.css" rel=3D"alternate stylesh=
eet" title=3D"A+" type=3D"text/css" />
<link href=3D"./styles/prosilver/theme/large.css" rel=3D"alternate styleshe=
et" title=3D"A++" type=3D"text/css" />
<link href=3D"http://forums.mozillazine.org/static/forums/style/board.css?a=
" rel=3D"stylesheet" type=3D"text/css" />
<link href=3D"http://forums.mozillazine.org/static/common/images/favicon.ic=
o" rel=3D"icon" type=3D"image/x-icon" />
<script type=3D"text/javascript">
var _gaq =3D _gaq || [];
_gaq.push(['_setAccount', 'UA-32170104-1']);
_gaq.push(['_setDomainName', 'mozillazine.org']);
_gaq.push(['_trackPageview']);
(function() {
var ga =3D document.createElement('script'); ga.type =3D 'text/javascri=
pt'; ga.async =3D true;
ga.src =3D ('https:' =3D=3D document.location.protocol ? 'https://ssl' =
: 'http://www') + '.google-analytics.com/ga.js';
var s =3D document.getElementsByTagName('script')[0]; s.parentNode.inse=
rtBefore(ga, s);
})();
</script>
<meta content=3D"euCK30a8gJqlhI8PJ91riJIoH-EPXmzWUMseq0i6UhU" name=3D"googl=
e-site-verification" />
<style>
.SnapLinksContainer :not([xyz]) { all: initial; }
.SnapLinksContainer .SnapLinksHighlighter { position: absolute; top: 0=
px; left: 0px; width: 10px; height: 10px; overflow: visible; }
.SnapLinksContainer { z-index: 999999; top: 0px; left: 0px; margin: 0p=
x; padding: 0px; position: absolute; height: 0px; width: 0px; }
.SnapLinksContainer > .SL_SelectionRect { outline: 2px dashed rgba(0,2=
00,0,1); position: absolute; overflow: visible; z-index: 1; }
.SL_SelectionRect > .SL_SelectionLabel { position: absolute; backgroun=
d: #FFFFD9; border: 1px solid black; border-radius: 2px; padding: 2px; font=
: normal 12px Verdana; white-space: nowrap; }
</style><base href=3D"http://forums.mozillazine.org/" /></head><body cl=
ass=3D"section-viewtopic ltr" id=3D"phpbb"><test>
<div id=3D"masthead">
<h1><a href=3D"http://forums.mozillazine.org/"><img alt=3D"MozillaZine"=
height=3D"70" src=3D"http://forums.mozillazine.org/static/common/images/ti=
tle2.gif" width=3D"180" /></a></h1>
<span id=3D"sprite"></span>
</div>
<table cellpadding=3D"7" cellspacing=3D"0" width=3D"100%"><tbody><tr><td =
id=3D"main" valign=3D"top">
<div id=3D"wrap">
<a accesskey=3D"t" id=3D"top" name=3D"top"></a>
<div hidden=3D"" id=3D"gootop" xux81ww=3D"">
<div class=3D"inner">
<script type=3D"text/javascript"><!--
google_ad_client =3D "pub-0651448570352947";
google_ad_width =3D 728;
google_ad_height =3D 90;
google_ad_format =3D "728x90_as";
google_ad_type =3D "text";
//2007-06-24: boards top
google_ad_channel =3D "9334581665";
google_color_border =3D "CADCEB";
google_color_bg =3D "CADCEB";
google_color_link =3D "536482";
google_color_text =3D "536482";
google_color_url =3D "536482";
//-->
</script>
<script src=3D"http://pagead2.googlesyndication.com/pagead/show_ads.js" typ=
e=3D"text/javascript">
</script>
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<div id=3D"page-header">
<div class=3D"navbar">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
<ul class=3D"linklist">
<li class=3D"icon-home"><strong><a accesskey=3D"h" href=3D"./index.php"=
>Board index</a> <strong>=E2=80=B9</strong> <a href=3D"./viewforum.php?f=
=3D53">Extensions and Themes</a> <strong>=E2=80=B9</strong> <a href=3D"./vi=
ewforum.php?f=3D48">Extension/Theme Releases</a></strong></li>
<li class=3D"rightside"><a class=3D"fontsize" href=3D"#" onclick=3D"fon=
tsizeup(); return false;" onkeypress=3D"return fontsizeup(event);" title=3D=
"Change font size">Change font size</a></li>
=09
=09
</ul>
<span class=3D"corners-bottom"><span></span></span></div>
</div>
</div>
<a name=3D"start_here"></a>
<div id=3D"page-body">
=09
=09
<h2><a href=3D"./viewtopic.php?f=3D48&t=3D659690">[Ext]Go Parent Folder=
</a></h2>
<!-- NOTE: remove the style=3D"display: none" when you want to have the for=
um description on the topic body --><div style=3D"display: none !important;=
">Announce and Discuss the Latest Theme and Extension Releases.<br /></div>
<div class=3D"topic-actions">
<div class=3D"buttons">
=09
<div class=3D"reply-icon"><a href=3D"./posting.php?mode=3Dreply&f=3D4=
8&t=3D659690" title=3D"Post a reply"><span></span>Post a reply</a></div>
=09
</div>
=09
<div class=3D"pagination">
64 posts
=E2=80=A2 <a href=3D"#" onclick=3D"jumpto(); return false;" title=3D"Cl=
ick to jump to page=E2=80=A6">Page <strong>1</strong> of <strong>5</strong>=
</a> =E2=80=A2 <span><strong>1</strong><span class=3D"page-sep">, </span><a=
href=3D"./viewtopic.php?f=3D48&t=3D659690&start=3D15">2</a><span c=
lass=3D"page-sep">, </span><a href=3D"./viewtopic.php?f=3D48&t=3D659690=
&start=3D30">3</a><span class=3D"page-sep">, </span><a href=3D"./viewto=
pic.php?f=3D48&t=3D659690&start=3D45">4</a><span class=3D"page-sep"=
>, </span><a href=3D"./viewtopic.php?f=3D48&t=3D659690&start=3D60">=
5</a></span>
</div>
=09
</div>
<div class=3D"clear"></div>
<div class=3D"post bg2" id=3D"p3387789">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3387789">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D29848=
1">Alice0775</a></dt>
=09
<dd><br /><img alt=3D"User avatar" =
height=3D"50" src=3D"./download/file.php?avatar=3D298481_1362140843.png" wi=
dth=3D"50" /><br /></dd>
=20
<dd> </dd>
<dd><strong>Posts:</strong> 2571</dd><dd><strong>Joined:</s=
trong> October 26th, 2007, 11:25 pm</dd><dd><strong>Location:</strong> OSAK=
A JPN</dd>
<dd>
<ul class=3D"profile-icons">
<li class=3D"web-icon"><a href=3D"h=
ttp://space.geocities.jp/alice0775" title=3D"WWW: http://space.geocities.jp=
/alice0775"><span>Website</span></a></li>
</ul>
</dd>
=20
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3387789#p3387789=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted May 27th, 2008, 11:39 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">Go Parent Folder 2.0(In SandBox)<br /><!-- m --><=
a class=3D"postlink" href=3D"https://addons.mozilla.org/en-US/firefox/addon=
/7377">https://addons.mozilla.org/en-US/firefox/addon/7377</a><!-- m --><br=
/>This is a extension for firefox3.0 to 3.7a1pre<br /><br />Add "Go P=
arent Folder" menu to context menu in The Library list view and Search=
result in Bookmarks Sidebar. <br /><br />NOTE:<br />This extension does no=
t seem to work in MacOS X. <br /><br />Preview for Library Window,<br /><im=
g alt=3D"Image" src=3D"https://addons.mozilla.org/en-US/firefox/images/prev=
iew/7377/1" /><br />Preview for Sidebar,<br /><img alt=3D"Image" src=3D"htt=
ps://addons.mozilla.org/en-US/firefox/images/addon_preview/7377/3" /><br />=
Right click Bookmark in list view shows "Go Parent Folder" contex=
t menu. And select the "Go Parent Folder" then Parent folder of t=
he bookmark will be selected.<br /><br />An option:<br /><img alt=3D"Image"=
src=3D"https://addons.mozilla.org/en-US/firefox/images/addon_preview/7377/=
2" /><br /><br />It becomes more convenient when you use "Show Parent =
Folder" (<!-- m --><a class=3D"postlink" href=3D"https://addons.mozill=
a.org/en-US/firefox/addon/7372">https://addons.mozilla.org/en-US/firefox/ad=
don/7372</a><!-- m --> ) together with this.<br /><br />In addition, <br />=
The extension confirmed that it functioned only on WindowsXP<br />Because I=
do not have the other OS. I can not confirm on the other OS.<br />However,=
this may work on the other OS because I do not use the function that is p=
eculiar to the OS.<br /><br />As for me, English is not a first language. =
<br />Please use a simple sentence structure and vocabulary as possible whe=
n you reply to me.</div>
=09
<div class=3D"notice">Last edited by <a href=3D"./memberlist.php?mode=
=3Dviewprofile&u=3D298481">Alice0775</a> on October 15th, 2009, 7:26 am=
, edited 7 times in total.
=09
</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg1" id=3D"p3596345">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3596345">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D14350=
9">Alan Baxter</a></dt>
=09
<dd> </dd>
<dd><strong>Posts:</strong> 4419</dd><dd><strong>Joined:</s=
trong> May 30th, 2005, 2:01 pm</dd><dd><strong>Location:</strong> Colorado,=
USA</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3596345#p3596345=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted June 24th, 2008, 9:16 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">Thank you for this extension. This is the replac=
ement for the obsolete Locate in Bookmark Folder extension that I was looki=
ng for. I've reviewed it on AMO. AMO won't notify me of any upd=
ates to extensions in the sandbox. I've subscribed to this topic, so =
please post any updates for the extension to this discussion thread.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg2" id=3D"p3620045">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3620045">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D29848=
1">Alice0775</a></dt>
=09
<dd><br /><img alt=3D"User avatar" =
height=3D"50" src=3D"./download/file.php?avatar=3D298481_1362140843.png" wi=
dth=3D"50" /><br /></dd>
=20
<dd> </dd>
<dd><strong>Posts:</strong> 2571</dd><dd><strong>Joined:</s=
trong> October 26th, 2007, 11:25 pm</dd><dd><strong>Location:</strong> OSAK=
A JPN</dd>
<dd>
<ul class=3D"profile-icons">
<li class=3D"web-icon"><a href=3D"h=
ttp://space.geocities.jp/alice0775" title=3D"WWW: http://space.geocities.jp=
/alice0775"><span>Website</span></a></li>
</ul>
</dd>
=20
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3620045#p3620045=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted June 26th, 2008, 10:03 am</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">Go Parent Folder 1.5 released (In sandbox)<br /><=
!-- m --><a class=3D"postlink" href=3D"https://addons.mozilla.org/en-US/fir=
efox/addon/7377">https://addons.mozilla.org/en-US/firefox/addon/7377</a><!-=
- m --><br /><br />Add an option.<br />Select all related bookmarks, or se=
lect the "parent folder" and the clicked one</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg1" id=3D"p3627705">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3627705">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D14350=
9">Alan Baxter</a></dt>
=09
<dd> </dd>
<dd><strong>Posts:</strong> 4419</dd><dd><strong>Joined:</s=
trong> May 30th, 2005, 2:01 pm</dd><dd><strong>Location:</strong> Colorado,=
USA</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3627705#p3627705=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted June 26th, 2008, 8:41 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">Hi, Alice. I can't tell what the "Sele=
ct all related bookmark" option does. The result seems to be the same=
whether it's checked or not. I see that it's checked by default=
, so I'll leave it that way. Thank you for notifying us of the update=
.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg2" id=3D"p3706485">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3706485">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D14800=
0">bugblatter</a></dt>
=09
<dd> </dd>
<dd><strong>Posts:</strong> 57</dd><dd><strong>Joined:</str=
ong> June 21st, 2005, 12:31 am</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3706485#p3706485=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 2nd, 2008, 9:45 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">I can't get the new "related bookmark&q=
uot; option to do anything different either. Arrgghh, it's driving me =
crazy! <img alt=3D":)" src=3D"./images/smilies/icon_smile.gif" title=3D"S=
mile" /> Just kidding. Thanks for all the useful extensions, Alice.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg1" id=3D"p3932535">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3932535">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D36927=
5">greg.bakker</a></dt>
=09
<dd> </dd>
<dd><strong>Posts:</strong> 2</dd><dd><strong>Joined:</stro=
ng> July 22nd, 2008, 6:34 am</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3932535#p3932535=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 6:39 am</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">Thanks for this handy addon. But, it is a bit sl=
ow. For me it takes about eight seconds for the parent folder to pop up af=
ter I click "Go Parent Folder".</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg2" id=3D"p3933405">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3933405">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D14800=
0">bugblatter</a></dt>
=09
<dd> </dd>
<dd><strong>Posts:</strong> 57</dd><dd><strong>Joined:</str=
ong> June 21st, 2005, 12:31 am</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3933405#p3933405=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 8:22 am</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">8 seconds? that IS slow. for a point of referenc=
e, mine takes about a second or less, and i've got a pentium 3-1000 wi=
th 1g mem, not really state-of-the-art. perhaps its something specific to =
your system - i've got about 1200 bookmarks in my library. or it coul=
d have something to do with firefox 3. i've found the new ff3 bookmar=
ks library is very slow in general compared to ff2. Simple things like ent=
ering a folder in the right-hand pane (vs left) or just cutting and pasting=
bookmarks take a 2 or 3 of seconds (an eternity for me), which were instan=
taneous in ff2. hope that was helpful.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg1" id=3D"p3934215">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3934215">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D29848=
1">Alice0775</a></dt>
=09
<dd><br /><img alt=3D"User avatar" =
height=3D"50" src=3D"./download/file.php?avatar=3D298481_1362140843.png" wi=
dth=3D"50" /><br /></dd>
=20
<dd> </dd>
<dd><strong>Posts:</strong> 2571</dd><dd><strong>Joined:</s=
trong> October 26th, 2007, 11:25 pm</dd><dd><strong>Location:</strong> OSAK=
A JPN</dd>
<dd>
<ul class=3D"profile-icons">
<li class=3D"web-icon"><a href=3D"h=
ttp://space.geocities.jp/alice0775" title=3D"WWW: http://space.geocities.jp=
/alice0775"><span>Website</span></a></li>
</ul>
</dd>
=20
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3934215#p3934215=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 9:47 am</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content"><blockquote><div><cite>Alan Baxter wrote:</cite>H=
i, Alice. I can't tell what the "Select all related bookmark&quo=
t; option does. The result seems to be the same whether it's checked =
or not. I see that it's checked by default, so I'll leave it tha=
t way. Thank you for notifying us of the update.</div></blockquote><br /><=
blockquote><div><cite>arete7 wrote:</cite>I can't get the new "re=
lated bookmark" option to do anything different either. Arrgghh, it&#x=
27;s driving me crazy! <img alt=3D":)" src=3D"./images/smilies/icon_smile=
.gif" title=3D"Smile" /> Just kidding. Thanks for all the useful extensio=
ns, Alice.</div></blockquote><br />When a command was carried out in the se=
arch results of the bookmark sidebar, a difference will appear.<br />When i=
t was attached plural tags the bookmark, A pro-folder and those bookmark ar=
e chosen.<br />When an option is off, only bookmark located in the upper pa=
rt in a tree is chosen.<br /><blockquote><div><cite>greg.bakker wrote:</cit=
e>Thanks for this handy addon. But, it is a bit slow. For me it takes abo=
ut eight seconds for the parent folder to pop up after I click "Go Par=
ent Folder".</div></blockquote><br /><blockquote><div><cite>arete7 wro=
te:</cite>8 seconds? that IS slow. for a point of reference, mine takes ab=
out a second or less, and i've got a pentium 3-1000 with 1g mem, not r=
eally state-of-the-art. perhaps its something specific to your system - i&=
#x27;ve got about 1200 bookmarks in my library. or it could have something=
to do with firefox 3. i've found the new ff3 bookmarks library is ve=
ry slow in general compared to ff2. Simple things like entering a folder i=
n the right-hand pane (vs left) or just cutting and pasting bookmarks take =
a 2 or 3 of seconds (an eternity for me), which were instantaneous in ff2. =
hope that was helpful.</div></blockquote><br />It takes time very much to =
find the bookmark position from a tree.<br />It is in particular remarkable=
when "Select all related bookmark" option is turned on.<br />Thi=
s is a problem of selectItems method in tree.xml.<br />As for improving thi=
s, a prospect is not in sight for the moment.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg2" id=3D"p3935535">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3935535">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D14800=
0">bugblatter</a></dt>
=09
<dd> </dd>
<dd><strong>Posts:</strong> 57</dd><dd><strong>Joined:</str=
ong> June 21st, 2005, 12:31 am</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3935535#p3935535=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 12:01 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content">Greg, I take what I said before back: In the side=
bar it does take about 4-5s for me. similar to your time. I originally tri=
ed it in the library window, which only takes about 1s. Odd that it is dif=
ferent, but if I understand alice's explanation correctly, it might be=
because of this "Select all related bookmark" feature affects on=
ly the sidebar. I tried unchecking it, but I got about the same time.<br /=
><br />Alice, thanks for the info. As for what this feature does, it'=
s still a bit of a mystery, but I probably misunderstood you or missed some=
thing obvious. You don't have to bother explaining it again, but I wi=
ll put what I found for others. I tried giving a bookmark multiple tags, a=
s you said, but it only seemed to affect the smart bookmark folder "Re=
cent Tags". The bookmark and its parent folder are selected, as well =
as in each of its tags under "Recent Tags". If the feature is un=
checked, then it is only selected under one tag under "Recent Tags&quo=
t;, but not under its parent folder (bug?), although the parent folder is i=
tself selected. If you delete the "Recent Tags" folder, then noth=
ing outside default behavior seems to happen.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg1" id=3D"p3935835">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3935835">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D459">=
notonymous</a></dt>
=09
<dd><br /><img alt=3D"User avatar" =
height=3D"32" src=3D"./download/file.php?avatar=3D459.jpg" width=3D"32" /><=
br /></dd>
=20
<dd> </dd>
<dd><strong>Posts:</strong> 140</dd><dd><strong>Joined:</st=
rong> November 6th, 2002, 6:57 pm</dd><dd><strong>Location:</strong> Beyond=
the fringe</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3935835#p3935835=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 12:33 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content"><blockquote><div><cite>arete7 wrote:</cite> If th=
e feature is unchecked, then it is only selected under one tag under "=
Recent Tags", but not under its parent folder (bug?), although the par=
ent folder is itself selected. If you delete the "Recent Tags" fo=
lder, then nothing outside default behavior seems to happen.</div></blockqu=
ote><br />Something similar happens if the URL was recently bookmarked -- t=
he entry in "Recent Bookmarks" is selected. I suggest a change so=
that dynamic entries like those in the "Recent Tags" and "R=
ecent Bookmarks" folders are ignored when searching for the parent.</d=
iv>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg2" id=3D"p3938825">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3938825">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D29848=
1">Alice0775</a></dt>
=09
<dd><br /><img alt=3D"User avatar" =
height=3D"50" src=3D"./download/file.php?avatar=3D298481_1362140843.png" wi=
dth=3D"50" /><br /></dd>
=20
<dd> </dd>
<dd><strong>Posts:</strong> 2571</dd><dd><strong>Joined:</s=
trong> October 26th, 2007, 11:25 pm</dd><dd><strong>Location:</strong> OSAK=
A JPN</dd>
<dd>
<ul class=3D"profile-icons">
<li class=3D"web-icon"><a href=3D"h=
ttp://space.geocities.jp/alice0775" title=3D"WWW: http://space.geocities.jp=
/alice0775"><span>Website</span></a></li>
</ul>
</dd>
=20
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3938825#p3938825=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 5:43 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content"><blockquote><div><cite>notonymous wrote:</cite><b=
lockquote><div><cite>arete7 wrote:</cite> If the feature is unchecked, then=
it is only selected under one tag under "Recent Tags", but not u=
nder its parent folder (bug?), although the parent folder is itself selecte=
d. If you delete the "Recent Tags" folder, then nothing outside d=
efault behavior seems to happen.</div></blockquote><br />Something similar =
happens if the URL was recently bookmarked -- the entry in "Recent Boo=
kmarks" is selected. I suggest a change so that dynamic entries like t=
hose in the "Recent Tags" and "Recent Bookmarks" folder=
s are ignored when searching for the parent.</div></blockquote><br />Versio=
n 1.6 released.<br />Improved: Shortened time to search for a parent-folder=
in the Sidebar when "Select all related bookmark" option is off.=
<br />Fixed bug: Dynamic entries like those in the "Recent Tags"=
and "Recent Bookmarks" folders are ignored when searching for th=
e parent without "Select all related bookmark" option.</div>
=09
</div>
=09
</div>
<!-- old user info -->
<!--div class=3D"back2top"><a href=3D"#wrap" class=3D"top" title=3D"Top">=
Top</a></div-->
=20
<span class=3D"corners-bottom"><span></span></span></div>
</div>
<hr class=3D"divider" />
<div class=3D"post bg1" id=3D"p3939895">
<div class=3D"inner"><span class=3D"corners-top"><span></span></span>
=20
<div class=3D"postprofile" id=3D"profile3939895">
<dt><a href=3D"./memberlist.php?mode=3Dviewprofile&u=3D459">=
notonymous</a></dt>
=09
<dd><br /><img alt=3D"User avatar" =
height=3D"32" src=3D"./download/file.php?avatar=3D459.jpg" width=3D"32" /><=
br /></dd>
=20
<dd> </dd>
<dd><strong>Posts:</strong> 140</dd><dd><strong>Joined:</st=
rong> November 6th, 2002, 6:57 pm</dd><dd><strong>Location:</strong> Beyond=
the fringe</dd>
</div>
=20
<div class=3D"postbody">
=09
<p class=3D"author">
=20
<a href=3D"./viewtopic.php?p=3D3939895#p3939895=
"><img alt=3D"Post" height=3D"9" src=3D"./styles/prosilver/imageset/icon_po=
st_target.gif" title=3D"Post" width=3D"11" /></a>
=20
Posted July 22nd, 2008, 7:31 pm</p>
=09
<div class=3D"post_body" style=3D"margin-left:137px">
<div class=3D"content"><blockquote><div><cite>Alice0775 wrote:</cite>Ver=
sion 1.6 released.<br />Improved: Shortened time to search for a parent-fol=
der in the Sidebar when "Select all related bookmark" option is o=