summaryrefslogtreecommitdiffstats
path: root/WebHob_1.5/custom-image-details-all.html
blob: b9bfc12f0c4538c020312b28045b96bf46b16058 (plain)
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
<!DOCTYPE html>
<html>
    <head>
        <title>$custom-image-name (custom-images)</title>
        <link rel="stylesheet" href="assets/css/bootstrap.min.css" type='text/css'>
        <link rel="stylesheet" href="assets/css/bootstrap-responsive.min.css" type='text/css'>
        <link rel="stylesheet" href="assets/css/bootstrap-switch.css">
        <link rel="stylesheet" href="assets/css/font-awesome.min.css" type='text/css'>
        <link rel="stylesheet" href="assets/css/prettify.css" type='text/css'>
        <link rel="stylesheet" href="assets/css/default.css" type='text/css'>
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    </head>

    <body>
        <div class="navbar navbar-fixed-top">
            <div class="navbar-inner">
            	<div class="container-fluid">
					<a class="brand logo" href="index.html"><img src="assets/img/logo.png" class="" /></a>
					<a class="brand" href="index.html">Toaster</a>
					<ul class="nav">
            <li>
              <a href="index.html" id="nav-builds">
                <i class="icon-tasks"></i>
                All builds
              </a>
            </li>
            <li>
              <a href="all-projects.html" id="nav-projects">
                <i class="icon-folder-open"></i>
                All projects
              </a>
            </li>
            <li>
              <a href="all-users.html" id="nav-projects">
                <i class="icon-user"></i>
                All users
              </a>
            </li>
            <li>
              <a href="#">
                <i class="icon-cog"></i>
                Administration
              </a>
            </li>
            <li>
              <a href="#">
                <i class="icon-book"></i>
                Manual
              </a>
            </li>
					</ul>
					<div class="btn-group pull-right">
						<button class="btn dropdown-toggle" data-toggle="dropdown" href="#">
							<i class="icon-user"></i>
							You
							<i class="icon-caret-down"></i>
						</button>
						<ul class="dropdown-menu">
							<li><a href="profile.html">Edit your profile</a></li>
							<li><a href="profile.html?change-password">Change password</a></li>
							<li style="margin-top:10px;"><a href="#" class="btn">Log out</a></li>
						</ul>
					</div>
					<span class="pull-right divider-vertical"></span>
					<div class="btn-group pull-right">
						<a class="btn" href="newproject.html">New project</a>
						<!--button class="btn dropdown-toggle" data-toggle="dropdown">
							<i class="icon-caret-down"></i>
						</button>
						<ul class="dropdown-menu">
							<li><a href="#">Clone project</a></li>
							<li><a href="#">Export project</a></li>
							<li><a href="#">Import project</a></li>
						</ul-->
					</div>
					<div class="btn-group pull-right">
						<button class="btn dropdown-toggle" data-toggle="dropdown" href="#">
							New build
							<i class="icon-caret-down"></i>
						</button>
						<ul class="dropdown-menu new-build multi-select">
							<li>
								<h3>New build</h3>
								<h6>Project:</h6>
								<span id="project">
									<a class="lead" href="project-configuration.html">$project_name</a>
									<i class="icon-pencil"></i>
								</span>
								<form id="change-project-form" style="display:none;">
									<div class="input-append">
										<input type="text" class="input-medium" value="$project_name" autocomplete="off" data-minLength="1" data-autocomplete="off"
										data-provide="typeahead"  data-source='[
										"project one",
										"project two",
										"project three",
										"project four",
										"project five" ]'>
										<button id="apply-change-project" class="btn" type="button">Save</button>
										<a href="#" id="cancel-change-project" class="btn btn-link">Cancel</a>
									</div>
									<a id="view-all-projects" style="display:block;" href="#">View all projects</a>
								</form>
							</li>
							<li>
								<!--div id="selected-targets">
									<h6>Selected targets:</h6>
									<ul class="unstyled configuration-list">
										<li>core-image-myimage</li>
										<li>core-image-myimage-dev</li>
										<a id="build-selected" class="btn">Build selected targets</a>
									</ul>
									<form class="input-append">
										<input type="text" placeholder="or type a target name" autocomplete="off" data-minLength="1" data-autocomplete="off"
										data-provide="typeahead"  data-source='["core-image-base [meta | daisy]",
										"core-image-clutter [meta | daisy]",
										"core-image-directfb [meta | daisy]",
										"core-image-myimage [meta-imported-layer | 3e1dbabbf3&hellip;]",
										"core-image-anotherimage [meta-imported-layer | master]",
										"core-image-full-cmdline [meta | daisy]",
										"core-image-lsb [meta | daisy]",
										"core-image-lsb-dev [meta | daisy]",
										"core-image-lsb-sdk [meta | daisy]",
										"core-image-minimal [meta | daisy]" ]'>
										<a class="btn btn-primary" disabled>Build</a>
									</form>
								</div-->
								<div id="no-selected-targets">
									<h6>Target(s):</h6>
									<form>
										<input class="input-xlarge" type="text" placeholder="Type a target name" autocomplete="off" data-minLength="1" data-autocomplete="off"
										data-provide="typeahead"  data-source='["core-image-base [meta | daisy]",
										"core-image-clutter [meta | daisy]",
										"core-image-directfb [meta | daisy]",
										"core-image-myimage [meta-imported-layer | 3e1dbabbf3&hellip;]",
										"core-image-anotherimage [meta-imported-layer | master]",
										"core-image-full-cmdline [meta | daisy]",
										"core-image-lsb [meta | daisy]",
										"core-image-lsb-dev [meta | daisy]",
										"core-image-lsb-sdk [meta | daisy]",
										"core-image-minimal [meta | daisy]" ]'>
										<div>
											<a class="btn btn-primary" disabled style="padding: 4px 30px;">
												Build
											</a>
										</div>
									</form>
								</div>
							</li>
						</ul>
					</div>
				</div>
            </div>
        </div>

        <div class="container-fluid top-padded">

    	<!-- begin content -->
    	<div class="row-fluid">

				<!-- Breadcrumbs -->
      	<div class="section">
          	<ul class="breadcrumb">
                <li>
                  <a href="project-configuration.html">$project_name</a>
              		<span class="divider">&rarr;</span></li>
              	<li><a href="all-custom-images.html">Custom images</a>
              		<span class="divider">&rarr;</span>
              	</li>
              	<li class="active">$custom-image-name (meta-custom-images)</li>
          	</ul>
      	</div>
      	<div class="row-fluid span11">
          <div class="alert alert-success lead" style="margin-top:15px;display:none;">
            <button type="button" data-dismiss="alert" class="close">x</button>
            Your custom image <strong>$custom-image-name</strong> has been created. You can now add or remove packages as needed.
          </div>
          <div id="change-notification" class="alert alert-info lead" style="display:none;">
    				<button type="button" class="close" data-dismiss="alert">&times;</button>
    				<span></span>
    			</div>
          <div id="delete-notification" class="alert lead" style="display:none;">
    				<button type="button" class="close" data-dismiss="alert">&times;</button>
    				Deleting custom image in <span class="seconds-left">5</span>
            <button type="button" data-dismiss="alert" class="btn btn-warning" style="margin-left:15px;">Cancel</button>
    			</div>
          <div class="page-header air">
						<h1>
							$custom-image-name
							<small>(meta-custom-images)</small>
						</h1>
					</div>
   			</div>
        <div class="row-fluid span11">
   				<div class="span8">
             <div class="button-place btn-group">
              <a class="btn btn-large span6" href="project-builds.html?recipe=$custom-image-name" id="build-custom-image">
                Build $custom-image-name
              </a>
              <button class="btn btn-large span6" data-toggle="modal" data-target="#download-file" id="download">
                Download recipe file
              </button>
            </div>
            <!--div class="button-place">
              <button class="btn btn-large btn-block" id="build-custom-image">Build custom image</button>
            </div-->
             <!--h2 class="air">
               Add | Remove packages
               <span class="label">5689</span>
             </h2-->
             <ul class="nav nav-pills air">
               <li>
                 <a href="custom-image-details-included.html">
                   <i class="icon-question-sign get-help" title="The list of packages that will be installed in the root file system of your custom image"></i>
                   Packages included (112)</a>
               </li>
               <li class="active">
                 <a href="#">
                   <i class="icon-question-sign get-help" title="The full list of packages built by the layers added to your project"></i>
                   All packages (5689)
                 </a>
               </li>
             </ul>
             <div id="noresults" class="air" style="display:none;">
   						<div class="alert">
   							<h3>No packages found</h3>
   							<p>You might consider <a href="all-software-recipes.html">searching the list of recipes</a> instead. If you find a recipe that matches the name of the package you want:</p>
   							<ol>
   								<li>Add the layer providing the recipe to your project</li>
   								<li>Build the recipe</li>
   								<li>Once the build completes, come back to this page and search for the package</li>
   							</ol>
   							<form class="input-append no-results">
   								<input type="text" class="input-xlarge" value="search query">
   								<a href="#" class="add-on btn">
   									<i class="icon-remove"></i>
   								</a>
   								<button class="btn">Search</button>
   								<button class="btn btn-link" id="show-all">Show all packages</button>
   							</form>
   						</div>
   					</div>
            <div id="packages-table">
              <div class="navbar">
  							<div class="navbar-inner">
  								<form class="navbar-search input-append pull-left">
  									<input class="input-xlarge" type="text" placeholder="Search packages"/>
  									<button class="btn" type="button" id="search-packages">Search</button>
  								</form>
  								<div class="pull-right">
  									<!--button class="btn btn-primary">Build image recipe</button-->
  									<div class="btn-group">
  										<button class="btn dropdown-toggle" data-toggle="dropdown">
  											Edit columns
  											<i class="icon-caret-down"></i>
  										</button>
  										<ul class="dropdown-menu">
                      <li>
  												<label class="checkbox">
  													<input type="checkbox" value="size" checked="checked" />
  													Approx. size
  												</label>
  											</li>
  											<li>
  												<label class="checkbox muted">
  													<input type="checkbox" checked="checked" value="add-delete" disabled />
  													Add | Remove
  												</label>
  											</li>
  											<li>
  												<label class="checkbox">
  													<input type="checkbox" checked="checked" value="dependencies" />
  													Dependencies
  												</label>
  											</li>
  											<li>
  												<label class="checkbox">
  													<input type="checkbox" value="license" />
  													License
  												</label>
  											</li>
  											<li>
  												<label class="checkbox muted">
  													<input type="checkbox" value="package" checked="checked" disabled />
  													Package
  												</label>
  											</li>
  											<li>
  												<label class="checkbox muted">
  													<input type="checkbox" value="package-version" checked="checked" disabled />
  													Package version
  												</label>
  											</li>
  											<li>
  												<label class="checkbox">
  													<input type="checkbox" value="recipe" />
  													Recipe
  												</label>
  											</li>
  											<li>
  												<label class="checkbox">
  													<input type="checkbox" value="recipe-version" />
  													Recipe version
  												</label>
  											</li>
                        <li>
  												<label class="checkbox">
  													<input type="checkbox" value="reverse-dependencies"/>
  													Reverse dependencies
  												</label>
  											</li>
  										</ul>
  									</div>
  									<span class="divider-vertical"></span>
  									<span class="help-inline" style="padding-top:5px;">Show rows:</span>
  									<select style="margin-top:5px;margin-bottom:0px;">
  										<option>10</option>
  										<option>25</option>
  										<option>50</option>
  										<option>100</option>
  										<option>150</option>
  									</select>
  								</div>
  							</div>
  						</div>
   						<table class="table table-hover table-bordered">
   							<thead>
   								<tr>
   									<th class="package">
   										<a class="sorted" href="#">Package</a>
   										<i class="icon-caret-down"></i>
   									</th>
   									<th class="package-version">
   										<span class="muted">Package version</span>
   									</th>
   									<th class="size">
                       <i class="icon-question-sign get-help" title="Package size is based on information from previous builds, so we can never be sure it is 100% accurate"></i>
                       <a href="#">Approx. size</a>
   									</th>
   									<th class="license">
                      <i class="icon-question-sign get-help" title="The license under which the package is distributed. Multiple license names separated by the pipe character indicates a choice between licenses. Multiple license names separated by the ampersand character indicates multiple licenses exist that cover different parts of the source"></i>
   										<a href="#">License</a>
   									</th>
   									<th class="dependencies">
   										<span class="muted">Dependencies</span>
   									</th>
                    <th class="reverse-dependencies">
                      <span class="muted">Reverse dependencies</span>
                    </th>
   									<th class="recipe">
                      <i class="icon-question-sign get-help" title="The name of the recipe that generates this package"></i>
   										<a href="#">Recipe</a>
   									</th>
   									<th class="recipe-version">
   										<span class="muted">Recipe version</span>
   									</th>
                   <th class="add-delete">
                     <i class="icon-question-sign get-help" title="Use the add and remove buttons to modify the package content of you custom image"></i>
                     <span class="muted">Add | Remove</span>
                     <!--div class="btn-group pull-right">
                       <a href="#filter-by-add-remove" role="button" class="btn btn-mini" data-toggle="modal">
                         <i class="icon-filter"></i>
                       </a>
                     </div-->
                     <!--div id="filtered" class="btn-group pull-right" title="<p>Showing only packages added to $custom-image-name</p><p><a class='btn btn-mini btn-primary' href='#'>Show all packages</a></p>">
                       <a class="btn btn-mini btn-primary">
                         <i class="icon-filter"></i>
                       </a>
                     </div-->
                   </th>
   								</tr>
   							</thead>
   							<tbody>
   								<tr>
   									<td class="package">alsa-conf</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">165.1 KB</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies"></td>
                    <td class="reverse-dependencies">
                      <a data-content="<ul class='unstyled'><li>libasound (1.0 MB)</li></ul>" title="<strong>alsa-conf</strong> reverse dependencies - <strong>1.0 MB</strong>" href="#" class="btn">
                        1
                      </a>
                    </td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
    										<button id="delete-package" class="delete-package btn btn-block btn-danger" title="1 package removed">
    											<i class="icon-trash not-tooltip"></i>
    											Remove package
    										</button>
    										<button id="delete-package-pair" class="btn btn-block add-package" style="display:none;">
    											<i class="icon-plus"></i>
    											Add package
    										</button>
    									</td>
                  </tr>
   								<tr>
   									<td class="package">alsa-conf-base</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">14.2 KB</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies"></td>
                    <td class="reverse-dependencies">
                      <a data-content="<ul class='unstyled'><li>libasound (1.0 MB)</li></ul>" title="<strong>alsa-conf-base</strong> reverse dependencies - <strong>1.0 MB</strong>" href="#" class="btn">
                        1
                      </a>
                    </td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <button class="delete-package btn btn-block btn-danger" data-toggle="modal" data-target="#orphan-dependency-message" >
                         <i class="icon-trash not-tooltip"></i>
                         Remove package
                       </button>
                     </td>
   								</tr>
   								<tr>
   									<td class="package">alsa-doc</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">0 B</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies"></td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
   										<button id="add-package" class="btn btn-block add-package" title="1 package added">
   											<i class="icon-plus"></i>
   											Add package
   										</button>
   										<button id="add-package-pair" class="delete-package btn btn-block btn-danger" style="display:none;">
   											<i class="icon-trash no-tooltip"></i>
   											Remove package
   										</button>
   									</td>
   								</tr>
   								<tr>
   									<td class="package">alsa-lib</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">22.3 KB</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies">
   										<a data-content="<ul class='unstyled'><li>glibc (3.0 MB)</li><li>libasound (1.0 MB)</li></ul>" title="<strong>alsa-lib</strong> dependencies - <strong>4.0 MB</strong>" href="#" class="btn">
   											2
   										</a>
   									</td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <button id="add-package-with-deps" class="btn btn-block add-package" title="3 packages added" data-target="#dependencies-message" data-toggle="modal">
                         <i class="icon-plus"></i>
                         Add package
                       </button>
                       <button id="add-package-with-deps-pair" class="delete-package btn btn-block btn-danger" style="display:none;">
                         <i class="icon-trash"></i>
                         Remove package
                       </button>
                     </td>
   								</tr>
   								<tr>
   									<td class="package">alsa-lib-dbg</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">4.9 MB</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies"></td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <a class="btn btn-block" href="#">
                         <i class="icon-plus"></i>
                         Add package
                       </a>
                     </td>
   								</tr>
   								<tr id="alsa-lib-dev">
   									<td class="package">alsa-lib-dev</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">342.8 KB</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies">
   										<a data-content="<ul class='unstyled'><li>alsa-lib (22.3 KB)</li><li>libasound (1.0 MB)</li></ul>" title="<strong>alsa-lib-dev</strong> dependencies - <strong>1.02 MB</strong>" href="#" class="btn">
   											2
   										</a>
   									</td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                    <td class="add-delete">
                      <a class="btn btn-block" href="#" id="alsa-lib-dev-add">
                        <i class="icon-plus"></i>
                        Add package
                      </a>
                      <p class="text-center" style="display:none" id="alsa-lib-dev-required-by">
                        <span class="muted">Dependency required by</span>
                        <a class="btn" style="margin-left:5px;" href="#" title="<strong>alsa-lib-dev</strong> is required by" data-content="<ul class='unstyled'><li>alsa-lib</li></ul>">1</a>
                      </p>
                    </td>
   								</tr>
   								<tr>
   									<td class="package">alsa-lib-doc</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">0 B</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies"></td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <a class="btn btn-block" href="#">
                         <i class="icon-plus"></i>
                         Add package
                       </a>
                     </td>
   								</tr>
   								<tr>
   									<td class="package">alsa-lib-locale</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">0 B</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies"></td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <a class="btn btn-block" href="#">
                         <i class="icon-plus"></i>
                         Add package
                       </a>
                     </td>
   								</tr>
   								<tr>
   									<td class="package">alsa-lib-staticdev</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">0 B</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies">
   										<a data-content="<ul class='unstyled'><li>alsa-lib-dev (342.8 KB)</li></ul>" title="<strong>alsa-lib-staticdev</strong> dependencies - <strong>342.8 KB</strong>" href="#" class="btn">
   											1
   										</a>
   									</td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <a class="btn btn-block" href="#">
                         <i class="icon-plus"></i>
                         Add package
                       </a>
                     </td>
   								</tr>
   								<tr>
   									<td class="package">alsa-server</td>
   									<td class="package-version">1.0.28-r0</td>
   									<td class="size">23.4 KB</td>
   									<td class="license">LGPLv2.1 & GPLv2+</td>
   									<td class="dependencies">
   										<a data-content="<ul class='unstyled'><li>glibc (3.0 MB)</li><li>libasound (1.0 MB)</li></ul>" title="<strong>alsa-lib</strong> dependencies - <strong>4.0 MB</strong>" href="#" class="btn">
   											2
   										</a>
   									</td>
                    <td class="reverse-dependencies"></td>
   									<td class="recipe">alsa-lib</td>
   									<td class="recipe-version">1.0.28-r0</td>
                     <td class="add-delete">
                       <button id="delete-package-with-dependencies" class="delete-package btn btn-block btn-danger" title="3 packages removed" data-toggle="modal" data-target="#dependencies-message-remove" >
                         <i class="icon-trash not-tooltip"></i>
                         Remove package
                       </button>
                       <button id="delete-package-with-dependencies-pair" class="btn btn-block add-package" style="display:none;">
                         <i class="icon-plus"></i>
                         Add package
                       </button>
                     </td>
   								</tr>
   							</tbody>
   						</table>
   						<div class="pagination pagination-centered">
   							<ul>
   								<li class="disabled"><a href="#">&larr; Previous</a></li>
   								<li class="active"><a href="#">1</a></li>
   								<li><a href="#">2</a></li>
   								<li><a href="#">3</a></li>
   								<li><a href="#">4</a></li>
   								<li><a href="#">5</a></li>
   								<li><a href="#">Next &rarr;</a></li>
   							</ul>
   							<div class="pull-right">
   								<span class="help-inline">Show rows:</span>
   								<select style="margin-top:5px;margin-bottom:0px;">
   									<option>10</option>
   									<option>25</option>
   									<option>50</option>
   									<option>100</option>
   									<option>150</option>
   								</select>
   							</div>
   						</div>
            </div>
 					</div>
  				<div class="span4 well">
    				<h2 style="margin-bottom:20px;">About $custom-image-name</h2>
             <!--input id="disable-custom-image" type="checkbox" data-on-text="Enabled" data-off-text="Disabled" checked="">
             <span class="help-block" style="padding-top:10px;">Disable this custom image once you have saved its recipe file into your own layer. You can then import and build your layer without causing conflicts. There is <a href="#">more on disabling custom images in the Toaster manual</a></span>
            <div class="btn-group">
              <button class="btn">Download recipe file</button>
              <button class="btn btn-danger">Delete custom image</button>
            </div-->
            <!--button class="btn btn-large btn-block btn-danger">Delete custom image</button-->
            <!--p>
              <i class="icon-download-alt"></i>
              <a href="#">Download recipe file</a>
            </p>
            <p>
              <i class="icon-trash"></i>
              <a href="#" class="error">
                Delete custom image
              </a>
            </p-->
    				<dl>
              <dt>
                Approx. packages included
                <i class="icon-question-sign get-help" title="The number of packages included is based on information from previous builds and from parsing layers, so we can never be sure it is 100% accurate"></i>
              </dt>
              <dd class="no-packages">109</dd>
              <dt>
                Approx. package size
                <i class="icon-question-sign get-help" title="Package size is based on information from previous builds, so we can never be sure it is 100% accurate"></i>
                </dt>
              <dd>244.3 MB</dd>
              <dt>Last build</dt>
              <dd>
								<i class="icon-ok-sign success"></i>
								<a href="build-dashboard.html">11/06/15 15:22</a>
              </dd>
              <dt>Recipe file</dt>
              <dd>
                <code>custom-image-name.bb</code>
                <a href="#download-file" data-toggle="modal"><i class="icon-download-alt" title="Download recipe file"></i></a>
              </dd>
              <dt>Layer</dt>
              <dd><a href="layer-details-meta-custom-images.html">meta-custom-images</a></dd>
    					<dt>
    						Summary
    					</dt>
    					<dd>
                <span class="muted">Not set</span>
                <i class="icon-pencil"></i>
              </dd>
              <dt>
    						Description
    					</dt>
    					<dd>
                <span class="muted">Not set</span>
                <i class="icon-pencil"></i>
              </dd>
              <dt>Version</dt>
              <dd>
                1.0
                <i class="icon-pencil"></i>
              </dd>
              <dt>Section</dt>
              <dd>
                base
                <i class="icon-pencil"></i>
                <i class="icon-trash"></i>
              </dd>
              <dt>License</dt>
              <dd>
                MIT
                <i class="icon-question-sign get-help" title="All custom images have their license set to MIT. This is because the license applies only to the recipe (.bb) file, and not to the image itself. To see which licenses apply to the image you must check the license manifest generated with each build"></i>
              </dd>
    				</dl>
  			    <i class="icon-trash no-tooltip"></i>
            <a href="#" class="error" id="delete">Delete custom image</a>
          </div>
        </div>
      </div> <!-- end row-fluid -->

      <!-- Filter by add | remove modal -->
      <div id="filter-by-add-remove" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
      	<div class="modal-header">
              <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
              <h3>Filter by added packages</h3>
          </div>
          <div class="modal-body">
          	<p>Show:</p>
  			<label class="radio">
  				<input type="radio" name="added-filter" checked="checked"> All packages (5689)
  			</label>
  			<label class="radio">
  				<input type="radio" name="added-filter"> Packages added to $custom-image-name (62)
  			</label>
  			<label class="radio">
  				<input type="radio" name="added-filter"> Packages not added to $custom-image-name (5627)
  			</label>
          </div>
          <div class="modal-footer">
              <button type="submit" class="btn btn-primary">Apply</button>
          </div>
      </div>

      <!-- 'Package dependencies (add) modal' -->
      <div id="dependencies-message" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
      	<div class="modal-header">
              <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
              <h3>alsa-lib dependencies</h3>
          </div>
          <div class="modal-body">
      			<p><strong>alsa-lib</strong> requires some packages that are not added to your custom image. If you add <strong>alsa-lib</strong>, Toaster will also add:</p>
      			<ul>
      				<li>glibc (3.0 MB)</li>
      				<li>alsa-lib-dev (1.0 MB)</li>
      			</ul>
          </div>
          <div class="modal-footer">
              <p class="help-block text-left">Total package size: <strong>4.23 MB</strong></p>
              <button id="add-package-dependencies" type="submit" class="btn btn-primary" data-dismiss="modal">Add packages</button>
              <button class="btn" data-dismiss="modal">Cancel</button>
          </div>
      </div>

      <!-- Remove package with dependencies modal -->
      <div id="dependencies-message-remove" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
      	<div class="modal-header">
              <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
              <h3>alsa-server reverse dependencies</h3>
          </div>
          <div class="modal-body">
      			<!--p>Removing <strong>alsa-server</strong> will also remove its dependencies from your custom image:</p>
      			<ul>
      				<li>glibc (3.0 MB)</li>
      				<li>libasound (1.0 MB)</li>
      			</ul-->
            <p><strong>2</strong> packages in your image depend on <strong>alsa-server</strong>:</p>
            <ul>
      				<li>glibc (3.0 MB)</li>
      				<li>libasound (1.0 MB)</li>
      			</ul>
            <p>In order to remove <strong>alsa-server</strong>, you must remove these 2 packages as well.</p>
          </div>
          <div class="modal-footer">
              <p class="help-block text-left">Total package size: <strong>4.0 MB</strong></p>
              <button id="delete-package-deps" type="submit" class="btn btn-primary btn-danger" data-dismiss="modal">Remove all 3 packages</button>
              <button class="btn" data-dismiss="modal">Cancel</button>
          </div>
      </div>

      <!-- Remove package - orphan dependency modal -->
      <div id="orphan-dependency-message" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
      	<div class="modal-header">
              <button type="button" class="close" data-dismiss="modal" aria-hidden="true">x</button>
              <h3>alsa-conf-base dependencies</h3>
          </div>
          <div class="modal-body">
      			<!--p>Removing <strong>alsa-server</strong> will also remove its dependencies from your custom image:</p>
      			<ul>
      				<li>glibc (3.0 MB)</li>
      				<li>libasound (1.0 MB)</li>
      			</ul-->
            <p>Removing <strong>alsa-conf-base</strong> means some packages in your image are no longer needed. You can select which packages you'd like to remove:</p>
            <ul class="unstyled">
      				<li>
                <label class="checkbox">
                  <input type="checkbox" checked="checked">
                  glibc (3.0 MB)
                </label>
              </li>
      				<li>
                <label class="checkbox">
                  <input type="checkbox" checked="checked">
                  libasound (1.0 MB)
                </label>
              </li>
      			</ul>
            <p>Removing all 3 packages would reduce your image size by <strong>4.0 MB</strong>.
          </div>
          <div class="modal-footer">
              <!--p class="help-block text-left">Total package size: <strong>4.0 MB</strong></p-->
              <button id="delete-package-deps" type="submit" class="btn btn-primary btn-danger" data-dismiss="modal">Remove selected packages</button>
              <button class="btn" data-dismiss="modal">Cancel</button>
          </div>
      </div>

      <!-- Download recipe file modal -->
      <div id="download-file" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true">
      	<div class="modal-header">
              <h3>Rename your custom image</h3>
          </div>
          <div class="modal-body">
             <div class="row-fluid">
               <span class="help-block span8">Renaming your image will avoid any conflicts when building it from a different layer. Image names must be unique. They should not contain spaces or capital letters, and the only allowed special character is dash (-).</span>
             </div>
             <!--div class="control-group error controls"-->
               <input id="rename" type="text" class="huge span5" placeholder="Type the name, something like 'core-image-myimage'" value="custom-image-name" />
               <!--span class="help-block">Image names cannot contain spaces or capital letters. The only allowed special character is dash (-)</span>
               <span class="help-block">An image with this name already exists. Image names must be unique: try a different one.</span>
             </div-->
          </div>
          <div class="modal-footer">
              <button id="download-button" type="submit" class="btn btn-primary btn-large disabled" data-dismiss="modal">Rename and download recipe file</button>
          </div>
      </div>

    </div> <!-- end container-fluid -->

        <script src="assets/js/jquery-1.9.1.min.js" type='text/javascript'></script>
        <script src="assets/js/jquery.tablesorter.min.js" type='text/javascript'></script>
        <script src="assets/js/bootstrap.min.js" type='text/javascript'></script>
        <script src="assets/js/prettify.js" type='text/javascript'></script>
        <script src="assets/js/jit.js" type='text/javascript'></script>
        <script src="assets/js/bootstrap-switch.js" text='text/javascript'></script>
        <script src="assets/js/main.js" type='text/javascript'></script>
        <script>
        	 $(document).ready(function() {

             //delete countdown
             $('#delete').click(function(){
               $('#change-notification').html('Deleting custom image in <span class="seconds-left">5</span> <button type="button" data-dismiss="alert" class="btn btn-info cancel-btn" style="margin-left:15px;">Cancel</button>').show();
               var counter = 5;
               var width = 100;
               var interval = setInterval(function() {
                 $('.cancel-btn').on('click', function(){
                   clearInterval(interval);
                 });
                 counter--;
                 $('.seconds-left').html(counter);
                 if (counter == 0) {
                     clearInterval(interval);
                     setTimeout(function (){
                       window.location = "all-custom-images.html?custom-image=custom-image-name"
                     },200);
                 }
               }, 1000);
             });

             // show new custom image create notification when needed
             if (location.href.search('new') > -1) {
               $('.alert-success').show();
             }

            //$("[id='disable-custom-image']").bootstrapSwitch();

            //show or hide selected columns on load
        		$("input:checkbox").each(function(){
        			var selectedType = $(this).val();
        			if($(this).is(":checked")){
        				$("."+selectedType).show();
        			}
        			else{
        				$("."+selectedType).hide();
        			}
        		});

            //edit columns functionality (show / hide table columns)
            $("input:checkbox").change();
              $("input:checkbox").change(function(){
                var selectedType = $(this).val();
                  if($(this).is(":checked")){
                    $("."+selectedType).show();
                  }
                  else{
                    $("."+selectedType).hide();
                  }
              });

              //turn edit columns dropdown into a multi-select menu
          		$('.dropdown-menu input, .dropdown-menu label').click(function(e) {
          			e.stopPropagation();
          		});

              //add packages
        			$('#add-package').click(function() {
        				var no_packages = $('.no-packages').text();
        				var no_packages_int = parseInt(no_packages);
        				var package_name = $(this).parent().siblings('.package').text();
        				$('#change-notification').hide();
        				$('#change-notification span').html('You have added <strong>1</strong> package to custom-image-name: <strong>' + package_name + '</strong><a href="#" class="undo-link">Undo</a>');
        				$('#change-notification').fadeIn();
        				$('#add-package').tooltip('show');
        				$("#add-package").hide();
        				no_packages_int ++;
        				$('.no-packages').text(no_packages_int);
        				$(".add-delete .tooltip").delay(2000).fadeOut(function(){
        					$("#add-package-pair").delay(300).fadeIn();
        				});
        			});

        			//delete packages
        			$('#delete-package').click(function() {
        				var no_packages = $('.no-packages').text();
        				var no_packages_int = parseInt(no_packages);
        				var package_name = $(this).parent().siblings('.package').text();
        				$('#change-notification').hide();
        				$('#change-notification span').html('You have removed <strong>1</strong> package from custom-image-name: <strong>' + package_name + '</strong> <a href="#" class="undo-link">Undo</a>');
        				$('#change-notification').fadeIn();
        				$('#delete-package').tooltip('show');
        				$("#delete-package").hide();
        				no_packages_int --;
        				$('.no-packages').text(no_packages_int);
        				$(".add-delete .tooltip").delay(2000).fadeOut(function(){
        					$("#delete-package-pair").delay(300).fadeIn();
        				});
        			});

        			//add packages with dependencies
        			$('#add-package-dependencies').click(function() {
        				var no_packages = $('.no-packages').text();
        				var no_packages_int = parseInt(no_packages);
        				$('#change-notification').hide();
        				$('#change-notification span').html('You have added <strong>3</strong> packages to custom-image-name: <strong>alsa-lib</strong> and its dependencies <strong>glibc</strong>, <strong>alsa-lib-dev</strong><a href="#" class="undo-link">Undo</a>');
        				$('#change-notification').fadeIn();
        				$('#add-package-with-deps').tooltip('show');
        				$("#add-package-with-deps, #alsa-lib-dev-add").hide();
        				no_packages_int = no_packages_int + 3;
        				$('.no-packages').text(no_packages_int);
        				$(".add-delete .tooltip").delay(2000).fadeOut(function(){
        					$("#add-package-with-deps-pair").delay(300).fadeIn();
                  $("#alsa-lib-dev-required-by").delay(300).fadeIn();
        				});
        			});

              //remove packages with dependencies
        			$('#delete-package-deps').click(function() {
        				var no_packages = $('.no-packages').text();
        				var no_packages_int = parseInt(no_packages);
        				$('#change-notification').hide();
        				$('#change-notification span').html('You have removed <strong>3</strong> packages from custom-image-name: <strong>alsa-lib</strong> and its dependencies <strong>glibc</strong>, <strong>libasound</strong><a href="#" class="undo-link">Undo</a>');
        				$('#change-notification').fadeIn();
        				$('#delete-package-with-dependencies').tooltip('show');
        				$("#delete-package-with-dependencies").hide();
        				no_packages_int = no_packages_int - 3;
        				$('.no-packages').text(no_packages_int);
        				$(".add-delete .tooltip").delay(2000).fadeOut(function(){
        					$("#delete-package-with-dependencies-pair").delay(300).fadeIn();
        				});
        			});

        			//show packages added / deleted tooltip
        			$("#delete-package, #add-package, #add-package-with-deps, #delete-package-with-dependencies").tooltip({ trigger: 'manual' });

              //show tooltip with applied filter
          		$('#filtered').tooltip({container:'table', placement:'bottom', delay:{hide:1500}, html:true});

          		$('#filtered').click(function() {
          			$(this).tooltip('hide');
          		});

              //no search results page
        			$('#search-packages').click(function() {
        				$('#packages-table').fadeOut();
        				$('#noresults').fadeIn();
        			});
        			$('#show-all').click(function() {
        				$('#noresults').fadeOut();
        				$('#packages-table').fadeIn();
        			});

              //set focus on the end of the input field when opening the download recipe file modal dialog
              $('#download-file').on('shown', function () {
                var SearchInput = $('#rename');
                // Multiply by 2 to ensure the cursor always ends up at the end;
                // Opera sometimes sees a carriage return as 2 characters.
                var strLength= SearchInput.val().length * 2;
                SearchInput[0].setSelectionRange(strLength, strLength);
                $('#rename').focus();
                $('#rename').keyup(function(){
                  var newName = $('#rename').val();
                  if ( newName == "custom-image-name") {
                    $("#download-button").addClass('disabled');
                  }
                  else {
                    $("#download-button").removeClass('disabled');
                  }
                });
              });

              //show 'Dependency required by' popover to the right of the button
              $('td > p > a.btn').popover( { html: true, placement: 'right', container: 'body', trigger: 'click' });

        	 });
        </script>


    </body>
</html>