xbrlware-ce 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. data/ReleaseNotes.txt +23 -5
  2. data/doc/classes/Edgar/RSSFeedDownloader.html +2 -2
  3. data/doc/classes/NSAware.html +135 -0
  4. data/doc/classes/Xbrlware.html +1 -6
  5. data/doc/classes/Xbrlware/Context.html +85 -78
  6. data/doc/classes/Xbrlware/Context/Period.html +49 -49
  7. data/doc/classes/Xbrlware/Entity.html +49 -49
  8. data/doc/classes/Xbrlware/Identifier.html +14 -14
  9. data/doc/classes/Xbrlware/Instance.html +173 -98
  10. data/doc/classes/Xbrlware/Item.html +62 -25
  11. data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase.html +41 -3
  12. data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase/Calculation.html +1 -1
  13. data/doc/classes/Xbrlware/Linkbase/CalculationLinkbase/Calculation/CalculationArc.html +1 -1
  14. data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase.html +43 -3
  15. data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase/Definition.html +2 -2
  16. data/doc/classes/Xbrlware/Linkbase/DefinitionLinkbase/Definition/DefinitionArc.html +1 -1
  17. data/doc/classes/Xbrlware/Linkbase/LabelLinkbase/Label.html +1 -1
  18. data/doc/classes/Xbrlware/Linkbase/Linkbase/Link/Arc.html +22 -7
  19. data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase.html +41 -3
  20. data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase/Presentation.html +2 -8
  21. data/doc/classes/Xbrlware/Linkbase/PresentationLinkbase/Presentation/PresentationArc.html +1 -1
  22. data/doc/classes/Xbrlware/Taxonomy.html +84 -51
  23. data/doc/classes/Xbrlware/TaxonomyDefintion.html +14 -14
  24. data/doc/classes/Xbrlware/Unit.html +14 -7
  25. data/doc/classes/Xbrlware/Unit/Divide.html +7 -7
  26. data/doc/created.rid +1 -1
  27. data/doc/files/lib/edgar/edgar_data_downloader_rb.html +1 -1
  28. data/doc/files/lib/edgar_rb.html +1 -1
  29. data/doc/files/lib/xbrlware/context_rb.html +1 -1
  30. data/doc/files/lib/xbrlware/instance_rb.html +1 -1
  31. data/doc/files/lib/xbrlware/item_rb.html +1 -1
  32. data/doc/files/lib/xbrlware/linkbase/calculation_linkbase_rb.html +1 -1
  33. data/doc/files/lib/xbrlware/linkbase/definition_linkbase_rb.html +1 -1
  34. data/doc/files/lib/xbrlware/linkbase/label_linkbase_rb.html +1 -1
  35. data/doc/files/lib/xbrlware/linkbase/linkbase_rb.html +1 -1
  36. data/doc/files/lib/xbrlware/linkbase/presentation_linkbase_rb.html +1 -1
  37. data/doc/files/lib/xbrlware/{report_rb.html → ns_aware_rb.html} +10 -4
  38. data/doc/files/lib/xbrlware/taxonomy_rb.html +1 -1
  39. data/doc/files/lib/xbrlware/unit_rb.html +1 -1
  40. data/doc/files/lib/xbrlware/util_rb.html +1 -1
  41. data/doc/files/lib/xbrlware/version_rb.html +1 -1
  42. data/doc/files/lib/xbrlware/xml_parser_rb.html +1 -1
  43. data/doc/files/lib/xbrlware_rb.html +3 -1
  44. data/doc/fr_class_index.html +1 -1
  45. data/doc/fr_file_index.html +1 -1
  46. data/doc/fr_method_index.html +68 -68
  47. data/doc/index.html +2 -2
  48. data/example/callb/calculation_elements.rb +33 -0
  49. data/example/callb/calculation_elements_to_table.rb +62 -0
  50. data/example/case_study/cash_analyzer.rb +27 -0
  51. data/lib/edgar/edgar_data_downloader.rb +6 -6
  52. data/lib/xbrlware.rb +2 -0
  53. data/lib/xbrlware/context.rb +2 -0
  54. data/lib/xbrlware/instance.rb +65 -26
  55. data/lib/xbrlware/item.rb +34 -26
  56. data/lib/xbrlware/linkbase/calculation_linkbase.rb +51 -7
  57. data/lib/xbrlware/linkbase/definition_linkbase.rb +42 -2
  58. data/lib/xbrlware/linkbase/label_linkbase.rb +1 -0
  59. data/lib/xbrlware/linkbase/linkbase.rb +19 -9
  60. data/lib/xbrlware/linkbase/presentation_linkbase.rb +52 -9
  61. data/lib/xbrlware/ns_aware.rb +5 -0
  62. data/lib/xbrlware/taxonomy.rb +7 -0
  63. data/lib/xbrlware/unit.rb +1 -0
  64. data/lib/xbrlware/version.rb +1 -1
  65. data/lib/xbrlware/xml_parser.rb +20 -0
  66. data/test/lib/edgar/edgar_data_downloader_test.rb +1 -1
  67. data/test/lib/edgar/resources/usgaap.rss.xml +3914 -2599
  68. data/test/lib/xbrlware/46_item_test.rb +30 -0
  69. data/test/lib/xbrlware/47_context_test.rb +16 -8
  70. data/test/lib/xbrlware/48_unit_test.rb +10 -0
  71. data/test/lib/xbrlware/instance_test.rb +156 -2
  72. data/test/lib/xbrlware/linkbase/calculation_linkbase_test.rb +5 -5
  73. data/test/lib/xbrlware/linkbase/definition_linkbase_test.rb +2 -2
  74. data/test/lib/xbrlware/linkbase/presentation_linkbase_test.rb +0 -1
  75. data/test/lib/xbrlware/taxonomy_test.rb +28 -0
  76. data/test/lib/xbrlware/xml_parser_test.rb +81 -0
  77. data/test/scratchpad/tooltip.html +10 -0
  78. data/xbrlware-ce.gemspec +2 -0
  79. metadata +36 -22
  80. data/Rakefile.rb +0 -124
  81. data/doc/classes/Xbrlware/Report.html +0 -352
  82. data/lib/xbrlware/report.rb +0 -277
  83. data/test/lib/xbrlware/resources/report_test_xbrl_files/cal.xml +0 -219
  84. data/test/lib/xbrlware/resources/report_test_xbrl_files/def.xml +0 -186
  85. data/test/lib/xbrlware/resources/report_test_xbrl_files/instance.xml +0 -5822
  86. data/test/lib/xbrlware/resources/report_test_xbrl_files/lab.xml +0 -782
  87. data/test/lib/xbrlware/resources/report_test_xbrl_files/pre.xml +0 -485
  88. data/test/lib/xbrlware/resources/report_test_xbrl_files/report/report_index.html +0 -62
  89. data/test/lib/xbrlware/resources/report_test_xbrl_files/taxonomy.xsd +0 -178
  90. data/xbrlware.iml +0 -30
@@ -1,62 +0,0 @@
1
-
2
- <html>
3
- <head>
4
- <style>
5
- table, td {
6
- border-color: #000000;
7
- border-style: solid;
8
- }
9
-
10
- table {
11
- border-width: 0 0 1px 1px;
12
- border-spacing: 0;
13
- border-collapse: collapse;
14
- }
15
-
16
- tr {
17
- background-color: #FFC;
18
- }
19
-
20
- .tr_white_bg {
21
- background-color: #FFFFFF;
22
- }
23
-
24
- td {
25
- margin: 0;
26
- padding: 4px;
27
- border-width: 1px 1px 0 0;
28
-
29
- font-family: 'Times New Roman','Times serif';
30
- font-size: 10pt;
31
- }
32
- </style>
33
- </head>
34
- <body>
35
- <table border="1">
36
- <tr class="tr_white_bg">
37
- <td><b>Entity</b></td>
38
- <td><b>Presentation Reports</b></td>
39
- <td><b>Calculation Reports</b></td>
40
- </tr>
41
-
42
-
43
-
44
- <tr>
45
-
46
-
47
- <td>
48
- BOTTLING GROUP LLC&nbsp;(INSTANCE.XML) &nbsp;
49
- <br>10-Q : Sep 5, 2009
50
- </td>
51
- <td valign="top">
52
- 0610 - Disclosure - Income Taxes &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0610___Disclosure___Income_Taxes.html'>html</a>&nbsp;|&nbsp;</br>0601 - Disclosure - Basis of Presentation &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0601___Disclosure___Basis_of_Presentation.html'>html</a>&nbsp;|&nbsp;</br>0602 - Disclosure - Seasonality of Business &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0602___Disclosure___Seasonality_of_Business.html'>html</a>&nbsp;|&nbsp;</br>0603 - Disclosure - New Accounting Standards &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0603___Disclosure___New_Accounting_Standards.html'>html</a>&nbsp;|&nbsp;</br>0604 - Disclosure - Share Based Compensation &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0604___Disclosure___Share_Based_Compensation.html'>html</a>&nbsp;|&nbsp;</br>0605 - Disclosure - Balance Sheet Details &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0605___Disclosure___Balance_Sheet_Details.html'>html</a>&nbsp;|&nbsp;</br>0606 - Disclosure - Other Intangible Assets, net and Goodwill &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0606___Disclosure___Other_Intangible_Assets__net_and_Goodwill.html'>html</a>&nbsp;|&nbsp;</br>0607 - Disclosure - Fair Value Measurements &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0607___Disclosure___Fair_Value_Measurements.html'>html</a>&nbsp;|&nbsp;</br>0608 - Disclosure - Financial Instruments and Risk Management &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0608___Disclosure___Financial_Instruments_and_Risk_Management.html'>html</a>&nbsp;|&nbsp;</br>0609 - Disclosure - Pension and Postretirement Medical Benefit Plans &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0609___Disclosure___Pension_and_Postretirement_Medical_Benefit_Plans.html'>html</a>&nbsp;|&nbsp;</br>0611 - Disclosure - Segment Information &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0611___Disclosure___Segment_Information.html'>html</a>&nbsp;|&nbsp;</br>0612 - Disclosure - Restructuring Charges &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0612___Disclosure___Restructuring_Charges.html'>html</a>&nbsp;|&nbsp;</br>0613 - Disclosure - Supplemental Cash Flow Information &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0613___Disclosure___Supplemental_Cash_Flow_Information.html'>html</a>&nbsp;|&nbsp;</br>0614 - Disclosure - Contingencies &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0614___Disclosure___Contingencies.html'>html</a>&nbsp;|&nbsp;</br>00 - Document - Document and Company Information &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/00___Document___Document_and_Company_Information.html'>html</a>&nbsp;|&nbsp;</br>01 - Statement - Condensed Consolidated Statements of Operations ( Unaudited) &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/01___Statement___Condensed_Consolidated_Statements_of_Operations___Unaudited_.html'>html</a>&nbsp;|&nbsp;</br>02 - Statement - Condensed Consolidated Statements of Cash Flows ( Unaudited) &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/02___Statement___Condensed_Consolidated_Statements_of_Cash_Flows___Unaudited_.html'>html</a>&nbsp;|&nbsp;</br>03 - Statement - Condensed Consolidated Balance Sheets ( Unaudited) &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/03___Statement___Condensed_Consolidated_Balance_Sheets___Unaudited_.html'>html</a>&nbsp;|&nbsp;</br>05 - Statement - Condensed Consolidated Statements of Comprehensive Income ( Unaudited) &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/05___Statement___Condensed_Consolidated_Statements_of_Comprehensive_Income___Unaudited_.html'>html</a>&nbsp;|&nbsp;</br>04 - Statement - Condensed Consolidated Statements of Changes in Shareholders Equity ( Unaudited) &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/04___Statement___Condensed_Consolidated_Statements_of_Changes_in_Shareholders_Equity___Unaudited_.html'>html</a>&nbsp;|&nbsp;</br>041 - Statement - Condensed Consolidated Statements of Changes in Equity ( Parenthetical) ( Unaudited) &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/041___Statement___Condensed_Consolidated_Statements_of_Changes_in_Equity___Parenthetical____Unaudited_.html'>html</a>&nbsp;|&nbsp;</br>0615 - Disclosure - Guarantees &nbsp; &nbsp;<a href='/bitstat/work/trunk/algorithm/xbrlparser/test/lib/xbrlware/resources/report_test_xbrl_files/report/pre/0615___Disclosure___Guarantees.html'>html</a>&nbsp;|&nbsp;</br>
53
- </td>
54
- <td valign="top">
55
-
56
- </td>
57
- </tr>
58
-
59
- </table>
60
- </body>
61
- </html>
62
-
@@ -1,178 +0,0 @@
1
- <?xml version="1.0" encoding="us-ascii"?>
2
- <schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xbrli="http://www.xbrl.org/2003/instance" xmlns:link="http://www.xbrl.org/2003/linkbase" xmlns:xlink="http://www.w3.org/1999/xlink" targetNamespace="http://pbg.com/2009-09-05" xmlns:bgllc="http://pbg.com/2009-09-05" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:us-types="http://xbrl.us/us-types/2009-01-31" xmlns:xbrldt="http://xbrl.org/2005/xbrldt">
3
-
4
- <annotation>
5
- <appinfo>
6
- <link:roleType roleURI="http://pbg.com/20090613/role/Guarantees" id="Guarantees">
7
- <link:definition>0615 - Disclosure - Guarantees</link:definition>
8
- <link:usedOn>link:presentationLink</link:usedOn>
9
- <link:usedOn>link:calculationLink</link:usedOn>
10
- <link:usedOn>link:definitionLink</link:usedOn>
11
- </link:roleType>
12
- <link:roleType roleURI="http://pbg.com/20090613/role/StatementsOfChangesInEquityParenthetical" id="StatementsOfChangesInEquityParenthetical">
13
- <link:definition>041 - Statement - Condensed Consolidated Statements of Changes in Equity (Parenthetical) (Unaudited)</link:definition>
14
- <link:usedOn>link:presentationLink</link:usedOn>
15
- <link:usedOn>link:calculationLink</link:usedOn>
16
- <link:usedOn>link:definitionLink</link:usedOn>
17
- </link:roleType>
18
- <link:roleType roleURI="http://pbg.com/20090613/role/StatementsOfChangesInEquity" id="StatementsOfChangesInEquity">
19
- <link:definition>04 - Statement - Condensed Consolidated Statements of Changes in Shareholders Equity (Unaudited)</link:definition>
20
- <link:usedOn>link:presentationLink</link:usedOn>
21
- <link:usedOn>link:calculationLink</link:usedOn>
22
- <link:usedOn>link:definitionLink</link:usedOn>
23
- </link:roleType>
24
- <link:roleType roleURI="http://pbg.com/20090613/role/StatementsOfComprehensiveIncome" id="StatementsOfComprehensiveIncome">
25
- <link:definition>05 - Statement - Condensed Consolidated Statements of Comprehensive Income (Unaudited)</link:definition>
26
- <link:usedOn>link:presentationLink</link:usedOn>
27
- <link:usedOn>link:calculationLink</link:usedOn>
28
- <link:usedOn>link:definitionLink</link:usedOn>
29
- </link:roleType>
30
- <link:roleType roleURI="http://pbg.com/20090613/role/BalanceSheets" id="BalanceSheets">
31
- <link:definition>03 - Statement - Condensed Consolidated Balance Sheets (Unaudited)</link:definition>
32
- <link:usedOn>link:presentationLink</link:usedOn>
33
- <link:usedOn>link:calculationLink</link:usedOn>
34
- <link:usedOn>link:definitionLink</link:usedOn>
35
- </link:roleType>
36
- <link:roleType roleURI="http://pbg.com/20090613/role/StatementsOfCashFlows" id="StatementsOfCashFlows">
37
- <link:definition>02 - Statement - Condensed Consolidated Statements of Cash Flows (Unaudited)</link:definition>
38
- <link:usedOn>link:presentationLink</link:usedOn>
39
- <link:usedOn>link:calculationLink</link:usedOn>
40
- <link:usedOn>link:definitionLink</link:usedOn>
41
- </link:roleType>
42
- <link:roleType roleURI="http://pbg.com/20090613/role/StatementsOfOperations" id="StatementsOfOperations">
43
- <link:definition>01 - Statement - Condensed Consolidated Statements of Operations (Unaudited)</link:definition>
44
- <link:usedOn>link:presentationLink</link:usedOn>
45
- <link:usedOn>link:calculationLink</link:usedOn>
46
- <link:usedOn>link:definitionLink</link:usedOn>
47
- </link:roleType>
48
- <link:roleType roleURI="http://pbg.com/20090613/role/DocumentAndEntityInformation" id="DocumentAndEntityInformation">
49
- <link:definition>00 - Document - Document and Company Information</link:definition>
50
- <link:usedOn>link:presentationLink</link:usedOn>
51
- <link:usedOn>link:calculationLink</link:usedOn>
52
- <link:usedOn>link:definitionLink</link:usedOn>
53
- </link:roleType>
54
- <link:roleType roleURI="http://pbg.com/20090613/role/Contingencies" id="Contingencies">
55
- <link:definition>0614 - Disclosure - Contingencies</link:definition>
56
- <link:usedOn>link:presentationLink</link:usedOn>
57
- <link:usedOn>link:calculationLink</link:usedOn>
58
- <link:usedOn>link:definitionLink</link:usedOn>
59
- </link:roleType>
60
- <link:roleType roleURI="http://pbg.com/20090613/role/SupplementalCashFlowInformation" id="SupplementalCashFlowInformation">
61
- <link:definition>0613 - Disclosure - Supplemental Cash Flow Information</link:definition>
62
- <link:usedOn>link:presentationLink</link:usedOn>
63
- <link:usedOn>link:calculationLink</link:usedOn>
64
- <link:usedOn>link:definitionLink</link:usedOn>
65
- </link:roleType>
66
- <link:roleType roleURI="http://pbg.com/20090613/role/RestructuringCharges" id="RestructuringCharges">
67
- <link:definition>0612 - Disclosure - Restructuring Charges</link:definition>
68
- <link:usedOn>link:presentationLink</link:usedOn>
69
- <link:usedOn>link:calculationLink</link:usedOn>
70
- <link:usedOn>link:definitionLink</link:usedOn>
71
- </link:roleType>
72
- <link:roleType roleURI="http://pbg.com/20090613/role/SegmentInformation" id="SegmentInformation">
73
- <link:definition>0611 - Disclosure - Segment Information</link:definition>
74
- <link:usedOn>link:presentationLink</link:usedOn>
75
- <link:usedOn>link:calculationLink</link:usedOn>
76
- <link:usedOn>link:definitionLink</link:usedOn>
77
- </link:roleType>
78
- <link:roleType roleURI="http://pbg.com/20090613/role/PensionAndPostretirementMedicalBenefitPlans" id="PensionAndPostretirementMedicalBenefitPlans">
79
- <link:definition>0609 - Disclosure - Pension and Postretirement Medical Benefit Plans</link:definition>
80
- <link:usedOn>link:presentationLink</link:usedOn>
81
- <link:usedOn>link:calculationLink</link:usedOn>
82
- <link:usedOn>link:definitionLink</link:usedOn>
83
- </link:roleType>
84
- <link:roleType roleURI="http://pbg.com/20090613/role/FinancialInstrumentsAndRiskManagement" id="FinancialInstrumentsAndRiskManagement">
85
- <link:definition>0608 - Disclosure - Financial Instruments and Risk Management</link:definition>
86
- <link:usedOn>link:presentationLink</link:usedOn>
87
- <link:usedOn>link:calculationLink</link:usedOn>
88
- <link:usedOn>link:definitionLink</link:usedOn>
89
- </link:roleType>
90
- <link:roleType roleURI="http://pbg.com/20090613/role/FairValueMeasurements" id="FairValueMeasurements">
91
- <link:definition>0607 - Disclosure - Fair Value Measurements</link:definition>
92
- <link:usedOn>link:presentationLink</link:usedOn>
93
- <link:usedOn>link:calculationLink</link:usedOn>
94
- <link:usedOn>link:definitionLink</link:usedOn>
95
- </link:roleType>
96
- <link:roleType roleURI="http://pbg.com/20090613/role/OtherIntangibleAssetsNetAndGoodwill" id="OtherIntangibleAssetsNetAndGoodwill">
97
- <link:definition>0606 - Disclosure - Other Intangible Assets, net and Goodwill</link:definition>
98
- <link:usedOn>link:presentationLink</link:usedOn>
99
- <link:usedOn>link:calculationLink</link:usedOn>
100
- <link:usedOn>link:definitionLink</link:usedOn>
101
- </link:roleType>
102
- <link:roleType roleURI="http://pbg.com/20090613/role/BalanceSheetDetails" id="BalanceSheetDetails">
103
- <link:definition>0605 - Disclosure - Balance Sheet Details</link:definition>
104
- <link:usedOn>link:presentationLink</link:usedOn>
105
- <link:usedOn>link:calculationLink</link:usedOn>
106
- <link:usedOn>link:definitionLink</link:usedOn>
107
- </link:roleType>
108
- <link:roleType roleURI="http://pbg.com/20090613/role/ShareBasedCompensation" id="ShareBasedCompensation">
109
- <link:definition>0604 - Disclosure - Share Based Compensation</link:definition>
110
- <link:usedOn>link:presentationLink</link:usedOn>
111
- <link:usedOn>link:calculationLink</link:usedOn>
112
- <link:usedOn>link:definitionLink</link:usedOn>
113
- </link:roleType>
114
- <link:roleType roleURI="http://pbg.com/20090613/role/NewAccountingStandards" id="NewAccountingStandards">
115
- <link:definition>0603 - Disclosure - New Accounting Standards</link:definition>
116
- <link:usedOn>link:presentationLink</link:usedOn>
117
- <link:usedOn>link:calculationLink</link:usedOn>
118
- <link:usedOn>link:definitionLink</link:usedOn>
119
- </link:roleType>
120
- <link:roleType roleURI="http://pbg.com/20090613/role/SeasonalityOfBusiness" id="SeasonalityOfBusiness">
121
- <link:definition>0602 - Disclosure - Seasonality of Business</link:definition>
122
- <link:usedOn>link:presentationLink</link:usedOn>
123
- <link:usedOn>link:calculationLink</link:usedOn>
124
- <link:usedOn>link:definitionLink</link:usedOn>
125
- </link:roleType>
126
- <link:roleType roleURI="http://pbg.com/20090613/role/BasisOfPresentation" id="BasisOfPresentation">
127
- <link:definition>0601 - Disclosure - Basis of Presentation</link:definition>
128
- <link:usedOn>link:presentationLink</link:usedOn>
129
- <link:usedOn>link:calculationLink</link:usedOn>
130
- <link:usedOn>link:definitionLink</link:usedOn>
131
- </link:roleType>
132
- <link:roleType roleURI="http://pbg.com/20090613/role/IncomeTaxes" id="IncomeTaxes">
133
- <link:definition>0610 - Disclosure - Income Taxes</link:definition>
134
- <link:usedOn>link:presentationLink</link:usedOn>
135
- <link:usedOn>link:calculationLink</link:usedOn>
136
- <link:usedOn>link:definitionLink</link:usedOn>
137
- </link:roleType>
138
- <link:linkbaseRef xlink:type="simple" xlink:href="cal.xml" xlink:role="http://www.xbrl.org/2003/role/calculationLinkbaseRef" xlink:arcrole="http://www.w3.org/1999/xlink/properties/linkbase" xlink:title="Calculation Links, all" />
139
- <link:linkbaseRef xlink:type="simple" xlink:href="pre.xml" xlink:role="http://www.xbrl.org/2003/role/presentationLinkbaseRef" xlink:arcrole="http://www.w3.org/1999/xlink/properties/linkbase" xlink:title="Presentation Links, all" />
140
- <link:linkbaseRef xlink:type="simple" xlink:href="def.xml" xlink:role="http://www.xbrl.org/2003/role/definitionLinkbaseRef" xlink:arcrole="http://www.w3.org/1999/xlink/properties/linkbase" xlink:title="Definition Links, all" />
141
- <link:linkbaseRef xlink:type="simple" xlink:href="lab.xml" xlink:role="http://www.xbrl.org/2003/role/labelLinkbaseRef" xlink:arcrole="http://www.w3.org/1999/xlink/properties/linkbase" xlink:title="Label Links, all" />
142
- </appinfo>
143
- </annotation>
144
-
145
- <import namespace="http://www.xbrl.org/2003/instance" schemaLocation="xbrl_xsd/xbrl-instance-2003-12-31.xsd" />
146
- <import namespace="http://www.xbrl.org/2003/linkbase" schemaLocation="xbrl_xsd/xbrl-linkbase-2003-12-31.xsd" />
147
- <import namespace="http://xbrl.us/dei/2009-01-31" schemaLocation="xbrl_xsd/dei-2009-01-31.xsd" />
148
- <import namespace="http://xbrl.us/us-gaap/2009-01-31" schemaLocation="xbrl_xsd/us-gaap-2009-01-31.xsd" />
149
- <import namespace="http://xbrl.us/us-types/2009-01-31" schemaLocation="xbrl_xsd/us-types-2009-01-31.xsd" />
150
-
151
- <element id="bgllc_SeasonalityOfBusinessAbstract" name="SeasonalityOfBusinessAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
152
- <element id="bgllc_BalanceSheetDetailsAbstract" name="BalanceSheetDetailsAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
153
- <element id="bgllc_FairValueMeasurementsAbstract" name="FairValueMeasurementsAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
154
- <element id="bgllc_FinancialInstrumentsAndRiskManagementAbstract" name="FinancialInstrumentsAndRiskManagementAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
155
- <element id="bgllc_IncomeTaxesAbstract" name="IncomeTaxesAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
156
- <element id="bgllc_SegmentInformationAbstract" name="SegmentInformationAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
157
- <element id="bgllc_ContingenciesAbstract" name="ContingenciesAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
158
- <element id="bgllc_BalanceSheetDetailsTextBlock" name="BalanceSheetDetailsTextBlock" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
159
- <element id="bgllc_SupplementalCashFlowInformationDisclosureAbstract" name="SupplementalCashFlowInformationDisclosureAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
160
- <element id="bgllc_PrepaidExpensesAndOtherCurrentAssets" name="PrepaidExpensesAndOtherCurrentAssets" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="instant" xbrli:balance="debit" />
161
- <element id="bgllc_ContributionsFromNoncontrollingInterestHolder" name="ContributionsFromNoncontrollingInterestHolder" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
162
- <element id="bgllc_IncomeBeforeIncomeTaxes" name="IncomeBeforeIncomeTaxes" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="credit" />
163
- <element id="bgllc_OtherAdjustmentsNet" name="OtherAdjustmentsNet" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
164
- <element id="bgllc_IssuanceOfNoteReceivableFromNoncontrolledAffiliate" name="IssuanceOfNoteReceivableFromNoncontrolledAffiliate" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
165
- <element id="bgllc_RepaymentsOfNoteReceivableFromNoncontrolledAffiliate" name="RepaymentsOfNoteReceivableFromNoncontrolledAffiliate" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="credit" />
166
- <element id="bgllc_WithholdingTaxEquityAwards" name="WithholdingTaxEquityAwards" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
167
- <element id="bgllc_SeasonalityOfBusinessTextBlock" name="SeasonalityOfBusinessTextBlock" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
168
- <element id="bgllc_OwnersNetInvestment" name="OwnersNetInvestment" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="instant" xbrli:balance="credit" />
169
- <element id="bgllc_ContributionsFromOwnersIncludingNoncontrollingInterests" name="ContributionsFromOwnersIncludingNoncontrollingInterests" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="credit" />
170
- <element id="bgllc_CashDistributionsToOwner" name="CashDistributionsToOwner" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
171
- <element id="bgllc_OwnersNetInvestmentMember" name="OwnersNetInvestmentMember" type="us-types:domainItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
172
- <element id="bgllc_SellingDeliveryAndAdministrativeExpenses" name="SellingDeliveryAndAdministrativeExpenses" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
173
- <element id="bgllc_DocumentAndCompanyInformationAbstract" name="DocumentAndCompanyInformationAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
174
- <element id="bgllc_ProceedsFromNoncontrollingInterestHolder" name="ProceedsFromNoncontrollingInterestHolder" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="debit" />
175
- <element id="bgllc_Sfas158MeasurementDateAdjustmentNetOfTax" name="Sfas158MeasurementDateAdjustmentNetOfTax" type="xbrli:monetaryItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" xbrli:balance="credit" />
176
- <element id="bgllc_GuaranteesAbstract" name="GuaranteesAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
177
- <element id="bgllc_OtherIntangibleAssetsNetAndGoodwillAbstract" name="OtherIntangibleAssetsNetAndGoodwillAbstract" abstract="true" type="xbrli:stringItemType" substitutionGroup="xbrli:item" nillable="true" xbrli:periodType="duration" />
178
- </schema>
data/xbrlware.iml DELETED
@@ -1,30 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="GemRequirementsHolder" version="2">
4
- <requirement>
5
- <requirement>
6
- <dependency name="rake" version="0" bound="GREATER_OR_EQUAL" />
7
- </requirement>
8
- <source from="Rakefile.rb" />
9
- <source from="pkg/xbrlware-ce-1.0.3/Rakefile.rb" />
10
- </requirement>
11
- <requirement>
12
- <requirement>
13
- <dependency name="xml-simple" version="1.0.12" bound="EQUAL" />
14
- </requirement>
15
- <source from="lib/xbrlware.rb" />
16
- <source from="pkg/xbrlware-ce-1.0.3/lib/xbrlware.rb" />
17
- </requirement>
18
- </component>
19
- <component name="NewModuleRootManager" inherit-compiler-output="true">
20
- <exclude-output />
21
- <content url="file://$MODULE_DIR$">
22
- <sourceFolder url="file://$MODULE_DIR$/example" isTestSource="false" />
23
- <sourceFolder url="file://$MODULE_DIR$/lib" isTestSource="false" />
24
- <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
25
- </content>
26
- <orderEntry type="jdk" jdkName="Ruby SDK 1.8.7" jdkType="RUBY_SDK" />
27
- <orderEntry type="sourceFolder" forTests="false" />
28
- </component>
29
- </module>
30
-